File: lists8.html

package info (click to toggle)
python-markdown 3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,128 kB
  • sloc: python: 11,989; makefile: 66; sh: 7
file content (39 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (8)
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
32
33
34
35
36
37
38
39
<h1>Lists with blockquotes</h1>
<ol>
<li>
<blockquote>
<p>Four-score and seven years ago...</p>
</blockquote>
</li>
<li>
<blockquote>
<p>We have nothing to fear...</p>
</blockquote>
</li>
<li>
<blockquote>
<p>This is it...</p>
</blockquote>
</li>
</ol>
<h1>Multi-line blockquotes</h1>
<ul>
<li>
<blockquote>
<p>Four-score and sever years ago
our fathers brought forth</p>
</blockquote>
</li>
<li>
<blockquote>
<p>We have nothing to fear
but fear itself</p>
</blockquote>
</li>
<li>
<blockquote>
<p>This is it
as far as I'm concerned</p>
</blockquote>
</li>
</ul>