mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-13 17:59:01 +08:00
25 lines
617 B
Markdown
25 lines
617 B
Markdown
# toggleNode
|
|
`toggleNode` will toggle a node with another node.
|
|
|
|
## Parameters
|
|
`typeOrName: string | NodeType`
|
|
|
|
The type of node that should be toggled.
|
|
|
|
`toggleTypeOrName: string | NodeType`
|
|
|
|
The type of node that should be used for the toggling.
|
|
|
|
`attributes?: Record<string, any>`
|
|
|
|
The attributes that should be applied to the node. **This is optional.**
|
|
|
|
## Usage
|
|
```js
|
|
// toggle a paragraph with a heading node
|
|
editor.commands.toggleNode('paragraph', 'heading', { level: 1 })
|
|
|
|
// toggle a paragraph with a image node
|
|
editor.commands.toggleNode('paragraph', 'image', { src: 'https://example.com/image.png' })
|
|
```
|