On Thursday, July 8, 2021 at 2:36:55 AM UTC-7 [email protected] wrote: > I'm trying to figure out how it works, simplified the example, and it > doesn't do anything. Does it not fit in newer versions? > <$set name="myVar" filter='[tags[About]]'> > <$list filter='<myVar>'></$list> > </$set> >
* The *[tags[]]* filter operator doesn't accept a operand value. You want to use *[tag[About]]* to match tiddlers with the "About" tag. * When using a *variable as a parameter value* (in the $list widget), do not enclose it in quotes, and use doubled angle brackets * The $list widget needs some syntax inside it to indicate what to output Here's a corrected version of your example code: <$set name="myVar" filter="[tag[About]]"> <$list filter=<<myVar>>><$link/><br></$list> </$set> -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/bf369de0-edec-45f7-8721-355f9a820edcn%40googlegroups.com.

