Hello community,
I use a tag with spaces in it.
Here is my current code:
\procedure switchTags()
<$list filter="[tag[Stay]]" >
<$let encaps={{{ [<currentTiddler>format:titlelist[]] }}} >
<$action-listops $tiddler=<<thisTiddler>> $field="tags" $subfilter="+[remove<encaps>]"/>
</$let>
</$list>
<$let encaps={{{ [<actionValue>format:titlelist[]] }}} >
<$action-listops $tiddler=<<thisTiddler>> $field="tags" $subfilter="+[append<encaps>]"/>
</$let>
\end
My question:
How can I modify the $subfilter
in a way to omit the extra variable definition?