Skip to content

Bulleted List

Unordered list with bullet points. Each item supports inline rich text (see Rich Text).

Syntax

- First item
- Second item
- Third item

Alternative markers: * or + instead of -.

Examples

- Real-time collaboration
- Advanced analytics
- 24/7 support

With rich text:

- **Bold** important item
- Visit [docs](https://example.com)
- Ask @user[Jane] for details

Nested and mixed lists (using indentation):

- Features
  1. Real-time collaboration
  2. Advanced analytics
  3. Custom integrations
- Roadmap
  - Q1: Stabilization
  - Q2: Performance
    1. Cache layer
    2. Query planner

Builder

from notionary.markdown import MarkdownBuilder

markdown = (MarkdownBuilder()
  .h2("Features")
  .bulleted_list([
    "Real-time collaboration",
    "Advanced analytics",
    "Custom integrations"
  ])
  .build())

Reference

Notion API Reference

For the official Notion API reference on bulleted-list blocks, see https://developers.notion.com/reference/block#bulleted-list-item