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
One more (less important) bug with comments in TOML
If you add comments to table arrays, only the last one is kept. Here's an example to better explain
[[products]] # Table List 1 name = "Hammer" # Name 1 sku = 738594937 [[products]] # Table List 2 name = "Nail" # Name 2 sku = 284758393 color = "gray"
becomes
# Table List 2 [[products]] # Name 1 name = "Hammer" sku = 738594937 [[products]] color = "gray" # Name 2 name = "Nail" sku = 284758393
Notice the first table in the array is now marked as Table List 2 and the second is not marked.
Table List 2
Tested in 3.0.1
The text was updated successfully, but these errors were encountered:
This is related to issue #29 because the table arrays (and their comments) are stored just like normal arrays.
Sorry, something went wrong.
TheElectronWill
No branches or pull requests
One more (less important) bug with comments in TOML
If you add comments to table arrays, only the last one is kept. Here's an example to better explain
becomes
Notice the first table in the array is now marked as
Table List 2
and the second is not marked.Tested in 3.0.1
The text was updated successfully, but these errors were encountered: