XSLT html output problem with - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T01:20:03Zhttp://stackoverflow.com/feeds/question/914575http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/914575/xslt-html-output-problem-with1XSLT html output problem with David2009-05-27T08:24:35Z2009-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><img></code> tag without an closing slash-sign ), so i'll get errors like:</p>
<pre><code><pre>System.Xml.Xsl.XslLoadException: XSLT-Compilererror. ---> System.Xml.XmlException:
The 'img'-Starttag in Line XY does'nt match with the Endtag of 'td'.</pre>
</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>"<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\">" +
"<xsl:output method=\"xhtml\" omit-xml-declaration=\"yes\" indent=\"yes\"/>" +
"<xsl:preserve-space elements=\"*\" />"
</code></pre>
http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914601#9146011Answer by annakata for XSLT html output problem with annakata2009-05-27T08:32:07Z2009-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#9146310Answer by Mario Menger for XSLT html output problem with Mario Menger2009-05-27T08:38:50Z2009-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><xsl:template .... >
<![CDATA[
<img src='...' >
]]>
</xsl:template>
</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#9148290Answer by Marc Gravell for XSLT html output problem with Marc Gravell2009-05-27T09:32:04Z2009-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><img src="somepath" ... />
</code></pre>
<p>or</p>
<pre><code><img src="somepath{withvalues}" ... />
</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><xsl:output method="html" ... />
</code></pre>
<p>(note no "x" in the above) - or:</p>
<pre><code><xsl:output method="xml" ... />
</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><html>...</html></code> or not).</p>
http://stackoverflow.com/questions/914575/xslt-html-output-problem-with/914966#9149660Answer by Rune FS for XSLT html output problem with Rune FS2009-05-27T10:13:44Z2009-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>