lib/isodoc/m3aawg/m3aawg.policy.xsl in metanorma-m3aawg-2.0.6 vs lib/isodoc/m3aawg/m3aawg.policy.xsl in metanorma-m3aawg-2.0.7
- old
+ new
@@ -2019,12 +2019,31 @@
<xsl:for-each select="/*/*[local-name()='bibliography']/*[not(@normative='true')] | /*/*[local-name()='bibliography']/*[local-name()='clause'][*[local-name()='references'][not(@normative='true')]]">
<xsl:sort select="@displayorder" data-type="number"/>
<xsl:apply-templates select="."/>
</xsl:for-each>
- </xsl:template><xsl:template match="text()">
- <xsl:value-of select="."/>
+ </xsl:template><xsl:variable name="tag_open">###fo:inline###</xsl:variable><xsl:variable name="tag_close">###/fo:inline###</xsl:variable><xsl:template match="text()" name="text">
+ <xsl:variable name="regex_standard_reference">([A-Z]{2,}(/[A-Z]{2,})* \d+(-\d+)*(:\d{4})?)</xsl:variable>
+ <xsl:variable name="text" select="java:replaceAll(java:java.lang.String.new(.),$regex_standard_reference,concat($tag_open,'$1',$tag_close))"/>
+ <xsl:call-template name="replace_fo_inline">
+ <xsl:with-param name="text" select="$text"/>
+ </xsl:call-template>
+ </xsl:template><xsl:template name="replace_fo_inline">
+ <xsl:param name="text"/>
+ <xsl:choose>
+ <xsl:when test="contains($text, $tag_open)">
+ <xsl:value-of select="substring-before($text, $tag_open)"/>
+ <xsl:text disable-output-escaping="yes"><fo:inline keep-together.within-line="always"></xsl:text>
+ <xsl:variable name="text_after" select="substring-after($text, $tag_open)"/>
+ <xsl:value-of select="substring-before($text_after, $tag_close)"/>
+ <xsl:text disable-output-escaping="yes"></fo:inline></xsl:text>
+ <xsl:call-template name="replace_fo_inline">
+ <xsl:with-param name="text" select="substring-after($text_after, $tag_close)"/>
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise><xsl:value-of select="$text"/></xsl:otherwise>
+ </xsl:choose>
</xsl:template><xsl:template match="*[local-name()='br']">
<xsl:value-of select="$linebreak"/>
</xsl:template><xsl:template match="*[local-name()='copyright-statement']">
<fo:block xsl:use-attribute-sets="copyright-statement-style">
<xsl:apply-templates/>
@@ -5652,10 +5671,11 @@
<xsl:apply-templates/>
</xsl:template><xsl:template match="*[local-name() = 'modification']/*[local-name() = 'p']">
<fo:inline><xsl:apply-templates/></fo:inline>
</xsl:template><xsl:template match="*[local-name() = 'modification']/text()">
<xsl:if test="normalize-space() != ''">
- <xsl:value-of select="."/>
+ <!-- <xsl:value-of select="."/> -->
+ <xsl:call-template name="text"/>
</xsl:if>
</xsl:template><xsl:template match="*[local-name() = 'quote']">
<fo:block-container margin-left="0mm">
<xsl:if test="parent::*[local-name() = 'note']">
<xsl:if test="not(ancestor::*[local-name() = 'table'])">
\ No newline at end of file