Subject: RE: Newbie Needs Help
From: Gabriel Paiz III <gpaiz@xxxxxxxxx>
Date: Fri, 18 Dec 1998 10:42:59 -0800
|
Jonathan Marsh writes:
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
> <!-- default templates -->
> <xsl:template><xsl:apply-templates/></xsl:template>
> <xsl:template match="textnode()"><xsl:value-of/></xsl:template>
I think there's a problem with the second rule, in that if you have a
textnode that has anonymous and non-anonymous textnodes (i.e. an inline
element like 'EMPH'), the processor will concatenate all the nodes into
one output textnode. I think you need a rule like below:
<xsl:template match="textnode()"><xsl:if match=".[$not$
textnode()]"><xsl:value-of/></xsl:if><xsl:apply-templates/></xsl:templat
e>
to handle mixed-content nodes.
__________________________________
SPX - Valley Forge T.I.S.
25691 Atlantic Ocean Drive Suite B-7
Lake Forest, CA 92630
USA www.vftis.com
__________________________________
Tel: (949) 460 0094
Fax: (949) 460 0095
e-Mail: gpaiz@xxxxxxxxx
__________________________________
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|