The "dashes" actually look to be underlines, coming from an empty paragraph:
Using xml Syntax Highlighting
<w:p w:rsidRDefault="005A0D87" w:rsidP="005A0D87" w:rsidR="005A0D87" w:rsidRPr="00A73B79">
<w:pPr>
<w:rPr>
<w:b/>
<w:u w:val="single"/>
</w:rPr>
</w:pPr>
</w:p>
Parsed in 0.001 seconds, using
GeSHi 1.0.8.4
This is because in the case of an empty paragraph, Conversion.java is adding a space:
Using java Syntax Highlighting
// Handle empty case - want the block to be preserved!
if (n.
getChildNodes().
getLength()==0
) {
((Element)foBlockElement
).
setAttribute( "white-space-treatment",
"preserve");
foBlockElement.
setTextContent(" ");
Parsed in 0.014 seconds, using
GeSHi 1.0.8.4