tiptap/packages/extension-code/index.ts

37 lines
803 B
TypeScript
Raw Normal View History

2020-09-09 05:44:45 +08:00
import { Mark, markInputRule, markPasteRule } from '@tiptap/core'
2020-04-02 19:26:56 +08:00
declare module '@tiptap/core/src/Editor' {
interface Editor {
code(): Editor,
}
}
2020-09-10 00:47:47 +08:00
export const inputRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))$/gm
export const pasteRegex = /(?:^|\s)((?:`)((?:[^`]+))(?:`))/gm
2020-09-09 05:44:45 +08:00
export default new Mark()
.name('code')
.schema(() => ({
excludes: '_',
parseDOM: [
{ tag: 'code' },
],
toDOM: () => ['code', 0],
}))
2020-09-22 05:17:30 +08:00
// .commands(({ editor, name }) => ({
// code: next => () => {
// editor.toggleMark(name)
// next()
// },
// }))
2020-09-09 05:44:45 +08:00
.keys(({ editor }) => ({
'Mod-`': () => editor.code()
}))
2020-09-10 00:47:47 +08:00
.inputRules(({ type }) => [
markInputRule(inputRegex, type)
])
.pasteRules(({ type }) => [
markPasteRule(inputRegex, type)
])
2020-09-09 05:44:45 +08:00
.create()