YAML
name: John age: 30 hobbies: - reading - gaming address: street: 123 Main St city: New York
→
To JSON
←
To YAML
JSON
{ "name": "John", "age": 30, "hobbies": [ "reading", "gaming" ], "address": { "street": "123 Main St", "city": "New York" } }