I am using XslCompiledTransform() to convert an XML file to HTML. Is there a way I can prevent it from using short tags. e.g.,

<span></span> <!-- I want this even if content empty -->
<span/> <!-- stop doing this! ->

The short closing tags on span's are messign up my document no matter which browswer I use, though it is valid XML, it's just that 'span' is not allowed to have short tags.

Is there a setting I can put in my xsl, or in my C#.Net code to prevent short tags from being used?

Thanks, ~S

link|improve this question
A span with no attributes or content should be completely invisible. Would wrapping your span in an xsl:if block to check for content work for you? – Karmic Coder Aug 22 '11 at 21:50
The correct term is self-closing tags. – Max Toro Aug 22 '11 at 23:19
Good question, +1. See my answer for two alternative solutions. – Dimitre Novatchev Aug 23 '11 at 4:18
feedback

4 Answers

You can try <xsl:output method="html"/>, however the result would no longer be well-formed XML document.

Or, you can invoke the XslCompiledTransform.Transform() method passing as one of the parameters your own XmlWriter. In your implementation you are in full control and can implement any required serialization of the result tree.

link|improve this answer
This still generates the invalid <span/>, even with output method = "html". – Sheamus Aug 25 '11 at 13:39
@Sheamus: Then you definitely must modify the settings for your XmlWriter and/or write your class implementing XmlWriter, as I recommended in my answer.. – Dimitre Novatchev Aug 25 '11 at 13:56
feedback

In your XSLT use <xsl:output method="html"/> and then make sure your HTML result elements your stylesheet creates are in no namespace. Furthermore depending on how you use XslCompiledTransform in your C# code you need to make sure the xsl:output settings in the stylesheet are honoured. You can easily achieve that by transforming do a file or stream or TextWriter, in that case nothing has to be done. However if you for some reasons transform to an XmlWriter then you need to ensure it is created with the proper settings e.g.

XslCompiledTransform proc = new XslCompiledTransform();
proc.Load("sheet.xsl");

using (XmlWriter xw = XmlWriter.Create("result.html", proc.OutputSettings))
{
  proc.Transform("input.xml", null, xw);
}

But usually you should be fine by simply transforming to a Stream or TextWriter, in that case nothing in the C# code has to be done to honour the output method in the stylesheet.

link|improve this answer
<span/> is still generated. – Sheamus Aug 25 '11 at 13:40
feedback

The only solution I have been able to find, is to add logic to the XSL file. Basically if the the elements I wanted to wrap span around is empty, don't use the span element at all.

<xsl:if test="count(jar/beans) > 0">
   <xsl:apply-templates select="jar/beans"/>
</xsl:if>

Not ideal to have to insert this everywhere in my xsl file, to compensate for the fact that even though I choose output method "html", it more than willingly will generate illegal HTML.

Sigh.

link|improve this answer
feedback

Though I couldn't classify this as a direct solution (as it doesn't emit an empty element), the workaround I used was to put a space (using xsl:text) in the element -- since this is HTML markup, and if you are activating Standards mode (not quirks), the extra space doesn't change the rendered content. I also didn't have control over the invocation of the transform object.

<div class="clearBoth"><xsl:text> </xsl:text></div>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.