diff options
Diffstat (limited to 'lib/docbook/docbook-xsl/xhtml/docbook.xsl')
-rw-r--r-- | lib/docbook/docbook-xsl/xhtml/docbook.xsl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/docbook/docbook-xsl/xhtml/docbook.xsl b/lib/docbook/docbook-xsl/xhtml/docbook.xsl new file mode 100644 index 000000000..3528901aa --- /dev/null +++ b/lib/docbook/docbook-xsl/xhtml/docbook.xsl @@ -0,0 +1,30 @@ +<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:mml="http://www.w3.org/1998/Math/MathML"
+ version='1.0'>
+
+<!-- ********************************************************************
+ $Id: docbook.xsl,v 1.1 2002/05/15 17:22:34 isberg Exp $
+ ********************************************************************
+
+ This file is part of the XSL DocBook Stylesheet distribution.
+ See ../README or http://nwalsh.com/docbook/xsl/ for copyright
+ and other information.
+
+ ******************************************************************** -->
+
+<xsl:import href="../html/docbook.xsl"/>
+
+ <!-- this has to be last because of document order nonsense -->
+<xsl:output method="xml"
+ doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
+ doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
+
+<xsl:template match="mml:*">
+ <xsl:element name="{name(.)}">
+ <xsl:copy-of select="@*"/>
+ <xsl:apply-templates/>
+ </xsl:element>
+</xsl:template>
+
+</xsl:stylesheet>
|