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 !

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4274b51f-8be1-4119-953a-7b787724c2f4n%40googlegroups.com.

Reply via email to