I need create Order list in Order list in HTML.
For example:
<ol>
<li>Coffee</li>
<li>Tea
<ol>
<li>Black tea</li>
<li>Green tea</li>
</ol>
</li>
<li>Milk</li>
</ol>
This code not work in view. How to create this view:
1. Coffee
2. Tea
2-1. Black tea
2-2. Green tea
3. Milk
Thank you.