mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-16 11:49:02 +08:00
20 lines
474 B
TypeScript
20 lines
474 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.chain().focus().splitListItem(name).run()
|
|
// Tab: () => editor.sinkListItem(name),
|
|
// 'Shift-Tab': () => editor.liftListItem(name),
|
|
}))
|
|
.create()
|