]> matita.cs.unibo.it Git - helm.git/commitdiff
NuPrlDefinition element handling added
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 10 Apr 2003 17:11:46 +0000 (17:11 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 10 Apr 2003 17:11:46 +0000 (17:11 +0000)
helm/nuprl_stylesheets/nuprl_content_to_html2.xsl
helm/nuprl_stylesheets/nuprl_mmlextension.xsl
helm/nuprl_stylesheets/nuprl_proof.xsl

index 43d420f2f6fd920cfdab3a73747d3e2a1258b5da..cc6e7c9cccee494274d07c21d7c12875924af0f7 100644 (file)
          </xsl:if>
 </xsl:template>
 
+<!-- NuPRLDefinition -->
+
+<xsl:template match="NuPrlDefinition">
+ <xsl:apply-templates select="*[1]"/>
+ <xsl:text> := </xsl:text>
+ <xsl:apply-templates select="*[2]"/>
+</xsl:template>
+
 <!-- DEFINITION -->
 
 <xsl:template match="Definition">
index 028579230a87ace26d81cd4337225db25f0249f9..f6c1590dfacc047dbb94b0df0a68677b93d226ae 100644 (file)
@@ -251,6 +251,18 @@ which generates the toplevel element (see for instance xlink) -->
 </xsl:template>
 
 
+<!-- NuPRLDefinition -->
+
+<xsl:template match="NuPrlDefinition">
+ <m:math>
+  <m:mrow>
+   <xsl:apply-templates select="*[1]"/>
+   <m:mo> := </m:mo>
+   <xsl:apply-templates select="*[2]"/>
+  </m:mrow>
+ </m:math>
+</xsl:template>
+
 <!-- DEFINITION -->
 
 <xsl:template match="Definition">
index f6eb2a7c095220935e52aacddab4257a48983bd0..b699ed402ad8f163c511517d2f9cfb90669708ce 100644 (file)
   </Definition>
 </xsl:template>
 
+<xsl:template match="NuPrlDefinition">
+ <NuPrlDefinition>
+  <xsl:apply-templates select="*"/>
+ </NuPrlDefinition>
+</xsl:template>
+
 <xsl:template match="node">
   <xsl:element name="Node">
     <xsl:apply-templates/>