xsl-list
[Top] [All Lists]

Re: newline [\n] to <br />

2003-10-24 07:54:39


You have a template matching text nodes, but like all templates it will
only fire if you apply templates to a node that matches.

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

does not apply templates to anything it just takes the string value of
the body element in the source. You need to replace value-of by
apply-templates.

David
PS

<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="location"/>
</xsl:attribute>

is a very long way of writing <a href="{location}">

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>