Can’t seem to get the interpolation syntax into my head…
Here - <<currentTiddler>>
<<list-links filter:"[tag[<currentTiddler>]]">>
I am looking for a <<list-links for all Tidders tagged with the current title. I’ve tried various magic combos of < << {{{
amreus
2
When using a variable in a filter, use <> in place of []
<<list-links filter:"[tag<currentTiddler>]">>
Or use {} when using a field:
<<list-links filter:"[tag{!!title}]">>
These type of things are honestly still my most frequent error when something isn’t working. Some of it is explained here