tiptap/packages/extension-paragraph/index.ts

30 lines
682 B
TypeScript
Raw Normal View History

2020-09-25 01:07:47 +08:00
import { Command, Node } from '@tiptap/core'
2020-04-27 15:06:42 +08:00
// import ParagraphComponent from './paragraph.vue'
2020-03-06 03:30:58 +08:00
2020-09-25 01:07:47 +08:00
export type ParagraphCommand = () => Command
declare module '@tiptap/core/src/Editor' {
interface Commands {
paragraph: ParagraphCommand,
}
}
2020-09-09 05:44:45 +08:00
export default new Node()
.name('paragraph')
.schema(() => ({
content: 'inline*',
group: 'block',
parseDOM: [{ tag: 'p' }],
toDOM: () => ['p', 0],
// toVue: ParagraphComponent,
}))
.commands(({ name }) => ({
[name]: () => ({ commands }) => {
2020-09-25 04:27:17 +08:00
return commands.toggleBlockType(name, 'paragraph')
},
}))
2020-09-25 01:07:47 +08:00
.keys(({ editor }) => ({
'Mod-Alt-0': () => editor.paragraph(),
}))
2020-09-24 06:29:05 +08:00
.create()