Skip to content

Commit

Permalink
ISO xslt updated, added smallcaps for notes title for layout 1951,, m…
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelligent2013 committed Aug 9, 2024
1 parent 0870720 commit bb2cd2b
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions xslt_src/common.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -12747,9 +12747,21 @@
<xsl:if test="following-sibling::*[1][self::iso:note] and not(preceding-sibling::*[1][self::iso:note])">
<!-- NOTES -->
<fo:block font-size="9.5pt" keep-with-next="always" margin-bottom="6pt" text-transform="uppercase">
<xsl:call-template name="getLocalizedString">
<xsl:with-param name="key">Note.pl</xsl:with-param>
</xsl:call-template>
<xsl:variable name="i18n_notes">
<xsl:call-template name="getLocalizedString">
<xsl:with-param name="key">Note.pl</xsl:with-param>
</xsl:call-template>
</xsl:variable>
<xsl:choose>
<xsl:when test="$layoutVersion = '1951'">
<xsl:call-template name="smallcaps">
<xsl:with-param name="txt" select="$i18n_notes"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$i18n_notes"/>
</xsl:otherwise>
</xsl:choose>
</fo:block>
</xsl:if>
</xsl:if>
Expand Down

0 comments on commit bb2cd2b

Please sign in to comment.