Created
July 9, 2009 11:02
-
-
Save alexyoung/143571 to your computer and use it in GitHub Desktop.
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.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@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!