mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-25 04:19:02 +08:00
53 lines
908 B
TypeScript
53 lines
908 B
TypeScript
import { Command, createNode } from '@tiptap/core'
|
|
import { wrappingInputRule } from 'prosemirror-inputrules'
|
|
|
|
export const inputRegex = /^\s*>\s$/gm
|
|
|
|
const Blockquote = createNode({
|
|
name: 'blockquote',
|
|
|
|
content: 'block*',
|
|
|
|
group: 'block',
|
|
|
|
defining: true,
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'blockquote' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ attributes }) {
|
|
return ['blockquote', attributes, 0]
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
blockquote: (): Command => ({ commands }) => {
|
|
return commands.toggleWrap('blockquote')
|
|
},
|
|
}
|
|
},
|
|
|
|
addKeyboardShortcuts() {
|
|
return {
|
|
'Shift-Mod-9': () => this.editor.blockquote(),
|
|
}
|
|
},
|
|
|
|
addInputRules() {
|
|
return [
|
|
wrappingInputRule(inputRegex, this.type),
|
|
]
|
|
},
|
|
})
|
|
|
|
export default Blockquote
|
|
|
|
declare module '@tiptap/core/src/Editor' {
|
|
interface AllExtensions {
|
|
Blockquote: typeof Blockquote,
|
|
}
|
|
}
|