Ticket #407: ticket407.patch
| File ticket407.patch, 1.0 kB (added by MartinBudden, 10 months ago) |
|---|
-
js/Formatter.js
old new 333 333 return; 334 334 } 335 335 } 336 if(w.autoLinkWikiWords == true|| store.isShadowTiddler(w.matchText)) {336 if(w.autoLinkWikiWords || store.isShadowTiddler(w.matchText)) { 337 337 var link = createTiddlyLink(w.output,w.matchText,false,null,w.isStatic,w.tiddler); 338 338 w.outputText(link,w.matchStart,w.nextMatch); 339 339 } else { -
js/Wikifier.js
old new 91 91 this.output = null; 92 92 this.formatter = formatter; 93 93 this.nextMatch = 0; 94 this.autoLinkWikiWords = tiddler && tiddler.autoLinkWikiWords() ;94 this.autoLinkWikiWords = tiddler && tiddler.autoLinkWikiWords() == false ? false : true; 95 95 this.highlightRegExp = highlightRegExp; 96 96 this.highlightMatch = null; 97 97 this.isStatic = false;