Using the new attribute substitution feature, can I insert a carriage return / linefeed?
The following makes a button. The intent is to make a tiddler with a link that is surrounded by the formatting symbol (@@). But the linefeed disappears from the output.
Thanks!
\define actions()
<$vars lf="""
"""
>
<$action-sendmessage $message="tm-new-tiddler" title=<<journalTitle>> text=```@@.hide $(lf)$ [[$(tid)$]] $(lf)$@@```/>
</$vars>
\end
<$wikify name=tid text=<<currentTiddler>>>
<$button actions=<<actions>> >New tiddler</$button>
</$wikify>