Introduction
Introduction Statistics Contact Development Disclaimer Help
namedentities.h - grabtitle - stupid HTML title grabber
git clone git://git.codemadness.org/grabtitle
Log
Files
Refs
README
LICENSE
---
namedentities.h (1899B)
---
1 /* from https://dev.w3.org/html5/html-author/charref and
2 https://www.w3.org/TR/html4/sgml/entities.html */
3
4 { "AMP;", 0x00026 }, /* AMPERSAND */
5 { "COPY;", 0x000A9 }, /* COPYRIGHT SIGN */
6 { "GT;", 0x0003E }, /* GREATER-THAN SIGN */
7 { "LT;", 0x0003C }, /* LESS-THAN SIGN */
8 { "QUOT;", 0x00022 }, /* QUOTATION MARK */
9 { "REG;", 0x000AE }, /* REGISTERED SIGN */
10 { "TRADE;", 0x02122 }, /* TRADE MARK SIGN */
11 { "acute;", 0x000B4 }, /* ACUTE ACCENT */
12 { "amp;", 0x00026 }, /* AMPERSAND */
13 { "apos;", 0x00027 }, /* APOSTROPHE */
14 { "bull;", 0x02022 }, /* BULLET */
15 { "bullet;", 0x02022 }, /* BULLET */
16 { "copy;", 0x000A9 }, /* COPYRIGHT SIGN */
17 { "dagger;", 0x02020 }, /* DAGGER */
18 { "dash;", 0x02010 }, /* HYPHEN */
19 { "dollar;", 0x00024 }, /* DOLLAR SIGN */
20 { "emsp;", 0x02003 }, /* EM SPACE */
21 { "ensp;", 0x02002 }, /* EN SPACE */
22 { "equals;", 0x0003D }, /* EQUALS SIGN */
23 { "euro;", 0x020AC }, /* EURO SIGN */
24 { "grave;", 0x00060 }, /* GRAVE ACCENT */
25 { "gt;", 0x0003E }, /* GREATER-THAN SIGN */
26 { "hyphen;", 0x02010 }, /* HYPHEN */
27 { "laquo;", 0x000AB }, /* LEFT-POINTING DOUBLE ANGLE QUOTATION MARK */
28 { "ldquo;", 0x0201C }, /* LEFT DOUBLE QUOTATION MARK */
29 { "lpar;", 0x00028 }, /* LEFT PARENTHESIS */
30 { "lsquo;", 0x02018 }, /* LEFT SINGLE QUOTATION MARK */
31 { "lt;", 0x0003C }, /* LESS-THAN SIGN */
32 { "mdash;", 0x02014 }, /* EM DASH */
33 { "nbsp;", 0x000A0 }, /* NO-BREAK SPACE */
34 { "ndash;", 0x02013 }, /* EN DASH */
35 { "percnt;", 0x00025 }, /* PERCENT SIGN */
36 { "pound;", 0x000A3 }, /* POUND SIGN */
37 { "quot;", 0x00022 }, /* QUOTATION MARK */
38 { "raquo;", 0x000BB }, /* RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK */
39 { "rdquo;", 0x0201D }, /* RIGHT DOUBLE QUOTATION MARK */
40 { "reg;", 0x000AE }, /* REGISTERED SIGN */
41 { "rpar;", 0x00029 }, /* RIGHT PARENTHESIS */
42 { "rsquo;", 0x02019 }, /* RIGHT SINGLE QUOTATION MARK */
43 { "trade;", 0x02122 }, /* TRADE MARK SIGN */
44 { "yen;", 0x000A5 }, /* YEN SIGN */
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.