Skip to content

Commit

Permalink
docs: specify that strings cannot be escaped
Browse files Browse the repository at this point in the history
Signed-off-by: Daniil Tatianin <[email protected]>
  • Loading branch information
d-tatianin committed Aug 25, 2024
1 parent 7035963 commit b08aace
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ Value types can be one of the following:
- Integer, both signed & unsigned, including decimal, hex, octal and binary (up to 64 bits).
- Boolean, literal `true`/`false` in any case.
- Null, literal `null` in any case.
- String, both quoted (with `'` or `"`) and unquoted.
- String, both quoted (with `'` or `"`) and unquoted. Please note that string escaping is not supported,
use a combination of `'` with `"` instead.

The loader attempts to interpret each value in the aforementioned order,
stopping at the first type that succeeds the conversion.
Expand Down

0 comments on commit b08aace

Please sign in to comment.