|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Problem with Output special char in HTML attribute
Hi Mulp,
> i've a problem with outputting special chars with xsl
To output an unescaped < within an attribute, you have to use
disable-output-escaping with the entire tag, i.e.:
<xsl:text disable-output-escaping="yes">
<a href="#" tabindex="<?=$tabindex++?>">
</xsl:text>
...
<xsl:text disable-output-escaping="yes">
</a>
</xsl:text>
but I doubt that this is really the best way to solve your problem.
Two other avenues that are worth exploring are (a) generating the
value of the tabindex attribute using XSLT rather than PHP and (b)
using a version of PHP that can live happily within an XML document,
if there is one (e.g. JSP has an XML syntax, so you don't have to use
non-XML-friendly <?...?> syntax all the time).
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








