xsl-list
[Top] [All Lists]

[xsl] Embedding an SSI echo in an XML attribute

2007-05-09 02:10:52
I need to generate an apache .sssi file that contains the following kind of code:

<a href="<!--#echo var="grar.5.url" encoding="none" -->">link</a>

To acheive this in XSLT 1 we generated the code as CDATA in a plain text file:

<xsl:text disable-output-escaping="yes">&lt;a href="</xsl:text>
<xsl:comment>#echo var='grar.5.url' encoding='none'</xsl:comment>
<xsl:text disable-output-escaping="yes">"&gt;link&lt;/a&gt;</xsl:text>

Can anyone advise on a cleaner way to do this using XSLT 2?

_________________________________________________________________
Txt a lot? Get Messenger FREE on your mobile. https://livemessenger.mobile.uk.msn.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--