...
11
2//- - - - - - - - -//
3Apple
4: Pomaceous fruit of plants of the genus Malus in
5the family Rosaceae.
6
7Orange
8: The fruit of an evergreen tree of the genus Citrus.
9//- - - - - - - - -//
10<dl>
11<dt>Apple</dt>
12<dd>Pomaceous fruit of plants of the genus Malus in
13the family Rosaceae.</dd>
14<dt>Orange</dt>
15<dd>The fruit of an evergreen tree of the genus Citrus.</dd>
16</dl>
17//= = = = = = = = = = = = = = = = = = = = = = = =//
18
19
20
212
22//- - - - - - - - -//
23Apple
24: Pomaceous fruit of plants of the genus Malus in
25 the family Rosaceae.
26: An American computer company.
27
28Orange
29: The fruit of an evergreen tree of the genus Citrus.
30//- - - - - - - - -//
31<dl>
32<dt>Apple</dt>
33<dd>Pomaceous fruit of plants of the genus Malus in
34the family Rosaceae.</dd>
35<dd>An American computer company.</dd>
36<dt>Orange</dt>
37<dd>The fruit of an evergreen tree of the genus Citrus.</dd>
38</dl>
39//= = = = = = = = = = = = = = = = = = = = = = = =//
40
41
42
433
44//- - - - - - - - -//
45Term 1
46Term 2
47: Definition a
48
49Term 3
50: Definition b
51//- - - - - - - - -//
52<dl>
53<dt>Term 1</dt>
54<dt>Term 2</dt>
55<dd>Definition a</dd>
56<dt>Term 3</dt>
57<dd>Definition b</dd>
58</dl>
59//= = = = = = = = = = = = = = = = = = = = = = = =//
60
61
62
634
64//- - - - - - - - -//
65Apple
66
67: Pomaceous fruit of plants of the genus Malus in
68 the family Rosaceae.
69
70Orange
71
72: The fruit of an evergreen tree of the genus Citrus.
73//- - - - - - - - -//
74<dl>
75<dt>Apple</dt>
76<dd>
77<p>Pomaceous fruit of plants of the genus Malus in
78the family Rosaceae.</p>
79</dd>
80<dt>Orange</dt>
81<dd>
82<p>The fruit of an evergreen tree of the genus Citrus.</p>
83</dd>
84</dl>
85//= = = = = = = = = = = = = = = = = = = = = = = =//
86
87
885
89//- - - - - - - - -//
90Term 1
91
92: This is a definition with two paragraphs. Lorem ipsum
93 dolor sit amet, consectetuer adipiscing elit. Aliquam
94 hendrerit mi posuere lectus.
95
96 Vestibulum enim wisi, viverra nec, fringilla in, laoreet
97 vitae, risus.
98
99: Second definition for term 1, also wrapped in a paragraph
100 because of the blank line preceding it.
101
102Term 2
103
104: This definition has a code block, a blockquote and a list.
105
106 code block.
107
108 > block quote
109 > on two lines.
110
111 1. first list item
112 2. second list item
113//- - - - - - - - -//
114<dl>
115<dt>Term 1</dt>
116<dd>
117<p>This is a definition with two paragraphs. Lorem ipsum
118dolor sit amet, consectetuer adipiscing elit. Aliquam
119hendrerit mi posuere lectus.</p>
120<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
121vitae, risus.</p>
122</dd>
123<dd>
124<p>Second definition for term 1, also wrapped in a paragraph
125because of the blank line preceding it.</p>
126</dd>
127<dt>Term 2</dt>
128<dd>
129<p>This definition has a code block, a blockquote and a list.</p>
130<pre><code>code block.
131</code></pre>
132<blockquote>
133<p>block quote
134on two lines.</p>
135</blockquote>
136<ol>
137<li>first list item</li>
138<li>second list item</li>
139</ol>
140</dd>
141</dl>
142//= = = = = = = = = = = = = = = = = = = = = = = =//
143
144
1456: Definition lists indented with tabs
146//- - - - - - - - -//
1470
148: ```
149 0
150//- - - - - - - - -//
151<dl>
152<dt>0</dt>
153<dd><pre><code> 0</code></pre>
154</dd>
155</dl>
156//= = = = = = = = = = = = = = = = = = = = = = = =//
View as plain text