tojson icon indicating copy to clipboard operation
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

## 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 } ``` ##...