dart-xml
dart-xml copied to clipboard
Lightweight library for parsing, traversing, and transforming XML in Dart.
I want to parse a html document but I get the error `Unhandled Exception: XmlParserException: ">" expected at 17:140`. ```xml ```
Your library is very good, but validating XML via DTD is needed.
I'm using `xml` to process SAML responses. ```yaml dependencies: xml: ^5.3.1 ``` ```dart import 'package:test/test.dart'; import 'package:xml/xml.dart'; void main() { test('clone namespaceUri', () { final xml = '' '' '';...
Why namespaces key and value has the key as the uri of namespace instead of the real key on xml? Ex.: ```dart var namespaces = { 'soap' : 'http://www.w3.org/2003/05/soap-envelope/', };...
The other XPath pub packages don't provide as much diligence in parsing the XML, but this package is missing XPath, which would make it far more useful for parsing and...
Hi, I'd like for XmlBuilder to have more features and include commands for working with .xsl and .xsd files. If i knew how to do it myself then I'd perform...
Hey, I was thinking if there's a way to make the `parse()` function tolerate non well-formated XML which is very common when parsing HTML. For example: ``` html Lorem ipsum...
- implement equality operators for XmlNode - better handle namespace equality when comparing present XML data Those changes are particularly relevant when directly comparing unknown XML encoded data. The equality...
```shell Resolving dependencies... The current Dart SDK version is 3.2.0-210.4.beta. Because simple_icons depends on xml >=6.5.0 which requires SDK version ^3.2.0, version solving failed. ``` what about: ```dart environment: sdk:...