roxmltree icon indicating copy to clipboard operation
roxmltree copied to clipboard

Represent an XML document as a read-only tree.

Results 6 roxmltree issues
Sort by recently updated
recently updated
newest added

This PR adds benchmarks for [libxml](https://docs.rs/libxml/latest/libxml/), a Rust wrapper for libxml2, to the benches directory. I noticed libxml being brought up in the comparison chart in this repo's README, and...

An XML like this: ```xml ]> &e; ``` should lead to an error, but it's not.

I'm evaluating XML libraries for use on a project, and one thing that I'm looking for is the ability to get the byte ranges where various XML items came from...

The `append_text` method in the parser should extend the end position in case of CDATA. Right now the end position is only set on creation.

I’m using the roxmltree library version 0.18.0 to parse some epub, but I encountered a problem with entity references. Some of the files do not have standard `` settings, such...

My use case is parsing an svg "template" file, replacing certain nodes (e.g. changing attributes on a text node, changing the content of the text node, or adding sibling nodes...