xsl-list
[Top] [All Lists]

RE: [xsl] Group Techniques by xslt

2009-12-03 23:50:46
Hi Martin,
 We have modified the line where you are generating element (<sc[0-9]>) and
it is working fine. I want your expert comments on this, whether this can
cause any problem.

  <xsl:if test="self::p[matches(@class,'^Head[0-9]+$')]">
   <xsl:text
disable-output-escaping="yes"><![CDATA[<sc]]></xsl:text><xsl:value-of
select="$level"/>
   <xsl:text disable-output-escaping="yes"><![CDATA[>]]></xsl:text>
  </xsl:if>
  <!--<xsl:element name="sc{$level}">-->
   
    ......

  <!--</xsl:element>-->
  <xsl:if test="self::p[matches(@class,'^Head[0-9]+$')]">
   <xsl:text
disable-output-escaping="yes"><![CDATA[</sc]]></xsl:text><xsl:value-of
select="$level"/>
   <xsl:text disable-output-escaping="yes"><![CDATA[>]]></xsl:text>
  </xsl:if>

Thanks a lot!!!

Thanks
...JSR
 


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--