Files
yaak-mountain-loop/src-web/components/Editor/twig/twig.grammar
Gregory Schier 83f84ded8d Small tweaks
2023-02-26 15:25:55 -08:00

22 lines
483 B
Plaintext

// Very crude grammar for a subset of Twig templating syntax
@top Template { (directive | Text)* }
directive {
Insert
}
@skip {space} {
Insert { "{{" DirectiveContent "}}" }
}
@tokens {
Text { ![{] Text? | "{" (@eof | ![%{] Text?) }
space { @whitespace+ }
DirectiveContent { ![%}] DirectiveContent? | $[%}] (@eof | ![}] DirectiveContent?) }
@precedence { space DirectiveContent }
"{{" "}}" // "{%" "%}"
}
@external propSource twigHighlight from "./twig-highlight"