We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82cb31e commit 3de3167Copy full SHA for 3de3167
grammars/json.gbnf
@@ -15,7 +15,7 @@ array ::=
15
16
string ::=
17
"\"" (
18
- [^"\\] |
+ [^"\\\x7F\x00-\x1F] |
19
"\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]) # escapes
20
)* "\"" ws
21
grammars/json_arr.gbnf
@@ -24,7 +24,7 @@ array ::=
24
25
26
27
28
29
30
0 commit comments