Skip to content

Powered by Grav

Callouts

Callouts

Callouts (also known as alerts or admonitions) help highlight important information in your documentation. Helios uses GitHub-flavored markdown alert syntax for callouts.

Available Types

Five callout types are available, each with a distinct color and icon.

Note

Use notes for general information that readers should be aware of:

Note

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

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

Tip

Tips share best practices or helpful suggestions:

Tip

Helpful advice for doing things better or more easily.

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

Important

Important callouts highlight key information users need:

Important

Key information users need to know to achieve their goal.

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

Warning

Warnings alert readers to potential issues or caveats:

Warning

Urgent info that needs immediate user attention to avoid problems.

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

Caution

Caution callouts advise about risks or negative outcomes:

Caution

Advises about risks or negative outcomes of certain actions.

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

Markdown Support

Callouts support full markdown inside, including formatting, lists, and code:

Tip

You can use bold, italic, and inline code in callouts.

  • Bullet points work
  • Multiple items supported
JAVASCRIPT
// Code blocks too!
console.log('Hello');
MARKDOWN
> [!TIP]
> You can use **bold**, *italic*, and `inline code` in callouts.
>
> - Bullet points work
> - Multiple items supported
>
> ```javascript
> // Code blocks too!
> console.log('Hello');
> ```

Best Practices

  1. Use sparingly - Limit to one or two alerts per page to avoid overwhelming readers
  2. Choose the right type - Match the alert type to the importance of the message
  3. Keep it brief - Callouts work best with concise, actionable information
  4. Don't nest alerts - Alerts cannot be nested within other elements

© 2025 Grav. All rights reserved.