<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" />

<xsl:template match="/">  
   <xsl:for-each select="/main/a/b" > <!-- EDIT this line and put in your own
                                           absolute XPath expression. The
                                           next block then iterates through all
                                           the selected nodes, and copies them
                                           to output. -->
START NODE--<xsl:copy-of select="." />--END NODE
   </xsl:for-each>
</xsl:template>

<xsl:template match="text()|@*" ></xsl:template> <!-- override builtin 
                                                      template that copies 
                                                      over text and 
                                                      attribute nodes -->

</xsl:stylesheet>

