Created
March 1, 2013 23:03
-
-
Save rafbm/5068652 to your computer and use it in GitHub Desktop.
A reliable HTML minifier isn’t a thing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li>Foo</li> | |
<li>These <b>two</b> <b>words</b> should stay separate.</li> | |
<li>Bar</li> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- http://www.willpeavy.com/minifier/ --> | |
<ul><li>Foo</li><li>These <b>two</b><b>words</b> should stay separate.</li><li>Bar</li></ul> | |
<!-- http://kangax.github.com/html-minifier/ --> | |
<ul><li>Foo</li><li>These<b>two</b><b>words</b>should stay separate.</li><li>Bar</li></ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment