return 0;
}
++blockLineCount;
ConfluenceDialect dialect = (ConfluenceDialect) getDialect();
// NOTE: in Textile paragraphs can have nested lists and other things, however
// the resulting XHTML is invalid -- so here we allow for similar constructs
// however we cause them to end the paragraph rather than being nested.
for (Block block: dialect.getParagraphBreakingBlocks()) {
if (block.canStart(line, offset)) {
setClosed(true);
return 0;
}
}
Matcher blockStartMatcher = confluenceBlockStart.matcher(line);
if (offset > 0) {
blockStartMatcher.region(offset, line.length());
}
if (blockStartMatcher.find()) {
int end = blockStartMatcher.start();
if (end > offset) {
dialect.emitMarkupLine(getParser(),state,offset,line.substring(offset,end), 0);
}
setClosed(true);
return end;
}
if (blockLineCount > 1) {
builder.lineBreak();
}
dialect.emitMarkupLine(getParser(),state,line, offset);
return -1;
}