I have a list with checkboxes in a tiddler named "Note type 1":
<$list filter="[tag{!!title}]" >
<$checkbox tag="Note type 1" > <<currentTiddler>>
</$checkbox>
</$list>
It is a list of all notes of type 1.
When I add new note type I have to copy the code and change the tag parameter to the name of the new note type.
In order to use templates I need that the tag parameter is variable.
The question: How can I put in the tag parameter the tittle of the tiddler instead a static string?
Something like <$checkbox tag=<<currentTiddler>> > or
<$checkbox tag={{!!title}} >