xml2json
xml2json copied to clipboard
A header-only C++ library converts XML to JSON
The code is not compatible anymore with C++17, I have to use _SILENCE_CXX17_ITERATOR_BASE_CLASS_DEPRECATION_WARNING to compile it. C++20 will not compile at all anymore. Can we expect an update to make...
Could C++ API supports xml2json returning `rapidjson::Document` so users could use JSON object directly instead of JSON string? ``` rapidjson::Document xml2json(const char *xml_str) ``` and even with name/value type set...
Fix for #17 : Incorrect data encoded in json when numeric support is enabled
Hello, While using this library, I found a bug which I am reporting as below > Value like **99921-58-10-7** is encoded as **99921** in json Input XML ```xml Sample Book...
Hi, I found that xml2json (commit d3a3d98) crashes with the attached XML file ([test.txt](https://github.com/Cheedoong/xml2json/files/4019372/test.txt)) (Since Github doesn't support xml file, I attached txt file instead.) which has syntax errors. The...
Could this also be used to parse JSON into XML?
Hi, when a xml document contains several instances of 2 different kinds of XML tags , xml2json regroups them in 2 different json arrays, ignoring the original sequence of the...
Hi, there are some function definitions without static, so their linkage is external, so if I import your header from multiple translation units at once, I get duplicated symbols. Probably,...
There are too many auto, can you change auto to a specific type?