XSLT and XQuery on invalid html input, pieces of URI look like entities - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T02:07:03Zhttp://stackoverflow.com/feeds/question/879294http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/879294/xslt-and-xquery-on-invalid-html-input-pieces-of-uri-look-like-entities0XSLT and XQuery on invalid html input, pieces of URI look like entitiesJohn Turnbull2009-05-18T19:12:34Z2009-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><a href="blah.asp?fn=view&g_varID=1234">some text</a></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 "&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#8793032Answer by John Saunders for XSLT and XQuery on invalid html input, pieces of URI look like entitiesJohn Saunders2009-05-18T19:15:13Z2009-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#8793400Answer by Jeff Mc for XSLT and XQuery on invalid html input, pieces of URI look like entitiesJeff Mc2009-05-18T19:25:10Z2009-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 & is perfectly ok and should not be parsed as an entity.</p>