Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following extract from the *Fields.xsl shows add the added "target" attribute.

Code Block
title*Fields.xsl - Code Extract
<a>
	<xsl:attribute name="href">
		<xsl:call-template name="vertical-bar">
			<xsl:with-param name="text" select="substring-before($str,'|')"/>
		</xsl:call-template>
	</xsl:attribute>
	<xsl:attribute name="target">_blank</xsl:attribute>
	<xsl:call-template name="vertical-bar">
		<xsl:with-param name="text" select="substring-after($str,'|')"/>
	</xsl:call-template>
</a>

...