1// HTML Named Character Reference 2class NCR<string spelling, int codePoint> { 3 string Spelling = spelling; 4 int CodePoint = codePoint; 5} 6 7// The list below includes named character references supported by Doxygen: 8// http://www.stack.nl/~dimitri/doxygen/manual/htmlcmds.html 9// 10// It does not include all HTML 5 named character references. 11// 12// Corresponding code point values can be found here: 13// http://www.w3.org/TR/2011/WD-html5-20110113/named-character-references.html 14 15def : NCR<"copy", 0x000A9>; 16def : NCR<"COPY", 0x000A9>; 17def : NCR<"trade", 0x02122>; 18def : NCR<"TRADE", 0x02122>; 19def : NCR<"reg", 0x000AE>; 20def : NCR<"REG", 0x000AE>; 21def : NCR<"lt", 0x0003C>; 22def : NCR<"Lt", 0x0003C>; 23def : NCR<"LT", 0x0003C>; 24def : NCR<"gt", 0x0003E>; 25def : NCR<"Gt", 0x0003E>; 26def : NCR<"GT", 0x0003E>; 27def : NCR<"amp", 0x00026>; 28def : NCR<"AMP", 0x00026>; 29def : NCR<"apos", 0x00027>; 30def : NCR<"quot", 0x00022>; 31def : NCR<"QUOT", 0x00022>; 32def : NCR<"lsquo", 0x02018>; 33def : NCR<"rsquo", 0x02019>; 34def : NCR<"ldquo", 0x0201C>; 35def : NCR<"rdquo", 0x0201D>; 36def : NCR<"ndash", 0x02013>; 37def : NCR<"mdash", 0x02014>; 38 39def : NCR<"Auml", 0x000C4>; 40def : NCR<"Euml", 0x000CB>; 41def : NCR<"Iuml", 0x000CF>; 42def : NCR<"Ouml", 0x000D6>; 43def : NCR<"Uuml", 0x000DC>; 44def : NCR<"Yuml", 0x00178>; 45def : NCR<"auml", 0x000E4>; 46def : NCR<"euml", 0x000EB>; 47def : NCR<"iuml", 0x000EF>; 48def : NCR<"ouml", 0x000F6>; 49def : NCR<"uuml", 0x000FC>; 50def : NCR<"yuml", 0x000FF>; 51 52def : NCR<"Aacute", 0x000C1>; 53def : NCR<"Eacute", 0x000C9>; 54def : NCR<"Iacute", 0x000CD>; 55def : NCR<"Oacute", 0x000D3>; 56def : NCR<"Uacute", 0x000DA>; 57def : NCR<"Yacute", 0x000DD>; 58def : NCR<"aacute", 0x000E1>; 59def : NCR<"eacute", 0x000E9>; 60def : NCR<"iacute", 0x000ED>; 61def : NCR<"oacute", 0x000F3>; 62def : NCR<"uacute", 0x000FA>; 63def : NCR<"yacute", 0x000FD>; 64 65def : NCR<"Agrave", 0x000C0>; 66def : NCR<"Egrave", 0x000C8>; 67def : NCR<"Igrave", 0x000CC>; 68def : NCR<"Ograve", 0x000D2>; 69def : NCR<"Ugrave", 0x000D9>; 70// def : NCR<"Ygrave", 0x01EF2>; // Defined neither in Doxygen, nor in HTML5. 71def : NCR<"agrave", 0x000E0>; 72def : NCR<"egrave", 0x000E8>; 73def : NCR<"igrave", 0x000EC>; 74def : NCR<"ograve", 0x000F2>; 75def : NCR<"ugrave", 0x000F9>; 76def : NCR<"ygrave", 0x01EF3>; // Defined in Doxygen, not defined in HTML5. 77 78def : NCR<"Acirc", 0x000C2>; 79def : NCR<"Ecirc", 0x000CA>; 80def : NCR<"Icirc", 0x000CE>; 81def : NCR<"Ocirc", 0x000D4>; 82def : NCR<"Ucirc", 0x000DB>; 83def : NCR<"Ycirc", 0x00176>; // Not defined in Doxygen, defined in HTML5. 84def : NCR<"acirc", 0x000E2>; 85def : NCR<"ecirc", 0x000EA>; 86def : NCR<"icirc", 0x000EE>; 87def : NCR<"ocirc", 0x000F4>; 88def : NCR<"ucirc", 0x000FB>; 89def : NCR<"ycirc", 0x00177>; 90 91def : NCR<"Atilde", 0x000C3>; 92def : NCR<"Ntilde", 0x000D1>; 93def : NCR<"Otilde", 0x000D5>; 94def : NCR<"atilde", 0x000E3>; 95def : NCR<"ntilde", 0x000F1>; 96def : NCR<"otilde", 0x000F5>; 97 98def : NCR<"szlig", 0x000DF>; 99 100def : NCR<"ccedil", 0x000E7>; 101def : NCR<"Ccedil", 0x000C7>; 102 103def : NCR<"aring", 0x000E5>; 104def : NCR<"Aring", 0x000C5>; 105 106def : NCR<"nbsp", 0x000A0>; 107 108def : NCR<"Gamma", 0x00393>; 109def : NCR<"Delta", 0x00394>; 110def : NCR<"Theta", 0x00398>; 111def : NCR<"Lambda", 0x0039B>; 112def : NCR<"Xi", 0x0039E>; 113def : NCR<"Pi", 0x003A0>; 114def : NCR<"Sigma", 0x003A3>; 115def : NCR<"Upsilon", 0x003A5>; 116def : NCR<"Phi", 0x003A6>; 117def : NCR<"Psi", 0x003A8>; 118def : NCR<"Omega", 0x003A9>; 119 120def : NCR<"alpha", 0x003B1>; 121def : NCR<"beta", 0x003B2>; 122def : NCR<"gamma", 0x003B3>; 123def : NCR<"delta", 0x003B4>; 124def : NCR<"epsilon", 0x003B5>; 125def : NCR<"zeta", 0x003B6>; 126def : NCR<"eta", 0x003B7>; 127def : NCR<"theta", 0x003B8>; 128def : NCR<"iota", 0x003B9>; 129def : NCR<"kappa", 0x003BA>; 130def : NCR<"lambda", 0x003BB>; 131def : NCR<"mu", 0x003BC>; 132def : NCR<"nu", 0x003BD>; 133def : NCR<"xi", 0x003BE>; 134def : NCR<"pi", 0x003C0>; 135def : NCR<"rho", 0x003C1>; 136def : NCR<"sigma", 0x003C3>; 137def : NCR<"tau", 0x003C4>; 138def : NCR<"upsilon", 0x003C5>; 139def : NCR<"phi", 0x003C6>; 140def : NCR<"chi", 0x003C7>; 141def : NCR<"psi", 0x003C8>; 142def : NCR<"omega", 0x003C9>; 143def : NCR<"sigmaf", 0x003C2>; 144 145def : NCR<"sect", 0x000A7>; 146def : NCR<"deg", 0x000B0>; 147def : NCR<"prime", 0x02032>; 148def : NCR<"Prime", 0x02033>; 149def : NCR<"infin", 0x0221E>; 150def : NCR<"empty", 0x02205>; 151def : NCR<"plusmn", 0x000B1>; 152def : NCR<"times", 0x000D7>; 153def : NCR<"minus", 0x02212>; 154def : NCR<"sdot", 0x022C5>; 155def : NCR<"part", 0x02202>; 156def : NCR<"nabla", 0x02207>; 157def : NCR<"radic", 0x0221A>; 158def : NCR<"perp", 0x022A5>; 159def : NCR<"sum", 0x02211>; 160def : NCR<"int", 0x0222B>; 161def : NCR<"prod", 0x0220F>; 162def : NCR<"sim", 0x0223C>; 163def : NCR<"asymp", 0x02248>; 164def : NCR<"ne", 0x02260>; 165def : NCR<"equiv", 0x02261>; 166def : NCR<"prop", 0x0221D>; 167def : NCR<"le", 0x02264>; 168def : NCR<"ge", 0x02265>; 169def : NCR<"larr", 0x02190>; 170def : NCR<"rarr", 0x02192>; 171def : NCR<"isin", 0x02208>; 172def : NCR<"notin", 0x02209>; 173def : NCR<"lceil", 0x02308>; 174def : NCR<"rceil", 0x02309>; 175def : NCR<"lfloor", 0x0230A>; 176def : NCR<"rfloor", 0x0230B>; 177 178