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. It’ s used for bullet lists and ordered lists and can’ t really be used without them.
2020-08-19 03:39:41 +08:00
2020-09-23 18:33:45 +08:00
## Installation
2020-08-19 03:39:41 +08:00
::: warning Restrictions
2020-11-02 22:54:15 +08:00
This extension is intended to be used with the [`BulletList` ](/api/extensions/bullet-list ) or [`OrderedList` ](/api/extensions/ordered-list ) extension. It doesn’ t work without at least using one of them.
2020-09-09 22:15:22 +08:00
:::
2020-09-23 15:52:04 +08:00
```bash
2020-10-30 21:24:16 +08:00
# with npm
2020-09-23 15:52:04 +08:00
npm install @tiptap/extension -list-item
2020-10-30 21:24:16 +08:00
# with Yarn
2020-09-23 15:52:04 +08:00
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. |
## Commands
*None*
## Keyboard shortcuts
* New list item: `Enter`
* Sink a list item: `Tab`
2020-09-27 17:01:25 +08:00
* Lift a list item: `Shift` `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
2020-09-24 23:27:26 +08:00
< demo name = "Extensions/ListItem" highlight = "3-8,20-22,41-43" / >