tiptap/docs/api/nodes/list-item.md
2021-10-01 22:57:27 +02:00

1.5 KiB
Raw Blame History

ListItem

Version Downloads

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.

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

Command Windows/Linux macOS
splitListItem() Enter Enter
sinkListItem() Tab Tab
liftListItem() Shift Tab Shift Tab

Source code

packages/extension-list-item/

Usage