parseInlineLink function
Parses a link starting at start
and end at end
(excludive)
start
- the position of the starting(
Implementation
InlineLink? parseInlineLink(String source, int start) { //tomyeh
final parser = _SimpleInlineParser(source)..pos = start,
link = LinkSyntax._parseInlineLink(parser);
if (link != null) link.end = parser.pos + 1;
return link;
}