📄 TOML to YAML Converter

Convert TOML configuration files to YAML format
Input
Output
Examples:
Input Example
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"

[database]
server = "192.168.1.1"
ports = [ 8001, 8001, 8002 ]
enabled = true
Output Example
title: TOML Example
owner:
  name: Tom Preston-Werner
database:
  server: 192.168.1.1
  ports:
    - 8001
    - 8001
    - 8002
  enabled: true