mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-20 00:23:58 +01: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,
|
|
});
|