> I need to show multiple tiddlies marked with same 'tag' in one tiddly.
> This is a good definition of macro I'm searching 
> -http://tiddlywiki.org/wiki/View_%28macro%29

>  syntax shown in article is not working for me

   <<view fieldname ....>>
is for displaying *single field values* from the *current tiddler*.
It does not (currently) have a syntax to access values stored in other
tiddlers.

   <<tiddler TiddlerName ...>>
is used to perform "transclusion" (tranformation+inclusion), which
accesses the *source* content of a specified tiddler, and then renders
that source content (transformation) into the current tiddler's
display (inclusion).

However, this macro requires that you explicitly specify the title of
the tiddler you want to transclude.  What you want is a function that
automatically gets a list of matching tiddlers, based on a specified
tag value, and then invokes the <<tiddler ....>> macro for each, so
that all corresponding tagged tiddlers will be embedded.

Fortunately, I've written a 'script' that does precisely this:
   http://www.tiddlytools.com/#EmbedTiddlers

Just *import* this tiddler into your document, and then, for your
purposes, you can write the following into a new tiddler:
   <<tiddler EmbedTiddlers with: =tagValue sortby>>
For example:
   <<tiddler EmbedTiddlers with: =journal -modified>>
will embed all 'journal' tiddlers, in reverse date order (newest
first)

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

-- 
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.

Reply via email to