<$list filter="[is[current]tagging[]sort[listing]]">
<$link><$view field="title"/></$link>
<$list filter="[is[current]tagging[]sort[listing]]">
<<list-links [is[current]tags[]]>>
<<list-links [is[current]tags[]tags[]]>>
<<list-links [is[current]tags[]][is[current]tags[]tags[]]>>
<table ><tr ><td style="width:35%";><$scrollable class='tc-scrollable-demo'><$list filter = "[is[current]tagging[]]"><span class="textbox2">
<$link><$view field="title"/></$link>
<div style="max-height:5px; overflow: hidden;"> <br> <$transclude/> </div> </span></$list></$scrollable></td><td>{{!!text}}</td> </tr> </table>
Hi Shash,
This...
<$list filter="[is[current]tagging[]sort[listing]]">...does not give you a tiddler's tags, but this does:
<<list-links [is[current]tags[]]>>
...and then this gets you the tag parents of the first level parent tags:
<<list-links [is[current]tags[]tags[]]>>
...and if you want both, first level and second level parent tags in one list, you'd be doing:
<<list-links [is[current]tags[]][is[current]tags[]tags[]]>>
Eventually, if you also wanted to go down the tagging tree,
to "child tiddlers" tagging to the current one,
you'd be replacing the tags[] filter operator with
Best wishes,— tb
I have it as a viewtemplate.