3 Possibilities:

1. Make your TiddlernameX be:
\define trans(append)
<$transclude tiddler="$(base)$ $append$"/>
\end
<$set name="base" value={{!!title}}>

<<trans partA>>
<<trans partB>>
<<trans partC>>
</$set>

2. (Building on that)
Create a tiddler "trans":
\define trans(append)
<$transclude tiddler="$(base)$ $append$"/>
\end

<$macrocall $name="trans" append={{!!title}}/>

Use it like this in TiddlernameX:
<$set name="base" value={{!!title}}>

{{partA||trans}}
{{partB||trans}}
{{partC||trans}}
</$set>

Advantage: You do not need to repeat the macro in every tiddler

3. (what I would do)
Make your TiddlernameX be:
<$list filter="[prefix{!!title}!is[current]sort[title]]">

<$transclude/>

</$list>

You could even do this last one by making that a view template applied to 
tiddlers having a "summary" tag (or something like that). In that case your 
summary tiddlers can be empty. They just need the tag. 


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" 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/tiddlywikidev.
For more options, visit https://groups.google.com/d/optout.

Reply via email to