0.0.6 • Published 9 years ago

tidy-batch v0.0.6

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

#tidy-batch


###A node module to batch clean html with node htmltidy

####Install:

npm install tidy-batch

####Usage:

'use strict';
 var batch = require('tidy-batch');
 var inputDir ="./test/toclean/";
 var outputDir="./test/output/";
 
 var opts = {
    doctype: 'html5',
    hideComments: true, //  multi word options can use a hyphen or "camel case"
    indent: true,
    "word-2000":true 
};
 
var clean= new batch.clean(inputDir, outputDir, opts, function(num, bytes, array){
    console.log(num);
    console.log(bytes);
    console.log(array);
});

//You can monitor the progress with
clean.on("progress", function(num, tot, file){
	console.log(num);
	console.log(tot);
	console.log(file);
});

####Options You can pass all the options provided by htmltidy

var opts = {
    doctype: 'html5',
    hideComments: true, //  multi word options can use a hyphen or "camel case"
    indent: true,
    "word-2000":true
};
0.0.6

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago