Folks,
I am making a tool to append to a tiddler the payload of a drag and drop action.
The following works, with one problem
\define append-text-actions()
<$wikify name=new-text text="""{{{ [all[current]get[text]addsuffix<actionTiddler>] }}}""">
<$action-setfield $field="text" text=<<new-text>>/>
</$wikify>
\end
The text field is updated by appending <actionTiddler>
to the text field., however I am not sure how I can force a new line between the original and the appended text.
- I can not for example see how to get the
charcode[13],[10]
between the original test and the appended content.
Thanks in advance