Skip to content

Commit

Permalink
Fix for #125
Browse files Browse the repository at this point in the history
  • Loading branch information
Takatomo INOUE committed Aug 31, 2024
1 parent 8532a0e commit 2da0af0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion xslt/bibliography-to-html.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@
}</cite>
</xsl:if>
<xsl:if test="$title-page">
<h2>Title Page:</h2>
<xsl:choose>
<xsl:when test="parent::biblStruct/@type = 'manuscript'">
<h2>Full Title:</h2>
</xsl:when>
<xsl:otherwise>
<h2>Title Page:</h2>
</xsl:otherwise>
</xsl:choose>
<p><xsl:apply-templates select="$title-page"/></p>
</xsl:if>
<xsl:if test="$contributors">
Expand Down

0 comments on commit 2da0af0

Please sign in to comment.