From: Greg Burri Date: Fri, 6 Feb 2009 08:48:35 +0000 (+0000) Subject: FIX #91 X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=commitdiff_plain;h=dc66525bdce5df290c5afe8d3f5eedb1a736d955 FIX #91 --- diff --git a/js/formater.js b/js/formater.js index 349abe7..ba2cbc5 100644 --- a/js/formater.js +++ b/js/formater.js @@ -111,13 +111,13 @@ euphorik.Formater.prototype.traiterURL = function(m, nick) { euphorik.Formater.prototype.traiterWikiSyntaxe = function(m) { return m.replace( /(?:^| )_(.*?)_(?:$| )/g, - function(texte, capture) { - return '' + capture + ''; + function(texte, c1, c2, c3) { + return '' + c1 + c2 + c3 + ''; } ).replace( /(?:^| )\*(.*?)\*(?:$| )/g, - function(texte, capture) { - return '' + capture + ''; + function(texte, c1, c2, c3) { + return '' + c1 + c2 + c3 + ''; } ); }; diff --git a/styles/1/euphorik.css b/styles/1/euphorik.css index 6859cd8..f795070 100755 --- a/styles/1/euphorik.css +++ b/styles/1/euphorik.css @@ -23,10 +23,10 @@ body { } /***** Textile *****/ -em.leger { +em { font-style: italic } -em.fort { +strong { font-style: normal; font-weight: bold }