viewof editor = {
const root = html`<div />`
const editor = new tiptap.Editor({
element: root,
editable: false,
extensions: [tiptap.StarterKit, tiptap.Highlight, tiptap.TextStyle, tiptap.Link],
content: `<span style=".superClass">The cool kids can apply monospace fonts aswell.</span>`
})
root.value = editor
return root
}