Macrocall and items not processing after it

45 views
Skip to first unread message

Scott Kingery

unread,
Dec 20, 2018, 4:19:14 PM12/20/18
to TiddlyWiki
In a tiddler I'm defining a macro then doing a macrocall. The thing is, all the code after my macrocall is not being processed. So somewhere along the line I think I haven't closed something (like a set or wikify or something). Or maybe Im not ending the macro correctly?

Is there a good way to troubleshoot this. My tiddler looks something like:

\define doneButton(proj)

done button code here

\end

Have a nice day

<$macrocall $name="doneButton" proj="my project">/>

code down here to
do more magic that is not being executed

Jed Carty

unread,
Dec 20, 2018, 4:27:27 PM12/20/18
to TiddlyWiki
You have an extra > in the code in your post. That probably prevents the parser from working correctly after the macrocall because it isn't parsing as a closed tag.

Try making the line:

<$macrocall $name="doneButton" proj="my project"/>

or

<$macrocall $name="doneButton" proj="my project"></$macrocall>


Scott Kingery

unread,
Dec 20, 2018, 4:51:27 PM12/20/18
to TiddlyWiki
That was it. Thanks!
Reply all
Reply to author
Forward
0 new messages