|
|
@ -54,6 +54,8 @@ module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
|
// - - -
|
|
|
|
// ```
|
|
|
|
for (nextLine = startLine + 1; nextLine < endLine; nextLine++) { |
|
|
|
if (state.tShift[nextLine] < oldIndent) { break; } |
|
|
|
|
|
|
|
pos = state.bMarks[nextLine] + state.tShift[nextLine]; |
|
|
|
max = state.eMarks[nextLine]; |
|
|
|
|
|
|
@ -99,7 +101,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
|
//
|
|
|
|
// Any negative number will do the job here, but it's better for it
|
|
|
|
// to be large enough to make any bugs obvious.
|
|
|
|
state.tShift[nextLine] = -1337; |
|
|
|
state.tShift[nextLine] = -1; |
|
|
|
} |
|
|
|
|
|
|
|
oldParentType = state.parentType; |
|
|
|