Inside a Macro I want to concatenate two variables, themselves the result of macros
\define mymacro(tiddlername context)
<$set name=tiddlername value="$tiddlername$" emptyValue=<<currentTiddler>> >
<$wikify name=context text="$context$">
<$tiddler tiddler=<<tiddlername>> >
For the The alternatives here please see below?
</$tiddler>
</$wikify>
</$set>
\end
Alternatives not working
<$wikify name="attribs" text="<<macroresult>>$context$" >
<$wikify name="attribs" text="<<macroresult>><<context>>" >
<$wikify name="attribs" text="<<macroresult>>$(context)$" >
the
returns a list of fieldname="fieldvalue" pairs, as is also passed in the context parameter.
I am trying to add the two
<<macroresult>><<context>>
together to set the attribs value.
I have some button actions that want to use the attribs value but I cant get it right to start with.
I only ever get the content of <<macroresult>> or nothing.
Thank