Page 1 of 1

An annoying bug with HTML lists

Posted: Thu Nov 05, 2009 8:45 am
by davidrolli
If I structure a list in the text area by indenting lines (image 1), this will not be reflected in the HTML export (image 2). This is very irritating for the reader because he will not understand the logic of the list. I should be like image 3.

Image 1
Image

Image 2
Image

Image 3
Image

In HTML code it should be:

Code: Select all

<ul>
  <li>List 1a</li>
  <li>List 1b</li>
  <ul>
    <li>List 2a</li>
    <li>List 2b</li>
    <li>List 2c</li>
  </ul>
  <li>List 1c</li>
</ul>
instead of:

Code: Select all

<ul><li>List 1a</li>
<li>List 1b</li>
<li>List 2a</li>
<li>List 2b</li>
<li>List 2c</li>
<li>List 1c</li>
</ul>