renggli / dart-xml

Lightweight library for parsing, traversing, and transforming XML in Dart.
http://pub.dartlang.org/packages/xml
MIT License
223 stars 52 forks source link

XmlDoctype is missing meaningful properties #128

Closed renggli closed 2 years ago

renggli commented 2 years ago

The XmlDoctype node should have at least read-only properties for name, publicId, systemId and internalSubset.

renggli commented 2 years ago

With https://github.com/renggli/dart-xml/commit/81055546e67e766dbf8f6f2e2062d7161ba19d41 this should become possible

renggli commented 2 years ago

Marking as fixed, the properties name, publicId, systemId and internalSubset are now present.