1.0.3 • Published 9 years ago
hexo-tag-htmltag v1.0.3
hexo-tag-htmltag
A Hexo tag for inserting arbitrary html tags (with attributes) into posts.
Installation
npm install hexo-tag-htmltag --save
Use
Basic
{% htmlTag span class="highlight text" %} Something important {% endhtmlTag %}
// -> <span class="highlight text">Something important</span>
Multiple Attributes
{% htmlTag button type="button" data-submit data-action="add" aria-controls="calc"%} Add 10 {% endhtmlTag %}
// -> <button type="button" data-submit data-action="add" aria-controls="calc">Add 10</button>
License
MIT