mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 19:29:02 +08:00
18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
import { Node } from '@tiptap/core'
|
|
|
|
export default new Node()
|
|
.name('list_item')
|
|
.schema(() => ({
|
|
content: 'paragraph block*',
|
|
defining: true,
|
|
draggable: false,
|
|
parseDOM: [{ tag: 'li' }],
|
|
toDOM: () => ['li', 0],
|
|
}))
|
|
.keys(({ editor, name }) => ({
|
|
Enter: () => editor.splitListItem(name),
|
|
Tab: () => editor.sinkListItem(name),
|
|
'Shift-Tab': () => editor.liftListItem(name),
|
|
}))
|
|
.create()
|