canParse method

  1. @override
bool canParse(
  1. BlockParser parser
)
override

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);
}