Skip to content

Instantly share code, notes, and snippets.

View michelarteta's full-sized avatar
:octocat:

Michel Arteta michelarteta

:octocat:
View GitHub Profile
@michelarteta
michelarteta / compress.liquid
Created March 30, 2020 23:18 — forked from JimmyRittenborg/compress.liquid
HTML Compressor in Shopify Liquid
{% comment %}
Input
{% endcomment %}{% capture _content %}{{ content }}{% endcapture %}{% comment %}
Remove redundant closing tags
{% endcomment %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% for _element in _endings %}
{% capture _end %}</{{ _element }}>{% endcapture %}