I'm just adding my 2cents with an idea:
a small macro that displays a link if the tiddler is missing, but
transcludes the tiddler if it's not:
in a macro-tiddler:
\define trl(text)
{{$text$||transcludilinktemplate}}
\end
in the "transcludilinktemplate":
<$list filter="[<currentTiddler>is[missing]]">
<$link to=<<currentTiddler>>><<currentTiddler>></$link>
</$list>
<$list filter="[<currentTiddler>!is[missing]]">
<$transclude/>
</$list>
... call it with <<trl "tiddler title">> and it's a link as long as the
tiddler doesn't exist and it transcludes it when it does, neat!
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/c27c1cd7-a29c-4cbb-90d4-37a96da7dee7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.