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.

72 lines
2.2 KiB

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core')) :
typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-code"] = {}, global.core));
})(this, (function (exports, core) { 'use strict';
const inputRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))$/;
const pasteRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))/g;
const Code = core.Mark.create({
name: 'code',
addOptions() {
return {
HTMLAttributes: {},
};
},
excludes: '_',
code: true,
exitable: true,
parseHTML() {
return [
{ tag: 'code' },
];
},
renderHTML({ HTMLAttributes }) {
return ['code', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
},
addCommands() {
return {
setCode: () => ({ commands }) => {
return commands.setMark(this.name);
},
toggleCode: () => ({ commands }) => {
return commands.toggleMark(this.name);
},
unsetCode: () => ({ commands }) => {
return commands.unsetMark(this.name);
},
};
},
addKeyboardShortcuts() {
return {
'Mod-e': () => this.editor.commands.toggleCode(),
};
},
addInputRules() {
return [
core.markInputRule({
find: inputRegex,
type: this.type,
}),
];
},
addPasteRules() {
return [
core.markPasteRule({
find: pasteRegex,
type: this.type,
}),
];
},
});
exports.Code = Code;
exports["default"] = Code;
exports.inputRegex = inputRegex;
exports.pasteRegex = pasteRegex;
Object.defineProperty(exports, '__esModule', { value: true });
}));
//# sourceMappingURL=tiptap-extension-code.umd.js.map