millipede-html 0.1.0

HtmlCrawler for the Millipede web crawler: HTML parsing via scraper.
Documentation
#![doc = include_str!("../README.md")]

mod extract;
mod kind;
mod selectors;

pub use extract::HtmlLinkExtractor;
pub use kind::{HtmlContext, HtmlCrawler, HtmlError, HtmlKind, HtmlKindBuilder, SynchronizedHtml};
pub use scraper;

/// Commonly used items from this crate.
///
/// The [`selectors!`](crate::selectors) macro and [`scraper`] re-export live at
/// the crate root.
pub mod prelude {
    pub use crate::{
        HtmlContext, HtmlCrawler, HtmlError, HtmlKind, HtmlKindBuilder, HtmlLinkExtractor,
        SynchronizedHtml,
    };
}