xsl-list
[Top] [All Lists]

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

2005-06-02 08:27:20

The forum has been very quiet for a while

???

I'm not sure where your confusion arises.  Your code explictly copies
the HTMl element twice, so you get two HTML elements in teh output.

    <xsl:template match="HTML">
        <xsl:copy>
       xsl:copy generates a copy of the current hTML element  (only the current
        element, not its children or attributes)


            <xsl:copy-of select="."/>

this copies the entire current (HTML) element including all descendents
and attributes so you get HTML again. Most likely, you just don't want
this line.


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

use the  exclude-result-prefixes attribute on xsl:stylesheet.

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--