blob: ffb40493951fce1bdbe4506f9c0c028eb82e9bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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>
|