This is a test of using HTML lists, with different numbering/lettering types, in a GitHub markdown document.
This HTML list code:
<ol type="a">
<li><strong>Text</strong></li>
<li><strong>Written</strong></li>
<ol type="1">
<li>Hello</li>
<li>Testing bug</li>
<ol type="A">
<li>Random thing</li>
<li>Still random</li>
</ol>
</ol>
</ol>
Renders like this on GitHub:
- Text
- Written
- Hello
- Testing bug
- Random thing
- Still random
Note that both the top level list, and third level list, both use lower-case lettering, though upper-case is specified for the third level list.
Here is a test specifying both upper-case and lower-case roman numerals.
<ol type="I">
<li><strong>Text</strong></li>
<li><strong>Written</strong></li>
<ol type="1">
<li>Hello</li>
<li>Testing bug</li>
<ol type="i">
<li>Random thing</li>
<li>Still random</li>
</ol>
</ol>
</ol>
But lower-lettering is used for both:
- Text
- Written
- Hello
- Testing bug
- Random thing
- Still random
woohoo!