[
Lists Home |
Date Index |
Thread Index
]
> No, I'm saying that it doesn't provide any way for me to say "please
> don't process the contents of this CDATA section as text; please process
> it as if the CDATA section wasn't there."
>
<snip/>
>
> I'm not interested in suppressing the event, but rather on suppressing
> its effect on the parser.
OK, I understand. No, that is not easily possible.
You could try this (not tested):
Clear the characterDataHandler in the startCDATASectionHandler,
then set a defaultHandler, getting the raw (but encoded) data + do your
own processing on them, and finally re-set everything in the
endCDATASectionHandler. That is problematic especially when you
have entity references, although it is possible to have them expanded.
Karl
|