You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xalan.apache.org by "(Raul) Aulanet" <ra...@correo-aulanet.uniovi.es> on 2002/10/25 16:31:09 UTC

&# codes and symbols

 
a question for the big-ones,
after fight with it i can't do it anyone can helP me?????
I use xalan, and my question is simple, I need a xsl that transforms xml
with symbols and leave them in the same way 
the problem is that the xsl I make, make that the xalan change the codes
(&#x2061;) of the symbols for the symbols, and I don't want this.
I use to do it with a copy-of tag. 
 
I have something like this: 
<?xml version="1.0" encoding="ISO-8859-1"?>
 <elemento>
   <info>
     <mathForCopy display="block">
     <semantics>
     <mrow>
     <munder>
     <mrow>
     <mi>lim</mi>
     </mrow>
     <mrow>
     <mi>x</mi>
                                             <mo>&#x2192;</mo>
                                             <mi>&#x221E;</mi>
                                         </mrow>
                                     </munder>
                                     <mi>&#x2061;</mi>
     <mi>X</mi>
     </mrow>
     <annotation encoding="MathTypeMTEF"></annotation>
    </semantics>
 </mathForCopy>
</info>
 </elemento>
 
 
and i want to get this 
  
<?xml version="1.0" encoding="ISO-8859-1"?>
<html-tags>
     <mathForCopy display="block">
     <semantics>
     <mrow>
     <munder>
     <mrow>
     <mi>lim</mi>
     </mrow>
     <mrow>
     <mi>x</mi>
                                             <mo>&#x2192;</mo>
                                             <mi>&#x221E;</mi>
                                         </mrow>
                                     </munder>
                                     <mi>&#x2061;</mi>
     <mi>X</mi>
     </mrow>
     <annotation encoding="MathTypeMTEF"></annotation>
    </semantics>
 </mathForCopy>
 </html-tags>
 
the problem is that the xsl i make, make that the xalan change the codes
of the symbols for the symbols, and i don't want this.