Next: Menus

Markdown Extensions

Callouts

Zaui supports the recently introduced GitHub Alerts markdown extension.

Examples

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.

🚨 Custom NOTE

This does not work on GitHub.

Tip

This works too. It uses a custom Markdoc tag.

Markdown source

> [!NOTE]
> [Useful information](markdown) 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.

> [!🚨 Custom NOTE]
> This does not work on GitHub.

{% callout type="Tip" %}
This works too. It uses a custom [Markdoc tag](https://markdoc.dev/docs/tags).
{% /callout %}

embed

You can embed literal html snippets using an embed custom Markdoc tag.

Here is an example of embedding a google docs presentation.

Markdown source

{% embed %}
<iframe
  src="https://docs.google.com/presentation/d/e/2PACX-1vRC_4GpMdSfnPjbarNOsowqrRp54McTZI9CTCOUedDu05dUFGfI4Xn14_LWOzmwQ7Q9k400KCZ-Tv2A/embed?start=false&loop=false&delayms=3000"
  allowfullscreen="true"
  mozallowfullscreen="true"
  webkitallowfullscreen="true"
>
</iframe>
{% /embed %}
Terms | Privacy