Files
HRM-System/node_modules/@tiptap/extension-document/src/document.ts
2026-04-13 08:19:53 +08:00

12 lines
265 B
TypeScript

import { Node } from '@tiptap/core'
/**
* The default document node which represents the top level node of the editor.
* @see https://tiptap.dev/api/nodes/document
*/
export const Document = Node.create({
name: 'doc',
topNode: true,
content: 'block+',
})