mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-13 17:59:01 +08:00
13 lines
330 B
Markdown
13 lines
330 B
Markdown
# splitListItem
|
|
`splitListItem` splits one list item into two separate list items. If this is a nested list, the wrapping list item should be split.
|
|
|
|
## Parameters
|
|
`typeOrName: string | NodeType`
|
|
|
|
The type of node that should be split into two separate list items.
|
|
|
|
## Usage
|
|
```js
|
|
editor.commands.splitListItem('bullet_list')
|
|
```
|