uniq v1.9.1 Removes any duplicate elements in an array. Input {% assign my_array = "ants, bugs, bees, bugs, ants" | split: ", " %} {{ my_array | uniq | join: ", " }} Output ants, bugs, bees