summaryrefslogtreecommitdiff
path: root/tex/context/base/x-openmath.xsl
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2006-04-27 00:58:00 +0200
committerHans Hagen <pragma@wxs.nl>2006-04-27 00:58:00 +0200
commit907edcfcac423f52f1b960a94a3242a0501c7afa (patch)
treec91f522c4d7a43dcbc1e9049bdd806e9f177cdee /tex/context/base/x-openmath.xsl
parente0ee7b45d9ca5201a01036ad44ee3c262da938ab (diff)
downloadcontext-907edcfcac423f52f1b960a94a3242a0501c7afa.tar.gz
stable 2006.04.27 00:58
Diffstat (limited to 'tex/context/base/x-openmath.xsl')
-rw-r--r--tex/context/base/x-openmath.xsl35
1 files changed, 35 insertions, 0 deletions
diff --git a/tex/context/base/x-openmath.xsl b/tex/context/base/x-openmath.xsl
new file mode 100644
index 000000000..e91b83e51
--- /dev/null
+++ b/tex/context/base/x-openmath.xsl
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+ <xsl:output method="xml"/>
+
+ <!-- newline, temp hack, latest texexec handles it okay -->
+
+ <xsl:template match ="processing-instruction()"><xsl:copy/><xsl:text>
+ </xsl:text></xsl:template>
+
+ <!-- xsl:template match="*"><xsl:copy/></xsl:template -->
+ <!-- xsl:element name="{name(current())}"><xsl:apply-templates/></xsl:element -->
+
+<!--
+ <xsl:template match="*">
+ <xsl:copy>
+ <xsl:apply-templates/>
+ </xsl:copy>
+ </xsl:template>
+-->
+
+ <xsl:template match = "node()|@*" >
+ <xsl:copy>
+ <xsl:apply-templates select = "node()|@*" />
+ </xsl:copy>
+ </xsl:template>
+
+ <xsl:template match="comment"></xsl:template>
+
+ <xsl:variable name='openmath-to-content-mathml'><value-of select='$stylesheet-path'/>/x-openmath.xsl</xsl:variable>
+
+ <xsl:include href="x-om2cml.xsl"/>
+
+</xsl:stylesheet>