overleaf/services/web/frontend/js/features/source-editor/lezer-bibtex/bibtex.grammar
Mathias Jakobsen b008c19dc3 Merge pull request #13836 from overleaf/mj-bibtex-identifier
[lezer] Change bibtex identifier to deny-list

GitOrigin-RevId: 005b256a22acbafbeefd641cec82460f603fbc7a
2023-07-17 11:06:22 +00:00

96 lines
No EOL
1.8 KiB
Text

@top Bibliography {
(Other | Declaration | CommentDeclaration | PreambleDeclaration | StringDeclaration)*
}
@tokens {
Other { ![@ \t\n] ![@]* }
whiteSpace { $[\t\n ]+ }
Identifier { ![,{} \t\n%]+ }
StringName { $[a-zA-Z:_] $[a-zA-Z:_0-9-]* }
FieldName {$[a-zA-Z-_0-9]+}
LiteralString {
'"' (!["] | "\\" _)* '"'?
}
EntryTypeName { $[a-zA-Z]+ }
Number { @digit+ }
StringKeyword {"@"$[Ss]$[Tt]$[Rr]$[Ii]$[Nn]$[Gg]}
PreambleKeyword {"@"$[Pp]$[Rr]$[Ee]$[Aa]$[Mm]$[Bb]$[Ll]$[Ee]}
CommentKeyword {"@"$[Cc]$[Oo]$[Mm]$[Mm]$[Ee]$[Nn]$[Tt]}
CommentContents { ![@} \t\n] ![}@]* }
"{"[closedBy="}"]
"}"[openedBy="{"]
"@" "\"" "," "#" "@string"
}
@skip { whiteSpace }
StringDeclaration {
StringKeyword "{"
Field<StringName>*
"}"
}
PreambleDeclaration {
PreambleKeyword "{"
Expression
"}"
}
CommentDeclaration {
CommentKeyword "{"
CommentContents*
"}"
}
Declaration {
EntryName { "@" EntryTypeName } "{"
Identifier
fieldEntry {
("," Field<FieldName> )
}*
("," )?
"}"
}
Field<Name> {
Name "=" Expression
}
Expression {
BracedString |
Number |
StringConcatenation
}
@local tokens {
OpenBracedContents[closedBy="}", @name="{"] {"{"}
CloseBracedContents[openedBy="{", @name="}"] {"}"}
@else nonClosingBracedContents
}
@skip {}{
BracedStringContents {
(
nonClosingBracedContents |
nestedBracedString {
OpenBracedContents
BracedStringContents
CloseBracedContents
}
)*
}
BracedString {
"{" BracedStringContents CloseBracedContents
}
}
@precedence { concatenation @left }
StringConcatenation {
StringConcatenation !concatenation "#" StringConcatenation |
LiteralString |
StringName
}
@external propSource highlighting from "./highlight.mjs"