Markdown Extensions
Built-in custom markdown extensions for Jekyll Boilerplate are explained below.
HTML Division Element
There is a markdown extension that allows you to insert <div>
elements with one or more class names.
:::note
Your markdown content
:::
The output for this is:
<div class="note">
Your markdown content
</div>
And it looks like this:
Your markdown content