@jinntec/jinn-codemirror
Version:
Source code editor component based on codemirror with language support for XML and Leiden+
20 lines (16 loc) • 706 B
text/typescript
import { Extension } from "@codemirror/state";
import { EditorConfig } from "./config";
import { JinnCodemirror } from "./jinn-codemirror";
import { html } from "@codemirror/lang-html";
import { commands, encloseWithPanel } from "./xml-commands";
export class HTMLConfig extends EditorConfig {
constructor(editor: JinnCodemirror, toolbar: HTMLElement[] = []) {
super(editor, toolbar, commands);
}
async getExtensions(editor: JinnCodemirror): Promise<Extension[]> {
return [html({ selfClosingTags: false}), encloseWithPanel()];
}
serialize(): string | Element | NodeListOf<ChildNode> | null | undefined {
return this.editor.content;
}
}