Skip to content

Quote

Emphasize a statement or citation. Styled distinct from a paragraph. Supports inline rich text (see Rich Text) and nested child blocks with indentation.

Syntax

Basic Quote

> Simplicity is the soul of efficiency.

Multi-line Quote

> First line of quote
> Second line of quote
> Third line of quote

Quote with Nested Children

> Main quote text
    - Nested list item
    Additional nested content

Examples

Basic Quotes

> The best time to plant a tree was 20 years ago. The second best time is now.
> Code is like humor. When you have to explain it, it's bad. - Cory House
> Follow the **data**, not assumptions.

Quote with Nested Content

> Important principle
    - Point one
    - Point two
    See documentation for details

Builder

from notionary.markdown import MarkdownBuilder

markdown = (MarkdownBuilder()
  .h2("Principles")
  .quote("Clean code looks like it was written by someone who cares.")
  .paragraph("Guiding standard.")
  .quote("Simple is better than complex.")
  .build())

Reference

Notion API Reference

For the official Notion API reference on quote blocks, see https://developers.notion.com/reference/block#quote