Re: [SUMMARY] XSLT does not maintain br 'format' tags in XML??

2003-03-25 Thread Ugo Cei
[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:descriptionfirst line br/ second line/dc:description the first instruction will produce first line second

Re: [SUMMARY] XSLT does not maintain br 'format' tags in XML??

2003-03-25 Thread Joerg Heinicke
Oh, thanks Ugo, a small but possibly painful mistake ... 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:descriptionfirst line

XSLT does not maintain br 'format' tags in XML??

2003-03-24 Thread hgadm
Dear all, I have a quite long text in an XML tag description with some in-line br / tags to format it (the text containing these tags was created by an HTML mask after a user input into it[in fact the php script that is processing the mask is replacing CR/LF with br /]) However after XSL

Re: XSLT does not maintain br 'format' tags in XML??

2003-03-24 Thread Joerg Heinicke
Hmm, XML, PHP, CR/LF, br/ - it seems a bit poor designed. Why aren't you doing the replacing in XSLT? But at least the solution should be to change xsl:value-of select=//dc:description/ to xsl:copy-of select=//dc:description/. Regards, Joerg [EMAIL PROTECTED] wrote: Dear all, I have a

[SUMMARY] XSLT does not maintain br 'format' tags in XML??

2003-03-24 Thread hgadm
The solution: change xsl:value-of select=//dc:description/ to xsl:copy-of select=//dc:description/ Thanks Florian and Joerg ! Regards, Holger On Mon, 24 Mar 2003, Joerg Heinicke wrote: Hmm, XML, PHP, CR/LF, br/ - it seems a bit poor designed. Why aren't you doing the