On Wednesday, October 8, 2014 7:33:58 PM UTC+2, PMario wrote: > > I'm not sure about your structure. > > \define newFilter() > [tag[$(listItem)$]] > \end > > <ul> > <$list filter="[tag[Completed]tags[]regexp[^\d+-\w\w\w\s\d\d:\d\d$]]" > variable="listItem"> > <$list filter=<<newFilter>> > <li><<currentTiddler>> --> <<listItem>> > </li></$list> > </$list> > </ul> > > The list may need a different wrappers, but it basically does what you > want, if I did understand your setting right. > It creates a lot of iterations over the whole tiddler set but it works. >
Shorter version no define needed: <ul> <$list filter="[tag[Completed]tags[]regexp[^\d+-\w\w\w\s\d\d:\d\d$]]" variable="listItem"> <$list filter="[tag<listItem>]" > <li><<currentTiddler>> --> <<listItem>> </li></$list> </$list> </ul> -- 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 post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

