htmlproc 0.1.0

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.

Functions

omit_enclosures

Remove specific tag enclosures from HTML text.

Install

cargo add htmlproc --features omit_enclosures

Usage

use htmlproc::omit_enclosures::manipulate;

let result: String = manipulate(HTML, OMIT_TAGS);