TOML
Parse, validate, and convert TOML to JSON.
Reset
Copy
{
"title": "renderhub",
"owner": {
"name": "Alice",
"role": "engineer"
},
"server": {
"host": "127.0.0.1",
"port": 3000
},
"tools": [
{
"slug": "html",
"category": "preview"
},
{
"slug": "markdown",
"category": "preview"
}
]
}Tips
- Parses TOML v1.0.0 via
@iarna/toml. - Errors include the offending line and column.
- Download JSON saves the parsed config as
.json.