<ul>
<$list filter="[tag[year]]">
<li><$link><<currentTiddler>></$link> <small class="tc-menu-list-count">(<$count filter="[all[current]tagging[]tag[series]]"/>)</small></li>
</$list>
</ul>It is working properly, as it is.
However, in the tiddler for each year, I would like to get a list of seasons for that year, however, I'm stuck as in how to get it working. This is my attempt at it.
<ul>
<$list filter="[tag[season]tag[2016]]">
<li><$link><<currentTiddler>></$link> <small class="tc-menu-list-count">(<$count filter="[all[current]tagging[]tag[series]]"/>)</small></li>
</$list>
</ul>It isn't working at all, it always shows a count of 0.
Any ideas on how could I make it work? Even if I have to change the tagging system, I would love to get that count.
Thank you all.
<ul>
<$list filter="[tag[season]tag[2005]]">
<li><$link><<currentTiddler>></$link>
<small class="tc-menu-list-count">
(<$count filter="[tag{!!year}tag{!!season}tag[series]] "/>
)
</small></li>
</$list>
</ul>