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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
[main]
# strings
string_null = _null_
string_empty =
string_with_spaces = string with spaces
string_escaped_with_leading_and_trailing_spaces = " string with spaces "
string_with_newlines = line one
line two
string_escaped_with_newlines = "line one
line two"
string_with_quotes = \"
string_with_quotes_v2 = "\""
# string lists
string_list_null = _null_
string_list_empty =
string_list_one_line = line one
string_list_multiple_lines =
line one
line two
string_list_multiple_lines_v2 = line one
line two
line three
# numbers
int64_null = _null_
int64_min = -9223372036854775808
int64_max = 9223372036854775807
# number lists
int64_list_null = _null_
int64_list_empty =
int64_list_multiple_lines =
1
2
int64_list_multiple_lines_v2 = 1 2
3
4 5
# bool
bool_null = _null_
bool_false_0 = 0
bool_false_false = false
bool_false_False = False
bool_false_no = no
bool_false_No = No
bool_true_0 = 0
bool_true_true = true
bool_true_True = True
bool_true_yes = yes
bool_true_Yes = Yes
# human readable time interval converted to seconds
# no units == seconds
time_interval_null = _null_
time_interval_number = 1
time_interval_s = 1s
time_interval_S = 1S
time_interval_m = 1m
time_interval_M = 1M
time_interval_h = 1h
time_interval_H = 1H
time_interval_d = 1d
time_interval_D = 1D
# TODO: date, time, datetime
# https://en.wikipedia.org/wiki/ISO_8601
# https://tools.ietf.org/html/rfc3339
|