0.0.1 • Published 7 years ago

gitbook-plugin-wrapper v0.0.1

Weekly downloads
152
License
MIT
Repository
github
Last release
7 years ago

gitbook-plugin-wrapper

Block plugin which wraps content with a specific tag.

npm travis standard

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

MIT