Mass De-wikification

12 views
Skip to first unread message

robd

unread,
Sep 11, 2006, 1:05:20 PM9/11/06
to TiddlyWiki
Hope this hasn't been asked too many times before! I use my tiddlywiki
for storing a lot of code samples and other data which is non-standard
english - very often numerous pieces of text are turned into 'wiki
words' and i have to go through and manually dewikify them. Is there a
way to either turn off this feature, or mark a whole block of text as
'non-wiki'?

bwilms

unread,
Sep 11, 2006, 1:18:41 PM9/11/06
to TiddlyWiki
It sounds like you might want to try MonospacedText
(http://tiddlywiki.com/#MonospacedText)

Also, you may de-wikify any WikiWord by placing a ~ in front if it
(e.g. ~WikiWord).

Hope this helps.

Brett

Ken Girard

unread,
Sep 11, 2006, 1:27:01 PM9/11/06
to TiddlyWiki
Take a look at: http://tiddlywiki.com/#MonospacedText

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

Eric Shulman

unread,
Sep 11, 2006, 3:34:32 PM9/11/06
to TiddlyWiki
> for storing a lot of code samples and other data which is non-standard
> english - very often numerous pieces of text are turned into 'wiki
> words' and i have to go through and manually dewikify them. Is there a
> way to either turn off this feature

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

robd

unread,
Sep 11, 2006, 4:49:55 PM9/11/06
to TiddlyWiki
thanks to all who replied - that's most helpful!
rob

DaveG

unread,
Sep 11, 2006, 5:25:41 PM9/11/06
to TiddlyWiki
hi,

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

Reply all
Reply to author
Forward
0 new messages