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
This TOML:
[[pages.test.blocks]] type = "paragraph"
Parses into this struct:
[ 'pages' => [ 0 => [ 'test' => [ 0 => [ 'blocks' => [ 0 => [ 'type' => 'paragraph' ] ] ] ] ] ] ]
But it should parses into this:
[ 'pages' => [ 'test' => [ 'blocks' => [ 0 => [ 'type' => 'paragraph' ] ] ] ] ]
Also, this TOML
[pages.test] caption = "Awesomeness" [[pages.test.blocks]] type = "paragraph"
Parses into:
[ 'pages' => [ 'test' => [ 'caption' => 'Awesomeness', 'test' => [ 0 => [ 'blocks' => [ 0 => [ 'type' => 'paragraph', ] ] ] ] ] ] ]
But should:
[ 'pages' => [ 'test' => [ 'caption' => 'Awesomeness', 'blocks' => [ 0 => [ 'type' => 'paragraph', ] ] ] ] ]
The text was updated successfully, but these errors were encountered:
Fixed the bug #24: "Wrong array of tables implementation"
29f3ea0
This is fixed. Thank you for your report
Sorry, something went wrong.
yosymfony
No branches or pull requests
This TOML:
Parses into this struct:
But it should parses into this:
Also, this TOML
Parses into:
But should:
The text was updated successfully, but these errors were encountered: