I'm having several problems with my lists, both <ul> and <ol>. I'd appreciate any advice I can get.
- Any time I have a <p> element inside a <ul> or and <ol>, two things go wrong:
1. The <body> element closes before the <p> element
2. The <p> element is at a level 0 indent rather than a level 1 (L0 and L1 in the Qualifier column of the conversion table)
Example:
This:
- From the menu bar, select Help, and then select About Whatever.
An information box appears showing xyz.
- Select Close to close the box.
Comes out as this:
ol> <li> From the menu bar, select Help, and then select About Whatever. </li> </ol></body>.
<p> An information box appears showing xyz. </p>
<li> Select Close to close the box.</li>
and the "An information box" paragraph is not indented.
Bottom line: I want to be able to have a <p> in a list without breaking the structure. The <p> must be indented so it is shown to be related to the <li>.
2. Lists in tasks are bulleted, rather than numbered.
Example:
This:
To view login details:
1. Open it.
2. Do it.
3. Close it.
Comes out as this:
<stepsection> To view login details: </stepsection
- <ol><li>Open it.<li>
- <li> Do it.</li>
- <li>Close it.</li></ol>
Bottom line, I want my procedures/tasks numbered, not bulleted.
Conversion Table Entries for lists:
Ordered Lists
Unordered Lists
Thanks in advance for any help you can provide.