-
Notifications
You must be signed in to change notification settings - Fork 2
/
sample.json
31 lines (31 loc) · 1.1 KB
/
sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"DEFAULT": {},
"Simple Values": {
"key": "value",
"spaces in keys": "allowed",
"spaces in values": "allowed as well",
"spaces around the delimiter": "obviously",
"you can also use": "to delimit keys from values"
},
"All Values Are Strings": {
"values like this": "1000000",
"or this": "3.14159265359",
"are they treated as numbers?": "no",
"integers, floats and booleans are held as": "strings",
"can use the api to get converted values directly": "true"
},
"Multiline Values": {
"chorus": "I'm a lumberjack, and I'm okay\nI sleep all night and I work all day"
},
"No Values": {
"empty string value here": ""
},
"You can use comments": {},
"Sections Can Be Indented": {
"can_values_be_as_well": "True",
"does_that_mean_anything_special": "False",
"purpose": "formatting for readability",
"multiline_values": "are\nhandled just fine as\nlong as they are indented\ndeeper than the first line\nof a value",
"interpolation": "%(disabled)s"
}
}