mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
22 lines
483 B
Plaintext
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"
|