You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
988 B
38 lines
988 B
3 years ago
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, '__esModule', { value: true });
|
||
|
|
||
|
var core = require('@tiptap/core');
|
||
|
|
||
|
const ListItem = core.Node.create({
|
||
|
name: 'listItem',
|
||
|
addOptions() {
|
||
|
return {
|
||
|
HTMLAttributes: {},
|
||
|
};
|
||
|
},
|
||
|
content: 'paragraph block*',
|
||
|
defining: true,
|
||
|
parseHTML() {
|
||
|
return [
|
||
|
{
|
||
|
tag: 'li',
|
||
|
},
|
||
|
];
|
||
|
},
|
||
|
renderHTML({ HTMLAttributes }) {
|
||
|
return ['li', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
|
||
|
},
|
||
|
addKeyboardShortcuts() {
|
||
|
return {
|
||
|
Enter: () => this.editor.commands.splitListItem(this.name),
|
||
|
Tab: () => this.editor.commands.sinkListItem(this.name),
|
||
|
'Shift-Tab': () => this.editor.commands.liftListItem(this.name),
|
||
|
};
|
||
|
},
|
||
|
});
|
||
|
|
||
|
exports.ListItem = ListItem;
|
||
|
exports["default"] = ListItem;
|
||
|
//# sourceMappingURL=tiptap-extension-list-item.cjs.map
|