tiptap/docs/api/commands/toggle-node.md
2022-06-08 12:41:14 +02:00

25 lines
610 B
Markdown

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