mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-23 08:47:50 +08:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
export const Document = Node.create({
|
|
name: 'doc',
|
|
topNode: true,
|
|
content: 'block+',
|
|
})
|