Japanese
Ordered List
Ordered List form is made by using <ol type= ..... >, <li>, </ol>.
Here, ...... is one of "1", "I", "i", "A", "a".
For example,
<ol type=I>
<li>a1
<li>a2
<ol type=1>
<li>b1
<li>b2
<ol type=a>
----
<li>c1
<li>c2
</ol>
<li>b3
</ol>
<li>a3
</ol>
brings
a1
a2
b1
b2
c1
c2
b3
a3