mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-17 04:17:52 +08:00
38 lines
661 B
TypeScript
38 lines
661 B
TypeScript
import { createNode } from '@tiptap/core'
|
|
|
|
const ListItem = createNode({
|
|
name: 'list_item',
|
|
|
|
content: '(paragraph|list)+',
|
|
|
|
defining: true,
|
|
|
|
parseHTML() {
|
|
return [
|
|
{
|
|
tag: 'li',
|
|
},
|
|
]
|
|
},
|
|
|
|
renderHTML({ attributes }) {
|
|
return ['li', attributes, 0]
|
|
},
|
|
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
Enter: () => this.editor.splitListItem('list_item'),
|
|
Tab: () => this.editor.sinkListItem('list_item'),
|
|
'Shift-Tab': () => this.editor.liftListItem('list_item'),
|
|
}
|
|
},
|
|
})
|
|
|
|
export default ListItem
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface AllExtensions {
|
|
ListItem: typeof ListItem,
|
|
}
|
|
}
|