32 lines
412 B
HTML
Vendored
32 lines
412 B
HTML
Vendored
<ol>
|
|
<li>Ordered</li>
|
|
<li>List</li>
|
|
</ol>
|
|
<ul>
|
|
<li>Unordered</li>
|
|
<li>List</li>
|
|
</ul>
|
|
<ol>
|
|
<li>Ordered again</li>
|
|
</ol>
|
|
<p>Paragraph
|
|
* not a list item</p>
|
|
<ol>
|
|
<li>More ordered
|
|
* not a list item</li>
|
|
</ol>
|
|
<ul>
|
|
<li>Unordered again
|
|
1. not a list item</li>
|
|
</ul>
|
|
<ol start="3">
|
|
<li>Bird</li>
|
|
<li>McHale</li>
|
|
<li>Parish</li>
|
|
</ol>
|
|
<p>Not a list</p>
|
|
<ol start="3">
|
|
<li>Bird</li>
|
|
<li>McHale</li>
|
|
<li>Parish</li>
|
|
</ol> |