Question
Numbering in topics created by importing a Word doc
I have created a project and imported a single Word file that
is 88 pg. in length and that uses Word's styles to create bulleted
and numbered paragraphs. In the HTML topics, the HTML code follows
the pattern below for all lists:
<p class=Bullet1>first bulleted item</p>
<li class=p-Bullet1><p class=Bullet1>second bulleted item</p></li>
Of course this causes the text to appear without bullets (or numbers) for the following three reasons:
- the <ol... tag is missing
- the first bulleted/numbered item is assigned a <p tag rather than an <li tag
- the second tag - <p... - overrides the <li tag
Is there some way to prevent this from happening? (If I import a smaller Word doc, the problem doesn't seem to happen as often. )
<p class=Bullet1>first bulleted item</p>
<li class=p-Bullet1><p class=Bullet1>second bulleted item</p></li>
Of course this causes the text to appear without bullets (or numbers) for the following three reasons:
- the <ol... tag is missing
- the first bulleted/numbered item is assigned a <p tag rather than an <li tag
- the second tag - <p... - overrides the <li tag
Is there some way to prevent this from happening? (If I import a smaller Word doc, the problem doesn't seem to happen as often. )
