up vote 4 down vote favorite
share [g+] share [fb]

I've got an XML document containing news stories, and the body element of a news story contains p tags amongst the plain text. When I use XSL to retrieve the body, e.g.

<xsl:value-of select="body" />

the p tags seem to get stripped out. I'm using Visual Studio 2005's implementation of XSL.

Does anyone have any ideas how to avoid this? Thanks.

link|improve this question

feedback

7 Answers

up vote 7 down vote accepted

Try to use

<xsl:copy-of select="body"/>

instead. From w3schools' documentation on same:

The <xsl:copy-of> element creates a copy of the current node.

Note: Namespace nodes, child nodes, and attributes of the current node are automatically copied as well!

link|improve this answer
Thanks Blair this has worked a treat. – gilles27 Oct 2 '08 at 13:43
feedback

If you don't have control over the input document, copy-of should work:

From http://www.xml.com/pub/a/2000/06/07/transforming/index.html

"The xsl:copy-of element, on the other hand, can copy the entire subtree of each node that the template selects. This includes attributes, if the xsl:copy-of element's select attribute has the appropriate value. In the following example, the template copies title element nodes and all of their descendant nodes -- in other words, the complete title elements, including their tags, subelements, and attributes:"

<xsl:template match="title">
  <xsl:copy-of select="*"/>
</xsl:template>
link|improve this answer
Thanks, this does work, I followed Blair Conrad's suggestion as I saw that first but you've both said the same thing. – gilles27 Oct 2 '08 at 13:43
feedback

If you have control over the input document, CDATA is the right way to go.

link|improve this answer
Thanks but I cannot change the format of the document. – gilles27 Oct 2 '08 at 13:30
feedback

Please see http://www.xmlplease.com/xsltidentity

link|improve this answer
feedback

The value of an XML element - this is true not just in XSLT but in DOM implementations - is the concatenation of all of its descendant text nodes. In XSLT, value-of emits an element's value, while copy-of emits a copy of the element.

link|improve this answer
feedback

The guys over at Symphony CMS have an interesting solution to this

http://symphony-cms.com/learn/articles/view/html-ninja-technique/

link|improve this answer
I think the identity transform is more "ninja" than what I saw on that page. I'm also not sure how writing "<xsl:element name="h4">" is more ninja than just writing "<h4>". – DevNull Jul 27 '11 at 23:30
feedback

It is because the engine is interpreting the <p> tag (excluding it for the output). You need to specify you want the content "as it is", using the "disable-output-escaping=yes|no" attribute.

<xsl:value-of select="body" disable-output-escaping="yes"/>
link|improve this answer
I tried this but it did not make any difference. – gilles27 Oct 2 '08 at 13:31
try with false...I always don't remember the correct use – Enreeco Oct 2 '08 at 13:32
another errore...it was YES or NO – Enreeco Oct 2 '08 at 13:34
disable-output-escaping is for enabling/disabling the escaping of reserved characters (> becomes > or stays >). – Goran Oct 2 '08 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.