Subject: Re: newline [\n] to <br />
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 24 Oct 2003 15:54:39 +0100
|
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
|