Created Debian package
[xmldoc.git] / test / lists.xml
1 <?xml version="1.0"?>
2
3 <doc style="main.css">
4
5    <book>
6
7    <titlepage>
8       <title>xmldoc lists check</title>
9    </titlepage>
10
11    <chapter>
12       <heading>Check 3 kinds of lists</heading>
13
14       <itemize>
15          <item>
16            The itemize element
17          </item>
18          <item>
19            creates bulleted lists
20            <itemize>
21              <item>
22                and can be nested
23              </item>
24           </itemize>
25          </item>
26       </itemize>
27
28       <enumerate>
29          <item>
30            The enumerate element
31          </item>
32          <item>
33            creates numbered lists
34            <enumerate>
35              <item>
36                and can also be nested
37              </item>
38           </enumerate>
39          </item>
40       </enumerate>
41
42       <description>
43          <item tag='first item'>
44            The description element
45          </item>
46          <item tag='second item'>
47            creates lists with description tags
48            <description>
49              <item tag='nested item'>
50                and can be nested
51              </item>
52           </description>
53          </item>
54       </description>
55
56    </chapter>
57
58    </book>
59
60 </doc>