mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
@top Template { (directive | Text)* }
|
|
|
|
directive {
|
|
Insert
|
|
}
|
|
|
|
@skip {space} {
|
|
Insert { "${[" DirectiveContent "]}" }
|
|
}
|
|
|
|
@tokens {
|
|
Text { ![$] Text? }
|
|
space { @whitespace+ }
|
|
DirectiveContent { ![\]}] DirectiveContent? }
|
|
@precedence { space DirectiveContent }
|
|
"${[" "]}"
|
|
}
|
|
|
|
@external propSource highlight from "./highlight"
|