Hi Stephan,
Don't know if that's what you're after but you could perhaps do what you
did in your other example and use evaluated parameters and
store.getTiddlerText with the tiddler macro like so...
*[[Output Tiddler]]*
> <<tiddler OUT with: {{
> '{{{\n' +
> store.getTiddlerText('Documentation Issues') +
> '\n}'+'}'+'}';
> }}>>/%
*[[OUT]]*
> $1
This uses a tiddler called OUT that serves as the most simple transclusion
template and renders the above tiddler with whatever you pass down to
getTiddlerText.
You could also put it all into a single tiddler and call it...
*[[RenderPlain]]*
<<tiddler RenderPlain##OUT with: {{
> '$1' == '$' + '1' ? '' :
'{{{\n' +
store.getTiddlerText('$1') +
> '\n}'+'}'+'}';
> }}>>/%
!OUT
$1
!END%/
And then call this tiddler like so...
<<tiddler RenderPlain with: 'Documentation Issues'>>
Cheers, Tobias.
--
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.