asciidoc-parser 0.19.0

Parser for AsciiDoc format
Documentation
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
use crate::{
    blocks::{ContentModel, MediaType},
    tests::prelude::*,
};

track_file!("ref/asciidoc-lang/docs/modules/blocks/pages/build-basic-block.adoc");

non_normative!(
    r#"
= Build a Basic Block
:y: Yes
:n: No

"#
);

#[test]
fn build_delimited_block() {
    non_normative!(
        r#"
== Build a delimited block

In this section, we'll create a delimited sidebar block.
The delimiter for the sidebar style is four asterisks (`+****+`).

. Enter the opening delimiter at the beginning of a new line and then press kbd:[Enter].
+
----
Text in your document.

****

----

. On the new line, enter your content, such as paragraphs, delimited blocks, directives, and macros.
The delimited block's style will be applied to all of this content until the closing delimiter.
+
----
Text in your document.

****
This is content in a sidebar block.

image::name.png[]

This is more content in the sidebar block.
----

. To end the delimited block, press kbd:[Enter] at the end of your last line of content.
On the new line, type the closing delimiter.
+
"#
    );

    verifies!(
        r#"
----
Text in your document.

****
This is content in a sidebar block.

image::name.png[]

This is more content in the sidebar block.
****
----
"#
    );

    let doc = Parser::default().parse(
    "Text in your document.\n\n****\nThis is content in a sidebar block.\n\nimage::name.png[]\n\nThis is more content in the sidebar block.\n****",
);

    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::Simple(SimpleBlock {
                    content: Content {
                        original: Span {
                            data: "Text in your document.",
                            line: 1,
                            col: 1,
                            offset: 0,
                        },
                        rendered: "Text in your document.",
                    },
                    source: Span {
                        data: "Text in your document.",
                        line: 1,
                        col: 1,
                        offset: 0,
                    },
                    style: SimpleBlockStyle::Paragraph,
                    title_source: None,
                    title: None,
                    caption: None,
                    number: None,
                    anchor: None,
                    anchor_reftext: None,
                    attrlist: None,
                },),
                Block::CompoundDelimited(CompoundDelimitedBlock {
                    blocks: &[
                        Block::Simple(SimpleBlock {
                            content: Content {
                                original: Span {
                                    data: "This is content in a sidebar block.",
                                    line: 4,
                                    col: 1,
                                    offset: 29,
                                },
                                rendered: "This is content in a sidebar block.",
                            },
                            source: Span {
                                data: "This is content in a sidebar block.",
                                line: 4,
                                col: 1,
                                offset: 29,
                            },
                            style: SimpleBlockStyle::Paragraph,
                            title_source: None,
                            title: None,
                            caption: None,
                            number: None,
                            anchor: None,
                            anchor_reftext: None,
                            attrlist: None,
                        },),
                        Block::Media(MediaBlock {
                            type_: MediaType::Image,
                            target: Span {
                                data: "name.png",
                                line: 6,
                                col: 8,
                                offset: 73,
                            },
                            macro_attrlist: Attrlist {
                                attributes: &[],
                                anchor: None,
                                source: Span {
                                    data: "",
                                    line: 6,
                                    col: 17,
                                    offset: 82,
                                },
                            },
                            source: Span {
                                data: "image::name.png[]",
                                line: 6,
                                col: 1,
                                offset: 66,
                            },
                            title_source: None,
                            title: None,
                            caption: None,
                            number: None,
                            anchor: None,
                            anchor_reftext: None,
                            attrlist: None,
                        },),
                        Block::Simple(SimpleBlock {
                            content: Content {
                                original: Span {
                                    data: "This is more content in the sidebar block.",
                                    line: 8,
                                    col: 1,
                                    offset: 85,
                                },
                                rendered: "This is more content in the sidebar block.",
                            },
                            source: Span {
                                data: "This is more content in the sidebar block.",
                                line: 8,
                                col: 1,
                                offset: 85,
                            },
                            style: SimpleBlockStyle::Paragraph,
                            title_source: None,
                            title: None,
                            caption: None,
                            number: None,
                            anchor: None,
                            anchor_reftext: None,
                            attrlist: None,
                        },),
                    ],
                    context: "sidebar",
                    source: Span {
                        data: "****\nThis is content in a sidebar block.\n\nimage::name.png[]\n\nThis is more content in the sidebar block.\n****",
                        line: 3,
                        col: 1,
                        offset: 24,
                    },
                    title_source: None,
                    title: None,
                    caption: None,
                    number: None,
                    anchor: None,
                    anchor_reftext: None,
                    attrlist: None,
                },),
            ],
            source: Span {
                data: "Text in your document.\n\n****\nThis is content in a sidebar block.\n\nimage::name.png[]\n\nThis is more content in the sidebar block.\n****",
                line: 1,
                col: 1,
                offset: 0,
            },
            warnings: &[],
            source_map: SourceMap(&[]),
            catalog: Catalog::default(),
        }
    );

    non_normative!(
        r#"
That's it.
You've built a delimited block.


"#
    );
}

