Hello,
I am highlighting a word in HTML format. My code is:
<?php
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocxFromTemplate('../../files/TemplateHTML.docx');
$docx->replaceVariableByHTML('ADDRESS', 'inline', '<p style="font-family: verdana; font-size: 11px">C/ MatÃÂÂas Turrión 24, Madrid 28043 <b style="color: white;background: red;">Spain</b></p>', array('isFile' => false, 'parseDivsAsPs' => true, 'downloadImages' => false));
$docx->createDocx('example_replaceTemplateVariableByHTML_1');
?>
O/P DOCX File: https://goo.gl/BUhAFQ
My problem is I cannot remove the red highlight from the word using "No Color" MS Word option.