1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2                xmlns:mml="http://www.w3.org/1998/Math/MathML"
3		version="1.0">
4
5<xsl:import href="../html/xtchunk.xsl"/>
6
7<xsl:param name="html.ext" select="'.xhtm'"/>
8
9<xsl:output method="xml"/>
10
11<xsl:template match="mml:*">
12  <xsl:element name="{name(.)}">
13    <xsl:copy-of select="@*"/>
14    <xsl:apply-templates/>
15  </xsl:element>
16</xsl:template>
17
18</xsl:stylesheet>