TOML Mode # This is a TOML document. Boom. title = "TOML Example" [owner] name = "Tom Preston-Werner" organization = "GitHub" bio = "GitHub Cofounder & CEO\nLikes tater tots and beer." dob = 1979-05-27T07:32:00Z # First class dates? Why not? [database] server = "192.168.1.1" ports = [ 8001, 8001, 8002 ] connection_max = 5000 enabled = true [servers] # You can indent as you please. Tabs or spaces. TOML don't care. [servers.alpha] ip = "10.0.0.1" dc = "eqdc10" [servers.beta] ip = "10.0.0.2" dc = "eqdc10" [clients] data = [ ["gamma", "delta"], [1, 2] ] # Line breaks are OK when inside arrays hosts = [ "alpha", "omega" ] xxxxxxxxxx 1# This is a TOML document. Boom.23title = "TOML Example"45[owner]6name = "Tom Preston-Werner"7organization = "GitHub"8bio = "GitHub Cofounder & CEO\nLikes tater tots and beer."9dob = 1979-05-27T07:32:00Z # First class dates? Why not?1011[database]12server = "192.168.1.1"13ports = [ 8001, 8001, 8002 ]14connection_max = 500015enabled = true1617[servers]1819 # You can indent as you please. Tabs or spaces. TOML don't care.20 [servers.alpha]21 ip = "10.0.0.1"22 dc = "eqdc10"23 24 [servers.beta]25 ip = "10.0.0.2"26 dc = "eqdc10"27 28[clients]29data = [ ["gamma", "delta"], [1, 2] ]3031# Line breaks are OK when inside arrays32hosts = [33 "alpha",34 "omega"35]36 The TOML Mode Created by Forbes Lindesay. MIME type defined: text/x-toml.