GREGG-CHRISTOFFERSON
12/26/2017 - 8:43 PM

Simple HTML minify with Liquid/Siteleaf. Strips all line breaks, tabs, and extra spaces.

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:'  ',' ' }}