htmlproc 0.1.2

HTML processors as utils written in Rust
Documentation

htmlproc

crates.io Documentation Dependency Status License

HTML processors as utils written in Rust. Each function is offered as a single feature, so the dependencies are kept small.

Install in Rust project

# intall crate
cargo add htmlproc

# intall crate with specific features
cargo add htmlproc --features omit_enclosures

# uninstall
# cargo remove htmlproc

Functions (Features)

omit_enclosures

Remove specific tag enclosures from HTML text.

Usage

use htmlproc::omit_enclosures::manipulate;

let result: String = manipulate("<div>...<span>---</span>...</div>", &["span"]);