I am trying to set upan index page for items that all share a common tag.The statement I am using is
Enter code here.<$list filter="[tag[Andrew C Frank]sort[title]]">* <$view field="title"/><br/></$list>..
This displays a list of tiddlers each with the tag 'Andrew C Frank' and each item has an * in front so it appears as a bulleted list.I would like each tiddler name to also have a hyperlink back to its owning tiddler but I can not fathom out how to do that.Can someone provide some clues?bobj
--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 tiddlywiki+...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/0ee3bffe-1feb-43b4-a0af-ca965a29dd78%40googlegroups.com.
I am trying to set upan index page for items that all share a common tag.
The statement I am using is
Enter code here.<$list filter="[tag[Andrew C Frank]sort[title]]">* <$view field="title"/><br/></$list>..
This displays a list of tiddlers each with the tag 'Andrew C Frank' and each item has an * in front so it appears as a bulleted list.I would like each tiddler name to also have a hyperlink back to its owning tiddler but I can not fathom out how to do that.Can someone provide some clues?bobj
However I use the list more often as I then customise further.
<$list filter="yourfilter">
</$list>
<<list-links "[tag[Andrew C Frank]sort[title]]">><<list-links "[tag[Andrew C Frank]sort[title]]" type:""ol>> BobJ
Thanks everyone. I have used <$list filter="[tag[Andrew C Frank]sort[title]]">• <$link/><br/></$list> And it does exactly what I need.