blob: 66953cafdd9f5068461e3cda7277b234234b7a34 (
plain)
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
|
#
# This is a comemnt and will be ignored
# Follow an empty line
test.key=test.value
# A key can start with spaces or tabs:
keywithspaces=valueOfAKeyWithSpaces
keywithtabs=valueOfAKeyWithTabs
# A key can have no value
keywithnovalue=
# Comment starting with a tab
# Comment starting with spaces
# Following a line with a tab
# Following a line with spaces
# A property with a value with spaces and tabs
key1=A value with spaces and tabs
# A key followed from a space
key2 =
# A key followed from a tab
key2.1 =
# A value beginning with spaces
key3 = A value
# A value beginning with tabs
key3.1 = A value
# A value containing an equal
key4 = A value with an = symbol
key4.1 = = (equal is a symbol)
# A value, just an equal
key4.2 = =
# Tests with a colon
key5:value5
key5.1 : value5.1
key5.2 :
key5.3 ::
key5.2 : : symbol
key5.2 : := symbols
|