File: ordered_list_lazy_numbering.html

package info (click to toggle)
python-markdown2 2.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 6,492 kB
  • sloc: python: 6,201; perl: 1,493; php: 865; makefile: 37
file content (25 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (2)
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>Example 1:</p>

<ol>
<li>Most ordered lists</li>
<li>Start at number one</li>
<li>And go up from there</li>
</ol>

<p>Example 2:</p>

<ol start="2">
<li>Some lists might start from 2</li>
<li>And continue from there</li>
</ol>

<p>Example 3:</p>

<ol start="999">
<li>What about 999</li>
<li>And going to a thousand
<ol start="7">
<li>With some nested offset ordered lists</li>
<li>Just for good measure</li>
</ol></li>
</ol>