}
@Override
public int processLineContent(String line, int offset) {
if (blockLineCount == 0) {
Attributes attributes = new Attributes();
builder.beginBlock(BlockType.TABLE, attributes);
} else if (dialect.isEmptyLine(line)) {
setClosed(true);
return 0;
}
++blockLineCount;
if (offset == line.length()) {
return -1;
}
String textileLine = offset == 0 ? line : line.substring(offset);
Matcher rowMatcher = TABLE_ROW_PATTERN.matcher(textileLine);
if (!rowMatcher.find()) {
setClosed(true);
return 0;
}
builder.beginBlock(BlockType.TABLE_ROW, new Attributes());
do {
int start = rowMatcher.start();
if (start == textileLine.length() - 1) {
break;
}
String headerIndicator = rowMatcher.group(1);
String text = rowMatcher.group(2);
int lineOffset = offset + rowMatcher.start(2);
boolean header = headerIndicator != null && "|".equals(headerIndicator);
Attributes attributes = new Attributes();
builder.beginBlock(header ? BlockType.TABLE_CELL_HEADER : BlockType.TABLE_CELL_NORMAL, attributes);
dialect.emitMarkupLine(getParser(), state, lineOffset, text, 0);
builder.endBlock(); // table cell