File: ordered_list.html

package info (click to toggle)
ruby-ronn 0.10.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 764 kB
  • sloc: ruby: 1,587; sh: 22; makefile: 9
file content (28 lines) | stat: -rw-r--r-- 476 bytes parent folder | download | duplicates (4)
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
<div class='mp'>

<h1 id="Ordered-Lists">Ordered Lists</h1>
<h2 id="Simple-ordered-lists">Simple ordered lists</h2>

<h3 id="One-item-list">One-item list</h3>

<ol>
  <li>Hello, world!</li>
</ol>

<h3 id="Three-item-list">Three-item list</h3>

<ol>
  <li>Hello, world!</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>

<h3 id="Four-item-list-with-all-1s">Four-item list with all 1s</h3>

<ol>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
  <li>Item 4</li>
</ol>
</div>