Hello,
We recommend you to change the Drupal 8 plugin. In plugins/drupal-8/node-to-docx/src/NodetoDocxHandler.php you can find the following method:
private function generateDocxFromHtml($html, $file_name_output) {
In this method, instead of:
$docx = new \Phpdocx\Create\CreateDocx();
$docx->embedHTML($html);
You can use:
$docx = new \Phpdocx\Create\CreateDocx();
$docx->embedHTML($html, array('useHTMLExtended' => true));
to enable using HTML Extended.
Regards.