Another total Nuby collection.
I have an xml file from which I wish to eliminate all elements that have any attributes at all. All I really need to do is eliminate the contents of the attribute. How do I do this?
My plan is to start with
<xsl:template match="Contains an attribute">
<bfbfb />
</xsl:template>
Of course the XPATH equivalent to "Contains an attribute" is unknown to me.
All help appreciated
Achava