📄 YAML to JSON

Convert YAML to JSON format
Input
Output
Examples:
YAML Example
title: YAML Example owner: name: Tom Preston-Werner
JSON Example
{
  "title": "YAML Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}