htmlparser

Build Status Crates.io Documentation Rust 1.31+

htmlparser is a low-level, pull-based, zero-allocation HTML parser.

Example

rust for token in htmlparser::Tokenizer::from("<tagname name='value'/>") { println!("{:?}", token); }

Why a new library?

This library is a copy of xmlparser with some adjustments to parse html.

Benefits

Limitations

Safety

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.