HTML cleaner and beautifier
Do you have crappy HTML? I do!
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="31"><b>Currently we have these articles available:</b>
<blockquote>
<p><a href="foo.html">The History of Foo</a><br />
An <span color="red">informative</span> piece of <FONT FACE="ARIAL">information</FONT>.</p>
<p><a href="bar.html">A Horse Walked Into a Bar</a><br/> The bartender said
"Why the long face?"</p>
</blockquote>
</td>
</tr>
</table>
Just look at those blank lines and random line breaks, trailing spaces, mixed tabs, deprecated tags - it's outrageous!
Let's clean it up...
$ npm install clean-html
var cleaner = require('clean-html'),
fs = require('fs'),
file = process.argv[2];
fs.readFile(file, function (err, data) {
process.stdout.write(cleaner.clean(data) + '\n');
});
Sanity restored!
<table>
<tr>
<td>
<b>Currently we have these articles available:</b>
<blockquote>
<p>
<a href="foo.html">The History of Foo</a><br>
An <span>informative</span> piece of information.
</p>
<p>
<a href="bar.html">A Horse Walked Into a Bar</a><br>
The bartender said "Why the long face?"
</p>
</blockquote>
</td>
</tr>
</table>
Options
attr-to-remove
Attributes to remove from markup.
Type: Array
Default: ['align', 'valign', 'bgcolor', 'color', 'width', 'height', 'border', 'cellpadding', 'cellspacing']
block-tags
Block level element tags. Line breaks are added before and after, and nested content is indented. Note: this option has no effect unless pretty print is enabled.
Type: Array
Default: ['div', 'p', 'table', 'tr', 'td', 'blockquote', 'hr']
empty-tags
Empty element tags. Trailing slashes are removed.
Type: Array
Default: ['br', 'hr', 'img']
encoding
Using this option to specify the encoding of the input file will ensure its contents are properly converted to utf-8.
Type: String
Default: utf-8
pretty
Pretty prints the output by adding line breaks and indentation.
Type: Boolean
Default: true
Removes comments.
Type: Boolean
Default: false
tags-to-remove
Tags to remove from markup.
Type: Array
Default: ['font']
Adding values to option lists
These options are added for your convenience.
add-attr-to-remove
Additional attributes to remove from markup.
Type: Array
Default: null
add-block-tags
Additional block level element tags.
Type: Array
Default: null
add-empty-tags
Additional empty element tags.
Type; Array
Default: null
add-tags-to-remove
Additional tags to remove from markup.
Type; Array
Default: null