Skip to content

Commit 17b4df8

Browse files
committed
Forbid line-break before =, make white-space around it optional
1 parent 1f75875 commit 17b4df8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syntax/fluent.ebnf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ attribute ::= NL __ '.' identifier value
3838
attribute-list ::= attribute+
3939

4040
message ::= identifier (value attribute-list? | attribute-list)
41-
value ::= __ '=' __ pattern
41+
value ::= _? '=' __? pattern
4242
pattern ::= (text | placeable)+
4343
text ::= ((char - line-break) - special | break-indent | '\' special)+
4444
quoted-text ::= '"' (text | '\"')+ '"'

0 commit comments

Comments
 (0)