jstransformer-html
v0.1.0
Published
Reformats HTML in a ways that is sensible for presentation purposes — but awful for production purposes
Downloads
50
Readme
README
Turns unformatted (and perhaps compressed HTML) into something readable. Basically just a jstransformer wrapper around html.
If you happen to be in pug:
p Some HTML snippet
pre:html <li>foo</li><li>bar</li>
Resulting in:
<p>Some HTML snippet</p>
<pre><li>foo</li>
<li>bar</li></pre>