TOML Editor

Edit TOML configuration files with syntax validation. Convert between TOML and JSON. Inline documentation.

TOML Syntax Reference
# Comment - Line comments start with #
key = "value" - String values in double quotes
number = 42 - Integer values
float = 3.14 - Float values
bool = true - Boolean values (true/false)
date = 2024-01-15 - Date values
arr = [1, 2, 3] - Array values
[section] - Table (section) header
[section.subsection] - Nested table
[[array_of_tables]] - Array of tables
inline = { key = "val" } - Inline table
multi = """\nlong\nstring""" - Multi-line string

More Developer Tools tools at toool.cc