From 860f1bfb77ef8306b7d3a39a4ff8481544a15360 Mon Sep 17 00:00:00 2001 From: Baoshuo Ren Date: Wed, 9 Feb 2022 19:45:16 +0800 Subject: [PATCH] fix: typo (#4896) --- lib/plugins/tag/code.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/tag/code.js b/lib/plugins/tag/code.js index 755ef44749..8bcecdd629 100644 --- a/lib/plugins/tag/code.js +++ b/lib/plugins/tag/code.js @@ -133,7 +133,7 @@ module.exports = ctx => function codeTag(args, content) { args.splice(index, 1); } - // If 'hilight: false' is given, return escaped code directly + // If 'highlight: false' is given, return escaped code directly if (!enableHighlight) { return `
${escapeHTML(content)}
`; }