Callouts
Updated 7/27/2026
Callouts
Vault supports Obsidian-style callouts in blockquotes.
> [!note] Title
> Body text goes here.
Rendered example:
Title
Body text goes here.
Default callout types
These callout IDs have predefined icons and colors:
note
abstract
info
todo
tip
success
question
warning
failure
danger
bug
example
quote
Some aliases resolve to the same visual type. For example, summary and tldr resolve to abstract, while hint and important resolve to tip.
Fold markers
Vault recognizes Obsidian's fold metadata:
> [!note]+ Open by default
> This starts expanded.
> [!note]- Closed by default
> This starts collapsed.
Rendered examples:
Open by default
This starts expanded.
Closed by default
This starts collapsed.
Styling hooks
Rendered callouts expose snippet-friendly attributes:
<div class="callout" data-callout="note" data-callout-resolved="note">
The original callout ID is stored in data-callout. The resolved/default visual type is stored in data-callout-resolved.