Skip to content

Commit

Permalink
Version 3.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl committed Nov 25, 2017
1 parent 6ce70c2 commit 357142e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 22 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ How does HTMLMinifier compare to other solutions — [HTML Minifier from Will Pe

| Site | Original size *(KB)* | HTMLMinifier | minimize | Will Peavy | htmlcompressor.com |
| ---------------------------------------------------------------------------- |:--------------------:| ------------:| --------:| ----------:| ------------------:|
| [Google](https://www.google.com/) | 45 | **42** | 45 | 47 | 45 |
| [HTMLMinifier](https://github.com/kangax/html-minifier) | 133 | **104** | 112 | 116 | 112 |
| [Amazon](https://www.amazon.co.uk/) | 212 | **179** | 204 | 208 | n/a |
| [New York Times](https://www.nytimes.com/) | 231 | **157** | 180 | 176 | 165 |
| [Stack Overflow](https://stackoverflow.com/) | 244 | **191** | 200 | 208 | 198 |
| [Google](https://www.google.com/) | 46 | **43** | 46 | 48 | 46 |
| [HTMLMinifier](https://github.com/kangax/html-minifier) | 134 | **104** | 112 | 117 | 112 |
| [New York Times](https://www.nytimes.com/) | 209 | **140** | 159 | 158 | 147 |
| [Stack Overflow](https://stackoverflow.com/) | 252 | **197** | 207 | 215 | 204 |
| [BBC](https://www.bbc.co.uk/) | 260 | **213** | 252 | 259 | 245 |
| [Bootstrap CSS](https://getbootstrap.com/docs/3.3/css/) | 272 | **260** | 269 | 229 | 269 |
| [BBC](https://www.bbc.co.uk/) | 274 | **225** | 266 | 273 | 258 |
| [Twitter](https://twitter.com/) | 319 | **237** | 283 | 311 | 283 |
| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States) | 466 | **435** | 451 | 466 | 450 |
| [NBC](https://www.nbc.com/) | 624 | **593** | 620 | 623 | n/a |
| [Twitter](https://twitter.com/) | 333 | **248** | 297 | 326 | 297 |
| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States) | 466 | **435** | 451 | 465 | 450 |
| [Amazon](https://www.amazon.co.uk/) | 476 | **409** | 462 | 466 | n/a |
| [NBC](https://www.nbc.com/) | 625 | **595** | 622 | 625 | n/a |
| [Eloquent Javascript](https://eloquentjavascript.net/1st_edition/print.html) | 870 | **815** | 840 | 864 | n/a |
| [ES6 table](https://kangax.github.io/compat-table/es6/) | 4083 | **3463** | 3861 | n/a | n/a |
| [ES6 draft](https://tc39.github.io/ecma262/) | 5700 | **5086** | 5235 | n/a | n/a |
| [ES6 table](https://kangax.github.io/compat-table/es6/) | 4174 | **3538** | 3944 | n/a | n/a |
| [ES6 draft](https://tc39.github.io/ecma262/) | 5717 | **5101** | 5250 | n/a | n/a |

## Options Quick Reference

Expand Down
14 changes: 9 additions & 5 deletions dist/htmlminifier.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/htmlminifier.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<div id="outer-wrapper">
<div id="wrapper">
<h1>HTML Minifier <span>(v3.5.6)</span></h1>
<h1>HTML Minifier <span>(v3.5.7)</span></h1>
<textarea rows="8" cols="40" id="input"></textarea>
<div class="minify-button">
<button type="button" id="minify-btn">Minify</button>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "html-minifier",
"description": "Highly configurable, well-tested, JavaScript-based HTML minifier.",
"version": "3.5.6",
"version": "3.5.7",
"keywords": [
"cli",
"compress",
Expand Down
4 changes: 2 additions & 2 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<head>
<meta charset="utf-8">
<title>HTML Minifier Tests</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.4.0.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.4.1.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.4.0.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.4.1.js"></script>
<script src="../dist/htmlminifier.js"></script>
<script src="minifier.js"></script>
</body>
Expand Down

0 comments on commit 357142e

Please sign in to comment.