I have tried to generate xhtml from the new 6.0 editor.
When I generate a bullet or numbered list the closing li tag keeps on getting removed, making the html not xhtml compliant.
Eg.
<ul>
<li>Some list item</li>
<li>Second list item</li>
<li>Third list item</li>
</ul>
Becomes:
<ul>
<li>Some list item
<li>Second list item
<li>Third list item</li>
</ul>
Have a look at the following live example:
- Some list item
- Second list item
- Third list item
Please help.
Kind Regards.