tiptap/docs/api/nodes/list-item.md
2021-11-09 11:56:27 +01:00

1.5 KiB
Raw Blame History

description icon
Simply does its job. Doesnt even care if its part of a bullet list or an ordered list. asterisk

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

npm install @tiptap/extension-list-item

This extension requires the BulletList or OrderedList node.

Settings

HTMLAttributes

Custom HTML attributes that should be added to the rendered HTML tag.

ListItem.configure({
  HTMLAttributes: {
    class: 'my-custom-class',
  },
})

Keyboard shortcuts

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

Source code

packages/extension-list-item/

Usage

https://embed.tiptap.dev/preview/Nodes/ListItem