add basic extension manager

This commit is contained in:
Philipp Kühn
2020-03-05 21:05:01 +01:00
parent 6e85098741
commit 54dcbfc473
8 changed files with 89 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
import { Node } from '@tiptap/core'
export default class Text extends Node {
name = 'text'
schema = {
group: 'inline',
}
}