mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-13 09:29:01 +08:00
556 B
556 B
splitBlock
splitBlock
will split the current node into two nodes at the current NodeSelection. If the current selection is not splittable, the command will be ignored.
Parameters
options: Record<string, any>
keepMarks: boolean
- Defines if the marks should be kept or removed. Defaults totrue
.
Usage
// split the current node and keep marks
editor.commands.splitBlock()
// split the current node and don't keep marks
editor.commands.splitBlock({ keepMarks: false })