I am creating a stylesheet to render text from an xml
file and
have a loop like:
<xsl:for-each select="t">
<xsl:apply-templates/>,
</xsl:for-each>
Now the source is:
<t>
bla
</t>
<t>
bla
</t>
<t>
whatever
</t>
And I want to avoid the newlines to be passed through
to the output.
The output must be:
bla,bla,whatever
and NOT
bla
,bla
,whatever
How - please?
white-space-collapse ?
Thanks
__________________________________
Do you Yahoo!?
Yahoo! Mail SpamGuard - Read only the mail you want.
http://antispam.yahoo.com/tools
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]