Removing newlines in XSL
October 3rd, 2008 by Gavin ColborneThansk to Mark Stradling for this tip, the below little template is useful to remove new lines using XSL:
<xsl:template name="removelines"> <xsl:param name="text" /> <xsl:value-of select="translate($text,'
','')" /> </xsl:template>
