Skip to content

Creating Note, Tip, and Warning boxes

Johnathan Ortiz-Sonnen edited this page Jun 5, 2019 · 1 revision

You can use shortcodes within Markdown source files to create styled boxes for Note, Tip, and Warning content types.

To create a Warning box, use:

{{box op="start" cssClass="boxed warningBox"}}
**Warning!**

This is an important warning.
{{box op="end"}}

To create a Note box, use:

{{box op="start" cssClass="boxed noteBox"}}
**Note!**

This is something important to keep in mind.
{{box op="end"}}

To create a Tip box, use:

{{box op="start" cssClass="boxed tipBox"}}
**Tip!**

This is something that may help you be successful.
{{box op="end"}}

Clone this wiki locally