|
|
@ -133,8 +133,6 @@ module.exports = function list(state, startLine, endLine, silent) { |
|
|
|
prevEmptyEnd = false; |
|
|
|
|
|
|
|
while (nextLine < endLine) { |
|
|
|
if (state.bqMarks[nextLine] < state.bqLevel) { break; } |
|
|
|
|
|
|
|
contentStart = skipSpaces(state, posAfterMarker); |
|
|
|
max = state.eMarks[nextLine]; |
|
|
|
|
|
|
@ -199,8 +197,10 @@ module.exports = function list(state, startLine, endLine, silent) { |
|
|
|
} |
|
|
|
|
|
|
|
//
|
|
|
|
// Try to ckeck if list is terminated or continued.
|
|
|
|
// Try to check if list is terminated or continued.
|
|
|
|
//
|
|
|
|
if (state.tShift[nextLine] < state.blkIndent) { break; } |
|
|
|
if (state.bqMarks[nextLine] < state.bqLevel) { break; } |
|
|
|
|
|
|
|
// fail if terminating block found
|
|
|
|
if (rules_named.fences(state, nextLine, endLine, true)) { break; } |
|
|
|