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

29 lines
670 B
Markdown
Raw Normal View History

2021-04-21 17:03:33 +08:00
# toggleList
`toggleList` will toggle between different types of lists.
2021-04-21 17:03:33 +08:00
## Parameters
`listTypeOrName: string | NodeType`
The type of node that should be used for the wrapping list
`itemTypeOrName: string | NodeType`
The type of node that should be used for the list items
`keepMarks?: boolean`
If marks should be kept as list items or not
`attributes?: Record<string, any>`
The attributes that should be applied to the list. **This is optional.**
## Usage
```js
// toggle a bullet list with list items
editor.commands.toggleList('bullet_list', 'list_item')
// toggle a numbered list with list items
editor.commands.toggleList('ordered_list', 'list_item')
```