I could need some help:
I’d like to create a new tiddler and put some tags on it.
This works so good as long the tag-words doesn’t have one or more spaces, leading to split a single tag into multiple.
I’m aware that one should use parenthesis to group some words to one title, but I don’t know how I can use it in a filter expression?
The tag words are derived from fields.
\procedure createnew()
<$action-createtiddler $basetitle={{!!sampleTitle}} text="This is a new tiddler" tags={{{ [{!!sampleTag1}addsuffix[ ]addsuffix{!!sampleTag2}addsuffix[ ]addsuffix{!!sampleTag3}] }}} $overwrite="yes" />
\end
Sample-Title:<$edit-text field="sampleTitle"/><br>
Sample-Tag-1:<$edit-text field="sampleTag1"/><br>
Sample-Tag-2:<$edit-text field="sampleTag2"/><br>
Sample-Tag-3:<$edit-text field="sampleTag3"/><br>
<$button actions=<<createnew>> >Create New</$button>
Please shed a light for me, thank you.