I’m making a viewtemplate. It should only be applied if the current tiddler fulfills a certain condition.
…but this nesting construct seems like it wastes the outer filter when basically the same filter is used again within:
<$list filter="""[is[current]tags[]tags[]tag[grandparent]first[]]""" variable=IGNORE >
<$list filter="""[is[current]tags[]tags[]tag[grandparent]]""" variable=tag>
...
As you can imagine, there’s risk that the ...tags[]tags[]...
branches out far.
Can this be improved to only use a single listwidget (or perhaps some other construct)?
The succeeding code needs access to the current tiddler title.
Thank you.