So two things:
1. perhaps the documentation could be updated, and
2. perhaps there could even be built-in templates to allow for something like {{A||block}} vs. {{A||inline}}?
You should use macros
Define transcluder (title) {{$(title)$}}
And then
Transcluder({{!!tiddlertitle}})
\define linkTiddler(mytiddler) {{$mytiddler$}}
<$macrocall $name="linkTiddler" mytiddler={{!!tiddlername}} />For more options, visit https://groups.google.com/d/optout.--
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 tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
<$tiddler tiddler={{!!tiddlername}}>
<$transclude mode="block" />
</$tiddler>Problem -- with the 'official' equivalent -- when I now press the hamburger button, the content of the transcluded tiddler disappears.
This does not happen with the macro version.
regards
On Monday, March 3, 2014 9:10:48 PM UTC+2, cmari wrote:
For more options, visit https://groups.google.com/d/optout.--
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 tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
\define transcludeTiddler(mytiddler) {{$mytiddler$}}
<$macrocall $name="transcludeTiddler" mytiddler={{!!tiddlername}} /><$tiddler tiddler={{!!tiddlername}}>
<$transclude mode="block" />
</$tiddler>