-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest.txt
More file actions
86 lines (58 loc) · 769 Bytes
/
test.txt
File metadata and controls
86 lines (58 loc) · 769 Bytes
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
79
80
81
82
83
84
85
86
undefined value:
_<no value>
_
_
empty value:
_
simple string:
_bar
null value:
_null
special characters:
_1.0-123
_500€
_?&>=:/
number:
_59614658972
list:
_[foo bar]
iterate over list:
_foo
_bar
iterate over undefined:
iterate over list with index:
_0:foo
_1:bar
access element in list:
_bar
map:
_map[bar:foo foo:bar]
empty map:
_map[]
iterate over map with key and value:
_bar:foo
_foo:bar
access element in map:
_bar
access subelements:
_baz
sprig:
_BAR
_foo
_foo
_foo
backslash:
_\.\/
urls:
_map[github:https://github.com google:[https://google.com http://google.de]]
include:
_
_test
json:
_map[abc:123 def:[a b c] ghi:[{,!?!,}]]
_{"abc":123,"def":["a","b","c"],"ghi":"[{,!?!,}]"}
{
"abc":"123"
,"def":"[A B C]"
,"ghi":"[{,!?!,}]"
}