JSON to YAML converter
Your JSON
xxxxxxxxxx{ "DB": { "host": "127.0.0.1", "port": "1221", "SID": "testDB" }, "supportedCountries": [ "US", "CA" ]}Your YAML
1DB:
2 host: 127.0.0.1
3 port: '1221'
4 SID: testDB
5supportedCountries:
6 - US
7 - CA
8