Re: [xsl] Tags to HTML page

Subject: Re: [xsl] Tags to HTML page
From: Mukul Gandhi <mukul_gandhi@xxxxxxxxx>
Date: Tue, 10 Aug 2004 00:44:52 -0700 (PDT)
Hi Raman,
Please try this XSL -

<?xml version="1.0"?> 
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
version="1.0">
 
<xsl:output method="xml" indent="yes" /> 

<xsl:template match="@* | node()">
  <xsl:copy>
   <xsl:apply-templates select="@* | node()" />
  </xsl:copy> 
</xsl:template>
 
<xsl:template match="h3">
  <myowntag:bind path="someCode">
    <xsl:copy-of select="." />
  </myowntag:bind>
</xsl:template>
 
</xsl:stylesheet>

The identity template is modified, to achieve the
desired result.

Regards,
Mukul

--- Subbiah <subbiah@xxxxxxxxxxxx> wrote:

> 
> Hi I have a page like this 
> 
> <html>
>   <head></head>
>   <body>
>      <h3>Test Conversion</h3>
>        <b> How to do it </b>
>   </body>
> </html>
> 
> 
> Whenever there is a  <h3> tag I should surrond it
> with more tags 
> 
> <myowntag:bind path="someCode"> 
> <h3>Test Conversion</h3>
> </myowntag>
> 
> 
> Basically the input is a JSP and I need to add some
> Tag libraries to it.
> 
> What would be the best way to do it.
> 
> regards,
> raman



	
		
__________________________________
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
http://promotions.yahoo.com/new_mail 

Current Thread
  • [xsl] Tags to HTML page
    • Subbiah - Tue, 10 Aug 2004 01:35:30 -0500
      • Mukul Gandhi - Tue, 10 Aug 2004 00:44:52 -0700 (PDT) <=
        • Subbiah - Tue, 10 Aug 2004 03:25:29 -0500
      • Michael Kay - Tue, 10 Aug 2004 08:48:32 +0100
      • <Possible follow-ups>
      • xptm - Wed, 11 Aug 2004 10:10:17 +0100