I have a ViewTemplate to render tiddlers meet one of below criteria
- tagged with
thisTag
- tagged with
thatTag
- meet any criteria defined in a tiddler called
condTid
What is the simple semantic filter to be used in:
<$list filter="[all[current]] .... --> meet above conditions
...
My initial solution is:
<$list filter=" [all[current]tag[thisTag]] [all[current]tag[thatTag]] [all[current]subfilter{condTid}] :and[limit[1]]" >
....
....
</$list>