[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] parse inside a cdtata


Subject: Re: [xsl] parse inside a cdtata
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 3 Jun 2003 13:36:36 +0100

This is a FAQ,

> Id like to know if it's possible to parse a cdata content in XSL.

If your "html" is in fact well formed xml some some XSL systems (eg
saxon) have  extension elements to allow you to parse a string as xml.

A better solution is to not have the CDATA marked section.
CDATA means, in particular, that it is not _P_CDATA ie it should not be
_Parsed_ for markup, it is strange (but strangely common) to explictly
signal that some string should not be parsed, and then to require it to
be parsed.

If your xsl system hasn't got an extension element then you could see if
it supports the data URI type
document(concat('data:text/xml,',CONTENT))
would work in that case.
Failing that it would be possible but difficult to try to parse the
string by hand just using xslt substring-before and substring-after


David

________________________________________________________________________
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
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



Current Thread
Keywords