That's actually pretty simple and you only need the ToggleTiddlerTags.
Change the following line
var show=config.options.chkHideTiddlerTags?'none':'block';
to
var show=config.options.chkHideTiddlerTags?'inline':'none';
This makes the tags hidden by default.
Then add the following to your StyleSheet:
.tagged, .tagging {
display: none;
}
Some stylesheets use only tagged box, but some (like the one I use)
use tagging box as well, so in the ViewTemplate, I changed
<div class='tagging' macro='tagging'></div>
to
<div class='tagged' macro='tagging'></div>
because tagged and tagging classes are identical and because
ToggleTiddlerTags only covers the tagged class. Of course, you can
always add the tagging class to the ToggleTiddlerTags, in which case
you don't need to alter the ViewTemplate.
w
On 22 apr., 02:43, Craig in Calgary <[email protected]> wrote:
> For tiddlers that have {{{<<tiddler HideTiddlerTags>>}}}, {{{<<tiddler
> ToggleTiddlerTags>>}}} will not show tags or tagging. I want certain
> tiddlers to render without tags or tagging visible by default but also
> be able to render tags and tagging for them on demand. Is there a
> workaround?
--
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.