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 is basic idea, need to have more discussion.
[[fruits]] name = "apple" [fruits.physical] # subtable color = "red" shape = "round" [[fruits.varieties]] # nested array of tables name = "red delicious" [[fruits.varieties]] name = "granny smith" [[fruits]] name = "banana" [[fruits.varieties]] name = "plantain"
+
^
[[fruits]] name = "apple" [^.physical] # subtable color = "red" shape = "round" [[^.varieties]] # nested array of tables name = "red delicious" [[+]] name = "granny smith" [[^]] name = "banana" [[^.varieties]] name = "plantain"
{ "fruits": [ { "name": "apple", "physical": { "color": "red", "shape": "round" }, "varieties": [ { "name": "red delicious" }, { "name": "granny smith" } ] }, { "name": "banana", "varieties": [ { "name": "plantain" } ] } ] }
The text was updated successfully, but these errors were encountered:
Previous: #744, #781
Sorry, something went wrong.
Oh, right. Sorry for my duplicate request.
No worries; can be difficult to find these things sometimes.
No branches or pull requests
This is basic idea, need to have more discussion.
OLD
NEW
+
: Duplicating last table name.^
: Goes back one block.Json:
The text was updated successfully, but these errors were encountered: