`;
}
private initEditor() {
const editor = createWysimark(this.querySelector(".markdown-editor")!, {
initialMarkdown: this.initialValue,
onChange: async () => {
const value = editor.getMarkdown();
const input = this.querySelector(
`input[name=${this.name}]`
) as HTMLTextAreaElement;
input.value = value;
this.value = value;
await this.updateComplete;
this.dispatchEvent(