1139749Simp// HTML Named Character Reference
2156000Smjacobclass NCR<string spelling, int codePoint> {
3101704Smjacob  string Spelling = spelling;
4101704Smjacob  int CodePoint = codePoint;
5101704Smjacob}
6101704Smjacob
7101704Smjacob// The list below includes named character references supported by Doxygen:
8101704Smjacob// http://www.stack.nl/~dimitri/doxygen/manual/htmlcmds.html
9101704Smjacob//
10101704Smjacob// It does not include all HTML 5 named character references.
11101704Smjacob//
12101704Smjacob// Corresponding code point values can be found here:
13101704Smjacob// http://www.w3.org/TR/2011/WD-html5-20110113/named-character-references.html
14101704Smjacob
15101704Smjacobdef : NCR<"copy",  0x000A9>;
16101704Smjacobdef : NCR<"COPY",  0x000A9>;
17101704Smjacobdef : NCR<"trade", 0x02122>;
18101704Smjacobdef : NCR<"TRADE", 0x02122>;
19101704Smjacobdef : NCR<"reg",   0x000AE>;
20101704Smjacobdef : NCR<"REG",   0x000AE>;
21101704Smjacobdef : NCR<"lt",    0x0003C>;
22101704Smjacobdef : NCR<"Lt",    0x0003C>;
23101704Smjacobdef : NCR<"LT",    0x0003C>;
24101704Smjacobdef : NCR<"gt",    0x0003E>;
25101704Smjacobdef : NCR<"Gt",    0x0003E>;
26101704Smjacobdef : NCR<"GT",    0x0003E>;
27156000Smjacobdef : NCR<"amp",   0x00026>;
28156000Smjacobdef : NCR<"AMP",   0x00026>;
29156000Smjacobdef : NCR<"apos",  0x00027>;
30156000Smjacobdef : NCR<"quot",  0x00022>;
31156104Smjacobdef : NCR<"QUOT",  0x00022>;
32156000Smjacobdef : NCR<"lsquo", 0x02018>;
33156000Smjacobdef : NCR<"rsquo", 0x02019>;
34156000Smjacobdef : NCR<"ldquo", 0x0201C>;
35156000Smjacobdef : NCR<"rdquo", 0x0201D>;
36156000Smjacobdef : NCR<"ndash", 0x02013>;
37156000Smjacobdef : NCR<"mdash", 0x02014>;
38156000Smjacob
39156000Smjacobdef : NCR<"Auml", 0x000C4>;
40156000Smjacobdef : NCR<"Euml", 0x000CB>;
41156000Smjacobdef : NCR<"Iuml", 0x000CF>;
42156000Smjacobdef : NCR<"Ouml", 0x000D6>;
43156000Smjacobdef : NCR<"Uuml", 0x000DC>;
44156000Smjacobdef : NCR<"Yuml", 0x00178>;
45156104Smjacobdef : NCR<"auml", 0x000E4>;
46156000Smjacobdef : NCR<"euml", 0x000EB>;
47156000Smjacobdef : NCR<"iuml", 0x000EF>;
48156000Smjacobdef : NCR<"ouml", 0x000F6>;
49156000Smjacobdef : NCR<"uuml", 0x000FC>;
50156000Smjacobdef : NCR<"yuml", 0x000FF>;
51156000Smjacob
52156000Smjacobdef : NCR<"Aacute", 0x000C1>;
53156000Smjacobdef : NCR<"Eacute", 0x000C9>;
54156000Smjacobdef : NCR<"Iacute", 0x000CD>;
55156000Smjacobdef : NCR<"Oacute", 0x000D3>;
56156000Smjacobdef : NCR<"Uacute", 0x000DA>;
57147883Sscottldef : NCR<"Yacute", 0x000DD>;
58156000Smjacobdef : NCR<"aacute", 0x000E1>;
59156000Smjacobdef : NCR<"eacute", 0x000E9>;
60101704Smjacobdef : NCR<"iacute", 0x000ED>;
61156000Smjacobdef : NCR<"oacute", 0x000F3>;
62147883Sscottldef : NCR<"uacute", 0x000FA>;
63147883Sscottldef : NCR<"yacute", 0x000FD>;
64147883Sscottl
65147883Sscottldef : NCR<"Agrave", 0x000C0>;
66156104Smjacobdef : NCR<"Egrave", 0x000C8>;
67147883Sscottldef : NCR<"Igrave", 0x000CC>;
68147883Sscottldef : NCR<"Ograve", 0x000D2>;
69147883Sscottldef : NCR<"Ugrave", 0x000D9>;
70147883Sscottl// def : NCR<"Ygrave", 0x01EF2>; // Defined neither in Doxygen, nor in HTML5.
71147883Sscottldef : NCR<"agrave", 0x000E0>;
72147883Sscottldef : NCR<"egrave", 0x000E8>;
73147883Sscottldef : NCR<"igrave", 0x000EC>;
74147883Sscottldef : NCR<"ograve", 0x000F2>;
75147883Sscottldef : NCR<"ugrave", 0x000F9>;
76147883Sscottldef : NCR<"ygrave", 0x01EF3>; // Defined in Doxygen, not defined in HTML5.
77148679Sgibbs
78148679Sgibbsdef : NCR<"Acirc", 0x000C2>;
79148679Sgibbsdef : NCR<"Ecirc", 0x000CA>;
80156104Smjacobdef : NCR<"Icirc", 0x000CE>;
81147883Sscottldef : NCR<"Ocirc", 0x000D4>;
82147883Sscottldef : NCR<"Ucirc", 0x000DB>;
83147883Sscottldef : NCR<"Ycirc", 0x00176>; // Not defined in Doxygen, defined in HTML5.
84147883Sscottldef : NCR<"acirc", 0x000E2>;
85147883Sscottldef : NCR<"ecirc", 0x000EA>;
86147883Sscottldef : NCR<"icirc", 0x000EE>;
87147883Sscottldef : NCR<"ocirc", 0x000F4>;
88147883Sscottldef : NCR<"ucirc", 0x000FB>;
89147883Sscottldef : NCR<"ycirc", 0x00177>;
90147883Sscottl
91147883Sscottldef : NCR<"Atilde", 0x000C3>;
92101704Smjacobdef : NCR<"Ntilde", 0x000D1>;
93101704Smjacobdef : NCR<"Otilde", 0x000D5>;
94134123Sobriendef : NCR<"atilde", 0x000E3>;
95134123Sobriendef : NCR<"ntilde", 0x000F1>;
96134123Sobriendef : NCR<"otilde", 0x000F5>;
97147883Sscottl
98147883Sscottldef : NCR<"szlig", 0x000DF>;
99147883Sscottl
100102199Smjacobdef : NCR<"ccedil", 0x000E7>;
101147883Sscottldef : NCR<"Ccedil", 0x000C7>;
102147883Sscottl
103157117Smjacobdef : NCR<"aring", 0x000E5>;
104157117Smjacobdef : NCR<"Aring", 0x000C5>;
105147883Sscottl
106147883Sscottldef : NCR<"nbsp", 0x000A0>;
107147883Sscottl
108101704Smjacobdef : NCR<"Gamma",   0x00393>;
109101704Smjacobdef : NCR<"Delta",   0x00394>;
110101704Smjacobdef : NCR<"Theta",   0x00398>;
111101704Smjacobdef : NCR<"Lambda",  0x0039B>;
112101704Smjacobdef : NCR<"Xi",      0x0039E>;
113101704Smjacobdef : NCR<"Pi",      0x003A0>;
114101704Smjacobdef : NCR<"Sigma",   0x003A3>;
115147883Sscottldef : NCR<"Upsilon", 0x003A5>;
116147883Sscottldef : NCR<"Phi",     0x003A6>;
117101704Smjacobdef : NCR<"Psi",     0x003A8>;
118147883Sscottldef : NCR<"Omega",   0x003A9>;
119147883Sscottl
120147883Sscottldef : NCR<"alpha",   0x003B1>;
121147883Sscottldef : NCR<"beta",    0x003B2>;
122147883Sscottldef : NCR<"gamma",   0x003B3>;
123147883Sscottldef : NCR<"delta",   0x003B4>;
124155521Smjacobdef : NCR<"epsilon", 0x003B5>;
125147883Sscottldef : NCR<"zeta",    0x003B6>;
126147883Sscottldef : NCR<"eta",     0x003B7>;
127147883Sscottldef : NCR<"theta",   0x003B8>;
128157117Smjacobdef : NCR<"iota",    0x003B9>;
129147883Sscottldef : NCR<"kappa",   0x003BA>;
130147883Sscottldef : NCR<"lambda",  0x003BB>;
131147883Sscottldef : NCR<"mu",      0x003BC>;
132147883Sscottldef : NCR<"nu",      0x003BD>;
133147883Sscottldef : NCR<"xi",      0x003BE>;
134147883Sscottldef : NCR<"pi",      0x003C0>;
135147883Sscottldef : NCR<"rho",     0x003C1>;
136147883Sscottldef : NCR<"sigma",   0x003C3>;
137147883Sscottldef : NCR<"tau",     0x003C4>;
138147883Sscottldef : NCR<"upsilon", 0x003C5>;
139147883Sscottldef : NCR<"phi",     0x003C6>;
140147883Sscottldef : NCR<"chi",     0x003C7>;
141147883Sscottldef : NCR<"psi",     0x003C8>;
142147883Sscottldef : NCR<"omega",   0x003C9>;
143101704Smjacobdef : NCR<"sigmaf",  0x003C2>;
144147883Sscottl
145147883Sscottldef : NCR<"sect",   0x000A7>;
146147883Sscottldef : NCR<"deg",    0x000B0>;
147147883Sscottldef : NCR<"prime",  0x02032>;
148147883Sscottldef : NCR<"Prime",  0x02033>;
149147883Sscottldef : NCR<"infin",  0x0221E>;
150147883Sscottldef : NCR<"empty",  0x02205>;
151147883Sscottldef : NCR<"plusmn", 0x000B1>;
152147883Sscottldef : NCR<"times",  0x000D7>;
153147883Sscottldef : NCR<"minus",  0x02212>;
154147883Sscottldef : NCR<"sdot",   0x022C5>;
155157117Smjacobdef : NCR<"part",   0x02202>;
156147883Sscottldef : NCR<"nabla",  0x02207>;
157147883Sscottldef : NCR<"radic",  0x0221A>;
158147883Sscottldef : NCR<"perp",   0x022A5>;
159147883Sscottldef : NCR<"sum",    0x02211>;
160147883Sscottldef : NCR<"int",    0x0222B>;
161147883Sscottldef : NCR<"prod",   0x0220F>;
162147883Sscottldef : NCR<"sim",    0x0223C>;
163147883Sscottldef : NCR<"asymp",  0x02248>;
164147883Sscottldef : NCR<"ne",     0x02260>;
165147883Sscottldef : NCR<"equiv",  0x02261>;
166147883Sscottldef : NCR<"prop",   0x0221D>;
167147883Sscottldef : NCR<"le",     0x02264>;
168147883Sscottldef : NCR<"ge",     0x02265>;
169147883Sscottldef : NCR<"larr",   0x02190>;
170147883Sscottldef : NCR<"rarr",   0x02192>;
171147883Sscottldef : NCR<"isin",   0x02208>;
172147883Sscottldef : NCR<"notin",  0x02209>;
173147883Sscottldef : NCR<"lceil",  0x02308>;
174147883Sscottldef : NCR<"rceil",  0x02309>;
175147883Sscottldef : NCR<"lfloor", 0x0230A>;
176147883Sscottldef : NCR<"rfloor", 0x0230B>;
177147883Sscottl
178147883Sscottl