Re: modifying xalan to output invalid XML

2007-05-21 Thread keshlam
You can't have a PI inside an attribute value. Period. But you could have a value that represents a PI and have a serializer that breaks the XML rule forcing that escaping, outputting the < and > characters instead. __ "... Three things see no e

Re: modifying xalan to output invalid XML

2007-05-21 Thread Will Holcomb
On 5/21/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: First advice: DON'T output badly-formed documents. Set output mode to HTML (since that seems to be what you want to produce) and see if that gets you close enough. Then fix or replace whatever downsteam tool isn't accepting them. I'm mos