Lists
Two list block types — Bulleted List and Numbered List. Each block is a single list item. Multi-item lists are built by stacking consecutive list blocks of the same type.
Markdown shortcuts
| Type this | Converts to |
|---|---|
| - | Bulleted List |
| * | Bulleted List |
| 1. | Numbered List |
Bulleted List
Renders a bullet character (•) on the left followed by a Tiptap editor for the item text. Add with /list or /bullet.
Numbered List
Renders a number followed by a period on the left. The number is stored in metadata.listIndex and defaults to 1. The block editor automatically increments listIndex for consecutive numbered list blocks so items count up correctly. Add with /numbered or /ol.
Keyboard behaviour
Inline formatting
Both list types support the full inline formatting set — bold, italic, strikethrough, inline code, links, text color, and highlight. Select text to reveal the toolbar.
Publishing
Each list item renders as a <div> with a bullet or number marker on the left and the Tiptap HTML on the right. Indented items receive left padding proportional to their indent level (indent × 2rem).