[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: replace table by one code tag

Subject: Re: replace table by one code tag
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 21 Jan 2005 12:17:30 GMT
code tag
  I thank you for your assistance, but I need something that imports all nodes
  inside the table and remove all nested <code> tags before replacing all by a
  global <code>

not sure how you think we would have guessed that from your example. Not
that XSLT would care but your requested output is invalid HTML, code is
a phrase level element so can not contain block level elements such as
p.



  I think

   <xsl:template match = "table[@bgcolor='blue']">
     <code>
    <xsl:apply-templates/>
     </code>
   </xsl:template>

  will not remove <code(s)> inside <table>

It may depending on what templates are applied.
For example
<xsl:template match="table//code">
 <xsl:apply-templates/>
</xsl:template>

would ensure that nested code elements just process their content
without producing more code elements.

I really can't guess how you want to map the row and cell structure to
your result.

You could for example do


 <xsl:template match = "table[@bgcolor='blue']">
   <code>
    <xsl:apply-templates select=".//td/node()/>
   </code>
 </xsl:template>

which will process the contents of all the td elements, but they will
just be concatenated with no space between.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.