Hello Larry,
there are some ways, but it depends on a tiddler..
* if a tiddler contains JavaScript code, usual /* multiline comments
*/ and // singleline comments can be used
* CSS tiddlers can contain usual (for CSS) /* multiline comments */
* html tiddlers (like PageTemplate) can contains <!-- html comments --
>
* tiddlers with content can have /% comments of content %/ which are
not displayed in the view mode of tiddler
also,
* there are special "invisible" comment markup for JavaScript
tiddlers: one can write
/***
some comments with markup, like
* tables
* lists
* etc
***/
//{{{
here goes some code
//}}}
and in such a tiddler there will be represented wikified part
some comments with markup, like
* tables
* lists
* etc
and then -- the code in the "pre" element (by default - with monospace
font and kept indents and spaces).
Regards, Yakov.