File: loose_def_list.html

package info (click to toggle)
python-markdown 3.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,208 kB
  • sloc: python: 12,733; makefile: 66; sh: 7
file content (31 lines) | stat: -rw-r--r-- 363 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
26
27
28
29
30
31
<p>some text</p>
<dl>
<dt>term 1</dt>
<dd>
<p>def 1-1</p>
</dd>
<dd>
<p>def 2-2</p>
</dd>
<dt>term 2</dt>
<dt>term 3</dt>
<dd>
<p>def 2-1
line 2 of def 2-1</p>
</dd>
<dd>
<p>def 2-2</p>
<p>par 2 of def2-2</p>
</dd>
</dl>
<p>more text</p>
<dl>
<dt>term 4</dt>
<dd>not loose</dd>
<dt>term 5</dt>
<dd>
<p>loose</p>
</dd>
<dt>term 6</dt>
<dd>also not loose</dd>
</dl>