Don't print out empty nodes

This commit is contained in:
Carol (Nichols || Goulding) 2016-10-14 21:29:05 -04:00
parent c7b78d8bce
commit c548630381
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ Unmatched: <xsl:value-of select="w:pPr/w:pStyle/@w:val" />
<xsl:text> </xsl:text>
</xsl:if>
</xsl:when>
<xsl:when test="normalize-space(w:t) != w:t">
<xsl:when test="normalize-space(w:t) != w:t and w:t != ''">
<xsl:text> </xsl:text>
</xsl:when>
</xsl:choose>