This is the mail archive of the xsl-list@mulberrytech.com mailing list .


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

RE: & character in tags



>    ...
>   <fullName>US S&P 500</fullName>
>
The processor interprets "&" to signal the start of 
an entity reference. Without a closing ";" an entity
reference is incomplete. Hence the error message.
 
You must therefore escape the ampersand character.
 
Change your element to

<fullName>US S&amp;P 500</fullName>

Cheers,
Dr. Marc Beckers
Documentation Consultant
Software AG
Uhlandstraße 12
D-64297 Darmstadt
Phone +49-6151-92-1322
Fax              -1612
mailto:Marc.Beckers@softwareag.com
http://www.softwareag.com


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

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