Re: [xsl] create new elements as output

Subject: Re: [xsl] create new elements as output
From: Larry_Mason@xxxxxx
Date: Tue, 27 Mar 2001 12:59:06 -0600
changing
   <xsl:template match="FareRules">
           <xsl:element name="Text"/>
        <xsl:apply-templates select="PenRules"/>
        <xsl:apply-templates select="MinStay"/>
        <xsl:apply-templates select="MaxStay"/>
to
   <xsl:template match="FareRules">
           <Text>
        <xsl:apply-templates select="PenRules"/>
        <xsl:apply-templates select="MinStay"/>
        <xsl:apply-templates select="MaxStay"/>
                     </Text>

seems to solve it

Cheers!
Larry




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


Current Thread