maruku 0.4.2.1 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/maruku +66 -20
- data/bin/marutest +12 -2
- data/docs/changelog.html +188 -23
- data/docs/changelog.md +128 -5
- data/docs/entity_test.html +245 -240
- data/docs/entity_test.md +2 -0
- data/docs/exd.html +181 -23
- data/docs/index.html +130 -349
- data/docs/markdown_syntax.html +55 -51
- data/docs/maruku.html +130 -349
- data/docs/maruku.md +154 -339
- data/docs/math.md +143 -0
- data/docs/proposal.html +16 -12
- data/lib/maruku.rb +6 -3
- data/lib/maruku/attributes.rb +7 -2
- data/lib/maruku/defaults.rb +27 -27
- data/lib/maruku/errors_management.rb +10 -9
- data/lib/maruku/ext/diagrams/diagrams.rb +8 -0
- data/lib/maruku/ext/diagrams/grid.rb +78 -0
- data/lib/maruku/ext/diagrams/inspect.rb +11 -0
- data/lib/maruku/ext/diagrams/layout.rb +105 -0
- data/lib/maruku/ext/diagrams/parser.rb +219 -0
- data/lib/maruku/ext/diagrams/structures.rb +168 -0
- data/lib/maruku/ext/diagrams/to_html.rb +37 -0
- data/lib/maruku/ext/diagrams/to_latex.rb +308 -0
- data/lib/maruku/ext/diagrams/unittest.rb +123 -0
- data/lib/maruku/ext/math.rb +11 -0
- data/lib/maruku/ext/math/elements.rb +26 -0
- data/lib/maruku/ext/math/mathml_engines/blahtex.rb +108 -0
- data/lib/maruku/ext/math/mathml_engines/itex2mml.rb +29 -0
- data/lib/maruku/ext/math/mathml_engines/none.rb +20 -0
- data/lib/maruku/ext/math/mathml_engines/ritex.rb +24 -0
- data/lib/maruku/ext/math/parsing.rb +82 -0
- data/lib/maruku/ext/math/to_html.rb +178 -0
- data/lib/maruku/ext/math/to_latex.rb +21 -0
- data/lib/maruku/helpers.rb +11 -0
- data/lib/maruku/input/charsource.rb +1 -1
- data/lib/maruku/input/extensions.rb +68 -0
- data/lib/maruku/input/html_helper.rb +91 -60
- data/lib/maruku/input/parse_block.rb +10 -9
- data/lib/maruku/input/parse_doc.rb +21 -13
- data/lib/maruku/input/parse_span_better.rb +19 -8
- data/lib/maruku/input/type_detection.rb +5 -3
- data/lib/maruku/output/to_html.rb +236 -67
- data/lib/maruku/output/to_latex.rb +69 -26
- data/lib/maruku/output/to_latex_entities.rb +14 -2
- data/lib/maruku/output/to_s.rb +8 -0
- data/lib/maruku/structures.rb +1 -1
- data/lib/maruku/tests/benchmark.rb +2 -2
- data/lib/maruku/tests/new_parser.rb +13 -5
- data/lib/maruku/version.rb +1 -1
- data/lib/sort_prof.rb +22 -0
- data/tests/diagrams/diagrams.md +54 -0
- data/tests/math/syntax.md +46 -0
- data/tests/math_usage/document.md +13 -0
- data/tests/unittest/attributes/attributes.md +50 -6
- data/tests/unittest/easy.md +1 -1
- data/tests/unittest/email.md +3 -3
- data/tests/unittest/entities.md +12 -7
- data/tests/unittest/escaping.md +4 -4
- data/tests/unittest/extra_table1.md +3 -1
- data/tests/unittest/footnotes.md +5 -5
- data/tests/unittest/headers.md +3 -3
- data/tests/unittest/images.md +7 -7
- data/tests/unittest/inline_html.md +51 -5
- data/tests/unittest/links.md +7 -7
- data/tests/unittest/list2.md +1 -1
- data/tests/unittest/lists.md +1 -1
- data/tests/unittest/lists_after_paragraph.md +1 -1
- data/tests/unittest/lists_ol.md +1 -1
- data/tests/unittest/math/equations.md +82 -0
- data/tests/unittest/math/inline.md +80 -0
- data/tests/unittest/math/table.md +51 -0
- data/tests/unittest/math/table2.md +67 -0
- data/tests/unittest/misc_sw.md +24 -24
- data/tests/unittest/notyet/ticks.md +1 -1
- data/tests/unittest/references/long_example.md +2 -2
- data/tests/unittest/smartypants.md +4 -4
- data/tests/unittest/xml.md +68 -0
- data/tests/unittest/xml2.md +36 -0
- data/tests/unittest/xml3.md +52 -0
- data/tests/unittest/xml_instruction.md +5 -5
- metadata +33 -4
- data/docs/a.html +0 -6
- data/docs/char.html +0 -1924
data/docs/entity_test.html
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
-
<?xml version=
|
2
|
-
<!DOCTYPE html PUBLIC
|
3
|
-
|
4
|
-
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC
|
3
|
+
"-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
|
4
|
+
"http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">
|
5
|
+
<html xmlns:svg='http://www.w3.org/2000/svg' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
|
6
|
+
<head><meta content='application/xhtml+xml;charset=utf-8' http-equiv='Content-type' /><title>List of symbols supported by Maruku</title></head>
|
7
|
+
<body>
|
5
8
|
<h1 id='list_of_symbols_supported_by_maruku'>List of symbols supported by Maruku</h1>
|
6
|
-
<?maruku
|
9
|
+
<?maruku MaRuKu::Out::Latex.need_entity_table
|
10
|
+
|
11
|
+
all = []
|
7
12
|
ENTITY_TABLE.each do |k, e|
|
8
13
|
if k.kind_of? String
|
9
14
|
all << (h=md_code("&#{e.html_entity};")) <<
|
@@ -16,238 +21,238 @@
|
|
16
21
|
end
|
17
22
|
end
|
18
23
|
@doc.children.push md_par(all)?>
|
19
|
-
<p><code style='background-color: #eef;'>&oslash;</code>
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
<div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown interpreter for Ruby'>Maruku</a> at
|
24
|
+
<p><code style='background-color: #eef;'>&oslash;</code> ø (<code style='background-color: #ffe;'>\o</code>)
|
25
|
+
   <code style='background-color: #eef;'>&iexcl;</code> ¡ (<code style='background-color: #ffe;'>\textexclamdown</code>)
