Skip to content

Commit

Permalink
docs: fix tokenizer example (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
curbengh committed Nov 21, 2020
1 parent cf5a047 commit 3a30a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ hexo.extend.filter.register('marked:tokenizer', function(tokenizer) {
if (inRawBlock) {
text = cap[0];
} else {
text = escape(isSmarty ? smartypants(cap[0], quotes) : cap[0]);
text = escape(isSmarty ? smartypants(cap[0]) : cap[0]);
}
return {
// `type` value is a corresponding renderer method
Expand Down

0 comments on commit 3a30a0c

Please sign in to comment.