Files
HRM-System/node_modules/@tiptap/extension-paragraph/dist/index.cjs
2026-04-13 08:19:53 +08:00

46 lines
1.0 KiB
JavaScript

'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var core = require('@tiptap/core');
/**
* This extension allows you to create paragraphs.
* @see https://www.tiptap.dev/api/nodes/paragraph
*/
const Paragraph = core.Node.create({
name: 'paragraph',
priority: 1000,
addOptions() {
return {
HTMLAttributes: {},
};
},
group: 'block',
content: 'inline*',
parseHTML() {
return [
{ tag: 'p' },
];
},
renderHTML({ HTMLAttributes }) {
return ['p', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
},
addCommands() {
return {
setParagraph: () => ({ commands }) => {
return commands.setNode(this.name);
},
};
},
addKeyboardShortcuts() {
return {
'Mod-Alt-0': () => this.editor.commands.setParagraph(),
};
},
});
exports.Paragraph = Paragraph;
exports.default = Paragraph;
//# sourceMappingURL=index.cjs.map