xsl-list
[Top] [All Lists]

Re: [xsl] how to remove namespace declarations

2007-08-28 06:58:34
Frank Marent wrote:

i have to remove namespace declarations in certain elements

  The following should help you:

    <xsl:template match="Facts">
       <xsl:copy-of select="." copy-namespaces="no"/>
    </xsl:template>

  Even if they are not used within XML names, namespace nodes are
copied by xsl:copy and xsl:copy-of (they could be used throught content
for instance).

  Regards,

--drkm























      
_____________________________________________________________________________ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

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

<Prev in Thread] Current Thread [Next in Thread>