Re: [xsl] Stripping or converting HTML tags

Subject: Re: [xsl] Stripping or converting HTML tags
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 19 Oct 2004 16:31:38 +0100
> Is that still applicable if there is CSS controlling the output of <p>?

yes.

You asked that you get just the text of the table so that will convert

<table>
<tbody>
<tr>
<td>this</td><td><b>and</b> <em>this</em></td>
</tr>
<tr>
<td>this</td><td><b>and</b> <em>this</em></td>
</tr>
</tbody>
</table>

to
<p>


thisand this


thisand this


</p>

so clearly there is no way to css style the words within the paragraph.

If that isn't the transformation that you want then you need to describe
what you do want.

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