Re: [xsl] Replace new lines by <br> and double quote with special char: Problem retaining HTML tags

Subject: Re: [xsl] Replace new lines by <br> and double quote with special char: Problem retaining HTML tags
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 11 Sep 2006 09:10:14 +0100
That was not the code I posted, which also had this


  <xsl:template match="*">
    <xsl:copy>
      <xsl:copy-of select="@*"/>
      <xsl:apply-templates/>
    </xsl:copy>
  </xsl:template>


The code you posted had no templates that generated or copied element
nodes, so you get no nodes in the output.

Current Thread