Ticket #680: ticket680.patch
| File ticket680.patch, 0.9 KB (added by FND, 4 years ago) |
|---|
-
trunk/core/js/Formatter.js
304 304 // Pretty bracketted link 305 305 var link = lookaheadMatch[3]; 306 306 e = (!lookaheadMatch[2] && config.formatterHelpers.isExternalLink(link)) ? 307 createExternalLink(w.output,link) : createTiddlyLink(w.output, link,false,null,w.isStatic,w.tiddler);307 createExternalLink(w.output,link) : createTiddlyLink(w.output,decodeURIComponent(link),false,null,w.isStatic,w.tiddler); 308 308 } else { 309 309 // Simple bracketted link 310 e = createTiddlyLink(w.output, text,false,null,w.isStatic,w.tiddler);310 e = createTiddlyLink(w.output,decodeURIComponent(text),false,null,w.isStatic,w.tiddler); 311 311 } 312 312 createTiddlyText(e,text); 313 313 w.nextMatch = this.lookaheadRegExp.lastIndex;
