Hi there again,
I would like to call a macro with a set of tiddler titles (similar to an „array“ variable)
<<myMacro Tiddler1,Tiddler2,Tiddler3 >>
And the macro has to output a list of links to these tiddlers.
\myMacro(ttl)
<$list filter="[[$ttl$]]" />
\end
How would I do this?
Thanks in advance!
\define test(asdf:"hello!" ttl )
$asdf$
<$list filter="""$ttl$""" ><$link to=<<currentTiddler>> tooltip=<<currentTiddler>> ><<currentTiddler>><br></$link></$list>
<ul>
<$list filter="""$ttl$""" ><li><$view field=title></li></$list>
</ul>
\end
<<test ttl:"""HelloThere [[Customize TiddlyWiki]] [[Working with TiddlyWiki]] """>>