Hello,
I'm converting docx to HTML. Using PHPDOCX 3.3.
$document = new TransformDoc();
$document->setStrFile($docxfilename);
$document->generateXHTML();
$document->validatorXHTML();
$row["html"] = $document->getStrXHTML();
That's ok, but when we have markered lists in DOCX document after converting phpdocx give us <p class="ae-P">.
Regural paragraph looks like <p class="Normal-P"> after convertion.
How to fix this problem? How to get standard HTML markered list
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
insted of not usful <p class="ae-P">???