Pug for browser, based on Hyperscript
npm install hyperpug 
Lighter Pug for browser/Electron. With Pug filters' support.
``typescript
import HyperPug from 'hyperpug'
const hp = new HyperPug()
console.log(hp.parse(HYPERPUG_STRING))
`
Filters are normalized for Markdown and other indented languages are well.
`typescript
import HyperPug from 'hyperpug'
const hp = new HyperPug({
markdown: (s) => {
return markdownMaker(s)
}
})
console.log(hp.parse(HYPERPUG_STRING))
`
`html``