88 lines
1.5 KiB
TypeScript
88 lines
1.5 KiB
TypeScript
import {
|
|
Command,
|
|
Mark,
|
|
markInputRule,
|
|
markPasteRule,
|
|
mergeAttributes,
|
|
} from '@tiptap/core'
|
|
|
|
export interface CodeOptions {
|
|
HTMLAttributes: {
|
|
[key: string]: any
|
|
},
|
|
}
|
|
|
|
declare module '@tiptap/core' {
|
|
interface Commands {
|
|
code: {
|
|
/**
|
|
* Set a code mark
|
|
*/
|
|
setCode: () => Command,
|
|
/**
|
|
* Toggle inline code
|
|
*/
|
|
toggleCode: () => Command,
|
|
/**
|
|
* Unset a code mark
|
|
*/
|
|
unsetCode: () => Command,
|
|
}
|
|
}
|
|
}
|
|
|
|
export const inputRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))$/gm
|
|
export const pasteRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))/gm
|
|
|
|
export const Code = Mark.create<CodeOptions>({
|
|
name: 'code',
|
|
|
|
defaultOptions: {
|
|
HTMLAttributes: {},
|
|
},
|
|
|
|
excludes: '_',
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'code' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['code', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
setCode: () => ({ commands }) => {
|
|
return commands.setMark('code')
|
|
},
|
|
toggleCode: () => ({ commands }) => {
|
|
return commands.toggleMark('code')
|
|
},
|
|
unsetCode: () => ({ commands }) => {
|
|
return commands.unsetMark('code')
|
|
},
|
|
}
|
|
},
|
|
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
'Mod-e': () => this.editor.commands.toggleCode(),
|
|
}
|
|
},
|
|
|
|
addInputRules() {
|
|
return [
|
|
markInputRule(inputRegex, this.type),
|
|
]
|
|
},
|
|
|
|
addPasteRules() {
|
|
return [
|
|
markPasteRule(inputRegex, this.type),
|
|
]
|
|
},
|
|
})
|