mirror of https://github.com/encounter/SDL.git
wikiheaders: fixed regex for converting markdown bold+italic to mediawiki.
This commit is contained in:
parent
f55445422a
commit
ab7944f960
|
@ -127,7 +127,7 @@ sub wikify {
|
||||||
$str =~ s/\`(.*?)\`/<code>$1<\/code>/gms;
|
$str =~ s/\`(.*?)\`/<code>$1<\/code>/gms;
|
||||||
|
|
||||||
# bold+italic
|
# bold+italic
|
||||||
$str =~ s/\\*\*\*(.*?)\*\*\*/'''''$1'''''/gms;
|
$str =~ s/\*\*\*(.*?)\*\*\*/'''''$1'''''/gms;
|
||||||
|
|
||||||
# bold
|
# bold
|
||||||
$str =~ s/\*\*(.*?)\*\*/'''$1'''/gms;
|
$str =~ s/\*\*(.*?)\*\*/'''$1'''/gms;
|
||||||
|
|
Loading…
Reference in New Issue