-
-
Save alexyoung/143571 to your computer and use it in GitHub Desktop.
@coolja86 - That's fantastic! I had something similar working before I upgraded to Jekyll 0.6.2, but something in one of the intervening versions messed up the site.tags
hash. Your hackish array treatment works almost perfectly.
One question… have you figured out a way to sort the tags? I used to be able to use for tags in site.tags|sort
and that was it, but it doesn't work anymore. Have you had any luck?
Thanks!
I tried a few things, but I couldn't get it to work. Any progress?
After trying to make some Liquid filters, I finally got it to work using a patch to the Jekyll core. If you add elstudio's patch (http://github.com/mojombo/jekyll/issuesearch?state=open&q=sort+#issue/58), it sorts the tags hash using RBTree (you'll have to install that gem). Your tags should be sorted without any modification to your code.
A way to do this jekyll only (without ruby), works on github, for example:
I posted to the jekyll mailing list to find out how to get the name of
category
so that I don't have to hackishly treat it as an array, but no answer yet.