Webstrates / jsonml-tools

Lightweight node.js library for converting JsonML to XML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jsonml-tools

jsonml-tools is a super light weight library for converting JsonML to XML. It follows the syntax defined here.

Usage

var jsonml = require("jsonml-tools");
var xml = jsonml.toXML(["foo", ["bar", "baz"]]);

Per default jsonml-tools self closes tags. Add a list of tags to selfclose to toXML to white list tags for self close. Add an empty list to disable selfclose.

var xml = jsonml.toXML(["foo", ["bar"], ["baz"]], ["bar"]); 
//Results in <foo><bar/><baz></baz></foo>

License

This work is licenced under the Apache License, Version 2.0

About

Lightweight node.js library for converting JsonML to XML

License:Other


Languages

Language:JavaScript 100.0%