I want to prepend {{||ContactInformation}} to all ‘[tag[Contact]]’ tiddlers. I read about this and tried the following code:
<$button>
<$action-setfield $tiddler="[tag[Contact]]" text="{{||ContactInformation}}"/>
<$action-navigate $to="$:/ControlPanel"/>
Go to Control Panel "Appearance" tab
</$button>
But that does not work. So I added the <$list> widget like so:
<$button>
<$list filter="[tag]Contact]]">
<$action-setfield $tiddler=<currentTiddler> text="{{||ContactInformation}}"/>
</$list>
<$action-navigate $to="$:/ControlPanel"/>
Go to Control Panel "Appearance" tab
</$button>
But that did not work, either.
Moreover, even if it did, it would replace the contents of the text field, I want to prepend the field.
How do I do what I want to do?