Posted to tcl by evilotto at Fri Jun 28 23:54:11 GMT 2013view raw

  1. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
  2. xmlns:x="http://www.w3.org/1999/xhtml"
  3. >
  4.  
  5. <xsl:template match="x:*">
  6. <xsl:element name="{local-name(.)}">
  7. <xsl:apply-templates select="@*|*|text()"/>
  8. </xsl:element>
  9. </xsl:template>
  10.  
  11. <xsl:template match="@*">
  12. <xsl:attribute name="{name(.)}"><xsl:value-of select="."/></xsl:attribute>
  13. </xsl:template>
  14.  
  15. </xsl:stylesheet>
  16.