I came across a beautiful code from @EricShulman on Google Group and played a little to
list the history of Filter Operators (when which filter operator has been written)
- Open https://tiddlywiki.com/prerelease
- Create a new tiddler called History
- Put the below code as content and save
\define mainFilter() [all[]tag[Filter Operators]]
<$list filter="[range[2014,2021]]" variable="year">
<li><<year>></li>
<ul>
<$list filter="01 02 03 04 05 06 07 08 09 10 11 12" variable="month">
<li><<year>>.<<month>></li>
<ul>
<$vars YYYYMM={{{ [<year>addsuffix<month>] }}}>
<$list filter="[subfilter<mainFilter>] +[sort[created]]">
<$list filter="[<currentTiddler>get[created]prefix<YYYYMM>then<currentTiddler>]">
<li><$link/></li>
</$list>
</$list>
</$vars>
</ul>
</$list>
</ul>
</$list>
It nicely shows something like this
~ …
You may change the mainFilter
and extract some more useful information!