Parser Studio
YAML Source
Input Preview
7 nodes parsed
TOML Preview7 nodes
name | Patchworkr
version | 1.0.0
server.host | localhost
server.port | 4321
Converted Output
Rows
7
Columns
2
name = "Patchworkr"
version = "1.0.0"
features = ["search", "share"]
[server]
  host = "localhost"
  port = 4321
  secure = false

How It Works

YAML is parsed with a small indentation-based reader and converted into a normalized object tree.

TOML output uses tables for nested objects and inline arrays for simple list values.

Use this when you need configuration data to move between TOML and YAML without dragging in a big parser stack.

Format Foundry

Related Tools