TOML: Tom's Obvious Minimal Language
[Tom's Obvious Minimal Language]
A config file format for humans.
TOML aims to be a minimal configuration file format that's easy to read due to obvious
semantics. TOML is designed to map unambiguously to a hash table. TOML should be easy to
parse into data structures in a wide variety of languages.
# This is a TOML document
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00
[database]
enabled = true
ports = [ 8000, 8001, 8002 ]
data = [ ["delta", "phi"], ...
Read more at toml.io