Skip to content

Commit

Permalink
🗜️ build [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkedJS bot committed Feb 13, 2020
1 parent a4c9c84 commit 3ab4bf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions lib/marked.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1216,11 +1216,11 @@ var InlineLexer_1 = class InlineLexer {
}

src = src.substring(cap[0].length);
out += this.options.sanitize
? this.options.sanitizer
out += this.renderer.html(this.options.sanitize
? (this.options.sanitizer
? this.options.sanitizer(cap[0])
: escape$3(cap[0])
: cap[0];
: escape$3(cap[0]))
: cap[0]);
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion lib/marked.js
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@
}

src = src.substring(cap[0].length);
out += this.options.sanitize ? this.options.sanitizer ? this.options.sanitizer(cap[0]) : escape$3(cap[0]) : cap[0];
out += this.renderer.html(this.options.sanitize ? this.options.sanitizer ? this.options.sanitizer(cap[0]) : escape$3(cap[0]) : cap[0]);
continue;
} // link

Expand Down
Loading

1 comment on commit 3ab4bf5

@vercel
Copy link

@vercel vercel bot commented on 3ab4bf5 Feb 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.