posthtml-to-svg-tags
v0.0.0
Published
Transform HTML tags to SVG tags
Downloads
6
Readme
posthtml-to-svg-tags
PostHTMLToSvgTags is plugin for PostHTML. It convert all HTML tags to SVG equals and maybe with new structure.
Usage
var posthtml = require('posthtml'),
html = '<div class="wow">OMG</div>';
posthtml([ require('posthtml-to-svg-tags')()])
.process(html)
.then(function(result) {
console.log(result);
});
// <g id="wow">OMG</g>