Block plugin which wraps content with a specific tag.
Add the below to your book.json
file, then run gitbook install
:
{
"plugins": ["wrapper"]
}
You can now provide wraps in various ways using the wrap
tag.
{% wrap element='div' className='container' %}
This text will be wrapped with div
{% endwrap %}
The above example will produce this html markdown:
<div class="container">
<p>This text will be wrapped with div</p>
</div>