1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                xmlns:mml="http://www.w3.org/1998/Math/MathML"
4                version='1.0'>
5
6<!-- ********************************************************************
7     $Id$
8     ********************************************************************
9
10     This file is part of the XSL DocBook Stylesheet distribution.
11     See /README or http://nwalsh.com/docbook/xsl/ for copyright
12     and other information.
13
14     ******************************************************************** -->
15
16<xsl:include href="/html/docbook.xsl"/>
17
18 <!-- this has to be last because of document order nonsense -->
19<xsl:output method="xml"/>
20
21<xsl:template match="mml:*">
22  <xsl:element name="{name(.)}">
23    <xsl:copy-of select="@*"/>
24    <xsl:apply-templates/>
25  </xsl:element>
26</xsl:template>
27
28</xsl:stylesheet>
29