|
26
|
+
   <code style='background-color: #eef;'>&szlig;</code> ß (<code style='background-color: #ffe;'>\ss</code>)
|
27
|
+
   <code style='background-color: #eef;'>&ETH;</code> Ð (<code style='background-color: #ffe;'>$\eth$</code>)
|
28
|
+
   <code style='background-color: #eef;'>&Oslash;</code> Ø (<code style='background-color: #ffe;'>\O</code>)
|
29
|
+
   <code style='background-color: #eef;'>&Yuml;</code> Ÿ (<code style='background-color: #ffe;'>\"Y</code>)
|
30
|
+
   <code style='background-color: #eef;'>&rho;</code> ρ (<code style='background-color: #ffe;'>$\rho$</code>)
|
31
|
+
   <code style='background-color: #eef;'>&psi;</code> ψ (<code style='background-color: #ffe;'>$\psi$</code>)
|
32
|
+
   <code style='background-color: #eef;'>&ecirc;</code> ê (<code style='background-color: #ffe;'>\^e</code>)
|
33
|
+
   <code style='background-color: #eef;'>&OElig;</code> Œ (<code style='background-color: #ffe;'>\OE</code>)
|
34
|
+
   <code style='background-color: #eef;'>&euml;</code> ë (<code style='background-color: #ffe;'>\"e</code>)
|
35
|
+
   <code style='background-color: #eef;'>&aelig;</code> æ (<code style='background-color: #ffe;'>\ae</code>)
|
36
|
+
   <code style='background-color: #eef;'>&Theta;</code> Θ (<code style='background-color: #ffe;'>$\Theta$</code>)
|
37
|
+
   <code style='background-color: #eef;'>&Mu;</code> Μ (<code style='background-color: #ffe;'>$M$</code>)
|
38
|
+
   <code style='background-color: #eef;'>&alefsym;</code> ℵ (<code style='background-color: #ffe;'>$\aleph$</code>)
|
39
|
+
   <code style='background-color: #eef;'>&acirc;</code> â (<code style='background-color: #ffe;'>\^a</code>)
|
40
|
+
   <code style='background-color: #eef;'>&piv;</code> ϖ (<code style='background-color: #ffe;'>$\varpi$</code>)
|
41
|
+
   <code style='background-color: #eef;'>&egrave;</code> è (<code style='background-color: #ffe;'>\`e</code>)
|
42
|
+
   <code style='background-color: #eef;'>&not;</code> ¬ (<code style='background-color: #ffe;'>$\neg$</code>)
|
43
|
+
   <code style='background-color: #eef;'>&Egrave;</code> È (<code style='background-color: #ffe;'>\`E</code>)
|
44
|
+
   <code style='background-color: #eef;'>&para;</code> ¶ (<code style='background-color: #ffe;'>\P</code>)
|
45
|
+
   <code style='background-color: #eef;'>&ugrave;</code> ù (<code style='background-color: #ffe;'>\`u</code>)
|
46
|
+
   <code style='background-color: #eef;'>&Yacute;</code> Ý (<code style='background-color: #ffe;'>\'Y</code>)
|
47
|
+
   <code style='background-color: #eef;'>&lsquo;</code> ‘ (<code style='background-color: #ffe;'>`</code>)
|
48
|
+
   <code style='background-color: #eef;'>&Phi;</code> Φ (<code style='background-color: #ffe;'>$\Phi$</code>)
|
49
|
+
   <code style='background-color: #eef;'>&euro;</code> € (<code style='background-color: #ffe;'>\euro</code>)
|
50
|
+
   <code style='background-color: #eef;'>&icirc;</code> î (<code style='background-color: #ffe;'>\^i</code>)
|
51
|
+
   <code style='background-color: #eef;'>&iacute;</code> í (<code style='background-color: #ffe;'>\'i</code>)
|
52
|
+
   <code style='background-color: #eef;'>&rArr;</code> ⇒ (<code style='background-color: #ffe;'>$\Rightarrow$</code>)
|
53
|
+
   <code style='background-color: #eef;'>&Ntilde;</code> Ñ (<code style='background-color: #ffe;'>\~N</code>)
|
54
|
+
   <code style='background-color: #eef;'>&sim;</code> ∼ (<code style='background-color: #ffe;'>$\sim$</code>)
|
55
|
+
   <code style='background-color: #eef;'>&sup1;</code> ¹ (<code style='background-color: #ffe;'>$^1$</code>)
|
56
|
+
   <code style='background-color: #eef;'>&amp;</code> & (<code style='background-color: #ffe;'>\&</code>)
|
57
|
+
   <code style='background-color: #eef;'>&thetasym;</code> ϑ (<code style='background-color: #ffe;'>$\vartheta$</code>)
|
58
|
+
   <code style='background-color: #eef;'>&sup2;</code> ² (<code style='background-color: #ffe;'>$^2$</code>)
|
59
|
+
   <code style='background-color: #eef;'>&pi;</code> π (<code style='background-color: #ffe;'>$\pi$</code>)
|
60
|
+
   <code style='background-color: #eef;'>&Gamma;</code> Γ (<code style='background-color: #ffe;'>$\Gamma$</code>)
|
61
|
+
   <code style='background-color: #eef;'>&trade;</code> ™ (<code style='background-color: #ffe;'>$^{\rm TM}$</code>)
|
62
|
+
   <code style='background-color: #eef;'>&sup3;</code> ³ (<code style='background-color: #ffe;'>$^3$</code>)
|
63
|
+
   <code style='background-color: #eef;'>&Omicron;</code> Ο (<code style='background-color: #ffe;'>$O$</code>)
|
64
|
+
   <code style='background-color: #eef;'>&Iuml;</code> Ï (<code style='background-color: #ffe;'>\"I</code>)
|
65
|
+
   <code style='background-color: #eef;'>&THORN;</code> Þ (<code style='background-color: #ffe;'>\Thorn</code>)
|
66
|
+
   <code style='background-color: #eef;'>&radic;</code> √ (<code style='background-color: #ffe;'>$\surd$</code>)
|
67
|
+
   <code style='background-color: #eef;'>&forall;</code> ∀ (<code style='background-color: #ffe;'>$\forall$</code>)
|
68
|
+
   <code style='background-color: #eef;'>&kappa;</code> κ (<code style='background-color: #ffe;'>$\kappa$</code>)
|
69
|
+
   <code style='background-color: #eef;'>&sect;</code> § (<code style='background-color: #ffe;'>\S</code>)
|
70
|
+
   <code style='background-color: #eef;'>&Eta;</code> Η (<code style='background-color: #ffe;'>$H$</code>)
|
71
|
+
   <code style='background-color: #eef;'>&Otilde;</code> Õ (<code style='background-color: #ffe;'>\~O</code>)
|
72
|
+
   <code style='background-color: #eef;'>&Uuml;</code> Ü (<code style='background-color: #ffe;'>\"U</code>)
|
73
|
+
   <code style='background-color: #eef;'>&int;</code> ∫ (<code style='background-color: #ffe;'>$\int$</code>)
|
74
|
+
   <code style='background-color: #eef;'>&Tau;</code> Τ (<code style='background-color: #ffe;'>$T$</code>)
|
75
|
+
   <code style='background-color: #eef;'>&larr;</code> ← (<code style='background-color: #ffe;'>$\leftarrow$</code>)
|
76
|
+
   <code style='background-color: #eef;'>&Ugrave;</code> Ù (<code style='background-color: #ffe;'>\`U</code>)
|
77
|
+
   <code style='background-color: #eef;'>&tilde;</code> ˜ (<code style='background-color: #ffe;'>\textasciitilde</code>)
|
78
|
+
   <code style='background-color: #eef;'>&darr;</code> ↓ (<code style='background-color: #ffe;'>$\downarrow$</code>)
|
79
|
+
   <code style='background-color: #eef;'>&Pi;</code> Π (<code style='background-color: #ffe;'>$\Pi$</code>)
|
80
|
+
   <code style='background-color: #eef;'>&exist;</code> ∃ (<code style='background-color: #ffe;'>$\exists$</code>)
|
81
|
+
   <code style='background-color: #eef;'>&lowast;</code> ∗ (<code style='background-color: #ffe;'>$\ast$</code>)
|
82
|
+
   <code style='background-color: #eef;'>&rsaquo;</code> › (<code style='background-color: #ffe;'>\guilsinglright</code>)
|
83
|
+
   <code style='background-color: #eef;'>&middot;</code> · (<code style='background-color: #ffe;'>$\cdot$</code>)
|
84
|
+
   <code style='background-color: #eef;'>&crarr;</code> ↵ (<code style='background-color: #ffe;'>$\hookleftarrow$</code>)
|
85
|
+
   <code style='background-color: #eef;'>&Ucirc;</code> Û (<code style='background-color: #ffe;'>\^U</code>)
|
86
|
+
   <code style='background-color: #eef;'>&Epsilon;</code> Ε (<code style='background-color: #ffe;'>$E$</code>)
|
87
|
+
   <code style='background-color: #eef;'>&thorn;</code> þ (<code style='background-color: #ffe;'>\thorn</code>)
|
88
|
+
   <code style='background-color: #eef;'>&ntilde;</code> ñ (<code style='background-color: #ffe;'>\~n</code>)
|
89
|
+
   <code style='background-color: #eef;'>&raquo;</code> » (<code style='background-color: #ffe;'>\guillemotright</code>)
|
90
|
+
   <code style='background-color: #eef;'>&harr;</code> ↔ (<code style='background-color: #ffe;'>$\leftrightarrow$</code>)
|
91
|
+
   <code style='background-color: #eef;'>&part;</code> ∂ (<code style='background-color: #ffe;'>$\partial$</code>)
|
92
|
+
   <code style='background-color: #eef;'>&atilde;</code> ã (<code style='background-color: #ffe;'>\~a</code>)
|
93
|
+
   <code style='background-color: #eef;'>&ccedil;</code> ç (<code style='background-color: #ffe;'>\c{c}</code>)
|
94
|
+
   <code style='background-color: #eef;'>&Acirc;</code> Â (<code style='background-color: #ffe;'>\^A</code>)
|
95
|
+
   <code style='background-color: #eef;'>&otilde;</code> õ (<code style='background-color: #ffe;'>\~o</code>)
|
96
|
+
   <code style='background-color: #eef;'>&uArr;</code> ⇑ (<code style='background-color: #ffe;'>$\Uparrow$</code>)
|
97
|
+
   <code style='background-color: #eef;'>&diams;</code> ♦ (<code style='background-color: #ffe;'>$\diamondsuit$</code>)
|
98
|
+
   <code style='background-color: #eef;'>&upsilon;</code> υ (<code style='background-color: #ffe;'>$\upsilon$</code>)
|
99
|
+
   <code style='background-color: #eef;'>&Euml;</code> Ë (<code style='background-color: #ffe;'>\"E</code>)
|
100
|
+
   <code style='background-color: #eef;'>&asymp;</code> ≈ (<code style='background-color: #ffe;'>$\approx$</code>)
|
101
|
+
   <code style='background-color: #eef;'>&ne;</code> ≠ (<code style='background-color: #ffe;'>$\neq$</code>)
|
102
|
+
   <code style='background-color: #eef;'>&rceil;</code> ⌈ (<code style='background-color: #ffe;'>$\rceil$</code>)
|
103
|
+
   <code style='background-color: #eef;'>&sdot;</code> ⋅ (<code style='background-color: #ffe;'>$\cdot$</code>)
|
104
|
+
   <code style='background-color: #eef;'>&beta;</code> β (<code style='background-color: #ffe;'>$\beta$</code>)
|
105
|
+
   <code style='background-color: #eef;'>&ni;</code> ∋ (<code style='background-color: #ffe;'>$\ni$</code>)
|
106
|
+
   <code style='background-color: #eef;'>&ouml;</code> ö (<code style='background-color: #ffe;'>\"o</code>)
|
107
|
+
   <code style='background-color: #eef;'>&Atilde;</code> Ã (<code style='background-color: #ffe;'>\~A</code>)
|
108
|
+
   <code style='background-color: #eef;'>&minus;</code> − (<code style='background-color: #ffe;'>$-$</code>)
|
109
|
+
   <code style='background-color: #eef;'>&Ccedil;</code> Ç (<code style='background-color: #ffe;'>\c{C}</code>)
|
110
|
+
   <code style='background-color: #eef;'>&igrave;</code> ì (<code style='background-color: #ffe;'>\`i</code>)
|
111
|
+
   <code style='background-color: #eef;'>&brvbar;</code> ¦ (<code style='background-color: #ffe;'>\brokenvert</code>)
|
112
|
+
   <code style='background-color: #eef;'>&acute;</code> ´ (<code style='background-color: #ffe;'>'</code>)
|
113
|
+
   <code style='background-color: #eef;'>&sigmaf;</code> ς (<code style='background-color: #ffe;'>$\varsigma$</code>)
|
114
|
+
   <code style='background-color: #eef;'>&weierp;</code> ℘ (<code style='background-color: #ffe;'>$\wp$</code>)
|
115
|
+
   <code style='background-color: #eef;'>&Auml;</code> Ä (<code style='background-color: #ffe;'>\"A</code>)
|
116
|
+
   <code style='background-color: #eef;'>&apos;</code> ' (<code style='background-color: #ffe;'>'</code>)
|
117
|
+
   <code style='background-color: #eef;'>&micro;</code> µ (<code style='background-color: #ffe;'>$\mu$</code>)
|
118
|
+
   <code style='background-color: #eef;'>&Icirc;</code> Î (<code style='background-color: #ffe;'>\^I</code>)
|
119
|
+
   <code style='background-color: #eef;'>&xi;</code> ξ (<code style='background-color: #ffe;'>$\xi$</code>)
|
120
|
+
   <code style='background-color: #eef;'>&clubs;</code> ♣ (<code style='background-color: #ffe;'>$\clubsuit$</code>)
|
121
|
+
   <code style='background-color: #eef;'>&bull;</code> • (<code style='background-color: #ffe;'>$\bullet$</code>)
|
122
|
+
   <code style='background-color: #eef;'>&Ecirc;</code> Ê (<code style='background-color: #ffe;'>\^E</code>)
|
123
|
+
   <code style='background-color: #eef;'>&Kappa;</code> Κ (<code style='background-color: #ffe;'>$K$</code>)
|
124
|
+
   <code style='background-color: #eef;'>&times;</code> × (<code style='background-color: #ffe;'>$\times$</code>)
|
125
|
+
   <code style='background-color: #eef;'>&Zeta;</code> Ζ (<code style='background-color: #ffe;'>$Z$</code>)
|
126
|
+
   <code style='background-color: #eef;'>&empty;</code> ∅ (<code style='background-color: #ffe;'>$\emptyset$</code>)
|
127
|
+
   <code style='background-color: #eef;'>&image;</code> ℑ (<code style='background-color: #ffe;'>$\Im$</code>)
|
128
|
+
   <code style='background-color: #eef;'>&Oacute;</code> Ó (<code style='background-color: #ffe;'>\' O</code>)
|
129
|
+
   <code style='background-color: #eef;'>&nu;</code> ν (<code style='background-color: #ffe;'>$\nu$</code>)
|
130
|
+
   <code style='background-color: #eef;'>&Xi;</code> Ξ (<code style='background-color: #ffe;'>$\Xi$</code>)
|
131
|
+
   <code style='background-color: #eef;'>&Igrave;</code> Ì (<code style='background-color: #ffe;'>\`I</code>)
|
132
|
+
   <code style='background-color: #eef;'>&ndash;</code> – (<code style='background-color: #ffe;'>--</code>)
|
133
|
+
   <code style='background-color: #eef;'>&and;</code> ∧ (<code style='background-color: #ffe;'>$\wedge$</code>)
|
134
|
+
   <code style='background-color: #eef;'>&prime;</code> ′ (<code style='background-color: #ffe;'>$\prime$</code>)
|
135
|
+
   <code style='background-color: #eef;'>&omicron;</code> ο (<code style='background-color: #ffe;'>$o$</code>)
|
136
|
+
   <code style='background-color: #eef;'>&iota;</code> ι (<code style='background-color: #ffe;'>$\iota$</code>)
|
137
|
+
   <code style='background-color: #eef;'>&ang;</code> ∠ (<code style='background-color: #ffe;'>$\angle$</code>)
|
138
|
+
   <code style='background-color: #eef;'>&chi;</code> χ (<code style='background-color: #ffe;'>$\chi$</code>)
|
139
|
+
   <code style='background-color: #eef;'>&ge;</code> ≥ (<code style='background-color: #ffe;'>$\geq$</code>)
|
140
|
+
   <code style='background-color: #eef;'>&lang;</code> 〉 (<code style='background-color: #ffe;'>$\langle$</code>)
|
141
|
+
   <code style='background-color: #eef;'>&le;</code> ≤ (<code style='background-color: #ffe;'>$\leq$</code>)
|
142
|
+
   <code style='background-color: #eef;'>&rdquo;</code> ” (<code style='background-color: #ffe;'>''</code>)
|
143
|
+
   <code style='background-color: #eef;'>&otimes;</code> ⊗ (<code style='background-color: #ffe;'>$\otimes$</code>)
|
144
|
+
   <code style='background-color: #eef;'>&Nu;</code> Ν (<code style='background-color: #ffe;'>$N$</code>)
|
145
|
+
   <code style='background-color: #eef;'>&real;</code> ℜ (<code style='background-color: #ffe;'>$\Re$</code>)
|
146
|
+
   <code style='background-color: #eef;'>&lfloor;</code> ⌊ (<code style='background-color: #ffe;'>$\lfloor$</code>)
|
147
|
+
   <code style='background-color: #eef;'>&rsquo;</code> ’ (<code style='background-color: #ffe;'>'</code>)
|
148
|
+
   <code style='background-color: #eef;'>&equiv;</code> ≡ (<code style='background-color: #ffe;'>$\equiv$</code>)
|
149
|
+
   <code style='background-color: #eef;'>&aacute;</code> á (<code style='background-color: #ffe;'>\'a</code>)
|
150
|
+
   <code style='background-color: #eef;'>&permil;</code> ‰ (<code style='background-color: #ffe;'>\permil</code>)
|
151
|
+
   <code style='background-color: #eef;'>&sigma;</code> σ (<code style='background-color: #ffe;'>$\sigma$</code>)
|
152
|
+
   <code style='background-color: #eef;'>&oacute;</code> ó (<code style='background-color: #ffe;'>\'o</code>)
|
153
|
+
   <code style='background-color: #eef;'>&supe;</code> ⊇ (<code style='background-color: #ffe;'>$\supseteq$</code>)
|
154
|
+
   <code style='background-color: #eef;'>&ordf;</code> ª (<code style='background-color: #ffe;'>\textordfeminine</code>)
|
155
|
+
   <code style='background-color: #eef;'>&Beta;</code> Β (<code style='background-color: #ffe;'>$B$</code>)
|
156
|
+
   <code style='background-color: #eef;'>&hearts;</code> ♥ (<code style='background-color: #ffe;'>$\heartsuit$</code>)
|
157
|
+
   <code style='background-color: #eef;'>&Rho;</code> Ρ (<code style='background-color: #ffe;'>$P$</code>)
|
158
|
+
   <code style='background-color: #eef;'>&Psi;</code> Ψ (<code style='background-color: #ffe;'>$\Psi$</code>)
|
159
|
+
   <code style='background-color: #eef;'>&oelig;</code> œ (<code style='background-color: #ffe;'>\oe</code>)
|
160
|
+
   <code style='background-color: #eef;'>&AElig;</code> Æ (<code style='background-color: #ffe;'>\AE</code>)
|
161
|
+
   <code style='background-color: #eef;'>&spades;</code> ♠ (<code style='background-color: #ffe;'>$\spadesuit$</code>)
|
162
|
+
   <code style='background-color: #eef;'>&oline;</code> ‾ (<code style='background-color: #ffe;'>-</code>)
|
163
|
+
   <code style='background-color: #eef;'>&mdash;</code> — (<code style='background-color: #ffe;'>---</code>)
|
164
|
+
   <code style='background-color: #eef;'>&ocirc;</code> ô (<code style='background-color: #ffe;'>\^o</code>)
|
165
|
+
   <code style='background-color: #eef;'>&Scaron;</code> Š (<code style='background-color: #ffe;'>\v{S}</code>)
|
166
|
+
   <code style='background-color: #eef;'>&gt;</code> > (<code style='background-color: #ffe;'>$>$</code>)
|
167
|
+
   <code style='background-color: #eef;'>&omega;</code> ω (<code style='background-color: #ffe;'>$\omega$</code>)
|
168
|
+
   <code style='background-color: #eef;'>&phi;</code> φ (<code style='background-color: #ffe;'>$\phi$</code>)
|
169
|
+
   <code style='background-color: #eef;'>&ordm;</code> º (<code style='background-color: #ffe;'>\textordmasculine</code>)
|
170
|
+
   <code style='background-color: #eef;'>&copy;</code> © (<code style='background-color: #ffe;'>\copyright</code>)
|
171
|
+
   <code style='background-color: #eef;'>&infin;</code> ∞ (<code style='background-color: #ffe;'>$\infty$</code>)
|
172
|
+
   <code style='background-color: #eef;'>&Aacute;</code> Á (<code style='background-color: #ffe;'>\'A</code>)
|
173
|
+
   <code style='background-color: #eef;'>&rarr;</code> → (<code style='background-color: #ffe;'>$\rightarrow$</code>)
|
174
|
+
   <code style='background-color: #eef;'>&lt;</code> < (<code style='background-color: #ffe;'>$<$</code>)
|
175
|
+
   <code style='background-color: #eef;'>&cong;</code> ≅ (<code style='background-color: #ffe;'>$\cong$</code>)
|
176
|
+
   <code style='background-color: #eef;'>&eta;</code> η (<code style='background-color: #ffe;'>$\eta$</code>)
|
177
|
+
   <code style='background-color: #eef;'>&curren;</code> ¤ (<code style='background-color: #ffe;'>\currency</code>)
|
178
|
+
   <code style='background-color: #eef;'>&tau;</code> τ (<code style='background-color: #ffe;'>$\tau$</code>)
|
179
|
+
   <code style='background-color: #eef;'>&oplus;</code> ⊕ (<code style='background-color: #ffe;'>$\oplus$</code>)
|
180
|
+
   <code style='background-color: #eef;'>&cap;</code> ∪ (<code style='background-color: #ffe;'>$\cap$</code>)
|
181
|
+
   <code style='background-color: #eef;'>&Iota;</code> Ι (<code style='background-color: #ffe;'>$I$</code>)
|
182
|
+
   <code style='background-color: #eef;'>&Sigma;</code> Σ (<code style='background-color: #ffe;'>$\Sigma$</code>)
|
183
|
+
   <code style='background-color: #eef;'>&frac34;</code> ¾ (<code style='background-color: #ffe;'>$\frac{3}{4}$</code>)
|
184
|
+
   <code style='background-color: #eef;'>&scaron;</code> š (<code style='background-color: #ffe;'>\v{s}</code>)
|
185
|
+
   <code style='background-color: #eef;'>&eth;</code> ð (<code style='background-color: #ffe;'>$\eth$</code>)
|
186
|
+
   <code style='background-color: #eef;'>&aring;</code> å (<code style='background-color: #ffe;'>\aa</code>)
|
187
|
+
   <code style='background-color: #eef;'>&lArr;</code> ⇐ (<code style='background-color: #ffe;'>$\Leftarrow$</code>)
|
188
|
+
   <code style='background-color: #eef;'>&epsilon;</code> ε (<code style='background-color: #ffe;'>$\epsilon$</code>)
|
189
|
+
   <code style='background-color: #eef;'>&dArr;</code> ⇓ (<code style='background-color: #ffe;'>$\Downarrow$</code>)
|
190
|
+
   <code style='background-color: #eef;'>&alpha;</code> α (<code style='background-color: #ffe;'>$\alpha$</code>)
|
191
|
+
   <code style='background-color: #eef;'>&cent;</code> ¢ (<code style='background-color: #ffe;'>\cent</code>)
|
192
|
+
   <code style='background-color: #eef;'>&Lambda;</code> Λ (<code style='background-color: #ffe;'>$\Lambda$</code>)
|
193
|
+
   <code style='background-color: #eef;'>&loz;</code> ◊ (<code style='background-color: #ffe;'>$\lozenge$</code>)
|
194
|
+
   <code style='background-color: #eef;'>&yen;</code> ¥ (<code style='background-color: #ffe;'>\textyen</code>)
|
195
|
+
   <code style='background-color: #eef;'>&uuml;</code> ü (<code style='background-color: #ffe;'>\"u</code>)
|
196
|
+
   <code style='background-color: #eef;'>&Eacute;</code> É (<code style='background-color: #ffe;'>\'E</code>)
|
197
|
+
   <code style='background-color: #eef;'>&Ocirc;</code> Ô (<code style='background-color: #ffe;'>\^O</code>)
|
198
|
+
   <code style='background-color: #eef;'>&nbsp;</code>   (<code style='background-color: #ffe;'>~</code>)
|
199
|
+
   <code style='background-color: #eef;'>&reg;</code> ® (<code style='background-color: #ffe;'>\textregistered</code>)
|
200
|
+
   <code style='background-color: #eef;'>&cup;</code> ∩ (<code style='background-color: #ffe;'>$\cup$</code>)
|
201
|
+
   <code style='background-color: #eef;'>&frasl;</code> ⁄ (<code style='background-color: #ffe;'>/</code>)
|
202
|
+
   <code style='background-color: #eef;'>&Uacute;</code> Ú (<code style='background-color: #ffe;'>\'U</code>)
|
203
|
+
   <code style='background-color: #eef;'>&hArr;</code> ⇔ (<code style='background-color: #ffe;'>$\Leftrightarrow$</code>)
|
204
|
+
   <code style='background-color: #eef;'>&delta;</code> δ (<code style='background-color: #ffe;'>$\delta$</code>)
|
205
|
+
   <code style='background-color: #eef;'>&Ouml;</code> Ö (<code style='background-color: #ffe;'>\"O</code>)
|
206
|
+
   <code style='background-color: #eef;'>&ograve;</code> ò (<code style='background-color: #ffe;'>\`o</code>)
|
207
|
+
   <code style='background-color: #eef;'>&Ograve;</code> Ò (<code style='background-color: #ffe;'>\`O</code>)
|
208
|
+
   <code style='background-color: #eef;'>&quot;</code> " (<code style='background-color: #ffe;'>"</code>)
|
209
|
+
   <code style='background-color: #eef;'>&uarr;</code> ↑ (<code style='background-color: #ffe;'>$\uparrow$</code>)
|
210
|
+
   <code style='background-color: #eef;'>&yuml;</code> ÿ (<code style='background-color: #ffe;'>\"y</code>)
|
211
|
+
   <code style='background-color: #eef;'>&or;</code> ∨ (<code style='background-color: #ffe;'>$\vee$</code>)
|
212
|
+
   <code style='background-color: #eef;'>&Omega;</code> Ω (<code style='background-color: #ffe;'>$\Omega$</code>)
|
213
|
+
   <code style='background-color: #eef;'>&Agrave;</code> À (<code style='background-color: #ffe;'>\`A</code>)
|
214
|
+
   <code style='background-color: #eef;'>&lambda;</code> λ (<code style='background-color: #ffe;'>$\lambda$</code>)
|
215
|
+
   <code style='background-color: #eef;'>&prod;</code> ∏ (<code style='background-color: #ffe;'>$\prod$</code>)
|
216
|
+
   <code style='background-color: #eef;'>&laquo;</code> « (<code style='background-color: #ffe;'>\guillemotleft</code>)
|
217
|
+
   <code style='background-color: #eef;'>&eacute;</code> é (<code style='background-color: #ffe;'>\'e</code>)
|
218
|
+
   <code style='background-color: #eef;'>&plusmn;</code> ± (<code style='background-color: #ffe;'>$\pm$</code>)
|
219
|
+
   <code style='background-color: #eef;'>&uacute;</code> ú (<code style='background-color: #ffe;'>\'u</code>)
|
220
|
+
   <code style='background-color: #eef;'>&lsaquo;</code> ‹ (<code style='background-color: #ffe;'>\guilsinglleft</code>)
|
221
|
+
   <code style='background-color: #eef;'>&Aring;</code> Å (<code style='background-color: #ffe;'>\AA</code>)
|
222
|
+
   <code style='background-color: #eef;'>&frac12;</code> ½ (<code style='background-color: #ffe;'>$\frac{1}{2}$</code>)
|
223
|
+
   <code style='background-color: #eef;'>&dagger;</code> † (<code style='background-color: #ffe;'>\dag</code>)
|
224
|
+
   <code style='background-color: #eef;'>&gamma;</code> γ (<code style='background-color: #ffe;'>$\gamma$</code>)
|
225
|
+
   <code style='background-color: #eef;'>&frac14;</code> ¼ (<code style='background-color: #ffe;'>$\frac{1}{4}$</code>)
|
226
|
+
   <code style='background-color: #eef;'>&Alpha;</code> Α (<code style='background-color: #ffe;'>$A$</code>)
|
227
|
+
   <code style='background-color: #eef;'>&there4;</code> ∴ (<code style='background-color: #ffe;'>$\therefore$</code>)
|
228
|
+
   <code style='background-color: #eef;'>&rang;</code> 〈 (<code style='background-color: #ffe;'>$\rangle$</code>)
|
229
|
+
   <code style='background-color: #eef;'>&sub;</code> ⊂ (<code style='background-color: #ffe;'>$\subset$</code>)
|
230
|
+
   <code style='background-color: #eef;'>&rfloor;</code> ⌋ (<code style='background-color: #ffe;'>$\rfloor$</code>)
|
231
|
+
   <code style='background-color: #eef;'>&isin;</code> ∈ (<code style='background-color: #ffe;'>$\in$</code>)
|
232
|
+
   <code style='background-color: #eef;'>&iuml;</code> ï (<code style='background-color: #ffe;'>\"i</code>)
|
233
|
+
   <code style='background-color: #eef;'>&lceil;</code> ⌉ (<code style='background-color: #ffe;'>$\lceil$</code>)
|
234
|
+
   <code style='background-color: #eef;'>&theta;</code> θ (<code style='background-color: #ffe;'>$\theta$</code>)
|
235
|
+
   <code style='background-color: #eef;'>&deg;</code> ° (<code style='background-color: #ffe;'>\textdegree</code>)
|
236
|
+
   <code style='background-color: #eef;'>&notin;</code> ∉ (<code style='background-color: #ffe;'>$\notin$</code>)
|
237
|
+
   <code style='background-color: #eef;'>&agrave;</code> à (<code style='background-color: #ffe;'>\`a</code>)
|
238
|
+
   <code style='background-color: #eef;'>&prop;</code> ∝ (<code style='background-color: #ffe;'>$\propto$</code>)
|
239
|
+
   <code style='background-color: #eef;'>&Dagger;</code> ‡ (<code style='background-color: #ffe;'>\ddag</code>)
|
240
|
+
   <code style='background-color: #eef;'>&ucirc;</code> û (<code style='background-color: #ffe;'>\^u</code>)
|
241
|
+
   <code style='background-color: #eef;'>&Chi;</code> Χ (<code style='background-color: #ffe;'>$X$</code>)
|
242
|
+
   <code style='background-color: #eef;'>&zeta;</code> ζ (<code style='background-color: #ffe;'>$\zeta$</code>)
|
243
|
+
   <code style='background-color: #eef;'>&sum;</code> ∑ (<code style='background-color: #ffe;'>$\sum$</code>)
|
244
|
+
   <code style='background-color: #eef;'>&nabla;</code> ∇ (<code style='background-color: #ffe;'>$\nabla$</code>)
|
245
|
+
   <code style='background-color: #eef;'>&Iacute;</code> Í (<code style='background-color: #ffe;'>\'I</code>)
|
246
|
+
   <code style='background-color: #eef;'>&Upsilon;</code> Υ (<code style='background-color: #ffe;'>$Y$</code>)
|
247
|
+
   <code style='background-color: #eef;'>&sup;</code> ⊃ (<code style='background-color: #ffe;'>$\supset$</code>)
|
248
|
+
   <code style='background-color: #eef;'>&auml;</code> ä (<code style='background-color: #ffe;'>\"a</code>)
|
249
|
+
   <code style='background-color: #eef;'>&ldquo;</code> “ (<code style='background-color: #ffe;'>``</code>)
|
250
|
+
   <code style='background-color: #eef;'>&Delta;</code> Δ (<code style='background-color: #ffe;'>$\Delta$</code>)
|
251
|
+
   <code style='background-color: #eef;'>&circ;</code> ˆ (<code style='background-color: #ffe;'>\textasciicircum</code>)
|
252
|
+
   <code style='background-color: #eef;'>&pound;</code> £ (<code style='background-color: #ffe;'>\pounds</code>)
|
253
|
+
   <code style='background-color: #eef;'>&yacute;</code> ý (<code style='background-color: #ffe;'>\'y</code>)
|
254
|
+
   <code style='background-color: #eef;'>&perp;</code> ⊥ (<code style='background-color: #ffe;'>$\perp$</code>)
|
255
|
+
   <code style='background-color: #eef;'>&mu;</code> μ (<code style='background-color: #ffe;'>$\mu$</code>)
|
256
|
+
   <code style='background-color: #eef;'>&hellip;</code> … (<code style='background-color: #ffe;'>\ldots</code>)
|
257
|
+
   </p>
|
258
|
+
<div class='maruku_signature'><hr /><span style='font-size: small; font-style: italic'>Created by <a href='http://maruku.rubyforge.org' title='Maruku: a Markdown-superset interpreter for Ruby'>Maruku</a> at 14:11 on Tuesday, January 23rd, 2007.</span></div></body></html>
|