sort_natural
sort_natural
Sorts items in an array by a property of an item in the array.
Input
{% assign my_array = "zebra, octopus, giraffe, Sally Snake" | split: ", " %} {{ my_array | sort_natural | join: ", " }}
Output
giraffe, octopus, Sally Snake, zebra
© 2005, 2006 Tobias Luetke
Licensed under the MIT License.
https://shopify.github.io/liquid/filters/sort_natural/