Wrap it in {{{curly brackets}}}:
http://tiddlywiki.com/#MonospacedText
-- F.
While this works, it also changes the appearance of the text (using
monospaced font).
To prevent formatting of content, you can use "super-quoting" (triple
double-quotes), like this:
"""This has some @@ symbols in it"""
Note that any **surrounding** formatting are still applied to the
unformatted text.... only the formatting **inside** the super-quotes
is ignored.
Also, if you prefer, there is a more HTML-like alternative syntax
instead of using the """...""" sequence.
<nowiki>...</nowiki>
HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
While I don't recommend it, you CAN disable the formatter for "@@", so
that it will be treated as simple literal content rather than wiki-
syntax:
1) create a tiddler called [[DisableStyleByCharPlugin]]
2) put the following javascript in the tiddler:
for (var i=0; i<config.formatters.length; i++)
if (config.formatters[i].name=="styleByChar") {
config.formatters[i].handler=
function(w)
{createTiddlyElement(w.output,"span",null,null,"@@");}
break;
}
3) tag the tiddler with "systemConfig"
4) save-and-reload
Note that, while this will accomplish what you want, you will run into
problems if anyone else copies any of your tiddler content without
also having your [[DisableStyleByCharPlugin]] tiddler installed as
well.
<div class='viewer' macro='view text wikified'></div>with this
<div class='viewer'><div macro='view text'></div></div>