Subject: Re: xml to html paragraphing
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 29 Mar 2001 19:04:22 +0100
|
in your xsl file just write something like:
<xsl:template match="p">
<xsl:copy><xsl:value-of select="."></xsl:copy>
</xsl:template>
all content include <p> should be copied to your html final.
NO!!!!
xsl:value-of produces the string value so will through away any
element children of th ep.
You just want <xsl:copy-of select="."/> as has been said by several
people already. Also you need to fix the source so there _is_ a p
element to match on not just th etext <p>.
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- Re: xml to html paragraphing, (continued)
- Peter Flynn - Thu, 29 Mar 2001 11:31:11 -0500 (EST)
- Java XML - Thu, 29 Mar 2001 11:46:27 -0500 (EST)
- David Carlisle - Thu, 29 Mar 2001 12:11:12 -0500 (EST)
- John Wang - Thu, 29 Mar 2001 12:43:25 -0500 (EST)
- David Carlisle - Thu, 29 Mar 2001 13:05:17 -0500 (EST) <=
- Peter Flynn - Thu, 29 Mar 2001 21:27:17 -0500 (EST)
- Clapham, Paul - Thu, 29 Mar 2001 12:00:10 -0500 (EST)
- John Wang - Thu, 29 Mar 2001 12:33:52 -0500 (EST)
- Pinch, David - Thu, 29 Mar 2001 12:35:32 -0500 (EST)
|
|