I'm writing some XSLT to render the output of a Rich Text Box in an infopath form.
Occasionally I'll get something like this in the output:
"<span style="font-size: 11px" class="Apple-style-span" />"
And it breaks EVERYTHING. I can't use:
<xsl:if test="string(.) != '' or descendant-or-self::/@[string(.)]">
because technically it isn't empty. What are my options?