Why a table?
I would like column A to be numbered and column B to show the name of the tiddly tagged with 'tagName', and possibly a 3rd column that is blank.
|1 | tid1|
|2 | tid2|
|3 | tid3|
|4 | tid4|
|5 | tid5|
Is there an easy way to do this?
table {
counter-reset: rowcount;
}
tr{
counter-increment: rowcount;
}
span.counter:before {
content:counter(rowcount);
}
<span class=""counter"/>
<span class="counter"/>
<table>
<$list filter="[tag[change]]">
<tr><th><span class="counter"/></th><td><$view field="title"/></td></tr>
</$list>
</table>
<table>
<$list filter="[tag[future-plan]]">
<tr><td><span class="counter"/></td><td><$view field="title"/></td><td><$view field="follow-up-date"/></td></tr>
</$list>
</table><table>
<$list filter="[tag[future-plan]]">
<tr><td><span class="counter"/></td><td><$link to={{!!title}}><$view field="title"/></link></td><td><$view field="follow-up-date"/></td></tr>
</$list>
</table>