diff options
Diffstat (limited to 'tests/docbook/html/math.xsl')
-rw-r--r-- | tests/docbook/html/math.xsl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/docbook/html/math.xsl b/tests/docbook/html/math.xsl new file mode 100644 index 00000000..502a930d --- /dev/null +++ b/tests/docbook/html/math.xsl @@ -0,0 +1,22 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<!-- ******************************************************************** + $Id$ + ******************************************************************** + + This file is part of the XSL DocBook Stylesheet distribution. + See ../README or http://nwalsh.com/docbook/xsl/ for copyright + and other information. + + ******************************************************************** --> + +<xsl:template match="inlineequation"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="alt"> +</xsl:template> + +</xsl:stylesheet> |