mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
27 lines
506 B
TOML
27 lines
506 B
TOML
# This is a TOML document.
|
|
# This contains most of the examples in the spec (from https://toml.io).
|
|
|
|
[keys]
|
|
|
|
key = "value"
|
|
bare_key = "value"
|
|
bare-key = "value"
|
|
1234 = "value"
|
|
|
|
"127.0.0.1" = "value"
|
|
"character encoding" = "value"
|
|
"ʎǝʞ" = "value"
|
|
'key2' = "value"
|
|
'quoted "value"' = "value"
|
|
|
|
"" = "blank"
|
|
|
|
fruits.apple.skin = "thin"
|
|
fruits.apple.color = "red"
|
|
|
|
fruits.orange.skin = "thick"
|
|
fruits.orange.color = "orange"
|
|
|
|
site."google.com" = true
|
|
3.14159 = "pi"
|