Add Preferences into application
Simple tool for converting large XML-files to JSON or JSON to XML
Brought to you by:
amykolaienko
We need to be able remove schema definition when converting XML to JSON:
<EmvTags xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="EmvTags.xsd">
<EmvTag>
will be converted into this:
"@xmlns:xsi" : "http://www.w3.org/2001/XMLSchema-instance",
"@xsi:schemaLocation" : "EmvTags.xsd",
Diff: