FIX #91
authorGreg Burri <greg.burri@gmail.com>
Fri, 6 Feb 2009 08:48:35 +0000 (08:48 +0000)
committerGreg Burri <greg.burri@gmail.com>
Fri, 6 Feb 2009 08:48:35 +0000 (08:48 +0000)
js/formater.js
styles/1/euphorik.css

index 349abe7..ba2cbc5 100644 (file)
@@ -111,13 +111,13 @@ euphorik.Formater.prototype.traiterURL = function(m, nick) {
 euphorik.Formater.prototype.traiterWikiSyntaxe = function(m) {\r
    return m.replace(\r
       /(?:^| )_(.*?)_(?:$| )/g,\r
-      function(texte, capture) {\r
-         return '<em class="leger">' + capture + '</em>';\r
+      function(texte, c1, c2, c3) {\r
+         return '<em>' + c1 + c2 + c3 + '</em>';\r
       }\r
    ).replace(\r
       /(?:^| )\*(.*?)\*(?:$| )/g,\r
-      function(texte, capture) {\r
-         return '<em class="fort">' + capture + '</em>';\r
+      function(texte, c1, c2, c3) {\r
+         return '<strong>' + c1 + c2 + c3 + '</strong>';\r
       }\r
    );\r
 };\r
index 6859cd8..f795070 100755 (executable)
@@ -23,10 +23,10 @@ body {
 }
 
 /***** Textile *****/
-em.leger {
+em {
        font-style: italic
 }
-em.fort {
+strong {
        font-style: normal;
        font-weight: bold
 }