xmldom icon indicating copy to clipboard operation
xmldom copied to clipboard

A PURE JS W3C Standard based(XML DOM Level2 CORE) DOMParser and XMLSerializer.

Results 100 xmldom issues
Sort by recently updated
recently updated
newest added

https://www.w3.org/TR/2014/CR-DOM-Parsing-20140617/#serializing > 1. If the require well-formed flag is set (its value is true), and node's data contains characters that are not matched by the XML Char production [XML10], then...

``` console.log((new xmldom.XMLSerializer()).serializeToString((new xmldom.DOMParser()).parseFromString('<br/>','text/xml'))); ``` returns `<br/>` instead of `<br/>`

The W3C provides a conformance test suite. http://www.w3.org/DOM/Test/ There is a full Java implementation from which to crib. The tests themselves are specified in XML, so one would only have...

dom
test

Since there hasn't been an update to the repo for a long time, [this project has been forked](#259). I hope this PR helps increase the visibility (besides making it very...

Hi, When do you expect the next release to be?

Hi, Can you please republish with the latest code so that https://github.com/jindw/xmldom/commit/f62560dbc9ced5bfe119f2f2c4bae29917133c4a is included?

For seeing millions of downloads a week, but many PRs and Issues open, it makes me believe that it isn't actively maintained.

I'm seeing this error involving xmldom. ./src/condenser/node_modules/xmldom/dom-parser.js Line 196:15: 'java' is not defined no-undef It looks like an error in your package.

I'm using the following line const doc = new DOMParser().parseFromString(html, 'text/html'); and realize if html = `'12',` the result doc only contains `'2'`. if html = `'123'`, the result doc...

Hello, I used this module for parsing xml file which has the following data. ``` xml ]> Yankee Time International Date Line West -PT12H ``` However, all these `&xsd;` stuff...