Next in thread →
Next in month →
DOCBOOK-APPS: Re: [xsl] not wellformed contents of xsl:template
> That's not sufficient. You must do this: > > <xsl:text disable-output-escaping="yes"><tagname></xsl:text> If you want to use it a lot, you can define that line as a variable: <xsl:variable name="lt"><xsl:text disable-output-escaping="yes"><</xsl:text></xsl:variable> and then insert it as <xsl:copy-of select="$lt"/>. I did this before I found ways to avoid malformed xml... :) --Jack
Next in thread →
Next in month →