From 52135c7d21f891bd5e94dd49796107cfd2ef6b80 Mon Sep 17 00:00:00 2001 From: supertiger1234 Date: Thu, 31 Oct 2019 13:36:58 +0000 Subject: [PATCH] changed 6 to 3 --- src/utils/markdown-it-plugins/normalizeFence.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/markdown-it-plugins/normalizeFence.js b/src/utils/markdown-it-plugins/normalizeFence.js index 69dc346..1d7fd2d 100644 --- a/src/utils/markdown-it-plugins/normalizeFence.js +++ b/src/utils/markdown-it-plugins/normalizeFence.js @@ -7,7 +7,7 @@ function fence(state, startLine, endLine, silent) { // if it's indented more than 3 spaces, it should be a code block // if (state.sCount[startLine] - state.blkIndent >= 4) { return false; } - if (pos + 6 > max) { return false; } + if (pos + 3 > max) { return false; } marker = state.src.charCodeAt(pos);