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 """> <!-- quotation mark = APL quote,
26: U+0022 ISOnum -->
27: <!ENTITY amp "&#38;"> <!-- ampersand, U+0026 ISOnum -->
28: <!ENTITY lt "&#60;"> <!-- less-than sign, U+003C ISOnum -->
29: <!ENTITY gt ">"> <!-- greater-than sign, U+003E ISOnum -->
30: <!ENTITY apos "'"> <!-- apostrophe mark, U+0027 ISOnum -->
31:
32: <!-- Latin Extended-A -->
33: <!ENTITY OElig "Œ"> <!-- latin capital ligature OE,
34: U+0152 ISOlat2 -->
35: <!ENTITY oelig "œ"> <!-- latin small ligature oe, U+0153 ISOlat2 -->
36: <!-- ligature is a misnomer, this is a separate character in some languages -->
37: <!ENTITY Scaron "Š"> <!-- latin capital letter S with caron,
38: U+0160 ISOlat2 -->
39: <!ENTITY scaron "š"> <!-- latin small letter s with caron,
40: U+0161 ISOlat2 -->
41: <!ENTITY Yuml "Ÿ"> <!-- latin capital letter Y with diaeresis,
42: U+0178 ISOlat2 -->
43:
44: <!-- Spacing Modifier Letters -->
45: <!ENTITY circ "ˆ"> <!-- modifier letter circumflex accent,
46: U+02C6 ISOpub -->
47: <!ENTITY tilde "˜"> <!-- small tilde, U+02DC ISOdia -->
48:
49: <!-- General Punctuation -->
50: <!ENTITY ensp " "> <!-- en space, U+2002 ISOpub -->
51: <!ENTITY emsp " "> <!-- em space, U+2003 ISOpub -->
52: <!ENTITY thinsp " "> <!-- thin space, U+2009 ISOpub -->
53: <!ENTITY zwnj "‌"> <!-- zero width non-joiner,
54: U+200C NEW RFC 2070 -->
55: <!ENTITY zwj "‍"> <!-- zero width joiner, U+200D NEW RFC 2070 -->
56: <!ENTITY lrm "‎"> <!-- left-to-right mark, U+200E NEW RFC 2070 -->
57: <!ENTITY rlm "‏"> <!-- right-to-left mark, U+200F NEW RFC 2070 -->
58: <!ENTITY ndash "–"> <!-- en dash, U+2013 ISOpub -->
59: <!ENTITY mdash "—"> <!-- em dash, U+2014 ISOpub -->
60: <!ENTITY lsquo "‘"> <!-- left single quotation mark,
61: U+2018 ISOnum -->
62: <!ENTITY rsquo "’"> <!-- right single quotation mark,
63: U+2019 ISOnum -->
64: <!ENTITY sbquo "‚"> <!-- single low-9 quotation mark, U+201A NEW -->
65: <!ENTITY ldquo "“"> <!-- left double quotation mark,
66: U+201C ISOnum -->
67: <!ENTITY rdquo "”"> <!-- right double quotation mark,
68: U+201D ISOnum -->
69: <!ENTITY bdquo "„"> <!-- double low-9 quotation mark, U+201E NEW -->
70: <!ENTITY dagger "†"> <!-- dagger, U+2020 ISOpub -->
71: <!ENTITY Dagger "‡"> <!-- double dagger, U+2021 ISOpub -->
72: <!ENTITY permil "‰"> <!-- per mille sign, U+2030 ISOtech -->
73: <!ENTITY lsaquo "‹"> <!-- single left-pointing angle quotation mark,
74: U+2039 ISO proposed -->
75: <!-- lsaquo is proposed but not yet ISO standardized -->
76: <!ENTITY rsaquo "›"> <!-- single right-pointing angle quotation mark,
77: U+203A ISO proposed -->
78: <!-- rsaquo is proposed but not yet ISO standardized -->
79: <!ENTITY euro "€"> <!-- euro sign, U+20AC NEW -->
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>