Skip to content

Instantly share code, notes, and snippets.

@pressymanoj
pressymanoj / duplicates.html
Last active August 29, 2015 14:26 — forked from pepelsbey/duplicates.html
Removing duplicates from Liquid array
{% assign array = 'c|c|b|b|a|a' | split: '|' %}
{% assign tags = array[1] %}
{% for item in array %}
{% unless tags contains item %}
{% capture tags %}{{ tags }}|{{ item }}{% endcapture %}
{% endunless %}
{% endfor %}
{{ tags | split: '|' | sort | join: ', ' }}