Forums / General / Nested lists
Dariusz Wlodarczyk
Tuesday 23 December 2003 1:19:09 pm
I wont have something like this:
1. First number * First bullet * Second bullet 2. Second number3. Third number
but XMLText don't like this:
<ol> <li>First number</li> <ul> <li>First bullet</li> <li>Second bullet</li> </ul> <li>Second number</li> <li>Third number</li></ol>
So, next i try this:
<ol><li>First number</li></ol> <ul> <li>First bullet</li> <li>Second bullet</li> </ul> <ol start=2> <li>Second number</li> <li>Second number</li></ol>
But System don't like parameter start :(
It is possible to have nested lists in XMLText ? If yes please write how.