On Sunday, April 5, 2020 at 8:10:27 AM UTC-7, Siniy-Kit wrote: > > I try different variants > <$list filter="[text['nsort[price]']]"> <<currentTiddler>></$list> > but > Filter error: Missing [ in filter expression >
You can't use a filter parameter value that contains any of the special characters used for defining filter syntax, such as square brackets. To work around this, you can use a variable that contains the desired parameter value. For example: \define findthis() nsort[price] <$list filter="[text<findthis>]"> <<currentTiddler>></$list> or <$vars findthis="nsort[price]"> <$list filter="[text<findthis>]"> <<currentTiddler>></$list> </$vars> enjoy, -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/84c461af-20e7-473e-bd01-ccb693723422%40googlegroups.com.

