catppuccin/samples/toml.toml
Hamothy b9bbd77c7f
docs: restructure & improve contrib docs (#1876)
* docs: restructure & improve contrib docs

* chore: rework samples code

* docs: fix capitalization & brand names

* docs: PR comments & try to standardise palette vs flavor

* docs: add sample-programs

* docs: update submission guidelines (refs: #1821)

* refactor: tidy up docs

Co-authored-by: winston <hey@winston.sh>
2023-01-26 19:53:05 +01:00

32 lines
532 B
TOML

# This is a TOML document.
title = "TOML Example"
description = """
Multiline
description
"""
date = 2019-11-04T07:32:00-08:00
[database]
server = "192.168.1.1"
ports = [ 8001, 8001, 8002 ]
"connection_max" = 5000
enabled = true
[servers]
alpha = { ip = '10.0.0.1', dc = "eqdc10" }
beta = { ip = '10.0.0.2', dc = "eqdc10" }
[clients]
data = [ ["gamma", "delta"], [1.0, 2.0] ]
hosts = [
"alpha",
"omega",
]
valid-escapes = """\tline \"1\"
line\u00202
line 3\U0000002E
"""
invalid-escapes = "\a \u20 \U0020"