Converts JSON to TOML format. Preserves ordering and adds indentation.
Converts the values from keys named "note" into comments, replaces null-types with comments.
JSON (input) | TOML (output) |
---|---|
"person":
{
"Note": "this is a person",
"age": 22,
"income": null
}
|
# this is a person
[person]
age = 22
# income |
Run main.py
, then choose one or more JSON file to convert using the file selector.