typestar

Ordered lists in HTML

A numbered list for steps, where the order is the point.

<ol start="3">
  <li>Clone the repository</li>
  <li>Install the dependencies</li>
  <li>Run the test suite</li>
</ol>
<ol type="a">
  <li>Draft</li>
  <li>Review</li>
</ol>

How it works

  1. start begins the count somewhere other than one.
  2. reversed counts down instead of up.
  3. type switches to letters or roman numerals.

The run, in numbers

Lines
9
Characters to type
163
Tokens
60
Three-star pace
65 tpm

At the three-star pace of 65 tokens a minute, this run takes about 55 seconds.

Type this snippet

Step 2 of 5 in Lists, step 12 of 28 in Document structure.

← Previous Next →