From 39d090a79af20c59aa133ddc8eff7258cdd05e47 Mon Sep 17 00:00:00 2001 From: Ryc O'Chet Date: Tue, 5 Jan 2016 09:19:18 +0000 Subject: [PATCH] Add collapseInlineTagWhitespace to README.md Despite GitHub making this a larger diff, only a single line has been added and none changed. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a936b12..ad0b2b7 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ How does HTMLMinifier compare to other solutions — [HTML Minifier from Will Pe | `removeCDATASectionsFromCDATA` | [Remove CDATA sections from script and style elements](http://perfectionkills.com/experimenting-with-html-minifier/#remove_cdata_sections) | `false` | | `collapseWhitespace` | [Collapse white space that contributes to text nodes in a document tree.](http://perfectionkills.com/experimenting-with-html-minifier/#collapse_whitespace) | `false` | | `conservativeCollapse` | Always collapse to 1 space (never remove it entirely). Must be used in conjunction with `collapseWhitespace=true` | `false` | +| `collapseInlineTagWhitespace` | Don't leave any spaces between `display:inline;` elements when collapsing. Must be used in conjunction with `collapseWhitespace=true` | `false` | | `preserveLineBreaks` | Always collapse to 1 line break (never remove it entirely) when whitespace between tags include a line break. Must be used in conjunction with `collapseWhitespace=true` | `false` | | `collapseBooleanAttributes` | [Omit attribute values from boolean attributes](http://perfectionkills.com/experimenting-with-html-minifier/#collapse_boolean_attributes) | `false` | | `removeAttributeQuotes` | [Remove quotes around attributes when possible.](http://perfectionkills.com/experimenting-with-html-minifier/#remove_attribute_quotes) | `false` | -- 2.34.1