[
Lists Home |
Date Index |
Thread Index
]
- From: ives.gobau.ig@belgium.agfa.com
- To: xml-dev@lists.xml.org
- Date: Fri, 24 Nov 2000 10:12:14 +0100
Han Chock Lee wrote:
> I have a xml document which contain
>
> <name>Nurse's Station</name>
>
> and in the stylesheet, I have specifed it as <xsl:value-of
> select="name" disable-output-escaping="no"/> to output it
> as ' instead of single quote character ' .
Have you tried to escape the ampersand (&) ?
<name>Nurse&apos;s Station</name>
This will render to:
Nurse's Station
Ives
|