Next in thread → Next in month →

DOCBOOK-APPS: Re: [xsl] not wellformed contents of xsl:template

From
Jack Cushman <>
Date
2001-08-06T21:38:47+00:00
ID
Thread
DOCBOOK-APPS: Re: [xsl] not wellformed contents of xsl:template
> That's not sufficient. You must do this:
>
> <xsl:text disable-output-escaping="yes">&lt;tagname&gt;</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">&lt;</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 →