[−][src]Module parse_hyperlinks::parser
This module implements parsers to extract hyperlinks and link reference definitions from text input.
Modules
asciidoc | This module implements parsers for Asciidoc hyperlinks. |
html | This module implements parsers for HTML hyperlinks. |
markdown | This module implements parsers for Markdown hyperlinks. |
restructured_text | This module implements parsers for RestructuredText hyperlinks. |
Enums
Link | A link can be an inline link, a reference link or a link reference definition. This is the main return type of this API. |
Functions
first_hyperlink | Searches for the first hyperlink or link reference definition in the input
text and returns the finding as a tuple:
|
take_inline_or_ref_def_link | Consumes the input until it finds a Markdown, RestructuredText, Asciidoc or
HTML inline hyperlink or link reference definition. Returns |
take_link | Consumes the input until it finds an inline link, a reference link or a link reference definition.
The parser consumes the finding and returns |