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<!-- This stylesheet works with Saxon and Xalan; for XT use xtchunk.xsl -->
6
7<xsl:import href="../html/chunk.xsl"/>
8
9<xsl:param name="html.ext" select="'.xhtm'"/>
10
11<xsl:output method="xml"/>
12
13<xsl:template match="mml:*">
14  <xsl:element name="{name(.)}">
15    <xsl:copy-of select="@*"/>
16    <xsl:apply-templates/>
17  </xsl:element>
18</xsl:template>
19
20</xsl:stylesheet>
21