Say I have a simple HTML <ul> list:
$html .= '<ul><li>One</li><li>Two</li><li>Three</li></ul>';
When embedHTML() is used with strictWordStyles = false, the list renders fine. There is no extra space between the listitems.
When strictWordStyles = true, there is an extra space between the listitems.
What do I need to do to get rid of the extra space?
Thanks.