oratos-html 0.1.0

HTML loading and page extraction for Oratos
Documentation
1
2
3
4
5
6
7
8
9
//! HTML loading, parsing, and page extraction.

mod extract;
mod load;
mod page;

pub use extract::parse_html;
pub use load::{load_pages, normalize_url, resolve_internal_path, LoadOptions};
pub use page::{Heading, HtmlPage, ImageInfo, JsonLdBlock, LinkInfo};