Hi Julien
> What woul be the syntaxe to replace "AnyName" by something like
> "context.inTiddler.title" in |<<tiddler AnyName##Output>>|<<tiddler
> AnyName##Paramètres>>| ?
If the table is in a hidden section called table i.e.:
/%
!table
|<<tiddler AnyName##Output>>|<<tiddler AnyName##Paramètres>>|
!end
%/
you can replace AnyName with the dollarsign and a number ($1) and
write this instead:
/%
!table
|<<tiddler [[$1##Output]]>>|<<tiddler [[$1##Paramètres]]>>|
!end
%/
and use it like this:
<<tiddler [[TheTiddlerContainingTheTabeSection'sTitle##table]] with:
{{tiddler.title}}>>
and it will show the contents of the sections "Output" and
"Paramètres" (if there are any) of the same tiddler where it's
written...
If you use this macro as a template in a fET (ForEachTiddlerPlugin
generated list or table) or directly in a ViewTemplate it's quite
powerfull and can save a lot of time...
Cheers Måns Mårtensson
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.