xsl-list
[Top] [All Lists]

Re: editing HTML inside <![CDATA[

2004-05-19 06:52:27

This is a FAQ, if you have control over your source format the usual
advice is not to use CDATA, that just tells the system that the stuff
that looks like html markup isn't markup at all but just Character DATA.

Your CDATA section has stopped the original XML parser parsing that
section to form a tree of nodes, in order to manipulate it you need to
parse the string you have to produce a node set, this isn't possible in
standard xslt without writing it out and running another transform on
the result, as you said, although some systems do have extension
functions that will parse strings (saxon has one, and msxml can do this
by escaping to script and calling its dom parser)

If however you can just modify your input form to look like
<SummaryHTML>
<html>
<html>
<body>
.....
.....
</body>
</html>
</SummaryHTML>

then your task would be a lot easier.


David

-- 
The LaTeX Companion
  http://www.awprofessional.com/bookstore/product.asp?isbn=0201362996
  http://www.amazon.co.uk/exec/obidos/tg/detail/-/0201362996/202-7257897-0619804


________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________


<Prev in Thread] Current Thread [Next in Thread>