dart-xml icon indicating copy to clipboard operation
dart-xml copied to clipboard

Lightweight library for parsing, traversing, and transforming XML in Dart.

Results 11 dart-xml issues
Sort by recently updated
recently updated
newest added

I want to parse a html document but I get the error `Unhandled Exception: XmlParserException: ">" expected at 17:140`. ```xml ```

enhancement
help wanted

Your library is very good, but validating XML via DTD is needed.

enhancement
help wanted

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 = '' '' '';...

bug
help wanted

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/', };...

enhancement

Is there a chance to render an xml file with xslt?

enhancement
help wanted

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...

enhancement
help wanted

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...

enhancement
help wanted

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...

enhancement

- 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:...