I wish to create a new tiddler using action-createtiddler (because it uses the "basetitle" to prevent overwrites). I define the title and tags values via a temp tiddler in some EditTextWidgets, as you see below.
But I want the new tiddler tags to be both this arbitrary temp!!tgs value AND and the title of the current tiddler (i.e {{!!title}}). The temp!!tgs value is not surrounded by brackets and it may contain spaces. The current tiddlers title is a normal tiddler title.
I'd appreciate any help on how I can set the tags here?
\define newtid()
<$button> click
<$action-createtiddler $basetitle={{temp!!ttl}} tags=????????/>
</$button>
\end
<$edit-text tiddler=temp field=ttl/>
<$edit-text tiddler=temp field=tgs/>
<<newtid>>
<:-)