Skip to content

Instantly share code, notes, and snippets.

@rafbm
Created March 1, 2013 23:03
Show Gist options
  • Save rafbm/5068652 to your computer and use it in GitHub Desktop.
Save rafbm/5068652 to your computer and use it in GitHub Desktop.
A reliable HTML minifier isn’t a thing.
<ul>
<li>Foo</li>
<li>These <b>two</b> <b>words</b> should stay separate.</li>
<li>Bar</li>
</ul>
<!-- 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