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.
|
|
|
// Horizontal rule
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = function hr(state, startLine, endLine, silent) {
|
|
|
|
var marker, cnt, ch,
|
|
|
|
pos = state.bMarks[startLine],
|
|
|
|
max = state.eMarks[startLine];
|
|
|
|
|
|
|
|
pos += state.tShift[startLine];
|
|
|
|
|
|
|
|
if (pos > max) { return false; }
|
|
|
|
|
|
|
|
marker = state.src.charCodeAt(pos++);
|
|
|
|
|
|
|
|
// Check hr marker
|
|
|
|
if (marker !== 0x2A/* * */ &&
|
|
|
|
marker !== 0x2D/* - */ &&
|
|
|
|
marker !== 0x5F/* _ */) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// markers can be mixed with spaces, but there should be at least 3 one
|
|
|
|
|
|
|
|
cnt = 1;
|
|
|
|
while (pos < max) {
|
|
|
|
ch = state.src.charCodeAt(pos++);
|
|
|
|
if (ch !== marker && ch !== 0x20/* space */) { return false; }
|
|
|
|
if (ch === marker) { cnt++; }
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cnt < 3) { return false; }
|
|
|
|
|
|
|
|
if (silent) { return true; }
|
|
|
|
|
|
|
|
state.line = startLine + 1;
|
|
|
|
state.tokens.push({
|
|
|
|
type: 'hr',
|
|
|
|
lines: [ startLine, state.line ],
|
|
|
|
level: state.level
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|