Hi!
I want to display a list of tiddlers with a specific tags. Each item/tiddler should be displayed with a list of clickable tags (its tags formatted as hyperlinks). How do I have to modify the following code (which displays the tags as plain text) in order to achieve this?
<$list filter="[!tag[hidden]tag[contact]sort[]]">
* <$link to={{!!title}}><$view field="title"/></$link> <$view field="tags"/>
</$list>
Regards,
Tom
<$list filter="[!tag[hidden]tag[contact]sort[]]">
* <$link to={{!!title}}><$view field="title"/></$link> <$view field="tags"/>
</$list>
Here's what I have:<ul><$list filter="[!tag[hidden]tag[Contacts]sort[]]">
<li> <$link to={{!!title}}><$view field="title"/></$link> :
<$list filter="[all[current]tags[]]"><$link to={{!!title}}> <$view field="title"/></$link></$list>
</li></$list>
</ul>