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
|
# Comments can be '#' or ';'
;Global variables are allowed
global1 = 11
global2 = aaa
; The First character of Section or Parameter name should be alphanumerical,
; another caharacters can ba Alphanumerical or dot(.)/underscore(_)/hyphen(-)
[Sections.are_ASCII-characters]
; Parameter values, withourt double quotation mark (")
; ban be like Sections!
parameter_names.also-ASCII = first.value-like_ascii
; For value characters, the Space, or any other special character allowed only between two double-quotation-mark sign.
; Escaped characters, (\n, \t, etc.) or multi-byte characters (é, €, カ, ⠋, ঘঃ, 😍) are allowed here.
parameter2 = "I like \t emojis 😍 but, don't like mosquitoes カ ! :)"
; Even!
parameter3 = "With double quotation mark \
I can write multiline values, but I shoud \
escapse the trailing newline with '\' sign!"
[A B€BCD]
ghijkl=val1 ; komment
ghijkl = val2 ;kom1
ghijkl = val3;kom3
ghijkl=val14;kom14
ghijkl = val15;kom15
ghijkl = val4;kom11
eee =
fff=
aa=
#commt
--- ;#//sdfsdf//
[é]
aaa=bbb
cc="=dd"
[test2];#coment
ggg = aaa #commnta
;ad = "123456\
; aléásdasd #;--Ł$
;wqeweq \
;aabcd=efgh "
;fghfgh
#####;
;abcdefghijklmnopqrst
;;;;
### Test confi\ng
abc=
;.
|