Skip to content
All referenceBlock Elements

Markdown Alert / Callout

How to create colored alert callout boxes in markdown using GitHub Alerts and Obsidian callout syntax. Note, warning, tip, and important.

What is markdown alert / callout?

Alerts (also called callouts or admonitions) are styled blockquotes that highlight important information with color and an icon. GitHub introduced a > [!NOTE] syntax in 2023. Obsidian uses > [!tip] syntax. Both extend standard blockquote syntax with a type keyword on the first line.

Syntax

GitHub Note

Renders with a blue ℹ️ icon on GitHub.

Result
...

GitHub Warning

Renders with an orange ⚠️ icon on GitHub.

Result
...

GitHub types

GitHub supports five alert types: NOTE (blue), TIP (green), IMPORTANT (purple), WARNING (orange), CAUTION (red).

Result
5 alert types with distinct colors

Obsidian callout

Obsidian syntax allows a custom title after the type.

Result
...

Platform support

PlatformSupportedNotes
GitHubYesFive types: NOTE, TIP, IMPORTANT, WARNING, CAUTION
GitLabNoRenders as plain blockquote
ObsidianYesRich callout system with many types
DiscordNo
NotionNo
SlackNo

Common mistakes

Wrong
> NOTE: text
Right
> [!NOTE]
> text

The [!TYPE] keyword must be on its own line immediately after the > — plain text won't render as an alert.

Tips for alert / callout

1Use [!IMPORTANT] sparingly

If everything is important, nothing is. Reserve IMPORTANT and WARNING alerts for genuinely critical information — overuse makes readers ignore them.

2Fallback gracefully

On platforms without alert support, the > [!NOTE] renders as a plain blockquote — content is still visible, just without the colored styling.

Frequently asked questions

Everything you need to know.

1

How do I create a note box in markdown?

On GitHub, use: > [!NOTE]\n> Your note text. This renders as a blue highlighted callout. On Obsidian, use > [!note] with an optional title.

Related elements

Try it in the editor

Paste your markdown and see alert / callout rendered instantly with professional themes.