|
@ -8,7 +8,7 @@ var skipSpaces = require('../helpers').skipSpaces; |
|
|
|
|
|
|
|
|
module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
var nextLine, lastLineEmpty, oldTShift, oldBMarks, i, oldIndent, |
|
|
var nextLine, lastLineEmpty, oldTShift, oldBMarks, i, oldIndent, |
|
|
rules_named = state.lexerBlock.rules_named, |
|
|
rules_named = state.lexer.rules_named, |
|
|
pos = state.bMarks[startLine] + state.tShift[startLine], |
|
|
pos = state.bMarks[startLine] + state.tShift[startLine], |
|
|
max = state.eMarks[startLine]; |
|
|
max = state.eMarks[startLine]; |
|
|
|
|
|
|
|
@ -104,7 +104,7 @@ module.exports = function blockquote(state, startLine, endLine, silent) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
state.tokens.push({ type: 'blockquote_open' }); |
|
|
state.tokens.push({ type: 'blockquote_open' }); |
|
|
state.lexerBlock.tokenize(state, startLine, nextLine); |
|
|
state.lexer.tokenize(state, startLine, nextLine); |
|
|
state.tokens.push({ type: 'blockquote_close' }); |
|
|
state.tokens.push({ type: 'blockquote_close' }); |
|
|
|
|
|
|
|
|
// Restore original tShift; this might not be necessary since the parser
|
|
|
// Restore original tShift; this might not be necessary since the parser
|
|
|