lib/isodoc/ogc/ogc.reference-model.xsl in metanorma-ogc-2.5.12 vs lib/isodoc/ogc/ogc.reference-model.xsl in metanorma-ogc-2.5.13

- old
+ new

@@ -9664,12 +9664,15 @@ <xsl:template match="*[local-name() = 'tab']" mode="contents_item"> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="*[local-name() = 'strong']" mode="contents_item"> + <xsl:param name="element"/> <xsl:copy> - <xsl:apply-templates mode="contents_item"/> + <xsl:apply-templates mode="contents_item"> + <xsl:with-param name="element" select="$element"/> + </xsl:apply-templates> </xsl:copy> </xsl:template> <xsl:template match="*[local-name() = 'em']" mode="contents_item"> <xsl:copy> @@ -9732,10 +9735,13 @@ <xsl:value-of select="."/> </xsl:template> <!-- Note: to enable the addition of character span markup with semantic styling for DIS Word output --> <xsl:template match="*[local-name() = 'span']" mode="contents_item"> - <xsl:apply-templates mode="contents_item"/> + <xsl:param name="element"/> + <xsl:apply-templates mode="contents_item"> + <xsl:with-param name="element" select="$element"/> + </xsl:apply-templates> </xsl:template> <!-- =============== --> <!-- sourcecode --> <!-- =============== --> \ No newline at end of file