gitbook-plugin-wrapper
v0.0.1
Published
Block plugin which wraps content with a specific tag
Downloads
39
Readme
gitbook-plugin-wrapper
Block plugin which wraps content with a specific tag.
Install
Add the below to your book.json
file, then run gitbook install
:
{
"plugins": ["wrapper"]
}
Usage
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>