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]
Other format: [Raw text]

Re: output content after <br>



    Thanks for your help. I tried
    <xsl:template match="content">
         <xsl:value-of select="node()"/>
         <xsl:apply-templates/>
    </xsl:template>
  
    But it just seemed to add the first part of the content element twice;


that's because you asked for it twice.
Once with the value-of and once with the apply-templates.

You just want

<xsl:template match="content">
     <xsl:apply-templates/>
</xsl:template>

<xsl:template match="break">
<br/>
</xsl:template>

but the first template is equivalent to the default behaviour so you do
not need it at all and so the only thing you need is


<xsl:template match="break">
<br/>
</xsl:template>


David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]