This is an archived forum post. The information may be outdated. Contact us if you have any questions.

Problem with Numbered List

vaibhavraheja wrote on 2016-12-09:
Hi Team,

We are facing problem while converting the html which contains numbered list. In the HTML, we have Numbered list as shown below. Please check.

1. SampleDate1
2. SampleDate2
3. SampleDate3
4. SampleDate4

In the Final PDF Document, it is being displayed as shown below.

1. SampleDate1
1. SampleDate2
1. SampleDate3
1. SampleDate4
support wrote on 2016-12-12:
Hello,

I tried the following and it works for me
<ol>
 <li>SampleDate1</li>
 <li>SampleDate2</li>
 <li>SampleDate3</li>
 <li>SampleDate4</li>
<ol>

If you can post your HTML code, we can look into it.