fix broken document

This commit is contained in:
Philipp Kühn
2020-11-02 15:18:03 +01:00
parent 2bc02e50e0
commit a5d1c76f40
6 changed files with 13 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ import { createNode } from '@tiptap/core'
const Document = createNode({
name: 'document',
topNode: true,
content: '(block|list)+',
content: 'block+',
})
export default Document