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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
<h1>Document Title</h1>
<div>
<h2>First Section</h2>
<div>
<div>
<ul>
<li>
<p>One</p>
</li>
<li>
<p>Two</p>
</li>
</ul>
</div>
<div>
<p>Refer to <a href="#another-section">Another Section</a> or <a href="#another-section-1">Another Section</a>.</p>
</div>
</div>
</div>
<div>
<h2>Another Section</h2>
<div>
<div>
<table>
<tr>
<td>
<div>Note</div>
</td>
<td>
Here is some source code.
</td>
</tr>
</table>
</div>
<div>
<div>
<pre lang="ruby"><code>puts "Hello, World!"</code></pre>
</div>
</div>
<div>
<ul>
<li>
<p>❏ todo</p>
</li>
<li>
<p>✓ done</p>
</li>
</ul>
</div>
</div>
</div>
<div>
<h2>Another Section</h2>
<div>
<div>
<p>content</p>
</div>
</div>
</div>
|