xsl-list
[Top] [All Lists]

Re: Problem with Output special char in HTML attribute

2004-12-07 10:12:56
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">
    &lt;a href="#" tabindex="&lt;?=$tabindex++?>">
  </xsl:text>
  ...
  <xsl:text disable-output-escaping="yes">
    &lt;/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/


--~------------------------------------------------------------------
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>
--~--