-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.xml
More file actions
78 lines (68 loc) · 1.63 KB
/
lists.xml
File metadata and controls
78 lines (68 loc) · 1.63 KB
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
<?xml version="1.0"?>
<!DOCTYPE riscos-prm PUBLIC "-//Gerph//DTD PRM documentation 1.03//EN"
"http://gerph.org/dtd/103/prm.dtd">
<riscos-prm>
<chapter title="List element" number='1'>
<section title="Unordered list">
<p>Regular text before.</p>
<p>
<list>
<item>Item 1</item>
<item>Item 2</item>
<item><p>Item 3 in a paragraph</p></item>
<item>Item 4</item>
<item><p>Item 5 in a paragraph</p><p>With a second paragraph</p></item>
<item>Item 6</item>
</list>
</p>
<p>Regular text after.</p>
</section>
<section title="Ordered list">
<p>Regular text before.</p>
<p>
<list type='ordered'>
<item>Item 1</item>
<item>Item 2</item>
<item><p>Item 3 in a paragraph</p></item>
<item>Item 4</item>
<item><p>Item 5 in a paragraph</p><p>With a second paragraph</p></item>
<item>Item 6</item>
</list>
</p>
<p>Regular text after.</p>
</section>
<section title="Unordered nested lists">
<p>Regular text before.</p>
<p>
<list>
<item>Item 1</item>
<item>Item 2</item>
<item><p>Item 3 with sub-items</p>
<list>
<item>Item 3.1</item>
<item>Item 3.2</item>
</list>
</item>
<item>Item 4</item>
</list>
</p>
<p>Regular text after.</p>
</section>
</chapter>
<!-- MetaData -->
<meta>
<maintainer>
<email name="Gerph" address="gerph@gerph.org" />
</maintainer>
<disclaimer>
<p>
© Gerph, 2021.
</p>
</disclaimer>
<history>
<revision number="1" author="Gerph" date="26 Aug 2021" title="Initial version">
<change>Some examples of different types of lists</change>
</revision>
</history>
</meta>
</riscos-prm>