mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-13 09:29:01 +08:00
1.3 KiB
1.3 KiB
ListItem
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.
Installation
# with npm
npm install @tiptap/extension-list-item
# with Yarn
yarn add @tiptap/extension-list-item
This extension requires the BulletList
or OrderedList
node.
Settings
Option | Type | Default | Description |
---|---|---|---|
HTMLAttributes | Object |
{} |
Custom HTML attributes that should be added to the rendered HTML tag. |
Keyboard shortcuts
- New list item:
Enter
- Sink a list item:
Tab
- Lift a list item:
Shift
Tab