tojson
tojson copied to clipboard
header only library to convert yaml and xml files to nlohmann::json
Results
2
tojson issues
Sort by
recently updated
recently updated
newest added
PR for https://github.com/mircodz/tojson/issues/7
## yaml string type not reserved Types of numeric strings in yaml will be erased after conversion. ```yaml number_string: "123456" ``` after convertion: ```json { "number_string": 123456 } ``` ##...