size: 854 B

1Definition lists are just like ordinary bullet lists, but with
2`:` as the marker instead of `-`, `+`, or `*`. The first
3paragraph of the list item is interpreted as the term, and
4the rest as the definition.
5
6```
7: apple
8
9 red fruit
10: banana
11
12 yellow fruit
13.
14<dl>
15<dt>apple</dt>
16<dd>
17<p>red fruit</p>
18</dd>
19<dt>banana</dt>
20<dd>
21<p>yellow fruit</p>
22</dd>
23</dl>
24```
25
26Loose:
27
28```
29: apple
30
31 red fruit
32
33: banana
34
35 yellow fruit
36.
37<dl>
38<dt>apple</dt>
39<dd>
40<p>red fruit</p>
41</dd>
42<dt>banana</dt>
43<dd>
44<p>yellow fruit</p>
45</dd>
46</dl>
47```
48
49```
50: apple
51 fruit
52
53 Paragraph one
54
55 Paragraph two
56
57 - sub
58 - list
59
60: orange
61.
62<dl>
63<dt>apple
64fruit</dt>
65<dd>
66<p>Paragraph one</p>
67<p>Paragraph two</p>
68<ul>
69<li>
70sub
71</li>
72<li>
73list
74</li>
75</ul>
76</dd>
77<dt>orange</dt>
78</dl>
79```
80
81````
82: ```
83 ok
84 ```
85.
86<dl>
87<dt></dt>
88<dd>
89<pre><code>ok
90</code></pre>
91</dd>
92</dl>
93````