+[2014-02-13T20:29:31Z]kaffeebohneHm, I guess I'm at the point where I have to use something different. :( +[2014-02-13T20:37:26Z]jayberake/make task -> 1. mv mysite/comments /tmp/comments && 2. jekyll build && 3. mv /tmp/comments ./_site/comments +[2014-02-13T20:41:09Z]kaffeebohnehm +[2014-02-13T21:55:58Z]parkrhowdy! +[2014-02-13T21:56:08Z]def_alechello
and as much as people love to hate it, I've really rather liked working with Eclipse.
+[2014-02-14T17:33:01Z]mvarrieurIs there a comparison in liquid templating that's case agnostic? +[2014-02-14T17:41:21Z]jaybemvarrieur, something such as the following would certainly accomplish it: {% capture temp %} {% my.var | downcase %} {% endcapture %} {% if temp = 'insensitive all the things' %} ... {% endif %} +[2014-02-14T17:48:39Z]mvarrieurjaybe: Thanks but I seem to be having an issue with the capture block when I try to generate I'm getting an exception. I was hoping to do something like {% if tag | downcase == page.tag %} but it doesn't work either +[2014-02-14T17:49:18Z]jaybemy bad +[2014-02-14T17:49:32Z]jaybemvarrieur, something such as the following would certainly accomplish it: {% capture temp %} {{ my.var | downcase }} {% endcapture %} {% if temp = 'insensitive all the things' %} ... {% endif %}