mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-11 21:11:48 +01:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
import { styleTags, tags as t } from '@lezer/highlight';
|
|
|
|
export const highlight = styleTags({
|
|
'if endif': t.controlKeyword,
|
|
'${[ ]}': t.meta,
|
|
DirectiveContent: t.variableName,
|
|
});
|