Obsidian Callout
Used to render a nicely formatted callout; one of the additional syntax options in Obsidian Flavored Markdown.
Syntax
In a quote, add [!note]
to the first line, where note
is the type identifier. After the ]
, an optional character can be added to make the callout foldable; +
to expand the foldout by default or -
to collapse the foldout by default. Finally, optional additional text until the end of the line can be added to specify the title of the callout. 1 2 3
One-line callout example:
> [!note]
>
Note
Expanded foldout example:
> [!note]+ Expanded note
>
> This note is expanded by default
Expanded note
This note is expanded by default
Types
The following are different type identifiers you can use with callouts.
Note
> [!note] > Hello World!
Abstract
> [!abstract] > Hello World!
Aliases:
summary
,tldr
Info
> [!info] > Hello World!
Todo
> [!todo] > Hello World!
Tip
> [!tip] > Hello World!
Aliases:
hint
,important
Success
> [!success] > Hello World!
Aliases:
check
,done
Question
> [!question] > Hello World!
Aliases:
help
,faq
Warning
> [!warning] > Hello World!
Aliases:
caution
,attention
Failure
> [!failure] > Hello World!
Aliases:
fail
,missing
Danger
> [!danger] > Hello World!
Aliases:
error
Bug
> [!bug] > Hello World!
Example
> [!example] > Hello World!
Quote
> [!quote] > Hello World!
Alias:
cite