diff options
-rwxr-xr-x | js/stmd.js | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -534,9 +534,8 @@ this.parseBackticks(); break; case '<': - if (!(this.parseAutolink())) { - this.parseHtmlTag(); - } + this.parseAutolink() || this.parseHtmlTag() || + this.pos++; break; case '[': // nested [] nest_level++; |