Thank you Tim.
For those of you keeping track at home and having a similar issue as
mine, an important elements to get it to work that I missed at first:
The format is: {{ '3/2/2012' | Date:"%B" }} and not {{ '3/2/2012'
| date:"%B" }} (need an upper case D for Date)
On Feb 7, 10:36 pm, Tim Jones <
t...@timjones.tw> wrote:
> Hi Gregory,
>
> I see the problem now. DotLiquid supports two styles of date format strings
> - .NET, and Ruby. You can toggle between the two using
>
> Liquid.UseRubyDateFormat = [true/false];
>
> You're using a Ruby date format string, but presumably UseRubyDateFormat is
> set to false.
>
> I've made a note of this on the wiki page<
https://github.com/formosatek/dotliquid/wiki/DotLiquid-for-Designers>,