import { Mark, mergeAttributes, markInputRule, markPasteRule } from '@tiptap/core'; /** * Matches a strike to a ~~strike~~ on input. */ const inputRegex = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))$/; /** * Matches a strike to a ~~strike~~ on paste. */ const pasteRegex = /(?:^|\s)(~~(?!\s+~~)((?:[^~]+))~~(?!\s+~~))/g; /** * This extension allows you to create strike text. * @see https://www.tiptap.dev/api/marks/strike */ const Strike = Mark.create({ name: 'strike', addOptions() { return { HTMLAttributes: {}, }; }, parseHTML() { return [ { tag: 's', }, { tag: 'del', }, { tag: 'strike', }, { style: 'text-decoration', consuming: false, getAttrs: style => (style.includes('line-through') ? {} : false), }, ]; }, renderHTML({ HTMLAttributes }) { return ['s', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]; }, addCommands() { return { setStrike: () => ({ commands }) => { return commands.setMark(this.name); }, toggleStrike: () => ({ commands }) => { return commands.toggleMark(this.name); }, unsetStrike: () => ({ commands }) => { return commands.unsetMark(this.name); }, }; }, addKeyboardShortcuts() { return { 'Mod-Shift-s': () => this.editor.commands.toggleStrike(), }; }, addInputRules() { return [ markInputRule({ find: inputRegex, type: this.type, }), ]; }, addPasteRules() { return [ markPasteRule({ find: pasteRegex, type: this.type, }), ]; }, }); export { Strike, Strike as default, inputRegex, pasteRegex }; //# sourceMappingURL=index.js.map