Hi!
If you convert the following DOCX file to HTML, the styling of the heading in the appendix is broken.
Occurs in Aspose Words (Java) v24.2 but not in v22.9.
Sample file:
appendix.docx (14.4 KB)
Below is the expected and actual HTML produced, including screenshots.
Expected:
Actual:
Expected:
<html>
<body>
<div style="line-height:116%; font-family:Aptos; font-size:12pt">
<div>
<p style="margin-top:0pt; margin-bottom:8pt">
<span>Some text</span>
</p>
<p style="margin-top:0pt; margin-bottom:8pt">
<span> </span>
</p>
<p style="margin-top:0pt; margin-bottom:22pt; page-break-before:always; page-break-after:avoid; line-height:normal; widows:0; orphans:0; border-bottom:1.5pt solid #000000; padding-bottom:1pt; font-size:16pt">
<span style="font-family:Arial; font-weight:bold">Appendix A blah blah</span>
</p>
<p style="margin-top:6pt; margin-left:28.8pt; margin-bottom:12pt; text-indent:-28.8pt; page-break-after:avoid; line-height:130%; widows:0; orphans:0">
<span style="font-family:Arial; font-weight:bold">A.1</span>
<span style="width:10.79pt; font:7pt 'Times New Roman'; display:inline-block"> </span>
<span style="font-family:Arial; font-weight:bold">Something</span>
</p>
<p style="margin-top:0pt; margin-bottom:8pt">
<span> </span>
</p>
</div>
</div>
</body>
</html>
Actual:
<html>
<body>
<div style="line-height:116%; font-family:Aptos; font-size:12pt">
<div>
<p style="margin-top:0pt; margin-bottom:8pt">
<span>Some text</span>
</p>
<p style="margin-top:0pt; margin-bottom:8pt">
<span> </span>
</p>
<p style="margin-top:0pt; margin-bottom:22pt; page-break-before:always; page-break-after:avoid; line-height:normal; widows:0; orphans:0; border-bottom:1.5pt solid #000000; padding-bottom:1pt; font-size:16pt">
<span style="font-family:Arial; font-weight:bold">Appendix A blah blah</span>
</p>
<ol type="1" class="awlist1" style="margin:0pt; padding-left:0pt">
<li style="margin-top:6pt; margin-left:28.8pt; margin-bottom:12pt; text-indent:-28.8pt; page-break-after:avoid; line-height:130%; widows:0; orphans:0; font-family:Arial; font-weight:bold">
<span style="width:10.79pt; font:7pt 'Times New Roman'; display:inline-block"> </span>
<span>Something</span>
</li>
</ol>
<p style="margin-top:0pt; margin-bottom:8pt">
<span> </span>
</p>
</div>
</div>
</body>
</html>