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
It seems like the parser is having trouble with comments which are not followed by spaces before the next value. See below:
>> TOML.load("Host = 6") => {"Host"=>6} >> TOML.load("#Host = 6") => {"#Host"=>6} >> TOML.load("#\nHost = 6") => {"#\nHost"=>6} >> TOML.load("#\nHost = 6") => {"#\nHost"=>6} >> TOML.load("#\n Host = 6") => {"Host"=>6} >> TOML.load("# \nHost = 6") => {"Host"=>6}
The text was updated successfully, but these errors were encountered:
Weird! @BurntSushi, do you have a test for this in toml-test?
Sorry, something went wrong.
No branches or pull requests
It seems like the parser is having trouble with comments which are not followed by spaces before the next value. See below:
The text was updated successfully, but these errors were encountered: