From dc66525bdce5df290c5afe8d3f5eedb1a736d955 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Fri, 6 Feb 2009 08:48:35 +0000 Subject: [PATCH] FIX #91 --- js/formater.js | 8 ++++---- styles/1/euphorik.css | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) 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 } -- 2.43.0