onMatch method
Processes match, adding nodes to parser and possibly advancing
parser.
Returns whether the caller should advance parser by match[0].length.
Implementation
@override
bool onMatch(InlineParser parser, Match match) {
final url = match[1]!;
final text = parser.encodeHtml ? escapeHtml(url) : url;
final anchor = Element.text('a', text);
anchor.attributes['href'] = Uri.encodeFull('mailto:$url');
parser.addNode(anchor);
return true;
}