6 Shared

<..open xslt script..>
 <![CDATA[
    <xsl:stylesheet version="1.0"
       xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    >
       <xsl:output omit-xml-declaration = "yes" method="xml" />
-_-_-

<..close xslt script..>
       <xsl:template match="*|@*|text()|comment()" >
         <xsl:copy>
           <xsl:apply-templates select="*|@*|text()|comment()" />
         </xsl:copy>
       </xsl:template>
    </xsl:stylesheet>
 ]]>
-_-_-