<xsl:with-param name="outputstring" select="." /> value output omit html f
HTML formatting which is what I want, however, when I select and pass it
as param I lose my HTML formatting. I am passing the <xsl:with-param
name="outputString" select="." />. I'm passing it as param so I can search
and replace some string characters.
Here is the code:
<xsl:for-each select="text[@target='copy']">
<xsl:value-of select="."/>
<hr />
</xsl:for-each>
Same code but loose HTML formatting:
<xsl:for-each select="text[@target='copy']">
<xsl:call-template name="globalReplace">
<xsl:with-param name="outputString" select="." />
</xsl:call-template>
<hr />
</xsl:for-each>
Thanks for your help

