Hi,
I am stuck on a basic question and would like to know your point of view.
What would be your approach to create an html table with two columns, the first to list all tiddlers labelled with “a” and the second to list all tiddlers labelled with “b”, but that each tidler only appears once and is not duplicated?
I started with this code but evidently it doesn’t work as I would like. If i have two tiddlers tagged with “a” and a tidller tagged with “b”, the tiddler tagged with “b” so appears on the first and on the second row.
<table>
<th >Tag_a</th><th >Tag_b</th>
<$list filter="[!is[system]tag[a]sort[title]]" variable="taga">
<$list filter="[!is[system]tag[b]sort[title]]" variable="tagb">
<tr>
<td><$link to=<<taga></$link></td><td><$link to=<tagb></$link></td>
</tr>
</$list>
</$list>
</table>
Any help would be appreciated, thank you !