changed 6 to 3

This commit is contained in:
supertiger1234 2019-10-31 13:36:58 +00:00
parent 26d1c3f11b
commit 52135c7d21

View file

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