conf_json 0.1.2

A human editable configure file in JSON parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

# this is a json conf file
#
{
	# comment line
	"null_key": null,
	"i64_key": 1,
	"i64_sci_key": 123E+4,
	"i64_0x_key": 0xAf,
	"f64_key": 3.14,
	"f64_sci_key": 3.14e-2,
	"true_key": true,
	"false_key": false,  # comment in line
	'single_quote_key': 'a single quote value',
	"inner_object_key": {},
	"inner_array_key": [1, "abc", ],
}