tiptap/docs/api/commands/toggle-node.md
2023-05-11 11:56:36 -06:00

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' })
```