Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed
https://markdown-it.github.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
3.6 KiB
133 lines
3.6 KiB
// Block quotes
|
|
|
|
'use strict';
|
|
|
|
|
|
module.exports = function blockquote(state, startLine, endLine, silent) {
|
|
var nextLine, lastLineEmpty, oldTShift, oldBMarks, oldIndent, oldParentType, lines,
|
|
terminatorRules,
|
|
i, l, terminate,
|
|
pos = state.bMarks[startLine] + state.tShift[startLine],
|
|
max = state.eMarks[startLine];
|
|
|
|
if (pos > max) { return false; }
|
|
|
|
// check the block quote marker
|
|
if (state.src.charCodeAt(pos++) !== 0x3E/* > */) { return false; }
|
|
|
|
if (state.level >= state.options.maxNesting) { 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; }
|
|
|
|
// skip one optional space after '>'
|
|
if (state.src.charCodeAt(pos) === 0x20) { pos++; }
|
|
|
|
oldIndent = state.blkIndent;
|
|
state.blkIndent = 0;
|
|
|
|
oldBMarks = [ state.bMarks[startLine] ];
|
|
state.bMarks[startLine] = pos;
|
|
|
|
// check if we have an empty blockquote
|
|
pos = pos < max ? state.skipSpaces(pos) : pos;
|
|
lastLineEmpty = pos >= max;
|
|
|
|
oldTShift = [ state.tShift[startLine] ];
|
|
state.tShift[startLine] = pos - state.bMarks[startLine];
|
|
|
|
terminatorRules = state.parser.ruler.getRules('blockquote');
|
|
|
|
// Search the end of the block
|
|
//
|
|
// Block ends with either:
|
|
// 1. an empty line outside:
|
|
// ```
|
|
// > test
|
|
//
|
|
// ```
|
|
// 2. an empty line inside:
|
|
// ```
|
|
// >
|
|
// test
|
|
// ```
|
|
// 3. another tag
|
|
// ```
|
|
// > test
|
|
// - - -
|
|
// ```
|
|
for (nextLine = startLine + 1; nextLine < endLine; nextLine++) {
|
|
pos = state.bMarks[nextLine] + state.tShift[nextLine];
|
|
max = state.eMarks[nextLine];
|
|
|
|
if (pos >= max) {
|
|
// Case 1: line is not inside the blockquote, and this line is empty.
|
|
break;
|
|
}
|
|
|
|
if (state.src.charCodeAt(pos++) === 0x3E/* > */) {
|
|
// This line is inside the blockquote.
|
|
|
|
// skip one optional space after '>'
|
|
if (state.src.charCodeAt(pos) === 0x20) { pos++; }
|
|
|
|
oldBMarks.push(state.bMarks[nextLine]);
|
|
state.bMarks[nextLine] = pos;
|
|
|
|
pos = pos < max ? state.skipSpaces(pos) : pos;
|
|
lastLineEmpty = pos >= max;
|
|
|
|
oldTShift.push(state.tShift[nextLine]);
|
|
state.tShift[nextLine] = pos - state.bMarks[nextLine];
|
|
continue;
|
|
}
|
|
|
|
// Case 2: line is not inside the blockquote, and the last line was empty.
|
|
if (lastLineEmpty) { break; }
|
|
|
|
// Case 3: another tag found.
|
|
terminate = false;
|
|
for (i = 0, l = terminatorRules.length; i < l; i++) {
|
|
if (terminatorRules[i](state, nextLine, endLine, true)) {
|
|
terminate = true;
|
|
break;
|
|
}
|
|
}
|
|
if (terminate) { break; }
|
|
|
|
oldBMarks.push(state.bMarks[nextLine]);
|
|
oldTShift.push(state.tShift[nextLine]);
|
|
|
|
// A negative number means that this is a paragraph continuation;
|
|
//
|
|
// 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;
|
|
}
|
|
|
|
oldParentType = state.parentType;
|
|
state.parentType = 'blockquote';
|
|
state.tokens.push({
|
|
type: 'blockquote_open',
|
|
lines: lines = [ startLine, 0 ],
|
|
level: state.level++
|
|
});
|
|
state.parser.tokenize(state, startLine, nextLine);
|
|
state.tokens.push({
|
|
type: 'blockquote_close',
|
|
level: --state.level
|
|
});
|
|
state.parentType = oldParentType;
|
|
lines[1] = state.line;
|
|
|
|
// Restore original tShift; this might not be necessary since the parser
|
|
// has already been here, but just to make sure we can do that.
|
|
for (i = 0; i < oldTShift.length; i++) {
|
|
state.bMarks[i + startLine] = oldBMarks[i];
|
|
state.tShift[i + startLine] = oldTShift[i];
|
|
}
|
|
state.blkIndent = oldIndent;
|
|
|
|
return true;
|
|
};
|
|
|