Hello,
I've just started paying with tiddlywiki to setup my personal organizer from scratch. I don't want go get some of existing tw assemblies like
Now I'm trying to setup a todo list in which every [task] tiddler is shown together with its tags. Currently I have this:
<$list filter="[!is[system]tag[task]!tag[done]sort[created]]">
<$checkbox tag="done"> <$link to={{!!title}}><$view field="title"/></$link></$checkbox> {{!!tags}}
</$list>
The problem is {{!!tags}} just gives me a text containing tag titles divided with commas, but I need to get a list to be able to filter it and apply some style or maybe include a link to it.
So basically I need a nested <$list> construction for each tiddler tags. But how can I reference list of tags for a current tiddler item in a list?