XSLT and XQuery on invalid html input, pieces of URI look like entities - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T02:07:03Z http://stackoverflow.com/feeds/question/879294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/879294/xslt-and-xquery-on-invalid-html-input-pieces-of-uri-look-like-entities 0 XSLT and XQuery on invalid html input, pieces of URI look like entities John Turnbull 2009-05-18T19:12:34Z 2009-05-18T19:25:10Z <p>I'm using Saxon 9 to analyze invalid html sources. Specifically the html has href values like the following:</p> <p>&lt;a href="blah.asp?fn=view&amp;g_varID=1234"&gt;some text&lt;/a&gt;</p> <p>I'm getting errors:</p> <p>"Error reported by XML parser: The reference to entity "g_varID" must end with the ';' delimiter."</p> <p>The xml parser is reading the "&amp;g_varID" string and complaining that there should be a ";" to delimit the entity. But, of course, this is not intended as an HTML entity -- it's just a piece of a URI.</p> <p>How can I tell the parser to ignore it? Note: I'm using non-schema-aware Saxon, not Saxon-SA.</p> <p>Thanks</p> http://stackoverflow.com/questions/879294/xslt-and-xquery-on-invalid-html-input-pieces-of-uri-look-like-entities/879303#879303 2 Answer by John Saunders for XSLT and XQuery on invalid html input, pieces of URI look like entities John Saunders 2009-05-18T19:15:13Z 2009-05-18T19:15:13Z <p>If your HTML is not XML, then how do you expect any XML processor to process it?</p> http://stackoverflow.com/questions/879294/xslt-and-xquery-on-invalid-html-input-pieces-of-uri-look-like-entities/879340#879340 0 Answer by Jeff Mc for XSLT and XQuery on invalid html input, pieces of URI look like entities Jeff Mc 2009-05-18T19:25:10Z 2009-05-18T19:25:10Z <p>Make sure you have a correct xhtml DOCTYPE. According to the xhtml1-strict.dtd that I'm looking at, the href attribute is declared CDATA, not PCDATA, which means literal &amp; is perfectly ok and should not be parsed as an entity.</p>