8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecb3014 commit f9287feCopy full SHA for f9287fe
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