Minna
f365204cc8
Add the text "### Nested HTML lists" to (#22946)
* Add the text "### Nested HTML lists" to
### Nested HTML Lists
List can be nested (lists inside lists):
##### Code:
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
##### Output:
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
* Fixed formatting and reordered sections
2018-11-21 23:00:02 -05:00
..
2018-11-20 12:43:02 +00:00
2018-11-09 22:28:59 +09:00
2018-11-21 23:00:02 -05:00
2018-11-15 17:43:39 +00:00
2018-11-21 22:05:25 +04:00
2018-11-20 14:55:13 -07:00