// Paragraph 'use strict'; var isEmpty = require('../helpers').isEmpty; var getLines = require('../helpers').getLines; module.exports = function paragraph(state, startLine/*, endLine*/) { var endLine, nextLine = startLine + 1, rules_named = state.lexer.rules_named; endLine = state.lineMax; // jump line-by-line until empty one or EOF for (; nextLine < endLine && !isEmpty(state, nextLine); nextLine++) { // this would be a code block normally, but after paragraph // it's considered a lazy continuation regardless of what's there if (state.tShift[nextLine] - state.blkIndent > 3) { continue; } // Some tags can terminate paragraph without empty line. if (rules_named.fences(state, nextLine, endLine, true)) { break; } if (rules_named.hr(state, nextLine, endLine, true)) { break; } if (rules_named.list(state, nextLine, endLine, true)) { break; } if (rules_named.heading(state, nextLine, endLine, true)) { break; } // setex header can't interrupt paragraph // if (rules_named.lheading(state, nextLine, endLine, true)) { break; } if (rules_named.blockquote(state, nextLine, endLine, true)) { break; } if (rules_named.htmlblock(state, nextLine, endLine, true)) { break; } if (rules_named.table(state, nextLine, endLine, true)) { break; } //if (rules_named.tag(state, nextLine, endLine, true)) { break; } //if (rules_named.def(state, nextLine, endLine, true)) { break; } } state.tokens.push({ type: 'paragraph_open' }); state.tokens.push({ type: 'inline', content: getLines(state, startLine, nextLine, state.blkIndent, false).trim() }); state.tokens.push({ type: 'paragraph_close' }); state.line = nextLine; return true; };