Annotation of embedaddon/libxml2/test/valid/dtds/xhtml-special.ent, revision 1.1.1.1

1.1       misho       1: <!-- Special characters for HTML -->
                      2: 
                      3: <!-- Character entity set. Typical invocation:
                      4:      <!ENTITY % HTMLspecial PUBLIC
                      5:         "-//W3C//ENTITIES Special for XHTML//EN"
                      6:         "http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent">
                      7:      %HTMLspecial;
                      8: -->
                      9: 
                     10: <!-- Portions (C) International Organization for Standardization 1986:
                     11:      Permission to copy in any form is granted for use with
                     12:      conforming SGML systems and applications as defined in
                     13:      ISO 8879, provided this notice is included in all copies.
                     14: -->
                     15: 
                     16: <!-- Relevant ISO entity set is given unless names are newly introduced.
                     17:      New names (i.e., not in ISO 8879 list) do not clash with any
                     18:      existing ISO 8879 entity names. ISO 10646 character numbers
                     19:      are given for each character, in hex. values are decimal
                     20:      conversions of the ISO 10646 values and refer to the document
                     21:      character set. Names are Unicode names. 
                     22: -->
                     23: 
                     24: <!-- C0 Controls and Basic Latin -->
                     25: <!ENTITY quot    "&#34;"> <!--  quotation mark = APL quote,
                     26:                                     U+0022 ISOnum -->
                     27: <!ENTITY amp     "&#38;#38;"> <!--  ampersand, U+0026 ISOnum -->
                     28: <!ENTITY lt      "&#38;#60;"> <!--  less-than sign, U+003C ISOnum -->
                     29: <!ENTITY gt      "&#62;"> <!--  greater-than sign, U+003E ISOnum -->
                     30: <!ENTITY apos   "&#39;"> <!--  apostrophe mark, U+0027 ISOnum -->
                     31: 
                     32: <!-- Latin Extended-A -->
                     33: <!ENTITY OElig   "&#338;"> <!--  latin capital ligature OE,
                     34:                                     U+0152 ISOlat2 -->
                     35: <!ENTITY oelig   "&#339;"> <!--  latin small ligature oe, U+0153 ISOlat2 -->
                     36: <!-- ligature is a misnomer, this is a separate character in some languages -->
                     37: <!ENTITY Scaron  "&#352;"> <!--  latin capital letter S with caron,
                     38:                                     U+0160 ISOlat2 -->
                     39: <!ENTITY scaron  "&#353;"> <!--  latin small letter s with caron,
                     40:                                     U+0161 ISOlat2 -->
                     41: <!ENTITY Yuml    "&#376;"> <!--  latin capital letter Y with diaeresis,
                     42:                                     U+0178 ISOlat2 -->
                     43: 
                     44: <!-- Spacing Modifier Letters -->
                     45: <!ENTITY circ    "&#710;"> <!--  modifier letter circumflex accent,
                     46:                                     U+02C6 ISOpub -->
                     47: <!ENTITY tilde   "&#732;"> <!--  small tilde, U+02DC ISOdia -->
                     48: 
                     49: <!-- General Punctuation -->
                     50: <!ENTITY ensp    "&#8194;"> <!-- en space, U+2002 ISOpub -->
                     51: <!ENTITY emsp    "&#8195;"> <!-- em space, U+2003 ISOpub -->
                     52: <!ENTITY thinsp  "&#8201;"> <!-- thin space, U+2009 ISOpub -->
                     53: <!ENTITY zwnj    "&#8204;"> <!-- zero width non-joiner,
                     54:                                     U+200C NEW RFC 2070 -->
                     55: <!ENTITY zwj     "&#8205;"> <!-- zero width joiner, U+200D NEW RFC 2070 -->
                     56: <!ENTITY lrm     "&#8206;"> <!-- left-to-right mark, U+200E NEW RFC 2070 -->
                     57: <!ENTITY rlm     "&#8207;"> <!-- right-to-left mark, U+200F NEW RFC 2070 -->
                     58: <!ENTITY ndash   "&#8211;"> <!-- en dash, U+2013 ISOpub -->
                     59: <!ENTITY mdash   "&#8212;"> <!-- em dash, U+2014 ISOpub -->
                     60: <!ENTITY lsquo   "&#8216;"> <!-- left single quotation mark,
                     61:                                     U+2018 ISOnum -->
                     62: <!ENTITY rsquo   "&#8217;"> <!-- right single quotation mark,
                     63:                                     U+2019 ISOnum -->
                     64: <!ENTITY sbquo   "&#8218;"> <!-- single low-9 quotation mark, U+201A NEW -->
                     65: <!ENTITY ldquo   "&#8220;"> <!-- left double quotation mark,
                     66:                                     U+201C ISOnum -->
                     67: <!ENTITY rdquo   "&#8221;"> <!-- right double quotation mark,
                     68:                                     U+201D ISOnum -->
                     69: <!ENTITY bdquo   "&#8222;"> <!-- double low-9 quotation mark, U+201E NEW -->
                     70: <!ENTITY dagger  "&#8224;"> <!-- dagger, U+2020 ISOpub -->
                     71: <!ENTITY Dagger  "&#8225;"> <!-- double dagger, U+2021 ISOpub -->
                     72: <!ENTITY permil  "&#8240;"> <!-- per mille sign, U+2030 ISOtech -->
                     73: <!ENTITY lsaquo  "&#8249;"> <!-- single left-pointing angle quotation mark,
                     74:                                     U+2039 ISO proposed -->
                     75: <!-- lsaquo is proposed but not yet ISO standardized -->
                     76: <!ENTITY rsaquo  "&#8250;"> <!-- single right-pointing angle quotation mark,
                     77:                                     U+203A ISO proposed -->
                     78: <!-- rsaquo is proposed but not yet ISO standardized -->
                     79: <!ENTITY euro   "&#8364;"> <!--  euro sign, U+20AC NEW -->

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>