1 |
joko |
1.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: docbook.xsl,v 1.4 2001/08/01 10:54:07 nwalsh Exp $ |
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:import href="../html/docbook.xsl"/> |
17 |
|
|
|
18 |
|
|
<!-- this has to be last because of document order nonsense --> |
19 |
|
|
<xsl:output method="xml" |
20 |
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" |
21 |
|
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/> |
22 |
|
|
|
23 |
|
|
<xsl:template match="mml:*"> |
24 |
|
|
<xsl:element name="{name(.)}"> |
25 |
|
|
<xsl:copy-of select="@*"/> |
26 |
|
|
<xsl:apply-templates/> |
27 |
|
|
</xsl:element> |
28 |
|
|
</xsl:template> |
29 |
|
|
|
30 |
|
|
</xsl:stylesheet> |