start constant
String
const start
Broken up parts of the autolink regex for reusability and readability
Implementation
// Autolinks can only come at the beginning of a line, after whitespace, or
// any of the delimiting characters *, _, ~, and (.
static const start = r'(?:^|[\s*_~(>])';