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

Subject: Re: [xsl] How to do a subscript from <sup>-34</sup>
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Tue, 07 May 2002 22:20:18 +0200
pandianoliver@xxxxxxxxxxxx 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



Current Thread