Hi,
I am trying to insert a table in a list, for example:
(1) some text
(2) ---TABLE---
I do this approximately as follows:
$list[] = "some text"
$table= new wordFragment($docx);
$table->addTable($tableContent, $tableOptions);
$list[] = $table;
$docx->addList($list);
However, in the resulting document, the table is not shown but instead all the table contents are just printed as one inline row.
Can this be done/fixed?
Best regards,