-
Notifications
You must be signed in to change notification settings - Fork 861
New issue
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 spec does not specify whether spaces must seperate the '=' in a key value pair. #180
Comments
I think white spaces before and after |
the whitespaces should be ignored , NOT only in this case ,but also everywhere. well ,my py parser toml.py noticed this. |
|
It really should. Many languages (i.e. C++, C, Python, Java, among others) don't really care about whether you type |
@bootstraponline I submitted a pull request fixing that. |
I agree: it shouldn't matter how many spaces there are in between the keys/values and the equals sign. |
I think the spec is clear on this.
In |
The spec makes it clear that
key = "value"
is legitimate but it doesn't make any claims ifkey="value"
is legitimate.At the very least the python library doesn't handle this case cleanly.
The text was updated successfully, but these errors were encountered: