38 releases
0.27.2 | Oct 19, 2023 |
---|---|
0.26.4 |
|
0.23.4 | Jul 30, 2022 |
0.23.3 | Sep 26, 2021 |
0.11.0 | Nov 30, 2020 |
#175 in Parser implementations
17,489 downloads per month
Used in 14 crates
(11 directly)
250KB
4.5K
SLoC
Parse hyperlinks
Parse-hyperlinks, a parser library written with Nom to recognize hyperlinks and link reference definitions in Markdown, reStructuredText, Asciidoc and HTML formatted text input.
The library implements the CommonMark Specification 0.30, reStructuredText Markup Specification (revision 8571, date 2020-10-28), the specifications in Asciidoctor User Manual, chapter 26 (date 2020-12-03) and HTML 5.2: section 4.5.
To illustrate the usage and the API of the library, Parse-hyperlinks comes with a simple command line application: Atext2html
The Parse-Hyperlinks input contract
-
All input is UTF-8 encoded.
-
The input text is formatted according to one of the markup language specification above. As Parse-Hyperlinks ignores most of the markup, it relies solely on the hyperlink specification of the respective markup language.
General HTML requirements
-
The characters
&<>"
in absolute URLs in HTML documents must be HTML- escape-encoded: these characters are replaced with their entity names, e.g.&
,<
,>
and"e
. -
Relative URLs (local links) in UTF-8 encoded HTML document, do not need to be HTML-escape encoded. I recommend not to do so.
-
Relative URLs (local links) must not be preceded by a scheme, e.g.
html:
. -
In addition to HTML-escape-encoding, URLs can be percent encoded, e.g.
%20
or%26
. When both encoding appear in an HTML document, the HTML escape decoding is applied first, then the percent encoding. For example, the encoded stringÜ ber%26amp;Über &
is decoded toÜ ber&Über &
. In general, URLs in UTF-8 HTML documents can be expressed without percent encoding, which is recommended.
Parse-Hyperlinks output guaranties
The following section explains how Parse-Hyperlinks meets the above General HTML requirements. It refers to the items in the list above.
-
Only functions in the
renderer
module, HTML-escape encode absolute URLs in HTML documents: The characters&<>"
are replaced with their HTML escape entity names, e.g.:&
,<
,>
and"e
. All other parsers and iterators do not apply HTML-escape-encoding to absolute URLs. -
No function, parser or iterator in Parse-Hyperlinks applies escape-encoding to relative URLs.
-
This property is not enforced by Parse-Hyperlinks. Compliance depend on the parser's input.
-
Percent-encoding in Parse-Hyperlinks:
-
No percent encoding at all is performed in Parse-Hyperlinks.
-
Percent decoding: In some cases, when the markup language specification requires the input URL to be percent encoded, the concerned consuming parser decodes the percent encoding automatically. Percent decoding is URL's is performed implicitly when consuming:
- Markdown autolinks when parsed by:
md_text2dest()
, - Asciidoc URLs when parsed by:
adoc_label2dest()
,adoc_text2dest
- WikiText URLs when parsed by:
wikitext_text2dest()
- Markdown autolinks when parsed by:
-
Rendered autolink markup:
-
The same Markdown input may result in different HTML according to the renderer. For example:
pulldown-cmark
renders the Markdown autolink<http://getreu.net/Ü%20&>
into<a href="http://getreu.net/%C3%9C%20&">http://getreu.net/Ü%20&</a>
.- Observation 1: the rendition contains percent and HTML escape codes.
- Obesrvation 2: the link destination
(
http://getreu.net/%C3%9C%20&
) and the link text (http://getreu.net/Ü%20&
) are slightly different, which has to be taken into account when detecting autolinks based on the HTML rendition.
-
The Parse-Hyperlinks Markdown renderer gives for the same input
<http://getreu.net/Ü%20&>
a slightly different result:<a href="http://getreu.net/Ü%20&">http://getreu.net/Ü &</a>
. Explanation: first the parsermd_text2dest()
(percent) decodes the URL tohttp://getreu.net/Ü &
and the renderer function in the modulerenderer
(HTML-escape) encodes the result intohttp://getreu.net/Ü%20&
-
-
Dependencies
~1.2–1.9MB
~39K SLoC