pub mod clean;
pub mod config;
pub mod dump;
mod error;
pub mod expand;
pub mod output;
pub mod pipeline;
pub mod title_index;
pub mod tools;
pub use config::{ExtractorConfig, OutputFormat, default_namespaces, default_workers, parse_size};
pub use dump::reader::PageSource;
pub use dump::{Page, SiteInfo};
pub use error::{Error, Result};
pub use expand::{LazyTemplateSource, TemplateDb, TemplateSource};
pub use output::format::render_page;
pub use output::writer::{DocSink, ShardedWriter, StdoutSink};
pub use pipeline::{Stats, run, run_with_templates};
pub use title_index::TitleIndex;