Also, you may de-wikify any WikiWord by placing a ~ in front if it
(e.g. ~WikiWord).
Hope this helps.
Brett
Place code inside {{{ and }}}.
Putting {{{ and }}} on thier own lines effects everything in between
them.
Example:
{{{
var posTop = findPosY(e);
var posBot = posTop + e.offsetHeight;
var winTop = findScrollY();
var winHeight = findWindowHeight();
var winBot = winTop + winHeight;
if(posTop < winTop)
return(posTop);
else if(posBot > winBot)
{
if(e.offsetHeight < winHeight)
return(posTop - (winHeight - e.offsetHeight));
else
return(posTop);
}
else
return(winTop);
}}}
Ken Girard
http://www.TiddlyTools.com/#DisableWikiLinksPlugin
>, or mark a whole block of text as 'non-wiki'?
http://www.TiddlyTools.com/#UnformattedTextPlugin
See http://www.TiddlyWiki.com/#InstallingPlugins for basic instructions
on how to install a plugin into your document...
HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
I would recommend Eric's suggestion because use {{{ }}} does not
disable all ways to make a link,
in particular it treats strings with [[ $words = "only words" ]] as a
missing tiddler.
I use the Korn shell and have a lot of Korn shell code in my tiddlers,
and the [[ ...]] is used in if tests.
DaveG