We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example:
[[outer]] inner = { foo = "bar" }
is parsed as:
%{"outer" => [%{"foo" => "bar"}]}
However, adding another outer table:
outer
[[outer]] inner = { foo = "bar" } [[outer]] inner = { foo = "baz" }
will produce this:
%{ "outer" => [ %{"foo" => "bar"}, %{"inner" => %{"foo" => "baz"}} ] }
Or, adding another nested inline table:
[[outer]] inner = { foo = "bar" } inner2 = { count = 5 }
produces:
%{ "outer" => [ %{ "foo" => "bar", "inner2" => %{"count" => 5} } ] }
I'm open to help with fixing it, but will need some pointers where to look :)
The text was updated successfully, but these errors were encountered:
I think I may have fixed this inadvertently with #41.
Sorry, something went wrong.
No branches or pull requests
An example:
is parsed as:
However, adding another
outer
table:will produce this:
Or, adding another nested inline table:
produces:
I'm open to help with fixing it, but will need some pointers where to look :)
The text was updated successfully, but these errors were encountered: