hello,
If I write like below, the '<td></td>' element in the word document does not wrap, they would go beyond the border of the page, is there any way to solve it,
thanks
$docx = new CreateDocx();
$s = "<table>
<tr><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td><td>TEST</td></tr>
</table>";
$docx->replaceTemplateVariableByHTML($v, 'block', $s, array('isFile'=>false, "downloadImages"=>true));