J
Joseph Kesselman
XSLT is namespace-aware. Your stylesheet copies a <span> element with no
namespace into the output document, which means it won't be recognized
as being an XHTML span element.
Change your code to:
<xsl:template match="x">
<span xmlns="http://www.w3.org/1999/xhtml">
<svg xmlns="http://www.w3.org/2000/svg" />
</span>
</xsl:template>
namespace into the output document, which means it won't be recognized
as being an XHTML span element.
Change your code to:
<xsl:template match="x">
<span xmlns="http://www.w3.org/1999/xhtml">
<svg xmlns="http://www.w3.org/2000/svg" />
</span>
</xsl:template>