I would like to remove the line break that follows all text that says See the Exhibit "
Unwanted linebreak as shown in notepadd++:
alt text http://img13.imageshack.us/img13/9803/clcflinebreak.png
This is what I have so far:
<xsl:template match="p">
<!-- output everything but the See the exhibit text should have the line break removed -->
</xsl:template>
Any ideas? Thanks!
If you're using your transform to generate HTML output, the simplest approach is usually:
normalize-space
strips leading and trailing whitespace, and replaces runs of multiple whitespace characters within the string with a single space.To remove exactly a trailing CR/LF pair: