Macro Tiddler:
TitleField:
TaskListMacroSet
TextField:
\define TaskListMacro(ListTitle)
!!! Tasklist: $ListTitle$
\end
Base Tiddler:
TitleField:
Not Started Task List
TextField:
{{TaskListMacroSet}}
<<TaskListMacro(ListTitle:"Not Started")>>
~~~~~~~~~~~~~~~~~~~~~~
I've tried various combinations of $name$, $(name)$, $("name")$ and so forth, to no avail.
I've been going step by step to build the tiddler I need (a list of lists of tasks in certain statuses). I started with nothing special, everything spelled out, and I've been working at transcluding and writing macros a little bit at a time to make sure I get it right. But this has me stymied. I can make it work with variables, i.e. using $(name)$ and the <$set> pragma, but not parameters.
Thanks ahead of time for the help.
Tom P.
P.S. I have my macro tiddler taged with $:/tags/Macros and I still have to transclude the macro tiddler to get it to work. Has that tag changed?
Actually, it was the other way: I can't get the transcluded macro tiddler to work. If I use the "$:/tags/Macro" tag then I'm OK (including the issue above).
So it looks like this is a problem with transcluding the macro tiddler. I tried several different ways to transclude:
{{TaskListMacroSet}}
<$transclude tiddler="TaskListMacroSet" />
<$transclude tiddler="TaskListMacroSet" mode="block" />
<$transclude tiddler="TaskListMacroSet" mode="inline" />
None of them work. How am I supposed to transclude the macro tiddler?