cases/lists.skeleton
111 lines · 975 bytes
1<h2>
2"Nesting"
3</h2>
4<ul>
5<li>
6"outer item"
7<ul>
8<li>
9"inner item"
10<ul>
11<li>
12"deepest item"
13</li>
14</ul>
15</li>
16<li>
17"second inner"
18</li>
19</ul>
20</li>
21<li>
22"second outer"
23</li>
24</ul>
25<h2>
26"Ordered"
27</h2>
28<ol>
29<li>
30"first"
31</li>
32<li>
33"second"
34<ol>
35<li>
36"second point one"
37</li>
38<li>
39"second point two"
40</li>
41</ol>
42</li>
43<li>
44"third"
45</li>
46</ol>
47<h2>
48"Checkboxes"
49</h2>
50<ul>
51<li>
52<code>
53"[ ]"
54</code>
55"not done"
56</li>
57<li>
58<code>
59"[X]"
60</code>
61"done"
62</li>
63<li>
64<code>
65"[-]"
66</code>
67"partially done"
68</li>
69</ul>
70<h2>
71"Description"
72</h2>
73<dl>
74<dt>
75"term one"
76</dt>
77<dd>
78"the first definition"
79</dd>
80<dt>
81"term two"
82</dt>
83<dd>
84"the second definition, which is soft-wrapped across two lines"
85</dd>
86<dt>
87<em>
88"marked up"
89</em>
90"term"
91</dt>
92<dd>
93"definitions hold inline markup"
94</dd>
95</dl>
96<h2>
97"Multi-paragraph items"
98</h2>
99<ul>
100<li>
101<p>
102"an item whose body has two paragraphs"
103</p>
104<p>
105"the second paragraph, indented under the bullet"
106</p>
107</li>
108<li>
109"a plain sibling"
110</li>
111</ul>