hyperpug
v1.5.3
Published
Pug for browser, based on Hyperscript
Downloads
15
Readme
HyperPug
Lighter Pug for browser/Electron. With Pug filters' support.
Usage
import HyperPug from 'hyperpug'
const hp = new HyperPug()
console.log(hp.parse(HYPERPUG_STRING))
Usage with filters
Filters are normalized for Markdown and other indented languages are well.
import HyperPug from 'hyperpug'
const hp = new HyperPug({
markdown: (s) => {
return markdownMaker(s)
}
})
console.log(hp.parse(HYPERPUG_STRING))
Usage on the browser
<div id="hyperpug"></div>
<script src="https://unpkg.com/hyperpug"></script>
<script>
const hp = new HyperPug({
markdown: (s) => {
return markdownMaker(s)
}
})
document.getElementById("hyperpug").innerHTML = hp.parse(`
style.
.red {
color: red;
}
section {
margin-bottom: 1rem;
}
section(class="x")
div hello
blockquote
.red goodbye
:markdown
# This is some heading
br
small Yes, this is a good idea.
`)
</script>