[][src]Module parse_hyperlinks::parser::markdown

This module implements parsers for Markdown hyperlinks.

Functions

md_link

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.

md_link_ref

Matches a markdown link reference. The parser expects to start at the beginning of link's line. It returns either Ok((i, (link_text, link_destination, link_title))) or some error.