I've created an issue for the problem: https://github.com/TiddlyWiki/tiddlywiki/issues/118
Best wishes Jeremy On Tue, Feb 26, 2013 at 6:52 PM, Jeremy Ruston <[email protected]>wrote: > Hi Tobias > > Good catch, thank you very much for that. I'll explore a proper fix as > soon as I can, > > Best wishes > > Jeremy > > > On Sunday, 24 February 2013, Tobias Beer wrote: > >> Ho again Scott, >> >> The problematic code seems to be this... >> >> enclosedTextHelper: function(w) { >> this.lookaheadRegExp.lastIndex = w.matchStart; >> var lookaheadMatch = this.lookaheadRegExp.exec(w.source); >> if(lookaheadMatch && lookaheadMatch.index == w.matchStart) { >> var text = lookaheadMatch[1]; >> * if(config.browser.isIE)* >> * text = text.replace(/\n/g,"\r");* >> createTiddlyElement(w.output,this.element,null,null,text); >> w.nextMatch = lookaheadMatch.index + lookaheadMatch[0].length; >> } >> } >> >> If you remove conditional above in bold, all works well in IE10. So it >> seems no longer be valid for IE10+ and should have a version conditional >> arround it with respect to config.browser.ieVersion being >= 10... assuming >> it had been assessed correctly to begin with. >> >> Cheers, Tobias. >> > > > -- > Jeremy Ruston > mailto:[email protected] > > -- Jeremy Ruston mailto:[email protected] -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki?hl=en. For more options, visit https://groups.google.com/groups/opt_out.

