1.0.1 • Published 9 years ago

posthtml-bemjson v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

PostHTML-bemjson

npm version

PostHTML plugin to convert PostHTML tree to Bemjson tree

Usage

var posthtml = require('posthtml'),
    html = '<html><head><title>Wow</title></head><body><div class="button"><div class="button__text">Text</div></div></body></html>';

var bemjson = posthtml()
    .use(require('posthtml-bemjson'))
    .process(html, { sync: true }).tree;

Test

npm run test