aboutsummaryrefslogtreecommitdiffstats
path: root/lib/docbook/docbook-xsl/xhtml/xtchunk.xsl
blob: 7695d2bc03698bc44cb3301cf157a587bbeea632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:mml="http://www.w3.org/1998/Math/MathML"
		version="1.0">

<xsl:import href="../html/xtchunk.xsl"/>

<xsl:param name="html.ext" select="'.xhtm'"/>

<xsl:output method="xml"/>

<xsl:template match="mml:*">
  <xsl:element name="{name(.)}">
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:element>
</xsl:template>

</xsl:stylesheet>