rust-libxml
rust-libxml copied to clipboard
Rust wrapper for libxml2
[This is a question also asked on rust-users](https://users.rust-lang.org/t/declare-function-to-xmllib2-using-rust-libxml/110485) I'm working on an scxml interpreter. I want to declare a function to the xml path context. I'd appreciate some guidance. It...
current rust-libxml isn't support mingw64 develop environment, this pull request realize it, i has tested
I have an xpath query involving namespaces that executes successfully in xmllint. The query does not execute using rust-libxml. The Result Err is, as you know, () This makes debugging...
Before I dig too deeply in to this issue, am I right in thinking that schema validation errors are not currently captured? When I input schema error in to ./tests/schema_tests.rs...
When I use this module, the rust compiler always couldn't find where the libxml2 located in. I just want to find out if there is a proper way to define...
I noticed I'm not able to query paths using xpaths from my html file, while running tests as well as from my personal module. Node get_content() also returns all child...
Consider this: ```xml ``` How can I find out that attributes `bar` and `ns:bar` both exist? The `Node` API offers `get_attributes` which returns a `HashMap` with all attributes, but this...
Document is declared as follows: ``` pub(crate) struct _Document { /// pointer to a libxml document pub(crate) doc_ptr: xmlDocPtr, /// hashed pointer-to-Node bookkeeping table nodes: HashMap, } ``` Now, looking...
There are some rust-fmt changes due to differing formatting rules which I might need to revert. Also I didn't add tests for the new `null_ptr` and `internal` `StructuredError` functions since...
Hi! First of all, thanks for your work on this project. I've recently started using this crate for XML validation and when running tests with syntactically incorrect XML files (which...