[tw] Re: autoLinks in transclusions

2010-10-04 Thread whatever
Hi!
Try http://www.TiddlyTools.com/#DisableWikiLinksPlugin
w

On Oct 3, 1:31 am, UBi u...@kefc.de wrote:
 Hello everybody,

 I prefer the explicit [[link]] markup over CamelCase, so one of the
 first changes I make to a new TW is this one:

     Tiddler.prototype.autoLinkWikiWords = function() { return false; }

 That will always work with normal tiddler content. But in trancluded
 tiddlers, CamelCase is still rendered to links. What am I missing?

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: autoLinks in transclusions

2010-10-04 Thread UBi
Hello whatever,

thanks for your answer. To be honest, my single line solution was
'borrowed' from http://www.TiddlyTools.com/#DisableWikiLinksPlugin. It
worked well up to now, so I thought of it being the central part of
the plugin. And it did the job, as long as I eschewed partial
transclusion (e.g. tiddler Tiddler##Section).
Meanwhile I've re-read the plugin source and browsed the TW source and
know now that it's only half the job. For the whole thing, the
wikiLink formatter hast to be tweaked too. So my three line
DisableWikiLinksPlugin replacement looks like this:

for (var i=0; iconfig.formatters.length 
config.formatters[i].name!=wikiLink; i++);
config.formatters[i].handler=function(w)
{ w.outputText(w.output,w.matchStart,w.nextMatch) };
Tiddler.prototype.autoLinkWikiWords = function() { return
false; }

UBi

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: autoLinks in transclusions

2010-10-04 Thread Tobias Beer
Hi UBI,

This seems relevant for creating Websites with TiddlyWiki, not wanting
any automagic WikiLinking but only ever hardcoded links.

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: autoLinks in transclusions

2010-10-04 Thread UBi
Hi Tobias,

Yes, building a web site is a mid-term goal. And therapie-sport.de
might serve as a very valuable source of inspiration :-)

UBi

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.