}
BlockNode nodeAsBlock = (BlockNode) node;
// Check whether there are any consecutive RawTextNode children.
boolean hasConsecRawTextNodes = false;
for (int i = 0; i <= nodeAsBlock.numChildren() - 2; i++) {
if (nodeAsBlock.getChild(i) instanceof RawTextNode &&
nodeAsBlock.getChild(i + 1) instanceof RawTextNode) {
hasConsecRawTextNodes = true;
break;
}