There are some tiddlers whose ‘due’ field is set to ‘[2021-09-02 Thu]’.
I wanted to use a filter to select these using now
macro.
So, I tried:
<$list filter="[due[<<now "YYYY-0MM-0DD ddd">>]]">
<$link />
</$list>
and this:
<$vars todd="[<<now "YYYY-0MM-0DD ddd">>]">
<$list filter="[due<todd>]">
<$link /><br><br>
</$list>
</$vars>
None work. I think I am not getting the syntax correct. But I am unable to pinpoint the error.
How do I get this working?