@@ -15,6 +15,35 @@ import module namespace diag = "http://exist-db.org/xquery/diagnostics" at "diag
15
15
16
16
declare namespace db5 = "http://docbook.org/ns/docbook" ;
17
17
18
+ (:~ Minimal article from the docs with inline element in next title
19
+ : @see author-reference.xml :)
20
+ declare variable $tests:article := document {
21
+ <article xmlns = "http://docbook.org/ns/docbook" xmlns:xlink = "http://www.w3.org/1999/xlink" version = "5.0" >
22
+ <info>
23
+ <title>Document title</title>
24
+ <date>1Q18</date>
25
+ </info>
26
+ <para>Introductory paragraph (s)</para>
27
+ <sect1 xml:id = "main-id" >
28
+ <title>Title of first main section</title>
29
+ <para>Lorem ipsum main</para>
30
+ <sect2 xml:id = "sub-id" >
31
+ <title>Title of first sub-section</title>
32
+ <para>Lorem ipsum sub</para>
33
+ <sect3 xml:id = "subsub-id" >
34
+ <title>Title of first subsub-section</title>
35
+ <para>Lorem ipsum subsub</para>
36
+ </sect3>
37
+ </sect2>
38
+ </sect1>
39
+ <sect1 xml:id = "next-id" >
40
+ <title>Title of <tag>second</tag> main section</title>
41
+ <para>Lorem ipsum next </para>
42
+ </sect1>
43
+ </article>
44
+
45
+ };
46
+
18
47
declare
19
48
%test:name('section-headings' )
20
49
%test:assertEmpty
@@ -51,3 +80,24 @@ function tests:orphan-listing() {
51
80
$l || ' is missing in ' || $l/ancestor::li/h3/code)
52
81
else ()
53
82
};
83
+
84
+ declare
85
+ %test:name('ToC rendering' )
86
+ %test:assertTrue
87
+ function tests:toc-inline () {
88
+ let $output := <ul class = "toc" >
89
+ <li>
90
+ <a href = "#main-id" >Title of first main section</a>
91
+ <ul>
92
+ <li>
93
+ <a href = "#sub-id" >Title of first sub-section</a>
94
+ </li>
95
+ </ul>
96
+ </li>
97
+ <li>
98
+ <a href = "#next-id" >Title of second main section</a>
99
+ </li>
100
+ </ul>
101
+ return
102
+ docbook:toc-db5 ($tests:article) eq $output
103
+ };
0 commit comments