+[11 years ago]kaffeebohneHm, I guess I'm at the point where I have to use something different. :( +[11 years ago]jayberake/make task -> 1. mv mysite/comments /tmp/comments && 2. jekyll build && 3. mv /tmp/comments ./_site/comments +[11 years ago]kaffeebohnehm +[11 years ago]parkrhowdy! +[11 years ago]def_alechello
+[11 years ago]mvarrieurIs there a comparison in liquid templating that's case agnostic? +[11 years ago]jaybemvarrieur, something such as the following would certainly accomplish it: {% capture temp %} {% my.var | downcase %} {% endcapture %} {% if temp = 'insensitive all the things' %} ... {% endif %} +[11 years ago]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 +[11 years ago]jaybemy bad +[11 years ago]jaybemvarrieur, something such as the following would certainly accomplish it: {% capture temp %} {{ my.var | downcase }} {% endcapture %} {% if temp = 'insensitive all the things' %} ... {% endif %}