Joerg
Ugo Cei wrote:
[EMAIL PROTECTED] wrote:
The solution:
change
<xsl:value-of select="//dc:description"/>
to
<xsl:copy-of select="//dc:description"/>
I don't think this is a good solution. If your input is
<dc:description>first line <br/> second line</dc:description>
the first instruction will produce
first line second line
but the second will produce
<dc:description>first line <br/> second line</dc:description>
In order to produce:
first line <br/> second line
you need to use
<xsl:copy-of select="//dc:description/node()"/>
--
System Development VIRBUS AG Fon +49(0)341-979-7419 Fax +49(0)341-979-7409 [EMAIL PROTECTED] www.virbus.de
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]