#[test]
fn single_line_listing() {
    verifies!(
        r#"
== Build a block from a paragraph

In some cases, you can style a block using the style's name.
If the content is contiguous (not interrupted by empty lines or comment lines), you can assign the block style's name in an attribute list placed above the content.
This format is often used for single-line listings:

[source]
....
include::example$block.adoc[tag=opt-listing]
....

"#
    );

    let mut parser = Parser::default();

    let mi = crate::blocks::Block::parse(
        crate::Span::new("[listing]\nsudo dnf install asciidoc"),
        &mut parser,
    )
    .unwrap_if_no_warnings()
    .unwrap();

    assert_eq!(
        mi.item,
        Block::Simple(SimpleBlock {
            content: Content {
                original: Span {
                    data: "sudo dnf install asciidoc",
                    line: 2,
                    col: 1,
                    offset: 10,
                },
                rendered: "sudo dnf install asciidoc",
            },
            source: Span {
                data: "[listing]\nsudo dnf install asciidoc",
                line: 1,
                col: 1,
                offset: 0,
            },
            style: SimpleBlockStyle::Listing,
            title_source: None,
            title: None,
            caption: None,
            number: None,
            anchor: None,
            anchor_reftext: None,
            attrlist: Some(Attrlist {
                attributes: &[ElementAttribute {
                    name: None,
                    shorthand_items: &["listing"],
                    value: "listing"
                },],
                anchor: None,
                source: Span {
                    data: "listing",
                    line: 1,
                    col: 2,
                    offset: 1,
                },
            },),
        },)
    );

    assert_eq!(mi.item.raw_context().as_ref(), "paragraph");
    assert_eq!(mi.item.resolved_context().as_ref(), "listing");
    assert_eq!(mi.item.content_model(), ContentModel::Simple);
}

#[test]
fn single_line_quote() {
    verifies!(
        r#"
or single-line quotes:

----
include::example$block.adoc[tag=quote-name]
----

However, note that the lines of a styled paragraph are first parsed like a paragraph, then promoted to the specified block type.

"#
    );

    let mut parser = Parser::default();

    let mi = crate::blocks::Block::parse(
        crate::Span::new("[quote]\nNever do today what you can put off `'til tomorrow."),
        &mut parser,
    )
    .unwrap_if_no_warnings()
    .unwrap();

    assert_eq!(
        mi.item,
        Block::Quote(QuoteBlock {
            type_: QuoteType::Quote,
            content_model: ContentModel::Simple,
            content: Some(Content {
                original: Span {
                    data: "Never do today what you can put off `'til tomorrow.",
                    line: 2,
                    col: 1,
                    offset: 8,
                },
                rendered: "Never do today what you can put off ’til tomorrow.",
            }),
            blocks: &[],
            attribution: None,
            citetitle: None,
            source: Span {
                data: "[quote]\nNever do today what you can put off `'til tomorrow.",
                line: 1,
                col: 1,
                offset: 0,
            },
            title_source: None,
            title: None,
            anchor: None,
            anchor_reftext: None,
            attrlist: Some(Attrlist {
                attributes: &[ElementAttribute {
                    name: None,
                    shorthand_items: &["quote"],
                    value: "quote"
                },],
                anchor: None,
                source: Span {
                    data: "quote",
                    line: 1,
                    col: 2,
                    offset: 1,
                },
            },),
        },)
    );

    assert_eq!(mi.item.raw_context().as_ref(), "quote");
    assert_eq!(mi.item.resolved_context().as_ref(), "quote");
    assert_eq!(mi.item.content_model(), ContentModel::Simple);
}

non_normative!(
    r#"
That means that line comments will be dropped, which can impact verbatim blocks such as a listing block.
Thus, the delimited block form is preferred, especially when creating a verbatim block.

"#
);

non_normative!(
    r#"
== Summary of built-in blocks
// This section is just hanging here for the moment, it's not its final destination, I just didn't want to comment it out.

The following table identifies the built-in block styles, their delimiter syntax, purposes, and the substitutions performed on their contents.

include::partial$block-name-table.adoc[]
"#
);

// The included `block-name-table.adoc` partial is covered separately by
// `block_name_table.rs`.