tiptap/packages/extension-highlight/index.ts

32 lines
570 B
TypeScript
Raw Normal View History

2020-10-02 21:28:00 +08:00
import {
Command, Mark,
} from '@tiptap/core'
export type HighlightCommand = () => Command
declare module '@tiptap/core/src/Editor' {
interface Commands {
highlight: HighlightCommand,
}
}
export default new Mark()
.name('highlight')
.schema(() => ({
parseDOM: [
{
tag: 'mark',
},
],
toDOM: () => ['mark', 0],
}))
.commands(({ name }) => ({
highlight: () => ({ commands }) => {
return commands.toggleMark(name)
},
}))
.keys(({ editor }) => ({
'Mod-e': () => editor.highlight(),
}))
.create()