Articles and sections in HTML
An article stands alone; a section is a titled part of something larger.
<article>
<h2>Why token speed matters</h2>
<p>Published <time datetime="2026-07-29">29 July 2026</time></p>
<section>
<h3>Words are the wrong unit</h3>
<p>Code is punctuation as much as prose.</p>
</section>
<section>
<h3>Counting tokens instead</h3>
<p>A lexer tells you where each token ends.</p>
</section>
</article>
How it works
- An
articleshould still make sense syndicated elsewhere. - Every
sectionwants a heading — otherwise use adiv. timecarries a machine-readable date indatetime.
The run, in numbers
- Lines
- 12
- Characters to type
- 320
- Tokens
- 80
- Three-star pace
- 70 tpm
At the three-star pace of 70 tokens a minute, this run takes about 69 seconds.
Step 2 of 7 in Page landmarks, step 2 of 23 in Semantics & metadata.