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 b9f3b77 commit d9aaf67Copy full SHA for d9aaf67
spec/fluent.ebnf
@@ -98,7 +98,6 @@ digit ::= [0-9]
98
inline_space ::= ("\u0020" | "\u0009")+
99
line_end ::= "\u000D\u000A"
100
| "\u000A"
101
- | "\u000D"
102
| EOF
103
blank_line ::= inline_space? line_end
104
break_indent ::= line_end blank_line* inline_space
syntax/grammar.mjs
@@ -467,7 +467,6 @@ let line_end =
467
either(
468
string("\u000D\u000A"),
469
string("\u000A"),
470
- string("\u000D"),
471
eof());
472
473
let blank_line =
0 commit comments