Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/kepano/obsidian-skills/llms.txt

Use this file to discover all available pages before exploring further.

Callouts are a way to highlight important information inside a note using a visually distinct block. They use the > [!type] syntax — a blockquote prefix followed by a type name in square brackets — and Obsidian renders them with a colour-coded icon and header. Callouts are ideal for notes, warnings, tips, and any content that should stand apart from the main body of a document.

Basic Callout Syntax

A callout can appear in three forms: with the default title derived from the type, with a custom title, or with a title and no body content.
> [!note]
> This is a note callout.

> [!info] Custom Title
> This callout has a custom title.

> [!tip] Title Only

Foldable Callouts

Add - after the type to collapse a callout by default, or + to keep it expanded while still making it collapsible.
> [!faq]- Collapsed by default
> This content is hidden until expanded.

> [!faq]+ Expanded by default
> This content is visible but can be collapsed.

Nested Callouts

Callouts can be nested inside one another by adding an additional > level for each inner callout.
> [!question] Outer callout
> > [!note] Inner callout
> > Nested content

Callout Types Reference

Obsidian ships with 13 built-in callout types. Each type has a distinct colour and icon, and many accept aliases that behave identically to the primary type name.
Callout type names are case-insensitive — [!NOTE], [!Note], and [!note] all render the same way. Aliases work identically to the primary type name and can be used interchangeably.
TypeAliasesColor / Icon
noteBlue, pencil
abstractsummary, tldrTeal, clipboard
infoBlue, info
todoBlue, checkbox
tiphint, importantCyan, flame
successcheck, doneGreen, checkmark
questionhelp, faqYellow, question mark
warningcaution, attentionOrange, warning
failurefail, missingRed, X
dangererrorRed, zap
bugRed, bug
examplePurple, list
quoteciteGray, quote

Custom Callouts (CSS)

You can define custom callout types using a CSS snippet. Set the --callout-color variable as an RGB triplet and --callout-icon to any Lucide icon name.
.callout[data-callout="custom-type"] {
  --callout-color: 255, 0, 0;
  --callout-icon: lucide-alert-circle;
}
Place this CSS in a file inside your vault’s .obsidian/snippets/ folder and enable it under Settings → Appearance → CSS snippets.

Build docs developers (and LLMs) love