I got an xhtml file containing links with multiple parameters :
index.jsp?foo=bar&foo2=bar2&foo3=bar3.
Saxon 9.5 tries to interpret &foo2 as an entity and obviously fails. I cannot change my xml (it is a web page from internet), I could pre-process it with some regex but want to avoid programming if possible.
java -jar %SAXON_HOME%\saxon9he.jar -xsl:transfo.xsl -s:pageWeb.xml -o:result.html -dtd:off --recognize-uri-query-parameters:false
does not work. Is it possible without modifying the xml ?
Thank you