> <div macro='showWhen tiddler.tags.contains("Nota") || tiddler.title
> =="Enter the name for your new master topic here"'>[[Foo]]</div>

When used in a template, the [[TiddlerName]] syntax actually inserts
the content from the indicated tiddler into the template and then
processes the template.

The content in a template is HTML-format... not wiki-format.  Thus:
   <div macro='...'> some wiki content </div>
will handle the wiki content as simple HTML text, without applying the
TW wikify() engine to it.

What you want to do is to use the <<tiddler>> macro to actually
*render* the tiddler content instead of simply inserting it, like
this:

   <div macro='showWhen ...'><div macro='tiddler Foo'></div></div>

enjoy,
-e

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