This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: create new elements as output



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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]