1<?xml version='1.0'?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                xmlns:fo="http://www.w3.org/1999/XSL/Format"
4                xmlns:mml="http://www.w3.org/1998/Math/MathML"
5                version='1.0'>
6
7<!-- ********************************************************************
8     $Id$
9     ********************************************************************
10
11     This file is part of the XSL DocBook Stylesheet distribution.
12     See /README or http://nwalsh.com/docbook/xsl/ for copyright
13     and other information.
14
15     ******************************************************************** -->
16
17<xsl:template match="inlineequation">
18  <xsl:apply-templates/>
19</xsl:template>
20
21<xsl:template match="alt">
22</xsl:template>
23
24<!-- just send the MathML all the way through... -->
25<xsl:template match="mml:*">
26  <xsl:element name="{name(.)}">
27    <xsl:copy-of select="@*"/>
28    <xsl:apply-templates select="node()"/>
29  </xsl:element>
30</xsl:template>
31
32</xsl:stylesheet>
33