Browse Source

wikiheaders: fixed regex for converting markdown bold+italic to mediawiki.

Ryan C. Gordon 4 năm trước cách đây
mục cha
commit
ab7944f960
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      build-scripts/wikiheaders.pl

+ 1 - 1
build-scripts/wikiheaders.pl

@@ -127,7 +127,7 @@ sub wikify {
         $str =~ s/\`(.*?)\`/<code>$1<\/code>/gms;
 
         # bold+italic
-        $str =~ s/\\*\*\*(.*?)\*\*\*/'''''$1'''''/gms;
+        $str =~ s/\*\*\*(.*?)\*\*\*/'''''$1'''''/gms;
 
         # bold
         $str =~ s/\*\*(.*?)\*\*/'''$1'''/gms;