mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-20 23:08:07 +08:00
29 lines
636 B
TypeScript
29 lines
636 B
TypeScript
|
import { Node, nodeInputRule } from '@tiptap/core'
|
||
|
|
||
|
declare module '@tiptap/core/src/Editor' {
|
||
|
interface Editor {
|
||
|
horizontalRule(): Editor,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default new Node()
|
||
|
.name('horizontalRule')
|
||
|
.schema(() => ({
|
||
|
group: 'block',
|
||
|
parseDOM: [{ tag: 'hr' }],
|
||
|
toDOM: () => ['hr'],
|
||
|
}))
|
||
|
.commands(({ editor, type }) => ({
|
||
|
horizontalRule: next => () => {
|
||
|
const { state, view } = editor
|
||
|
const { dispatch } = view
|
||
|
|
||
|
dispatch(state.tr.replaceSelectionWith(type.create()))
|
||
|
next()
|
||
|
},
|
||
|
}))
|
||
|
.inputRules(({ type }) => [
|
||
|
nodeInputRule(/^(?:---|___\s|\*\*\*\s)$/, type),
|
||
|
])
|
||
|
.create()
|