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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
use crate::{blocks::ListType, tests::prelude::*};
track_file!("ref/asciidoc-lang/docs/modules/lists/pages/qanda.adoc");
non_normative!(
r#"
= Question and Answer Lists
:keywords: qanda, Q & A, Q and A
A question and answer (qanda) list is a special form of a description list that renders as an ordered list.
The entries are numbered using Arabic numerals starting at 1.
== Question and answer list syntax
"#
);
#[test]
fn syntax_example() {
verifies!(
r#"
Each entry in the description list represents one question and answer combination.
The term or terms are used as the question and the description is used as the answer.
If an entry has multiple questions, each question is rendered on a new line.
----
include::example$description.adoc[tag=qa]
----
.Rendered qanda list
====
include::example$description.adoc[tag=qa]
====
"#
);
let doc = Parser::default().parse(
"[qanda]\nWhat is the answer?::\nThis is the answer.\n\nAre cameras allowed?::\nAre backpacks allowed?::\nNo.",
);
assert_eq!(
doc,
Document {
header: Header {
title_source: None,
title: None,
attributes: &[],
author_line: None,
revision_line: None,
comments: &[],
source: Span {
data: "",
line: 1,
col: 1,
offset: 0,
},
},
blocks: &[Block::List(ListBlock {
type_: ListType::Description,
items: &[
Block::ListItem(ListItem {
marker: ListItemMarker::DefinedTerm {
term: Content {
original: Span {
data: "What is the answer?",
line: 2,
col: 1,
offset: 8,
},
rendered: "What is the answer?",
},
marker: Span {
data: "::",
line: 2,
col: 20,
offset: 27,
},
source: Span {
data: "What is the answer?::",
line: 2,
col: 1,
offset: 8,
},
},
blocks: &[Block::Simple(SimpleBlock {
content: Content {
original: Span {
data: "This is the answer.",
line: 3,
col: 1,
offset: 30,
},
rendered: "This is the answer.",
},
source: Span {
data: "This is the answer.",
line: 3,
col: 1,
offset: 30,
},
style: SimpleBlockStyle::Paragraph,
title_source: None,
title: None,
caption: None,
number: None,
anchor: None,
anchor_reftext: None,
attrlist: None,
},),],
source: Span {
data: "What is the answer?::\nThis is the answer.",
line: 2,
col: 1,
offset: 8,
},
anchor: None,
anchor_reftext: None,
attrlist: None,
},),
Block::ListItem(ListItem {
marker: ListItemMarker::DefinedTerm {
term: Content {
original: Span {
data: "Are cameras allowed?",
line: 5,
col: 1,
offset: 51,
},
rendered: "Are cameras allowed?",
},
marker: Span {
data: "::",
line: 5,
col: 21,
offset: 71,
},
source: Span {
data: "Are cameras allowed?::",
line: 5,
col: 1,
offset: 51,
},
},
blocks: &[],
source: Span {
data: "Are cameras allowed?::",
line: 5,
col: 1,
offset: 51,
},
anchor: None,
anchor_reftext: None,
attrlist: None,
},),
Block::ListItem(ListItem {
marker: ListItemMarker::DefinedTerm {
term: Content {
original: Span {
data: "Are backpacks allowed?",
line: 6,
col: 1,
offset: 74,
},
rendered: "Are backpacks allowed?",
},
marker: Span {
data: "::",
line: 6,
col: 23,
offset: 96,
},
source: Span {
data: "Are backpacks allowed?::",
line: 6,
col: 1,
offset: 74,
},
},
blocks: &[Block::Simple(SimpleBlock {
content: Content {
original: Span {
data: "No.",
line: 7,
col: 1,
offset: 99,
},
rendered: "No.",
},
source: Span {
data: "No.",
line: 7,
col: 1,
offset: 99,
},
style: SimpleBlockStyle::Paragraph,
title_source: None,
title: None,
caption: None,
number: None,
anchor: None,
anchor_reftext: None,
attrlist: None,
},),],
source: Span {
data: "Are backpacks allowed?::\nNo.",
line: 6,
col: 1,
offset: 74,
},
anchor: None,
anchor_reftext: None,
attrlist: None,
},),
],
source: Span {
data: "[qanda]\nWhat is the answer?::\nThis is the answer.\n\nAre cameras allowed?::\nAre backpacks allowed?::\nNo.",
line: 1,
col: 1,
offset: 0,
},
title_source: None,
title: None,
anchor: None,
anchor_reftext: None,
attrlist: Some(Attrlist {
attributes: &[ElementAttribute {
name: None,
value: "qanda",
shorthand_items: &["qanda"],
},],
anchor: None,
source: Span {
data: "qanda",
line: 1,
col: 2,
offset: 1,
},
},),
},),],
source: Span {
data: "[qanda]\nWhat is the answer?::\nThis is the answer.\n\nAre cameras allowed?::\nAre backpacks allowed?::\nNo.",
line: 1,
col: 1,
offset: 0,
},
warnings: &[],
source_map: SourceMap(&[]),
catalog: Catalog {
refs: HashMap::from([]),
reftext_to_id: HashMap::from([]),
},
}
);
}