chore(revert): Revert accidental change to showdown

Offending SHA: 0b6f1ce5f8
This commit is contained in:
Misko Hevery 2013-04-03 14:35:09 -07:00
parent 556f9cc35e
commit 6bca948323

View file

@ -977,9 +977,9 @@ var _EncodeCode = function(text) {
var _DoItalicsAndBold = function(text) {
// ** must go first:
// <strong> must go first:
text = text.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g,
"**$2</strong>");
"<strong>$2</strong>");
text = text.replace(/(\*|_)(?=\S)([^\r]*?\S)\1/g,
"<em>$2</em>");
@ -1293,4 +1293,4 @@ var escapeCharacters_callback = function(wholeMatch,m1) {
return "~E"+charCodeToEscape+"E";
}
} // end of Showdown.converter
} // end of Showdown.converter