I have a WYSIWYG editor where a user can capture HTML. When I use replaceVariableByHTML I want to import the HTML but keep the font size and font face the same as the template variable but allow the other elements of the HTML. How can I do this?
Here is the HTML it generates:
<ul> <li>This</li> <li>Is <ul> <li>A</li> </ul> </li> <li>Test</li> </ul> <p> </p> <p> </p> <table style="border-collapse: collapse; width: 100%;" border="1"> <tbody> <tr> <td style="width: 50%;"><strong>Header</strong></td> <td style="width: 50%;"><strong>Header</strong></td> </tr> <tr> <td style="width: 50%;">Contents</td> <td style="width: 50%;">Contents</td> </tr> </tbody> </table>