html2hs
v1.0.3
Published
Convert HTML to hscript
Downloads
5
Readme
html2hs
Parse HTML to hyperscript (for virtual-dom).
var html2hs = require('html2hs');
var hscript = html2hs('<h1>Hello World</h1>');
// hscript = 'h("h1", [ "Hello World" ])'
html2hs
also accept an option argument:
{
// true: pre tags will be parsed like other tags
pre: false
}