Looking at what you have there, you can't use currentTiddler like 
<<currentTiddler!!tags>>, in that case you have a few options:

{{!!tags}} - this is exactly what it looks like you were trying to do, this 
shows the contents of the tags field
<$transclude field='tags'/> or <$transclude tiddler=<<currentTiddler>> 
field='tags'/>
<$view field='tags'/> or <$view tiddler=<<currentTiddler>> field='tags'/>

for text it is the same thing, just replace 'tags' with 'text' in the above 
examples.

The first option is just an easier version of the second option with a few 
restrictions. Using $view gives the result as plain text while the other 
two will wikify what they display.

You can selectively apply the view template by giving tiddlers you don't 
want it to work on a tag or field. I am going to say a tag 'NoView' then 
wrap the view template in this:

<$list filter='[is[current]!tag[NoView]]'>
(the rest of the view template text goes here)
</$list>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/650c5c34-d1e8-48db-8ac5-db6ee47ac1c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to