grafana / killercoda

This repository holds tutorials designed and hosted on Killercoda and interactive education platform.
https://killercoda.com/
Apache License 2.0
2 stars 4 forks source link

Add support for admonition shortcode #32

Open jdbaldry opened 1 week ago

jdbaldry commented 1 week ago

For example:

{{< admonition type="note" >}}
This is a note
{{< /admonition >}}

should produce:

> **Note**:
> This is a note

which renders as:

Note: This is a note

It will also need to support percent syntax which is common still:

{{% admonition type="note" %}}
This is a note
{{% /admonition %}}