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: RE: know how to code trade marks in xml?


Britt, James wrote:
> Take a look here for character entities:
> 
> http://www.ramsch.org/martin/uni/fmi-hp/iso8859-1.html

This only covers the ISO 8859-1 range, and by posting it here,
you are implying that it's OK to use the entity references in
place of the numeric character references without declaring the
entities first. This is only true in HTML documents.

http://www.oasis-open.org/cover/xml-ISOents.txt
is a more thorough reference, and can be used in an XML or
XSL document to declare the entities so that you will be
allowed to reference them in that document.

<?xml version="1.0"?>
<!DOCTYPE xsl:stylesheet SYSTEM "xml-ISOents.txt">
<xsl:stylesheet ...>
  ...&Verbar;...
</xsl:stylesheet>

   - Mike
_____________________________________________________________________________
mike j. brown, software engineer at  |  xml/xslt: http://skew.org/xml/
webb.net in denver, colorado, USA    |  personal: http://hyperreal.org/~mike/

 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]