Files
tiptap/packages/extension-paragraph/src/paragraph.ts
Philipp Kühn 9afadeb7fe feat!: Replace defaultOptions with addOptions (#2088)
* add new addOptions option

* replace defaultOptions with addOptions for all extensions

* replace defaultOptions with addOptions for all demos

* replace defaultOptions with addOptions in docs

* refactoring

* refactoring

* drop object support for addOptions

* fix optional options

* fix tests
2021-10-26 18:31:13 +02:00

57 lines
966 B
TypeScript

import { Node, mergeAttributes } from '@tiptap/core'
export interface ParagraphOptions {
HTMLAttributes: Record<string, any>,
}
declare module '@tiptap/core' {
interface Commands<ReturnType> {
paragraph: {
/**
* Toggle a paragraph
*/
setParagraph: () => ReturnType,
}
}
}
export const Paragraph = Node.create<ParagraphOptions>({
name: 'paragraph',
priority: 1000,
addOptions() {
return {
HTMLAttributes: {},
}
},
group: 'block',
content: 'inline*',
parseHTML() {
return [
{ tag: 'p' },
]
},
renderHTML({ HTMLAttributes }) {
return ['p', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
},
addCommands() {
return {
setParagraph: () => ({ commands }) => {
return commands.setNode('paragraph')
},
}
},
addKeyboardShortcuts() {
return {
'Mod-Alt-0': () => this.editor.commands.setParagraph(),
}
},
})