[−][src]Function parse_hyperlinks::parser::markdown::md_link
pub fn md_link(i: &str) -> IResult<&str, (&str, &str, &str)>
Parse a markdown link.
This parser expects to start at the beginning of the link [
to succeed.
It returns either Ok((i, (link_text, link_destination, link_title))) or
some error.