-
Notifications
You must be signed in to change notification settings - Fork 25
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
Support quotes for string values and escaping of quotes #19
Comments
Any Unicode character may be used except those that must be escaped: quotation mark, backslash, and the control characters other than tab (U+0000 to U+0008, U+000A to U+001F, U+007F). str = "I'm a string. \"You can quote me\". Name\tJos\u00E9\nLocation\tSF." \b - backspace (U+0008) All other escape sequences not listed above are reserved; if they are used, TOML should produce an error. Sometimes you need to express passages of text (e.g. translation files) or would like to break up a very long string into multiple lines. TOML makes this easy. |
Adding logic for proper processing of quotes
Now we ignore quotes in parsing
The text was updated successfully, but these errors were encountered: