This is the mail archive of the docbook-apps@lists.oasis-open.org mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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


------------------------------------------------------------------
To unsubscribe from this elist send a message with the single word
"unsubscribe" in the body to: docbook-apps-request@lists.oasis-open.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]