npm install html2hs 
Parse HTML to hyperscript (for virtual-dom).
`` js
var html2hs = require('html2hs');
var hscript = html2hs('
// hscript = 'h("h1", [ "Hello World" ])'
`
html2hs also accept an option argument:
`js``
{
// true: pre tags will be parsed like other tags
pre: false
}