htmlproc 0.4.0

HTML processors as utils written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! HTML processors as utils.
//! Each function is offered as a single `feature`, so the dependencies are kept small. (`omit_enclosure` which is used as document outline formatter is exception.)

// #[cfg(feature = "omit_attr")]
pub mod omit_attr;
pub mod omit_enclosure;
// #[cfg(feature = "path_to_url")]
pub mod path_to_url;

mod core;