[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()"/>


-- Ugo Cei - Consorzio di Bioingegneria e Informatica Medica P.le Volontari del Sangue, 2 - 27100 Pavia - Italy Phone: +39.0382.525100 - E-mail: [EMAIL PROTECTED]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to