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
---
created: "2019-02-13T07:54:09.800525Z"
creator: insta@0.6.2
source: src/parser.rs
expression: parse(TEST_TEMPLATE).unwrap()
---
[
Template {
name: "template1",
indent_ignored: 4,
lines: [
TemplateLine {
indentation: " ",
segments: [
Content(
"line 1 with "
),
Placeholder(
"placeholder"
),
Content(
" in the middle"
)
]
}
]
},
Template {
name: "template2",
indent_ignored: 2,
lines: [
TemplateLine {
indentation: " ",
segments: [
Content(
"a line without a placeholder"
)
]
},
TemplateLine {
indentation: " ",
segments: [
Content(
"but with an "
),
Content(
"$"
),
Content(
"{escaped} dollar sign"
)
]
}
]
}
]