1.0.0 • Published 8 years ago

posthtml-extend-attrs v1.0.0

Weekly downloads
88
License
MIT
Repository
github
Last release
8 years ago

posthtml-extend-attrs

PostHTMLExtendAttrs is plugin for PostHTML. It extend HTML attrs with new attrs and data.

Usage

var posthtml = require('posthtml'),
    html = '<div class="wow">OMG</div>';

posthtml([ require('posthtml-extend-attrs')({
    attrsTree: { '.wow' : { id: 'wow_id' }}
})])
    .process(html)
    .then(function(result) {
        console.log(result);
    });

// <div class="wow" id="wow_id">OMG</div>