tiptap/packages/extension-paragraph/index.ts

60 lines
1.2 KiB
TypeScript
Raw Normal View History

2020-10-12 16:32:54 +08:00
import { Command, Node, INode } from '@tiptap/core'
import { DOMOutputSpecArray } from 'prosemirror-model'
2020-04-27 15:06:42 +08:00
// import ParagraphComponent from './paragraph.vue'
2020-03-06 03:30:58 +08:00
2020-10-10 04:59:25 +08:00
// export type ParagraphCommand = () => Command
2020-09-25 01:07:47 +08:00
2020-10-10 04:59:25 +08:00
// declare module '@tiptap/core/src/Editor' {
// interface Commands {
// paragraph: ParagraphCommand,
// }
// }
// export default new Node()
// .name('paragraph')
// .schema(() => ({
// content: 'inline*',
// group: 'block',
// parseDOM: [{ tag: 'p' }],
// toDOM: () => ['p', 0],
// // toVue: ParagraphComponent,
// }))
// .commands(({ name }) => ({
// [name]: () => ({ commands }) => {
// return commands.toggleBlockType(name, 'paragraph')
// },
// }))
// .keys(({ editor }) => ({
// 'Mod-Alt-0': () => editor.paragraph(),
// }))
// .create()
2020-10-12 16:32:54 +08:00
export default class Paragraph extends Node implements INode {
2020-10-10 04:59:25 +08:00
name = 'paragraph'
group = 'block'
content = 'inline*'
2020-10-12 16:32:54 +08:00
createAttributes() {
return {
// default rendering
class: {
default: 'jooo',
},
}
}
2020-10-10 04:59:25 +08:00
parseHTML() {
return [
{ tag: 'p' },
]
2020-09-25 01:07:47 +08:00
}
2020-10-10 04:59:25 +08:00
renderHTML() {
2020-10-12 16:32:54 +08:00
return ['p', 0] as const
2020-10-10 04:59:25 +08:00
}
}