mirror of https://github.com/kdl-org/kdl.git
Fix the disallowed low ASCIIs
This commit is contained in:
parent
b635470ab2
commit
491cc46f89
5
SPEC.md
5
SPEC.md
|
|
@ -589,8 +589,9 @@ Note that for the purpose of new lines, CRLF is considered _a single newline_.
|
||||||
The following code points may not appear literally anywhere in the document.
|
The following code points may not appear literally anywhere in the document.
|
||||||
They may be represented in Strings (but not Raw Strings) using `\u{}`.
|
They may be represented in Strings (but not Raw Strings) using `\u{}`.
|
||||||
|
|
||||||
* Any codepoint with hexadecimal value `0x20` or below (various control
|
* The codepoints `U+0000`-`U+0009`,
|
||||||
characters).
|
the codepoint `U+000B`,
|
||||||
|
or the codepoints `U+000E`-`U+001F` (various control characters).
|
||||||
* `0x7F` (the Delete control character).
|
* `0x7F` (the Delete control character).
|
||||||
* Any codepoint that is not a [Unicode Scalar
|
* Any codepoint that is not a [Unicode Scalar
|
||||||
Value](https://unicode.org/glossary/#unicode_scalar_value).
|
Value](https://unicode.org/glossary/#unicode_scalar_value).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue