This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: How to do a subscript from <sup>-34</sup>


pandianoliver@netscape.net wrote:
> Hi
> Any help is greatly appreciated!!! 
> 
> How can I go through my xml file and replace the following with subscript: 
> <sup>-15</sup> 

Use the generic copy template and augment with your specific
rules:

  <xsl:stylesheet version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
   <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
   </xsl:template>

   <xsl:template match="sup">
     <sub>
       <xsl:apply-templates select="node()|@*"/>
     </sub>
   </xsl:template>
  </xsl:stylesheet>

J.Pietschmann


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]