htmlparser is a low-level, pull-based, zero-allocation HTML parser.
rust
for token in htmlparser::Tokenizer::from("<tagname name='value'/>") {
println!("{:?}", token);
}
This library is a copy of xmlparser with some adjustments to parse html.
StrSpan
structs which represent the position of the substring
in the original document.cargo-bloat
.no_std
builds. To use without the standard library, disable the default features.<root><child></root></child>
or a string without root element
will be parsed without errors. You should check for this manually.
On the other hand <a/><a/>
will lead to an error.<item a="v1" a="v2"/>
will be parsed without errors. You should check for this manually.Licensed under either of
at your option.
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.