tiptap/packages/extension-list-item/src/index.ts

38 lines
647 B
TypeScript
Raw Normal View History

2020-10-22 18:34:49 +08:00
import { createNode } from '@tiptap/core'
2020-09-11 04:29:15 +08:00
2020-10-23 04:40:40 +08:00
const ListItem = createNode({
2020-11-04 03:57:09 +08:00
name: 'listItem',
2020-10-22 18:34:49 +08:00
2020-11-02 22:18:03 +08:00
content: '(paragraph|list?)+',
2020-10-22 18:34:49 +08:00
defining: true,
parseHTML() {
return [
{
tag: 'li',
},
2020-10-22 18:34:49 +08:00
]
},
renderHTML({ attributes }) {
return ['li', attributes, 0]
},
addKeyboardShortcuts() {
return {
2020-11-04 03:57:09 +08:00
Enter: () => this.editor.splitListItem('listItem'),
Tab: () => this.editor.sinkListItem('listItem'),
'Shift-Tab': () => this.editor.liftListItem('listItem'),
2020-10-22 18:34:49 +08:00
}
},
})
2020-10-23 04:40:40 +08:00
export default ListItem
2020-11-11 04:18:22 +08:00
declare module '@tiptap/core' {
2020-10-23 04:40:40 +08:00
interface AllExtensions {
ListItem: typeof ListItem,
}
}