mirror of https://github.com/kdl-org/kdl.git
add space-separators between sets
This commit is contained in:
parent
e0486db378
commit
3d8854c472
|
|
@ -984,11 +984,11 @@ string-character :=
|
|||
ws-escape := '\\' (unicode-space | newline)+
|
||||
hex-digit := [0-9a-fA-F]
|
||||
hex-unicode := hex-digit{1, 6} - surrogate - above-max-scalar // Unicode Scalar Value in hex₁₆, leading 0s allowed within length ≤ 6
|
||||
surrogate := [0]{0,2}[dD][8-9a-fA-F]hex-digit{2}
|
||||
// U+D800-DFFF: D 8 00
|
||||
// D F FF
|
||||
above-max-scalar = [2-9a-fA-F]hex-digit{5} | [1][1-9a-fA-F]hex-digit{4}
|
||||
// >U+10FFFF: >1 _____ 1 >0 ____
|
||||
surrogate := [0]{0, 2} [dD] [8-9a-fA-F] hex-digit{2}
|
||||
// U+D800-DFFF: D 8 00
|
||||
// D F FF
|
||||
above-max-scalar = [2-9a-fA-F] hex-digit{5} | [1] [1-9a-fA-F] hex-digit{4}
|
||||
// >U+10FFFF: >1 _____ 1 >0 ____
|
||||
|
||||
|
||||
raw-string := '#' raw-string-quotes '#' | '#' raw-string '#'
|
||||
|
|
|
|||
Loading…
Reference in New Issue