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 inline sub-table:
[tab1] key1 = {name='Donald Duck'}
should be parsed like this:
[ "tab1" => [ "key1" => [ "name" => "Donald Duck", ], ], ]
instead, it currently becomes this:
[ "tab1" => [], "key1" => [ "name" => "Donald Duck", ], ]
The text was updated successfully, but these errors were encountered:
Fixed bug #13: "Inline sub-tables don't work"
3b413d3
Thanks for reporting it
Sorry, something went wrong.
yosymfony
No branches or pull requests
An inline sub-table:
should be parsed like this:
instead, it currently becomes this:
The text was updated successfully, but these errors were encountered: