Create a list with all list entries together, parents and children, like this:
- a
- b
- c
- d
- e
- a
c
- d
- e
- a
b
c
- d
- e
- a
- b
- c
- d
- e
If you want to get more beautiful and semantically correct nested lists with different bullets in it, go to the HTML source code, look at the lists code:
<ul> <li>a</li> </ul> <blockquote class="tr_bq"> <ul> <li>b</li> <li>c</li> </ul> </blockquote> <ul> <li>d</li> <li>e</li> </ul>and delete the code listed further:
... /*code to delete*/ </ul> <blockquote class="tr_bq"> /*end code to delete*/ ... ... /*code to delete*/ </blockquote> <ul> /*end code to delete*/ ...Then you get nested list as follows:
- a
- b
- c
- d
- e