38 releases

0.27.2 Oct 19, 2023
0.26.4 Oct 16, 2023
0.23.4 Jul 30, 2022
0.23.3 Sep 26, 2021
0.11.0 Nov 30, 2020

#157 in Parser implementations

Download history 9643/week @ 2023-12-19 3114/week @ 2023-12-26 9755/week @ 2024-01-02 9116/week @ 2024-01-09 16199/week @ 2024-01-16 8913/week @ 2024-01-23 14769/week @ 2024-01-30 22122/week @ 2024-02-06 12835/week @ 2024-02-13 5361/week @ 2024-02-20 3441/week @ 2024-02-27 7838/week @ 2024-03-05 7185/week @ 2024-03-12 16572/week @ 2024-03-19 7282/week @ 2024-03-26 12224/week @ 2024-04-02

45,008 downloads per month
Used in 8 crates (7 directly)

MIT/Apache

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.

Cargo Documentation License

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

  1. All input is UTF-8 encoded.

  2. 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

  1. The characters &<>" in absolute URLs in HTML documents must be HTML- escape-encoded: these characters are replaced with their entity names, e.g. &amp;, &lt;, &gt; and &quote.

  2. Relative URLs (local links) in UTF-8 encoded HTML document, do not need to be HTML-escape encoded. I recommend not to do so.

  3. Relative URLs (local links) must not be preceded by a scheme, e.g. html:.

  4. 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 &amp is decoded to Ü ber&amp;Über &. In general, URLs in UTF-8 HTML documents can be expressed without percent encoding, which is recommended.

The following section explains how Parse-Hyperlinks meets the above General HTML requirements. It refers to the items in the list above.

  1. 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.: &amp;, &lt;, &gt; and &quote. All other parsers and iterators do not apply HTML-escape-encoding to absolute URLs.

  2. No function, parser or iterator in Parse-Hyperlinks applies escape-encoding to relative URLs.

  3. This property is not enforced by Parse-Hyperlinks. Compliance depend on the parser's input.

  4. 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()
    • Rendered autolink markup:

      1. 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&amp;">http://getreu.net/Ü%20&amp;</a>.

        • Observation 1: the rendition contains percent and HTML escape codes.
        • Obesrvation 2: the link destination (http://getreu.net/%C3%9C%20&amp;) and the link text (http://getreu.net/Ü%20&amp;) are slightly different, which has to be taken into account when detecting autolinks based on the HTML rendition.
      2. The Parse-Hyperlinks Markdown renderer gives for the same input <http://getreu.net/Ü%20&> a slightly different result: <a href="http://getreu.net/Ü%20&amp;">http://getreu.net/Ü &amp;</a>. Explanation: first the parser md_text2dest() (percent) decodes the URL to http://getreu.net/Ü & and the renderer function in the module renderer (HTML-escape) encodes the result into http://getreu.net/Ü%20&amp;

Dependencies

~1.3–2MB
~41K SLoC