Good day,
I am using replaceVariableByHTML to display text but can't seem to display the text in the HTML colors defined.
Here is the HTML and text:
<ol> <li><span style="color: #00ff00;">TEXT</span></li> </ol>
$stylesReplacementTypeIgnore = array('w:sz', 'w:szCs', 'w:rFonts', 'w:lvlJc', 'w:color', 'w:rPr');
$docx->replaceVariableByHTML('TAG', 'block', $html, array('stylesReplacementType' => 'mixPlaceholderStyles', 'stylesReplacementTypeIgnore' => $stylesReplacementTypeIgnore, 'useHTMLExtended' => true));
I can't seem to figure out what replacements I need to add to see the TEXT in #00ff00.
Thanks.