Jekyll - Sort Tags Alphabetically

02 Jun 2017

If you’ve got a tags.html page and want the tags to be sorted, here’s the snippet you need.

{% assign sorted_tags = (site.tags | sort:0) %}
{% for tag in sorted_tags %}