tiptap/docs/src/docPages/api/nodes/list-item.md

32 lines
1022 B
Markdown
Raw Normal View History

2020-08-19 03:39:41 +08:00
# ListItem
2020-09-23 18:33:45 +08:00
The ListItem extension adds support for the `<li>` HTML tag. Its used for bullet lists and ordered lists and cant really be used without them.
2020-08-19 03:39:41 +08:00
2020-09-23 18:33:45 +08:00
## Installation
::: warning Use with BulletList and/or OrderedList
2020-11-06 23:06:36 +08:00
This extension requires the [`BulletList`](/api/nodes/bullet-list) or [`OrderedList`](/api/nodes/ordered-list) node.
:::
```bash
2020-10-30 21:24:16 +08:00
# with npm
npm install @tiptap/extension-list-item
2020-10-30 21:24:16 +08:00
# with Yarn
yarn add @tiptap/extension-list-item
```
2020-09-23 18:03:03 +08:00
## Settings
2020-09-10 16:21:24 +08:00
| Option | Type | Default | Description |
| ------ | ------ | ------- | -------------------------------------------- |
2020-09-23 18:33:45 +08:00
| class | string | | Add a custom class to the rendered HTML tag. |
## Keyboard shortcuts
* New list item: `Enter`
* Sink a list item: `Tab`
* Lift a list item: `Shift`&nbsp;`Tab`
2020-09-23 18:33:45 +08:00
## Source code
[packages/extension-list-item/](https://github.com/ueberdosis/tiptap-next/blob/main/packages/extension-list-item/)
## Usage
<demo name="Nodes/ListItem" highlight="3-8,20-22,41-43" />