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
The following TOML:
foo = [ { x = "'" } ]
Gets parsed as:
{'foo': []}
I cannot seem to reduce this example any further - the following all parse as I expect:
foo = [ "'" ] bar = { x = "'" } [[baz]] x = "'"
The text was updated successfully, but these errors were encountered:
Also, the following still gets parsed as an empty array:
foo = [ { x = "abc'def" }, { y = 2 } ]
... it seems to affect the whole array, and the apostrophe doesn't have to be the only thing in the string.
Sorry, something went wrong.
No branches or pull requests
The following TOML:
Gets parsed as:
{'foo': []}
I cannot seem to reduce this example any further - the following all parse as I expect:
The text was updated successfully, but these errors were encountered: