|
|
@ -17,6 +17,8 @@ module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
|
// check the block quote marker
|
|
|
|
if (state.src.charCodeAt(pos++) !== 0x3E/* > */) { return false; } |
|
|
|
|
|
|
|
if (state.level >= state.options.level) { return false; } |
|
|
|
|
|
|
|
// we know that it's going to be a valid blockquote,
|
|
|
|
// so no point trying to find the end of it in silent mode
|
|
|
|
if (silent) { return true; } |
|
|
|