0.0.1 • Published 9 years ago
gitbook-plugin-wrapper v0.0.1
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>License
0.0.1
9 years ago