Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
Main Page
Namespaces
Data Structures
Files
File List
All
Data Structures
Namespaces
Files
Functions
Variables
htmlentitydefs.py
Go to the documentation of this file.
1
"""HTML character entity references."""
2
3
entitydefs = {
4
'AElig'
:
'\306'
,
# latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1
5
'Aacute'
:
'\301'
,
# latin capital letter A with acute, U+00C1 ISOlat1
6
'Acirc'
:
'\302'
,
# latin capital letter A with circumflex, U+00C2 ISOlat1
7
'Agrave'
:
'\300'
,
# latin capital letter A with grave = latin capital letter A grave, U+00C0 ISOlat1
8
'Alpha'
:
'Α'
,
# greek capital letter alpha, U+0391
9
'Aring'
:
'\305'
,
# latin capital letter A with ring above = latin capital letter A ring, U+00C5 ISOlat1
10
'Atilde'
:
'\303'
,
# latin capital letter A with tilde, U+00C3 ISOlat1
11
'Auml'
:
'\304'
,
# latin capital letter A with diaeresis, U+00C4 ISOlat1
12
'Beta'
:
'Β'
,
# greek capital letter beta, U+0392
13
'Ccedil'
:
'\307'
,
# latin capital letter C with cedilla, U+00C7 ISOlat1
14
'Chi'
:
'Χ'
,
# greek capital letter chi, U+03A7
15
'Dagger'
:
'‡'
,
# double dagger, U+2021 ISOpub
16
'Delta'
:
'Δ'
,
# greek capital letter delta, U+0394 ISOgrk3
17
'ETH'
:
'\320'
,
# latin capital letter ETH, U+00D0 ISOlat1
18
'Eacute'
:
'\311'
,
# latin capital letter E with acute, U+00C9 ISOlat1
19
'Ecirc'
:
'\312'
,
# latin capital letter E with circumflex, U+00CA ISOlat1
20
'Egrave'
:
'\310'
,
# latin capital letter E with grave, U+00C8 ISOlat1
21
'Epsilon'
:
'Ε'
,
# greek capital letter epsilon, U+0395
22
'Eta'
:
'Η'
,
# greek capital letter eta, U+0397
23
'Euml'
:
'\313'
,
# latin capital letter E with diaeresis, U+00CB ISOlat1
24
'Gamma'
:
'Γ'
,
# greek capital letter gamma, U+0393 ISOgrk3
25
'Iacute'
:
'\315'
,
# latin capital letter I with acute, U+00CD ISOlat1
26
'Icirc'
:
'\316'
,
# latin capital letter I with circumflex, U+00CE ISOlat1
27
'Igrave'
:
'\314'
,
# latin capital letter I with grave, U+00CC ISOlat1
28
'Iota'
:
'Ι'
,
# greek capital letter iota, U+0399
29
'Iuml'
:
'\317'
,
# latin capital letter I with diaeresis, U+00CF ISOlat1
30
'Kappa'
:
'Κ'
,
# greek capital letter kappa, U+039A
31
'Lambda'
:
'Λ'
,
# greek capital letter lambda, U+039B ISOgrk3
32
'Mu'
:
'Μ'
,
# greek capital letter mu, U+039C
33
'Ntilde'
:
'\321'
,
# latin capital letter N with tilde, U+00D1 ISOlat1
34
'Nu'
:
'Ν'
,
# greek capital letter nu, U+039D
35
'OElig'
:
'Œ'
,
# latin capital ligature OE, U+0152 ISOlat2
36
'Oacute'
:
'\323'
,
# latin capital letter O with acute, U+00D3 ISOlat1
37
'Ocirc'
:
'\324'
,
# latin capital letter O with circumflex, U+00D4 ISOlat1
38
'Ograve'
:
'\322'
,
# latin capital letter O with grave, U+00D2 ISOlat1
39
'Omega'
:
'Ω'
,
# greek capital letter omega, U+03A9 ISOgrk3
40
'Omicron'
:
'Ο'
,
# greek capital letter omicron, U+039F
41
'Oslash'
:
'\330'
,
# latin capital letter O with stroke = latin capital letter O slash, U+00D8 ISOlat1
42
'Otilde'
:
'\325'
,
# latin capital letter O with tilde, U+00D5 ISOlat1
43
'Ouml'
:
'\326'
,
# latin capital letter O with diaeresis, U+00D6 ISOlat1
44
'Phi'
:
'Φ'
,
# greek capital letter phi, U+03A6 ISOgrk3
45
'Pi'
:
'Π'
,
# greek capital letter pi, U+03A0 ISOgrk3
46
'Prime'
:
'″'
,
# double prime = seconds = inches, U+2033 ISOtech
47
'Psi'
:
'Ψ'
,
# greek capital letter psi, U+03A8 ISOgrk3
48
'Rho'
:
'Ρ'
,
# greek capital letter rho, U+03A1
49
'Scaron'
:
'Š'
,
# latin capital letter S with caron, U+0160 ISOlat2
50
'Sigma'
:
'Σ'
,
# greek capital letter sigma, U+03A3 ISOgrk3
51
'THORN'
:
'\336'
,
# latin capital letter THORN, U+00DE ISOlat1
52
'Tau'
:
'Τ'
,
# greek capital letter tau, U+03A4
53
'Theta'
:
'Θ'
,
# greek capital letter theta, U+0398 ISOgrk3
54
'Uacute'
:
'\332'
,
# latin capital letter U with acute, U+00DA ISOlat1
55
'Ucirc'
:
'\333'
,
# latin capital letter U with circumflex, U+00DB ISOlat1
56
'Ugrave'
:
'\331'
,
# latin capital letter U with grave, U+00D9 ISOlat1
57
'Upsilon'
:
'Υ'
,
# greek capital letter upsilon, U+03A5 ISOgrk3
58
'Uuml'
:
'\334'
,
# latin capital letter U with diaeresis, U+00DC ISOlat1
59
'Xi'
:
'Ξ'
,
# greek capital letter xi, U+039E ISOgrk3
60
'Yacute'
:
'\335'
,
# latin capital letter Y with acute, U+00DD ISOlat1
61
'Yuml'
:
'Ÿ'
,
# latin capital letter Y with diaeresis, U+0178 ISOlat2
62
'Zeta'
:
'Ζ'
,
# greek capital letter zeta, U+0396
63
'aacute'
:
'\341'
,
# latin small letter a with acute, U+00E1 ISOlat1
64
'acirc'
:
'\342'
,
# latin small letter a with circumflex, U+00E2 ISOlat1
65
'acute'
:
'\264'
,
# acute accent = spacing acute, U+00B4 ISOdia
66
'aelig'
:
'\346'
,
# latin small letter ae = latin small ligature ae, U+00E6 ISOlat1
67
'agrave'
:
'\340'
,
# latin small letter a with grave = latin small letter a grave, U+00E0 ISOlat1
68
'alefsym'
:
'ℵ'
,
# alef symbol = first transfinite cardinal, U+2135 NEW
69
'alpha'
:
'α'
,
# greek small letter alpha, U+03B1 ISOgrk3
70
'amp'
:
'\46'
,
# ampersand, U+0026 ISOnum
71
'and'
:
'∧'
,
# logical and = wedge, U+2227 ISOtech
72
'ang'
:
'∠'
,
# angle, U+2220 ISOamso
73
'aring'
:
'\345'
,
# latin small letter a with ring above = latin small letter a ring, U+00E5 ISOlat1
74
'asymp'
:
'≈'
,
# almost equal to = asymptotic to, U+2248 ISOamsr
75
'atilde'
:
'\343'
,
# latin small letter a with tilde, U+00E3 ISOlat1
76
'auml'
:
'\344'
,
# latin small letter a with diaeresis, U+00E4 ISOlat1
77
'bdquo'
:
'„'
,
# double low-9 quotation mark, U+201E NEW
78
'beta'
:
'β'
,
# greek small letter beta, U+03B2 ISOgrk3
79
'brvbar'
:
'\246'
,
# broken bar = broken vertical bar, U+00A6 ISOnum
80
'bull'
:
'•'
,
# bullet = black small circle, U+2022 ISOpub
81
'cap'
:
'∩'
,
# intersection = cap, U+2229 ISOtech
82
'ccedil'
:
'\347'
,
# latin small letter c with cedilla, U+00E7 ISOlat1
83
'cedil'
:
'\270'
,
# cedilla = spacing cedilla, U+00B8 ISOdia
84
'cent'
:
'\242'
,
# cent sign, U+00A2 ISOnum
85
'chi'
:
'χ'
,
# greek small letter chi, U+03C7 ISOgrk3
86
'circ'
:
'ˆ'
,
# modifier letter circumflex accent, U+02C6 ISOpub
87
'clubs'
:
'♣'
,
# black club suit = shamrock, U+2663 ISOpub
88
'cong'
:
'≅'
,
# approximately equal to, U+2245 ISOtech
89
'copy'
:
'\251'
,
# copyright sign, U+00A9 ISOnum
90
'crarr'
:
'↵'
,
# downwards arrow with corner leftwards = carriage return, U+21B5 NEW
91
'cup'
:
'∪'
,
# union = cup, U+222A ISOtech
92
'curren'
:
'\244'
,
# currency sign, U+00A4 ISOnum
93
'dArr'
:
'⇓'
,
# downwards double arrow, U+21D3 ISOamsa
94
'dagger'
:
'†'
,
# dagger, U+2020 ISOpub
95
'darr'
:
'↓'
,
# downwards arrow, U+2193 ISOnum
96
'deg'
:
'\260'
,
# degree sign, U+00B0 ISOnum
97
'delta'
:
'δ'
,
# greek small letter delta, U+03B4 ISOgrk3
98
'diams'
:
'♦'
,
# black diamond suit, U+2666 ISOpub
99
'divide'
:
'\367'
,
# division sign, U+00F7 ISOnum
100
'eacute'
:
'\351'
,
# latin small letter e with acute, U+00E9 ISOlat1
101
'ecirc'
:
'\352'
,
# latin small letter e with circumflex, U+00EA ISOlat1
102
'egrave'
:
'\350'
,
# latin small letter e with grave, U+00E8 ISOlat1
103
'empty'
:
'∅'
,
# empty set = null set = diameter, U+2205 ISOamso
104
'emsp'
:
' '
,
# em space, U+2003 ISOpub
105
'ensp'
:
' '
,
# en space, U+2002 ISOpub
106
'epsilon'
:
'ε'
,
# greek small letter epsilon, U+03B5 ISOgrk3
107
'equiv'
:
'≡'
,
# identical to, U+2261 ISOtech
108
'eta'
:
'η'
,
# greek small letter eta, U+03B7 ISOgrk3
109
'eth'
:
'\360'
,
# latin small letter eth, U+00F0 ISOlat1
110
'euml'
:
'\353'
,
# latin small letter e with diaeresis, U+00EB ISOlat1
111
'euro'
:
'€'
,
# euro sign, U+20AC NEW
112
'exist'
:
'∃'
,
# there exists, U+2203 ISOtech
113
'fnof'
:
'ƒ'
,
# latin small f with hook = function = florin, U+0192 ISOtech
114
'forall'
:
'∀'
,
# for all, U+2200 ISOtech
115
'frac12'
:
'\275'
,
# vulgar fraction one half = fraction one half, U+00BD ISOnum
116
'frac14'
:
'\274'
,
# vulgar fraction one quarter = fraction one quarter, U+00BC ISOnum
117
'frac34'
:
'\276'
,
# vulgar fraction three quarters = fraction three quarters, U+00BE ISOnum
118
'frasl'
:
'⁄'
,
# fraction slash, U+2044 NEW
119
'gamma'
:
'γ'
,
# greek small letter gamma, U+03B3 ISOgrk3
120
'ge'
:
'≥'
,
# greater-than or equal to, U+2265 ISOtech
121
'gt'
:
'\76'
,
# greater-than sign, U+003E ISOnum
122
'hArr'
:
'⇔'
,
# left right double arrow, U+21D4 ISOamsa
123
'harr'
:
'↔'
,
# left right arrow, U+2194 ISOamsa
124
'hearts'
:
'♥'
,
# black heart suit = valentine, U+2665 ISOpub
125
'hellip'
:
'…'
,
# horizontal ellipsis = three dot leader, U+2026 ISOpub
126
'iacute'
:
'\355'
,
# latin small letter i with acute, U+00ED ISOlat1
127
'icirc'
:
'\356'
,
# latin small letter i with circumflex, U+00EE ISOlat1
128
'iexcl'
:
'\241'
,
# inverted exclamation mark, U+00A1 ISOnum
129
'igrave'
:
'\354'
,
# latin small letter i with grave, U+00EC ISOlat1
130
'image'
:
'ℑ'
,
# blackletter capital I = imaginary part, U+2111 ISOamso
131
'infin'
:
'∞'
,
# infinity, U+221E ISOtech
132
'int'
:
'∫'
,
# integral, U+222B ISOtech
133
'iota'
:
'ι'
,
# greek small letter iota, U+03B9 ISOgrk3
134
'iquest'
:
'\277'
,
# inverted question mark = turned question mark, U+00BF ISOnum
135
'isin'
:
'∈'
,
# element of, U+2208 ISOtech
136
'iuml'
:
'\357'
,
# latin small letter i with diaeresis, U+00EF ISOlat1
137
'kappa'
:
'κ'
,
# greek small letter kappa, U+03BA ISOgrk3
138
'lArr'
:
'⇐'
,
# leftwards double arrow, U+21D0 ISOtech
139
'lambda'
:
'λ'
,
# greek small letter lambda, U+03BB ISOgrk3
140
'lang'
:
'〈'
,
# left-pointing angle bracket = bra, U+2329 ISOtech
141
'laquo'
:
'\253'
,
# left-pointing double angle quotation mark = left pointing guillemet, U+00AB ISOnum
142
'larr'
:
'←'
,
# leftwards arrow, U+2190 ISOnum
143
'lceil'
:
'⌈'
,
# left ceiling = apl upstile, U+2308 ISOamsc
144
'ldquo'
:
'“'
,
# left double quotation mark, U+201C ISOnum
145
'le'
:
'≤'
,
# less-than or equal to, U+2264 ISOtech
146
'lfloor'
:
'⌊'
,
# left floor = apl downstile, U+230A ISOamsc
147
'lowast'
:
'∗'
,
# asterisk operator, U+2217 ISOtech
148
'loz'
:
'◊'
,
# lozenge, U+25CA ISOpub
149
'lrm'
:
'‎'
,
# left-to-right mark, U+200E NEW RFC 2070
150
'lsaquo'
:
'‹'
,
# single left-pointing angle quotation mark, U+2039 ISO proposed
151
'lsquo'
:
'‘'
,
# left single quotation mark, U+2018 ISOnum
152
'lt'
:
'\74'
,
# less-than sign, U+003C ISOnum
153
'macr'
:
'\257'
,
# macron = spacing macron = overline = APL overbar, U+00AF ISOdia
154
'mdash'
:
'—'
,
# em dash, U+2014 ISOpub
155
'micro'
:
'\265'
,
# micro sign, U+00B5 ISOnum
156
'middot'
:
'\267'
,
# middle dot = Georgian comma = Greek middle dot, U+00B7 ISOnum
157
'minus'
:
'−'
,
# minus sign, U+2212 ISOtech
158
'mu'
:
'μ'
,
# greek small letter mu, U+03BC ISOgrk3
159
'nabla'
:
'∇'
,
# nabla = backward difference, U+2207 ISOtech
160
'nbsp'
:
'\240'
,
# no-break space = non-breaking space, U+00A0 ISOnum
161
'ndash'
:
'–'
,
# en dash, U+2013 ISOpub
162
'ne'
:
'≠'
,
# not equal to, U+2260 ISOtech
163
'ni'
:
'∋'
,
# contains as member, U+220B ISOtech
164
'not'
:
'\254'
,
# not sign, U+00AC ISOnum
165
'notin'
:
'∉'
,
# not an element of, U+2209 ISOtech
166
'nsub'
:
'⊄'
,
# not a subset of, U+2284 ISOamsn
167
'ntilde'
:
'\361'
,
# latin small letter n with tilde, U+00F1 ISOlat1
168
'nu'
:
'ν'
,
# greek small letter nu, U+03BD ISOgrk3
169
'oacute'
:
'\363'
,
# latin small letter o with acute, U+00F3 ISOlat1
170
'ocirc'
:
'\364'
,
# latin small letter o with circumflex, U+00F4 ISOlat1
171
'oelig'
:
'œ'
,
# latin small ligature oe, U+0153 ISOlat2
172
'ograve'
:
'\362'
,
# latin small letter o with grave, U+00F2 ISOlat1
173
'oline'
:
'‾'
,
# overline = spacing overscore, U+203E NEW
174
'omega'
:
'ω'
,
# greek small letter omega, U+03C9 ISOgrk3
175
'omicron'
:
'ο'
,
# greek small letter omicron, U+03BF NEW
176
'oplus'
:
'⊕'
,
# circled plus = direct sum, U+2295 ISOamsb
177
'or'
:
'∨'
,
# logical or = vee, U+2228 ISOtech
178
'ordf'
:
'\252'
,
# feminine ordinal indicator, U+00AA ISOnum
179
'ordm'
:
'\272'
,
# masculine ordinal indicator, U+00BA ISOnum
180
'oslash'
:
'\370'
,
# latin small letter o with stroke, = latin small letter o slash, U+00F8 ISOlat1
181
'otilde'
:
'\365'
,
# latin small letter o with tilde, U+00F5 ISOlat1
182
'otimes'
:
'⊗'
,
# circled times = vector product, U+2297 ISOamsb
183
'ouml'
:
'\366'
,
# latin small letter o with diaeresis, U+00F6 ISOlat1
184
'para'
:
'\266'
,
# pilcrow sign = paragraph sign, U+00B6 ISOnum
185
'part'
:
'∂'
,
# partial differential, U+2202 ISOtech
186
'permil'
:
'‰'
,
# per mille sign, U+2030 ISOtech
187
'perp'
:
'⊥'
,
# up tack = orthogonal to = perpendicular, U+22A5 ISOtech
188
'phi'
:
'φ'
,
# greek small letter phi, U+03C6 ISOgrk3
189
'pi'
:
'π'
,
# greek small letter pi, U+03C0 ISOgrk3
190
'piv'
:
'ϖ'
,
# greek pi symbol, U+03D6 ISOgrk3
191
'plusmn'
:
'\261'
,
# plus-minus sign = plus-or-minus sign, U+00B1 ISOnum
192
'pound'
:
'\243'
,
# pound sign, U+00A3 ISOnum
193
'prime'
:
'′'
,
# prime = minutes = feet, U+2032 ISOtech
194
'prod'
:
'∏'
,
# n-ary product = product sign, U+220F ISOamsb
195
'prop'
:
'∝'
,
# proportional to, U+221D ISOtech
196
'psi'
:
'ψ'
,
# greek small letter psi, U+03C8 ISOgrk3
197
'quot'
:
'\42'
,
# quotation mark = APL quote, U+0022 ISOnum
198
'rArr'
:
'⇒'
,
# rightwards double arrow, U+21D2 ISOtech
199
'radic'
:
'√'
,
# square root = radical sign, U+221A ISOtech
200
'rang'
:
'〉'
,
# right-pointing angle bracket = ket, U+232A ISOtech
201
'raquo'
:
'\273'
,
# right-pointing double angle quotation mark = right pointing guillemet, U+00BB ISOnum
202
'rarr'
:
'→'
,
# rightwards arrow, U+2192 ISOnum
203
'rceil'
:
'⌉'
,
# right ceiling, U+2309 ISOamsc
204
'rdquo'
:
'”'
,
# right double quotation mark, U+201D ISOnum
205
'real'
:
'ℜ'
,
# blackletter capital R = real part symbol, U+211C ISOamso
206
'reg'
:
'\256'
,
# registered sign = registered trade mark sign, U+00AE ISOnum
207
'rfloor'
:
'⌋'
,
# right floor, U+230B ISOamsc
208
'rho'
:
'ρ'
,
# greek small letter rho, U+03C1 ISOgrk3
209
'rlm'
:
'‏'
,
# right-to-left mark, U+200F NEW RFC 2070
210
'rsaquo'
:
'›'
,
# single right-pointing angle quotation mark, U+203A ISO proposed
211
'rsquo'
:
'’'
,
# right single quotation mark, U+2019 ISOnum
212
'sbquo'
:
'‚'
,
# single low-9 quotation mark, U+201A NEW
213
'scaron'
:
'š'
,
# latin small letter s with caron, U+0161 ISOlat2
214
'sdot'
:
'⋅'
,
# dot operator, U+22C5 ISOamsb
215
'sect'
:
'\247'
,
# section sign, U+00A7 ISOnum
216
'shy'
:
'\255'
,
# soft hyphen = discretionary hyphen, U+00AD ISOnum
217
'sigma'
:
'σ'
,
# greek small letter sigma, U+03C3 ISOgrk3
218
'sigmaf'
:
'ς'
,
# greek small letter final sigma, U+03C2 ISOgrk3
219
'sim'
:
'∼'
,
# tilde operator = varies with = similar to, U+223C ISOtech
220
'spades'
:
'♠'
,
# black spade suit, U+2660 ISOpub
221
'sub'
:
'⊂'
,
# subset of, U+2282 ISOtech
222
'sube'
:
'⊆'
,
# subset of or equal to, U+2286 ISOtech
223
'sum'
:
'∑'
,
# n-ary sumation, U+2211 ISOamsb
224
'sup'
:
'⊃'
,
# superset of, U+2283 ISOtech
225
'sup1'
:
'\271'
,
# superscript one = superscript digit one, U+00B9 ISOnum
226
'sup2'
:
'\262'
,
# superscript two = superscript digit two = squared, U+00B2 ISOnum
227
'sup3'
:
'\263'
,
# superscript three = superscript digit three = cubed, U+00B3 ISOnum
228
'supe'
:
'⊇'
,
# superset of or equal to, U+2287 ISOtech
229
'szlig'
:
'\337'
,
# latin small letter sharp s = ess-zed, U+00DF ISOlat1
230
'tau'
:
'τ'
,
# greek small letter tau, U+03C4 ISOgrk3
231
'there4'
:
'∴'
,
# therefore, U+2234 ISOtech
232
'theta'
:
'θ'
,
# greek small letter theta, U+03B8 ISOgrk3
233
'thetasym'
:
'ϑ'
,
# greek small letter theta symbol, U+03D1 NEW
234
'thinsp'
:
' '
,
# thin space, U+2009 ISOpub
235
'thorn'
:
'\376'
,
# latin small letter thorn with, U+00FE ISOlat1
236
'tilde'
:
'˜'
,
# small tilde, U+02DC ISOdia
237
'times'
:
'\327'
,
# multiplication sign, U+00D7 ISOnum
238
'trade'
:
'™'
,
# trade mark sign, U+2122 ISOnum
239
'uArr'
:
'⇑'
,
# upwards double arrow, U+21D1 ISOamsa
240
'uacute'
:
'\372'
,
# latin small letter u with acute, U+00FA ISOlat1
241
'uarr'
:
'↑'
,
# upwards arrow, U+2191 ISOnum
242
'ucirc'
:
'\373'
,
# latin small letter u with circumflex, U+00FB ISOlat1
243
'ugrave'
:
'\371'
,
# latin small letter u with grave, U+00F9 ISOlat1
244
'uml'
:
'\250'
,
# diaeresis = spacing diaeresis, U+00A8 ISOdia
245
'upsih'
:
'ϒ'
,
# greek upsilon with hook symbol, U+03D2 NEW
246
'upsilon'
:
'υ'
,
# greek small letter upsilon, U+03C5 ISOgrk3
247
'uuml'
:
'\374'
,
# latin small letter u with diaeresis, U+00FC ISOlat1
248
'weierp'
:
'℘'
,
# script capital P = power set = Weierstrass p, U+2118 ISOamso
249
'xi'
:
'ξ'
,
# greek small letter xi, U+03BE ISOgrk3
250
'yacute'
:
'\375'
,
# latin small letter y with acute, U+00FD ISOlat1
251
'yen'
:
'\245'
,
# yen sign = yuan sign, U+00A5 ISOnum
252
'yuml'
:
'\377'
,
# latin small letter y with diaeresis, U+00FF ISOlat1
253
'zeta'
:
'ζ'
,
# greek small letter zeta, U+03B6 ISOgrk3
254
'zwj'
:
'‍'
,
# zero width joiner, U+200D NEW RFC 2070
255
'zwnj'
:
'‌'
,
# zero width non-joiner, U+200C NEW RFC 2070
256
257
}
builtin
htmlentitydefs.py
Generated on Mon Feb 17 2014 12:38:41 for Vega strike Python Modules doc by
1.8.4