Skip to content

Commit

Permalink
Version 3.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlamsl committed Feb 8, 2018
1 parent 751f04c commit a7d7839
Show file tree
Hide file tree
Showing 7 changed files with 106 additions and 44 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2010-2016 Juriy "kangax" Zaytsev
Copyright (c) 2010-2018 Juriy "kangax" Zaytsev

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
20 changes: 10 additions & 10 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/) | 46 | **43** | 46 | 48 | 46 |
| [HTMLMinifier](https://github.com/kangax/html-minifier) | 133 | **104** | 112 | 116 | 111 |
| [New York Times](https://www.nytimes.com/) | 214 | **145** | 163 | 162 | 152 |
| [BBC](https://www.bbc.co.uk/) | 237 | **194** | 229 | 235 | 222 |
| [Stack Overflow](https://stackoverflow.com/) | 248 | **195** | 204 | 212 | 201 |
| [Google](https://www.google.com/) | 46 | **43** | 46 | 47 | 46 |
| [Twitter](https://twitter.com/) | 127 | **94** | 119 | 136 | 119 |
| [HTMLMinifier](https://github.com/kangax/html-minifier) | 135 | **105** | 113 | 118 | 113 |
| [New York Times](https://www.nytimes.com/) | 232 | **161** | 181 | 178 | 166 |
| [Stack Overflow](https://stackoverflow.com/) | 250 | **196** | 205 | 214 | 203 |
| [BBC](https://www.bbc.co.uk/) | 270 | **220** | 262 | 268 | 252 |
| [Bootstrap CSS](https://getbootstrap.com/docs/3.3/css/) | 272 | **260** | 269 | 229 | 269 |
| [Twitter](https://twitter.com/) | 348 | **260** | 313 | 345 | 313 |
| [Amazon](https://www.amazon.co.uk/) | 405 | **349** | 390 | 403 | n/a |
| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States) | 471 | **440** | 456 | 471 | 455 |
| [Amazon](https://www.amazon.co.uk/) | 392 | **336** | 377 | 390 | n/a |
| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States) | 473 | **442** | 458 | 473 | 457 |
| [NBC](https://www.nbc.com/) | 646 | **613** | 642 | 646 | 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/) | 4580 | **3898** | 4333 | n/a | n/a |
| [ES6 draft](https://tc39.github.io/ecma262/) | 5720 | **5103** | 5253 | n/a | n/a |
| [ES6 table](https://kangax.github.io/compat-table/es6/) | 4579 | **3898** | 4333 | n/a | n/a |
| [ES6 draft](https://tc39.github.io/ecma262/) | 5871 | **5225** | 5382 | n/a | n/a |

## Options Quick Reference

Expand Down
114 changes: 88 additions & 26 deletions dist/htmlminifier.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 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.8)</span></h1>
<h1>HTML Minifier <span>(v3.5.9)</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.8",
"version": "3.5.9",
"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.1.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.5.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.4.1.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.5.0.js"></script>
<script src="../dist/htmlminifier.min.js"></script>
<script src="minifier.js"></script>
</body>
Expand Down

0 comments on commit a7d7839

Please sign in to comment.