Skip to content

Commit

Permalink
Prevent blank line before first subject (#1643)
Browse files Browse the repository at this point in the history
  • Loading branch information
agoslen authored Jan 2, 2024
1 parent dc7dea2 commit 941beee
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,10 @@
</th><xsl:value-of select="$newline"/>
<td>
<xsl:for-each select="current-group()">
<xsl:for-each select="./*">
<xsl:if test="position()!=1">
<br/><xsl:value-of select="$newline"/>
</xsl:if>
<xsl:for-each select="./*">
<!-- Render the second tier of children based on the element name of the first tier -->
<xsl:choose>
<xsl:when test="local-name() = 'name' or local-name() = 'titleInfo'">
Expand Down

0 comments on commit 941beee

Please sign in to comment.