feat(ngAnimate): add support for animation

This commit is contained in:
Misko Hevery
2013-03-20 16:24:23 -07:00
parent 4bfb66ce0b
commit 0b6f1ce5f8
25 changed files with 1611 additions and 84 deletions

View File

@@ -977,9 +977,9 @@ var _EncodeCode = function(text) {
var _DoItalicsAndBold = function(text) {
// <strong> must go first:
// ** must go first:
text = text.replace(/(\*\*|__)(?=\S)([^\r]*?\S[*_]*)\1/g,
"<strong>$2</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