chore(code): use html plugin

This commit is contained in:
Elian Doran
2025-05-11 13:50:04 +03:00
parent 2fe09147fd
commit e5402abae0
3 changed files with 13 additions and 64 deletions

View File

@@ -28,7 +28,7 @@ const byMimeType: Record<string, (() => Promise<StreamParser<unknown> | Language
"text/apl": async () => (await import('@codemirror/legacy-modes/mode/apl')).apl,
"text/coffeescript": async () => (await import('@codemirror/legacy-modes/mode/coffeescript')).coffeeScript,
"text/css": async () => (await import('@codemirror/legacy-modes/mode/css')).css,
"text/html": async () => (await import('@codemirror/legacy-modes/mode/xml')).html,
"text/html": async () => (await import('@codemirror/lang-html')).html(),
"text/jinja2": async () => (await import('@codemirror/legacy-modes/mode/jinja2')).jinja2,
"text/jsx": null,
"text/mirc": async () => (await import('@codemirror/legacy-modes/mode/mirc')).mirc,