The following HTML code should add only one blank line between the words "Foo" and "Bar":
<p>Foo<br><br></p><p>Bar</p>
But when embedding the code like this,
$docx->embedHTML('<p>Foo<br><br></p><p>Bar</p>');
the output Word document displays two blank lines between "Foo" and "Bar".
What am I missing?