mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-10 19:26:49 +02:00
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
import { styleTags, tags as t } from '@lezer/highlight';
|
|
|
|
export const twigHighlight = styleTags({
|
|
'if endif': t.controlKeyword,
|
|
'{{ }} {% %}': t.meta,
|
|
DirectiveContent: t.variableName,
|
|
});
|