Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 6bca948

Browse files
committedApr 3, 2013
chore(revert): Revert accidental change to showdown
Offending SHA: 0b6f1ce
1 parent 556f9cc commit 6bca948

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎lib/showdown/showdown-0.9.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -977,9 +977,9 @@ var _EncodeCode = function(text) {
977977

978978
var _DoItalicsAndBold = function(text) {
979979

980-
// ** must go first:
980+
// <strong> must go first:
981981
text = text.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g,
982-
"**$2</strong>");
982+
"<strong>$2</strong>");
983983

984984
text = text.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g,
985985
"<em>$2</em>");
@@ -1293,4 +1293,4 @@ var escapeCharacters_callback = function(wholeMatch,m1) {
12931293
return "~E"+charCodeToEscape+"E";
12941294
}
12951295

1296-
} // end of Showdown.converter
1296+
} // end of Showdown.converter

0 commit comments

Comments
 (0)
This repository has been archived.