Skip to content

Commit

Permalink
chore: remove strayed counter
Browse files Browse the repository at this point in the history
  • Loading branch information
tivie committed Jun 2, 2017
1 parent 6566c72 commit 427859b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
4 changes: 1 addition & 3 deletions dist/showdown.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/showdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/showdown.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/showdown.min.js.map

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions src/subParsers/hashHTMLBlocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -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] + '>';
Expand All @@ -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
Expand Down

0 comments on commit 427859b

Please sign in to comment.