File: def-in-list.html

package info (click to toggle)
python-markdown 3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,128 kB
  • sloc: python: 11,989; makefile: 66; sh: 7
file content (25 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (7)
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
<p>: a paragraph that starts with a colon</p>
<ul>
<li>A List item</li>
<li>
<dl>
<dt>A def term</dt>
<dd>A def item</dd>
<dd>a second</dd>
</dl>
</li>
<li>
<dl>
<dt>Another def term</dt>
<dd>
<p>a loose item</p>
</dd>
<dd>
<p>a second</p>
</dd>
</dl>
</li>
<li>
<p>: a list item that starts with a colon</p>
</li>
</ul>