Skip to content

Callouts and toggles

Callout blocks provide highlighted admonitions compatible with Obsidian syntax:

> [!info] Title
> Content goes here.

Supported types: info, tip, warning, danger, note, abstract, todo, success, question, failure, example, quote

Each type has a distinct color and icon. Add a - after the type to make it collapsible:

> [!warning]- Click to expand
> This content is hidden by default.

Create a callout via the slash command /callout or by typing > [! at the start of a line.

Toggle blocks create collapsible sections using HTML <details> syntax:

<details>
<summary>Click to expand</summary>
Hidden content here. Supports any block type — paragraphs, lists, code blocks, etc.
</details>

Features:

  • Collapse/expand — Click the triangle indicator or press Cmd+Enter
  • Toggle Heading — Use a heading as the summary for collapsible heading sections:
    <details>
    <summary>## Section Title</summary>
    Section content that can be collapsed.
    </details>
  • Nested toggles — Place toggles inside toggles for hierarchical collapsible content
  • Create via slash commands: /toggle, /toggle heading 1, /toggle heading 2, /toggle heading 3