tiptap/docs/api/commands/toggle-wrap.md

18 lines
440 B
Markdown
Raw Normal View History

2021-04-21 17:03:33 +08:00
# toggleWrap
`toggleWrap` wraps the current node with a new node or removes a wrapping node.
2021-04-21 17:03:33 +08:00
## Parameters
`typeOrName: string | NodeType`
The type of node that should be used for the wrapping node.
`attributes?: Record<string, any>`
The attributes that should be applied to the node. **This is optional.**
## Usage
```js
// toggle wrap the current selection with a heading node
editor.commands.toggleWrap('heading', { level: 1 })
```