Hi,
I have some tiddlers tagged with “Paiement”. Each one begins with a date (like 2024-09-20 for instance).
I want to list the ones beginning with a precise date, say 2024-09-19.
<<list-links filter:"[tag[Paiement]prefix[2024-09-19]]">>
works well
If I want to compute the date I cannot make it work
<$set name="date" value="2024-09-19">
date : <<date>>
<<<list-links filter:"[tag[Paiement]prefix<date>]">>
</$set>
How to pass the variable inside the filter ?
Thanks
FrD