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