Skip to content

Instantly share code, notes, and snippets.

@mape
Created July 9, 2010 00:07
Show Gist options
  • Save mape/468831 to your computer and use it in GitHub Desktop.
Save mape/468831 to your computer and use it in GitHub Desktop.
exports.minify = function(html)
{
return html.replace(/>(\n| | )*</g,'><').replace(/[a-z-]+=""/g,'').replace(/"([^ ]*)"/g, '$1').replace(/<\/li>/,'');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment