From f500963d14c5dc3d937f6e9e3169094c95cdeeff Mon Sep 17 00:00:00 2001 From: kangax Date: Sun, 18 Aug 2013 12:00:00 +0200 Subject: [PATCH] Update README --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3bedf72..cfd9665 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,17 @@ [HTMLMinifier](http://kangax.github.com/html-minifier/) is a Javascript-based HTML minifier (duh), with lint-like capabilities. +See [corresponding blog post](http://perfectionkills.com/experimenting-with-html-minifier/) for all the gory details of [how it works](http://perfectionkills.com/experimenting-with-html-minifier/#how_it_works), [description of each option](http://perfectionkills.com/experimenting-with-html-minifier/#options), [testing results](http://perfectionkills.com/experimenting-with-html-minifier/#field_testing) and [conclusions](http://perfectionkills.com/experimenting-with-html-minifier/#cost_and_benefits). + +[Test suite is available online](http://kangax.github.com/html-minifier/tests/index.html). + Installing with [npm](https://github.com/isaacs/npm): -
-npm install html-minifier
-
+ npm install html-minifier -See [corresponding blog post](http://perfectionkills.com/experimenting-with-html-minifier/) for all the gory details of [how it works](http://perfectionkills.com/experimenting-with-html-minifier/#how_it_works), [description of each option](http://perfectionkills.com/experimenting-with-html-minifier/#options), [testing results](http://perfectionkills.com/experimenting-with-html-minifier/#field_testing) and [conclusions](http://perfectionkills.com/experimenting-with-html-minifier/#cost_and_benefits). +Building distribution: + + > cat src/htmlparser.js src/htmlminifier.js src/htmllint.js > dist/all.js + +Testing locally: -[Test suite is available online](http://kangax.github.com/html-minifier/tests/index.html). \ No newline at end of file + > npm test -- 2.34.1