However, when I try to generate a PDF from the same HTML, the bullet list shows up with no bullets, the table doesn't look like a table, and the number list isn't numbered. I must be missing a step?
I'm using this PHP code ($htmlDoc is the source HTML):
$tmpFileName = 'gtemp1';
$docx = new CreateDocx();
$docx->embedHTML($htmlDoc);
$docx->createDocx($tmpFileName); // Automatically appends .docx to the file name
$document = new TransformDoc();
$document->setStrFile($tmpFileName . '.docx');
$document->setStrOutputFile($fileName . '.pdf');
$document->generatePDF();
And the PDF has paragraph breaks, but no list/table formatting
Any suggestions appreciated
gary