XSLT html output problem with - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T01:20:03Z http://stackoverflow.com/feeds/question/914575 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/914575/xslt-html-output-problem-with 1 XSLT html output problem with David 2009-05-27T08:24:35Z 2009-05-27T10:13:44Z <p>Hi,</p> <p>The problem is, that my XSLT-Transformation process ( called by .NET ), doesn't leave the HTML content in the XSLT file alone ( which isn't xml-compliant like an <code>&lt;img&gt;</code> tag without an closing slash-sign ), so i'll get errors like:</p> <pre><code>&lt;pre&gt;System.Xml.Xsl.XslLoadException: XSLT-Compilererror. ---&gt; System.Xml.XmlException: The 'img'-Starttag in Line XY does'nt match with the Endtag of 'td'.&lt;/pre&gt; </code></pre> <p>How can I prevent this?</p> <p>I would like the XSLT-processor either to ignore all the content which is no "" element or just get it to recognize the valid html-tags..</p> <p>My XSL-Header looks like this ( copied from C#, so imagine the additional " are not there ):</p> <pre><code>"&lt;xsl:stylesheet version=\"2.0\" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" " + "xmlns:html=\"http://www.w3.org/1999/xhtml\" xmlns=\"http://www.w3.org/1999/xhtml\" " + "exclude-result-prefixes=\"html\"&gt;" + "&lt;xsl:output method=\"xhtml\" omit-xml-declaration=\"yes\" indent=\"yes\"/&gt;" + "&lt;xsl:preserve-space elements=\"*\" /&gt;" </code></pre> http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914601#914601 1 Answer by annakata for XSLT html output problem with annakata 2009-05-27T08:32:07Z 2009-05-27T08:32:07Z <p>AFAIK there is no way around this. XSLT <em>is</em> an implementation of XML and the content of an XSLT document must respect XML standards to compile.</p> <p>Fix your HTML to XHTML formatting.</p> http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914631#914631 0 Answer by Mario Menger for XSLT html output problem with Mario Menger 2009-05-27T08:38:50Z 2009-05-27T08:38:50Z <p>You either have to make the HTML inside the XSLT XML-compliant (which is still valid HTML), or if you really have to have the HTML be not XML-compliant, encapsulate the html in a CDATA block.</p> <p>For instance:</p> <pre><code>&lt;xsl:template .... &gt; &lt;![CDATA[ &lt;img src='...' &gt; ]]&gt; &lt;/xsl:template&gt; </code></pre> <p>Note that this is very ugly, and you would probably be better off making your HTML XML-compliant.</p> http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914829#914829 0 Answer by Marc Gravell for XSLT html output problem with Marc Gravell 2009-05-27T09:32:04Z 2009-05-27T09:32:04Z <p>What do you want to output? html or xhtml? You always write the xslt as valid xml:</p> <pre><code>&lt;img src="somepath" ... /&gt; </code></pre> <p>or</p> <pre><code>&lt;img src="somepath{withvalues}" ... /&gt; </code></pre> <p>But you use the <code>xsl:output</code> to control it; if you want html (i.e. ) then you would use:</p> <pre><code>&lt;xsl:output method="html" ... /&gt; </code></pre> <p>(note no "x" in the above) - or:</p> <pre><code>&lt;xsl:output method="xml" ... /&gt; </code></pre> <p>AFAIK, "xhtml" is not a valid option for <a href="http://www.w3schools.com/xsl/el%5Foutput.asp" rel="nofollow"><code>xsl:output/@method</code></a>, since it is already covered by "xml". You should also note the subtle default behaviour if you <em>don't</em> specify an <code>xsl:output/@method</code> depends on the top element (i.e. whether it starts <code>&lt;html&gt;...&lt;/html&gt;</code> or not).</p> http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914966#914966 0 Answer by Rune FS for XSLT html output problem with Rune FS 2009-05-27T10:13:44Z 2009-05-27T10:13:44Z <p>XHTML is as the name X implies XML img tags or any other none closed tags is not XHTML-strict compliant. However to easy transition from HTML to XHTML several levels of "strict"-ness is available, some of them not being XML compliant.</p> <p>if you rewrite your HTML to XHTML-strict you will have no problem</p>