Core Plugins

Alerts

Built-in plugin that transforms GitHub-style blockquote alerts into styled callout blocks with icons and colors.

The alerts plugin transforms GitHub-flavored alert blockquotes (e.g. [!NOTE], [!TIP]) into styled callout blocks with icons and colors — identical to how GitHub renders them in READMEs and issues.

The plugin is built-in and enabled by default. No installation or manual registration is required.

Syntax

Alerts use standard blockquote syntax with a special marker on the first line:

> [!NOTE]
> Useful information that users should know, even when skimming content.

> [!TIP]
> Helpful advice for doing things better or more easily.

> [!IMPORTANT]
> Key information users need to know to achieve their goal.

> [!WARNING]
> Urgent info that needs immediate user attention to avoid problems.

> [!CAUTION]
> Advises about risks or negative outcomes of certain actions.

Renders as:

Useful information that users should know, even when skimming content.

Helpful advice for doing things better or more easily.

Key information users need to know to achieve their goal.

Urgent info that needs immediate user attention to avoid problems.

Advises about risks or negative outcomes of certain actions.

Alert Types

MarkerColorUse for
[!NOTE]BlueSupplementary information
[!TIP]GreenHelpful hints and best practices
[!IMPORTANT]PurpleCritical information for success
[!WARNING]YellowPotential issues and gotchas
[!CAUTION]RedDangerous actions or destructive operations

Multi-line Content

Alerts can span multiple lines and contain inline markdown:

> [!WARNING]
> **Breaking change** in v2.0: the `parse()` function is now async.
> Update all call sites to use `await parse(...)`.

Nuxt UI Integration

When using the Nuxt module alongside @nuxt/ui, alert blocks are automatically mapped to Nuxt UI's <Note>, <Warning>, <Caution> and <Tip> components — no extra configuration needed.

See Also

Copyright © 2026