trashy-xml

A non-spec compliant xml parser that does not stop parsing when encountering errors.

Example

```rust use trashy_xml::XmlParser;

// Gets each open element matching "thiselement" // then prints the debug representation of its attributes. let parsed = XmlParser::str("").parse(); for token in parsed.elementsfromname("thiselement") { dbg!(token.attributes()); } ```