xsl-list
[Top] [All Lists]

why do I get duplicate <HTML> after xsl:copy ?

2005-06-02 08:12:04
Hi

The forum has been very quiet for a while but Im still hoping someone will be able to help with probably a very simple query.

Im trying to copy all the contents of an HTML file into another file but I get a duplicate <HTML> tag at the start. Ive tried out loads of options but theres always a duplication of the first <xsl:apply-templates> expression.

My .xsl file begins as such

----------------------
<xsl:template match="/">
       <xsl:apply-templates select="HTML"/>
   </xsl:template>
<xsl:template match="HTML">
       <xsl:copy>
           <xsl:copy-of select="."/>
           <xsl:apply-templates select="BODY"/>
       </xsl:copy>
   </xsl:template>

----------------------

at this point I get the output

-----------------
<HTML xmlns:saxon="http://saxon.sf.net/";>  <!-- Line 1-->
  <HTML>
     <HEAD/>
    <BODY/>
</HTML>
----------------

I dont want this Line 1 from the above output but am not able to get rid of it.

Could someone please help resolve this.

Thanks
Rahil


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--