chore: remove strayed counter

This commit is contained in:
Estevao Soares dos Santos 2017-06-02 03:30:01 +01:00
parent 6566c72cc1
commit 427859b3f7
5 changed files with 1 additions and 3 deletions

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

@ -50,7 +50,7 @@ showdown.subParser('hashHTMLBlocks', function (text, options, globals) {
for (var i = 0; i < blockTags.length; ++i) {
var opTagPos, ii = 0,
var opTagPos,
rgx1 = new RegExp('^ {0,3}<' + blockTags[i] + '\\b[^>]*>', 'im'),
patLeft = '<' + blockTags[i] + '\\b[^>]*>',
patRight = '</' + blockTags[i] + '>';
@ -65,9 +65,7 @@ showdown.subParser('hashHTMLBlocks', function (text, options, globals) {
if (newSubText1 === subTexts[1]) {
break;
}
text = subTexts[0].concat(newSubText1);
ii++;
}
}
// HR SPECIAL CASE