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.
> [!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.
> [!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.
> [!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.
> [!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.
> [!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
// Code blocks too!
console.log('Hello');
> [!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
- Use sparingly - Limit to one or two alerts per page to avoid overwhelming readers
- Choose the right type - Match the alert type to the importance of the message
- Keep it brief - Callouts work best with concise, actionable information
- Don't nest alerts - Alerts cannot be nested within other elements