This commit is contained in:
Estevão Soares dos Santos 2015-07-14 21:17:27 +01:00
parent bf8b3649ad
commit 9ab2af0e89
6 changed files with 3 additions and 2 deletions

View File

@ -89,7 +89,7 @@ module.exports = function (grunt) {
options: {
globals: ['should'],
timeout: 3000,
ignoreLeaks: false,
ignoreLeaks: true,
reporter: 'spec'
}
},

BIN
dist/showdown.js vendored

Binary file not shown.

BIN
dist/showdown.js.map vendored

Binary file not shown.

BIN
dist/showdown.min.js vendored

Binary file not shown.

Binary file not shown.

View File

@ -53,7 +53,8 @@ showdown.subParser('codeSpans', function (text) {
c = c.replace(/[ \t]*$/g, ''); // trailing whitespace
c = showdown.subParser('encodeCode')(c);
return m1 + '<code>' + c + '</code>';
});
}
);
return text;
});