AzerothCore
Pages :

Wiki Alerts and Callouts

Alerts

Alerts can be added as following.

{% include note.html content="Add content between quotes" %}
{% include tip.html content="Add content between quotes" %}
{% include important.html content="Add content between quotes" %}
{% include warning.html content="Add content between quotes" %}

If you need multiple paragraphs, enter <br/>.

The include uses markdown="span" as an attribute, which means GFM will process the entire content as a span. You can鈥檛 use block elements such as p or div or pre. If you need these elements, you can either manually surround the content with the HTML from the include, or you can use these tags:

{{site.data.alerts.note}}
<p>Content</p>
<a href="http://azerothcore.org">Webpage</a>
{{site.data.alerts.end}}

Callouts

{% include callout.html content="Add content between quotes" type="primary" %}
Add content between quotes

The type can be one of the following

Type
danger
default
primary
success
info
warning
This is a danger callout.
This is a default callout.
This is a primary callout.
This is a success callout.
This is a info callout.
This is a warning callout.