Hello TW-Community,
I have this (simplified) procedure what is creating new Tiddlers named and tagged by the parameter.
\procedure new-entry(selector)
<$button>
<$action-createtiddler
$basetitle=<<selector>>
tags=<<selector>> >
<$action-navigate $to=<<createTiddler-title>>/>
</$action-createtiddler>
{{$:/core/images/plus-button}}
<<selector>>
</$button>
\end
This is working fine but I don’t want to have them as
Name 1
Name 2
Name 3
I want to have a separator like “_” or defined by another separator to call <<new-entry “Name” “#”>>
what will produce
Name#1
Name#2
Name#3
after checking the documentation in https://tiddlywiki.com/#ActionCreateTiddlerWidget and https://tiddlywiki.com/#WidgetMessage%3A%20tm-rename-tiddler I have no idea how to do it.
Any help is welcome
Stefan