canParse method
Implementation
@override
bool canParse(BlockParser parser) {
// Note: matches *next* line, not the current one. We're looking for the
// bar separating the head row from the body rows.
return parser.matchesNext(tablePattern);
}