git.sr.ht/~pingoo/stdx@v0.0.0-20240218134121-094174641f6e/toml/internal/toml-test/tests/valid/key/dotted.toml (about) 1 # Note: this file contains literal tab characters. 2 3 name.first = "Arthur" 4 "name".'last' = "Dent" 5 6 many.dots.here.dot.dot.dot = 42 7 8 # Space are ignored, and key parts can be quoted. 9 count.a = 1 10 count . b = 2 11 "count"."c" = 3 12 "count" . "d" = 4 13 'count'.'e' = 5 14 'count' . 'f' = 6 15 "count".'g' = 7 16 "count" . 'h' = 8 17 count.'i' = 9 18 count . 'j' = 10 19 "count".k = 11 20 "count" . l = 12 21 22 [tbl] 23 a.b.c = 42.666 24 25 [a.few.dots] 26 polka.dot = "again?" 27 polka.dance-with = "Dot" 28 29 [[arr]] 30 a.b.c=1 31 a.b.d=2 32 33 [[arr]] 34 a.b.c=3 35 a.b.d=4