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]

Changing <b> to "["


Hi People,

I need to replace 
all <b>  and <i>  with "[" , and
all </b> and </i> with "]"
in a XML file.

Everything was fine with the xsl below,
but when I have a <b><i>text</i></b> sequence
the result is:

  [<i>text</i>]

And I need:

  [[text]]


Do you have some ideia to look inside the match and apply the template
again?

Thank you very much.

- - - - - - - - - - - - - - - - - - - - - - - - -
XSL used:

<!--MAIN TEMPLATE-->
<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

<!-ELEMENTS B and I-->
<xsl:template match="b|i">
  <xsl:text>[</xsl:text>
  <xsl:copy-of select="@*|node()"/>
  <xsl:text>]</xsl:text>  
</xsl:template>
- - - - - - - - - - - - - - - - - - - - - - - - -


 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]