Skip to content

Instantly share code, notes, and snippets.

@gchristofferson
Forked from sskylar/minify-liquid.html
Created December 26, 2017 20:43
Show Gist options
  • Save gchristofferson/26bda8f6b4b252a8d865732733f7112c to your computer and use it in GitHub Desktop.
Save gchristofferson/26bda8f6b4b252a8d865732733f7112c to your computer and use it in GitHub Desktop.
Simple HTML minify with Liquid/Siteleaf. Strips all line breaks, tabs, and extra spaces.
{% capture html %}
<html>
...
</html>
{% endcapture %}{{ html | strip_newlines | replace:' ','' | replace:' ','' | replace:' ',' ' }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment