parse_hyperlinks_extras/
lib.rs

1//! Library for parsing hyperlinks and image elements in HTML format.  The library implements
2//! [HTML 5.2: 4.7. Embedded content](https://www.w3.org/TR/html52/semantics-embedded-content.html#the-img-element)
3//! and extends the parser collection
4//! [Parse-hyperlinks](https://crates.io/crates/parse-hyperlinks).
5
6#![allow(dead_code)]
7
8pub mod iterator_html;
9pub mod parser;