You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XML-Serializer is a complete JavaScript implementation of the W3C [xml serialization](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-serialize-xml) specifications. All specifications have been implemented and includes the following [specs](https://www.w3.org/TR/DOM-Parsing/#dfn-concept-xml-serialization-algorithm):
10
10
@@ -24,7 +24,7 @@ XML-Serializer is a complete JavaScript implementation of the W3C [xml serializa
24
24
25
25
## Module Availability
26
26
27
-
This module is available as an [npm](https://www.npmjs.com/package/@harrison-ifeanyichukwu/xml-serializer) scoped package and also has a browser build that is located inside the `dist` folder. It can easily be integrated with [JSDOM](https://github.com/jsdom/jsdom) for mockup testing.
27
+
This module is available as an [npm](https://www.npmjs.com/package/@teclone/xml-serializer) scoped package and also has a browser build that is located inside the `dist` folder. It can easily be integrated with [JSDOM](https://github.com/jsdom/jsdom) for mockup testing.
28
28
29
29
## Getting Started
30
30
@@ -33,15 +33,15 @@ The below command will install `xml-serializer` from npm into your project assum
Following the specification, the `XMLSerializer` interface is a constructor and has a `serializeToString(root)` method exposed on the instance. To serialize any xml node, call the `serializeToString(root)` method on a constructed instance, passing in the xml node as like shown below:
The browser build is available inside the `dist` folder when you npm install the package. You can also this repo and run the build command locally. It exposes an `XMLSerializer` construct on the `window` object.
<!--notice that it is declared again here. this is a duplicate-->
220
+
<!--duplicates removed-->
218
221
<h:table>
219
222
<h:tr>
220
223
<h:td>
@@ -223,7 +226,7 @@ Notice that all of the duplicated namespaces are removed.
223
226
</h:tr>
224
227
</h:table>
225
228
226
-
<!--one is duplicated here-->
229
+
<!--duplicate removed-->
227
230
<f:table>
228
231
<f:name>African Coffee Table</f:name>
229
232
<f:width>80</f:width>
@@ -264,17 +267,3 @@ We welcome your own contributions, ranging from code refactoring, documentation
264
267
3. Implement your ideas, and once stable,
265
268
266
269
4. Create a pull request, explaining your improvements/features
267
-
268
-
All future contributors will be included below and immensely appreciated. We look forward to your contributions.
269
-
270
-
## About Project Maintainers
271
-
272
-
This project is maintained by [harrison ifeanyichukwu](mailto:[email protected]), a young, passionate full stack web developer, an [MDN](https://developer.mozilla.org/en-US/profiles/harrison-feanyichukwu) documentator, maintainer of node.js [rollup-all](https://www.npmjs.com/package/rollup-all) project, [R-Server](https://github.com/harrison-ifeanyichukwu/r-server) (a web server project), and other amazing projects.
273
-
274
-
He is available for hire, ready to work on `PHP` projects, `Node.js` projects, `React` and `Angular` projects and stuffs like that. Looks forward to hearing from you soon!!!
275
-
276
-
## Acknowledgments
277
-
278
-
In addition to the spec, the following sections as well as outside resources were consulted and proved very useful:
0 commit comments