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);