maruku 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/maruku +74 -22
- data/bin/marutest +15 -3
- data/docs/{changelog-0.3.md → changelog.md} +47 -18
- data/docs/entity_test.html +253 -0
- data/docs/entity_test.md +21 -0
- data/docs/index.html +124 -31
- data/docs/markdown_syntax.html +46 -46
- data/docs/maruku.html +124 -31
- data/docs/maruku.md +47 -9
- data/docs/proposal.html +4 -4
- data/lib/maruku.rb +1 -0
- data/lib/maruku/defaults.rb +1 -1
- data/lib/maruku/helpers.rb +4 -4
- data/lib/maruku/input/parse_block.rb +39 -33
- data/lib/maruku/input/parse_doc.rb +57 -3
- data/lib/maruku/input/parse_span_better.rb +28 -8
- data/lib/maruku/input/rubypants.rb +225 -0
- data/lib/maruku/input/type_detection.rb +1 -0
- data/lib/maruku/output/to_html.rb +46 -47
- data/lib/maruku/output/to_latex.rb +166 -45
- data/lib/maruku/output/to_latex_entities.rb +75 -43
- data/lib/maruku/string_utils.rb +21 -19
- data/lib/maruku/structures.rb +21 -12
- data/lib/maruku/structures_inspect.rb +12 -3
- data/lib/maruku/tests/new_parser.rb +2 -1
- data/lib/maruku/version.rb +1 -1
- data/tests/unittest/abbreviations.md +8 -8
- data/tests/unittest/attributes/attributes.md +10 -10
- data/tests/unittest/attributes/circular.md +4 -4
- data/tests/unittest/attributes/default.md +3 -3
- data/tests/unittest/blank.md +2 -2
- data/tests/unittest/blanks_in_code.md +12 -12
- data/tests/unittest/code.md +4 -4
- data/tests/unittest/code2.md +7 -6
- data/tests/unittest/code3.md +16 -16
- data/tests/unittest/easy.md +4 -4
- data/tests/unittest/email.md +4 -4
- data/tests/unittest/encoding/iso-8859-1.md +2 -2
- data/tests/unittest/encoding/utf-8.md +2 -2
- data/tests/unittest/entities.md +20 -20
- data/tests/unittest/escaping.md +16 -16
- data/tests/unittest/extra_dl.md +17 -7
- data/tests/unittest/extra_header_id.md +11 -11
- data/tests/unittest/extra_table1.md +4 -4
- data/tests/unittest/footnotes.md +38 -28
- data/tests/unittest/headers.md +6 -6
- data/tests/unittest/hrule.md +6 -6
- data/tests/unittest/images.md +18 -16
- data/tests/unittest/inline_html.md +7 -29
- data/tests/unittest/inline_html2.md +3 -3
- data/tests/unittest/links.md +7 -27
- data/tests/unittest/list1.md +9 -8
- data/tests/unittest/list2.md +15 -12
- data/tests/unittest/list3.md +16 -14
- data/tests/unittest/list4.md +4 -4
- data/tests/unittest/lists.md +33 -29
- data/tests/unittest/lists_after_paragraph.md +36 -36
- data/tests/unittest/lists_ol.md +43 -38
- data/tests/unittest/misc_sw.md +172 -156
- data/tests/unittest/notyet/escape.md +8 -8
- data/tests/unittest/notyet/header_after_par.md +6 -6
- data/tests/unittest/notyet/ticks.md +4 -4
- data/tests/unittest/notyet/triggering.md +21 -21
- data/tests/unittest/olist.md +5 -5
- data/tests/unittest/one.md +1 -1
- data/tests/unittest/paragraph.md +1 -1
- data/tests/unittest/paragraph_rules/dont_merge_ref.md +1 -1
- data/tests/unittest/paragraph_rules/tab_is_blank.md +2 -2
- data/tests/unittest/paragraphs.md +5 -5
- data/tests/unittest/recover/recover_links.md +2 -2
- data/tests/unittest/references/long_example.md +27 -19
- data/tests/unittest/smartypants.md +148 -0
- data/tests/unittest/syntax_hl.md +14 -14
- data/tests/unittest/test.md +2 -2
- data/tests/unittest/wrapping.md +8 -8
- data/tests/unittest/xml_instruction.md +82 -0
- metadata +149 -160
- data/docs/TOFIX.html +0 -22
- data/docs/TOFIX.md +0 -3
- data/docs/changelog-0.2.13.html +0 -30
- data/docs/changelog-0.2.13.md +0 -6
- data/docs/changelog-0.3.html +0 -113
- data/docs/faq.html +0 -57
- data/docs/faq.md +0 -32
- data/docs/hidden_o_n_squared.md +0 -10
- data/docs/todo.html +0 -40
- data/docs/todo.md +0 -9
data/bin/maruku
CHANGED
@@ -1,33 +1,85 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
3
|
require 'maruku'
|
4
|
+
require 'optparse'
|
5
|
+
|
6
|
+
export = :html
|
7
|
+
|
8
|
+
OptionParser.new do |opts|
|
9
|
+
opts.banner = "Usage: maruku [options] [file1.md [file2.md ..."
|
10
|
+
|
11
|
+
opts.on("-v", "--[no-]verbose", "Run verbosely") do |v|
|
12
|
+
MaRuKu::Globals[:verbose] = v end
|
13
|
+
opts.on("-u", "--[no-]unsafe", "Use unsafe features") do |v|
|
14
|
+
MaRuKu::Globals[:unsafe_features] = v end
|
4
15
|
|
5
|
-
if File.basename($0) =~ /^maruku/
|
6
|
-
# If we are given filenames, convert each file
|
7
|
-
if not ARGV.empty?
|
8
|
-
ARGV.each do |f|
|
9
|
-
puts "Opening #{f}"
|
10
16
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
17
|
+
|
18
|
+
opts.on_tail("--pdf", "Write PDF" ) do export = :pdf end
|
19
|
+
opts.on_tail("--html", "Write HTML") do export = :html end
|
20
|
+
opts.on_tail("--tex", "Write LaTeX" ) do export = :tex end
|
21
|
+
|
22
|
+
opts.on_tail("--version", "Show version") do
|
23
|
+
puts OptionParser::Version.join('.')
|
24
|
+
exit
|
25
|
+
end
|
26
|
+
|
27
|
+
opts.on_tail("-h", "--help", "Show this message") do
|
28
|
+
puts opts
|
29
|
+
exit
|
30
|
+
end
|
31
|
+
|
32
|
+
end.parse!
|
33
|
+
|
34
|
+
#p ARGV
|
35
|
+
#p MaRuKu::Globals
|
36
|
+
|
37
|
+
# If we are given filenames, convert each file
|
38
|
+
if not ARGV.empty?
|
39
|
+
ARGV.each do |f|
|
40
|
+
|
41
|
+
# read file content
|
42
|
+
input = File.open(f,'r').read
|
43
|
+
|
44
|
+
$stderr.puts "Reading from #{f}"
|
18
45
|
|
19
|
-
|
20
|
-
|
21
|
-
|
46
|
+
# create Maruku
|
47
|
+
doc = Maruku.new(input, {:on_error=>:warning})
|
48
|
+
|
22
49
|
|
23
|
-
|
24
|
-
|
50
|
+
out=""; prefix = "?"
|
51
|
+
case export
|
52
|
+
when :html
|
53
|
+
prefix='html'
|
54
|
+
out = doc.to_html_document( {:indent => -1})
|
55
|
+
when :pdf, :tex
|
56
|
+
prefix='tex'
|
57
|
+
out = doc.to_latex_document
|
58
|
+
when :markdown
|
59
|
+
prefix='pretty_md'
|
60
|
+
out = doc.to_markdown
|
61
|
+
end
|
62
|
+
|
63
|
+
# write to file
|
64
|
+
dir = File.dirname(f)
|
65
|
+
job = File.join(dir, File.basename(f, File.extname(f)))
|
66
|
+
filename = job + "." + prefix
|
67
|
+
|
68
|
+
$stderr.puts "Writing to #{filename}"
|
69
|
+
File.open(filename,'w') do |f| f.puts out end
|
70
|
+
|
71
|
+
if export == :pdf
|
72
|
+
cmd = "pdflatex '#{job}' -interaction=nonstopmode "+
|
73
|
+
"'-output-directory=#{dir}' "
|
74
|
+
# run twice for cross references
|
75
|
+
system cmd
|
76
|
+
system cmd
|
25
77
|
end
|
26
|
-
else
|
27
|
-
# else, act as a filter
|
28
|
-
data = $stdin.read
|
29
|
-
puts Maruku.new(data, {:on_error=>:warning}).to_html
|
30
78
|
end
|
79
|
+
|
80
|
+
else
|
81
|
+
# else, act as a filter
|
82
|
+
data = $stdin.read
|
83
|
+
puts Maruku.new(data, {:on_error=>:warning}).to_html
|
31
84
|
end
|
32
85
|
|
33
|
-
|
data/bin/marutest
CHANGED
@@ -9,6 +9,7 @@ def marker(x)
|
|
9
9
|
"\n*** Output of #{x} ***\n"
|
10
10
|
end
|
11
11
|
|
12
|
+
# a = expected b = found
|
12
13
|
def equals(a, b)
|
13
14
|
a = a.split("\n")
|
14
15
|
b = b.split("\n")
|
@@ -18,8 +19,19 @@ def equals(a, b)
|
|
18
19
|
lb = b[i]
|
19
20
|
if la != lb
|
20
21
|
puts "\n"
|
21
|
-
|
22
|
-
|
22
|
+
|
23
|
+
def write_lines(i, j, lines, prefix, i_star)
|
24
|
+
i = [i, 0].max
|
25
|
+
j = [j, lines.size-1].min
|
26
|
+
for a in i..j
|
27
|
+
l = lines[a].gsub(/\t/,' ')
|
28
|
+
puts ("%s %3d" % [prefix, a]) +
|
29
|
+
(a==i_star ? " -->" : " ")+lines[a]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
write_lines(i-3, i+3, a, "expected", i )
|
34
|
+
write_lines(i-3, i+3, b, " found", i )
|
23
35
|
return false
|
24
36
|
end
|
25
37
|
end
|
@@ -121,7 +133,7 @@ def run_test(filename, its_ok, verbose=true)
|
|
121
133
|
|
122
134
|
|
123
135
|
TOTEST.each do |x|
|
124
|
-
if not equals(
|
136
|
+
if not equals(expected[x], actual[x])
|
125
137
|
if its_ok.include? x
|
126
138
|
expected[x] = actual[x]
|
127
139
|
$stdout.write " relax:#{x} "
|
@@ -1,23 +1,52 @@
|
|
1
|
-
css: style.css
|
2
1
|
|
3
|
-
|
4
|
-
-------------------------------------------------
|
2
|
+
#### Changes in 0.4.1 aka "Typographer" ####
|
5
3
|
|
6
|
-
|
7
|
-
software. So if you want to use it in production environments, please
|
8
|
-
check back in a month or so, while we squash the remaining bugs.
|
4
|
+
* Implemented SmartyPants support:
|
9
5
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
6
|
+
'Twas a "test" to 'remember' -- in the '90s
|
7
|
+
--- while I was <<ok>>. She was 6\"12\'.
|
8
|
+
> 'Twas a "test" to 'remember' -- in the '90s --- while I was <<ok>>.
|
9
|
+
> She was 6\"12\'.
|
14
10
|
|
15
|
-
|
11
|
+
I adapted the code from RubyPants.
|
12
|
+
|
13
|
+
* Server directives between `<? ?>` are properly preserved.
|
14
|
+
* Changes in LaTeX export:
|
15
|
+
|
16
|
+
* Now Japanese text rendering sort of works, using the following packages:
|
17
|
+
|
18
|
+
\usepackage[C40]{fontenc}
|
19
|
+
\usepackage[cjkjis]{ucs}
|
20
|
+
\usepackage[utf8x]{inputenc}
|
21
|
+
|
22
|
+
Nevertheless, I could only get bitmap fonts working -- probably it's a problem
|
23
|
+
with my setup.
|
24
|
+
|
25
|
+
A quick test: 日本、中国、ひらがな、カタカナ。
|
26
|
+
|
27
|
+
* Fixed bugs in rendering of immediate links.
|
28
|
+
* External packages are `require`d only if needed.
|
29
|
+
* More symbols supported.
|
30
|
+
See the symbol list
|
31
|
+
[in HTML](http://maruku.rubyforge.org/entity_test.html) and
|
32
|
+
[in PDF](http://maruku.rubyforge.org/entity_test.pdf).
|
16
33
|
|
17
|
-
|
34
|
+
|
35
|
+
#### Changes in 0.4 ####
|
36
|
+
|
37
|
+
* First implementation of [the new meta-data syntax][meta].
|
38
|
+
* General refactorization of the code and much cleaner error reporting.
|
39
|
+
* Created [the RDOC documentation][rdoc].
|
40
|
+
* The `add_whitespace` method took too much time -- it was O(n^2).
|
41
|
+
* Added unit-tests for block-level elements.
|
42
|
+
|
43
|
+
[rdoc]: http://maruku.rubyforge.org/rdoc/
|
44
|
+
[meta]: http://maruku.rubyforge.org/proposal.html
|
45
|
+
|
46
|
+
#### Changes in 0.3 ####
|
18
47
|
|
19
48
|
* A real parser is used instead of a regexp-based system, also for span-level
|
20
|
-
elements
|
49
|
+
elements.
|
21
50
|
|
22
51
|
Now Maruku is almost 2x faster than Bluecloth, while having more features.
|
23
52
|
|
@@ -76,9 +105,9 @@ Immediate TODO-list:
|
|
76
105
|
|
77
106
|
* Support for images in PDF.
|
78
107
|
|
108
|
+
#### Changes in 0.2.13 ####
|
79
109
|
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
110
|
+
- better handling of inline HTML code.
|
111
|
+
- Handle HTML comments.
|
112
|
+
- Sanitizes HR and IMG tags if you don't close them.
|
113
|
+
- documentation included in HTML format
|
@@ -0,0 +1,253 @@
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
2
|
+
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN'
|
3
|
+
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
|
4
|
+
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'><head><meta content='text/html; charset=utf-8' http-equiv='Content-type' /><title>List of symbols supported by Maruku</title></head><body>
|
5
|
+
<h1 id='list_of_symbols_supported_by_maruku'>List of symbols supported by Maruku</h1>
|
6
|
+
<?maruku all = []
|
7
|
+
ENTITY_TABLE.each do |k, e|
|
8
|
+
if k.kind_of? String
|
9
|
+
all << (h=md_code("&#{e.html_entity};")) <<
|
10
|
+
" " << md_entity(e.html_entity) <<
|
11
|
+
" (" << (l=md_code(e.latex_string)) << ") \n" <<
|
12
|
+
md_entity('nbsp')<<md_entity('nbsp')<<md_entity('nbsp')
|
13
|
+
|
14
|
+
h.attributes[:code_background_color] = '#eef'
|
15
|
+
l.attributes[:code_background_color] = '#ffe'
|
16
|
+
end
|
17
|
+
end
|
18
|
+
@doc.children.push md_par(all)?>
|
19
|
+
<p><code style='background-color: #eef;'>&oslash;</code> ø (<code style='background-color: #ffe;'>\o</code>)
|
20
|
+
<code style='background-color: #eef;'>&iexcl;</code> ¡ (<code style='background-color: #ffe;'>\textexclamdown</code>)
|
21
|
+
<code style='background-color: #eef;'>&szlig;</code> ß (<code style='background-color: #ffe;'>\ss</code>)
|
22
|
+
<code style='background-color: #eef;'>&ETH;</code> Ð (<code style='background-color: #ffe;'>$\eth$</code>)
|
23
|
+
<code style='background-color: #eef;'>&Oslash;</code> Ø (<code style='background-color: #ffe;'>\O</code>)
|
24
|
+
<code style='background-color: #eef;'>&Yuml;</code> Ÿ (<code style='background-color: #ffe;'>\"Y</code>)
|
25
|
+
<code style='background-color: #eef;'>&rho;</code> ρ (<code style='background-color: #ffe;'>$\rho$</code>)
|
26
|
+
<code style='background-color: #eef;'>&psi;</code> ψ (<code style='background-color: #ffe;'>$\psi$</code>)
|
27
|
+
<code style='background-color: #eef;'>&ecirc;</code> ê (<code style='background-color: #ffe;'>\^e</code>)
|
28
|
+
<code style='background-color: #eef;'>&OElig;</code> Œ (<code style='background-color: #ffe;'>\OE</code>)
|
29
|
+
<code style='background-color: #eef;'>&euml;</code> ë (<code style='background-color: #ffe;'>\"e</code>)
|
30
|
+
<code style='background-color: #eef;'>&aelig;</code> æ (<code style='background-color: #ffe;'>\ae</code>)
|
31
|
+
<code style='background-color: #eef;'>&Theta;</code> Θ (<code style='background-color: #ffe;'>$\Theta$</code>)
|
32
|
+
<code style='background-color: #eef;'>&Mu;</code> Μ (<code style='background-color: #ffe;'>$M$</code>)
|
33
|
+
<code style='background-color: #eef;'>&alefsym;</code> ℵ (<code style='background-color: #ffe;'>$\aleph$</code>)
|
34
|
+
<code style='background-color: #eef;'>&acirc;</code> â (<code style='background-color: #ffe;'>\^a</code>)
|
35
|
+
<code style='background-color: #eef;'>&piv;</code> ϖ (<code style='background-color: #ffe;'>$\varpi$</code>)
|
36
|
+
<code style='background-color: #eef;'>&egrave;</code> è (<code style='background-color: #ffe;'>\`e</code>)
|
37
|
+
<code style='background-color: #eef;'>&not;</code> ¬ (<code style='background-color: #ffe;'>$\neg$</code>)
|
38
|
+
<code style='background-color: #eef;'>&Egrave;</code> È (<code style='background-color: #ffe;'>\`E</code>)
|
39
|
+
<code style='background-color: #eef;'>&para;</code> ¶ (<code style='background-color: #ffe;'>\P</code>)
|
40
|
+
<code style='background-color: #eef;'>&ugrave;</code> ù (<code style='background-color: #ffe;'>\`u</code>)
|
41
|
+
<code style='background-color: #eef;'>&Yacute;</code> Ý (<code style='background-color: #ffe;'>\'Y</code>)
|
42
|
+
<code style='background-color: #eef;'>&lsquo;</code> ‘ (<code style='background-color: #ffe;'>`</code>)
|
43
|
+
<code style='background-color: #eef;'>&Phi;</code> Φ (<code style='background-color: #ffe;'>$\Phi$</code>)
|
44
|
+
<code style='background-color: #eef;'>&euro;</code> € (<code style='background-color: #ffe;'>\euro</code>)
|
45
|
+
<code style='background-color: #eef;'>&icirc;</code> î (<code style='background-color: #ffe;'>\^i</code>)
|
46
|
+
<code style='background-color: #eef;'>&iacute;</code> í (<code style='background-color: #ffe;'>\'i</code>)
|
47
|
+
<code style='background-color: #eef;'>&rArr;</code> ⇒ (<code style='background-color: #ffe;'>$\Rightarrow$</code>)
|
48
|
+
<code style='background-color: #eef;'>&Ntilde;</code> Ñ (<code style='background-color: #ffe;'>\~N</code>)
|
49
|
+
<code style='background-color: #eef;'>&sim;</code> ∼ (<code style='background-color: #ffe;'>$\sim$</code>)
|
50
|
+
<code style='background-color: #eef;'>&sup1;</code> ¹ (<code style='background-color: #ffe;'>$^1$</code>)
|
51
|
+
<code style='background-color: #eef;'>&amp;</code> & (<code style='background-color: #ffe;'>\&</code>)
|
52
|
+
<code style='background-color: #eef;'>&thetasym;</code> ϑ (<code style='background-color: #ffe;'>$\vartheta$</code>)
|
53
|
+
<code style='background-color: #eef;'>&sup2;</code> ² (<code style='background-color: #ffe;'>$^2$</code>)
|
54
|
+
<code style='background-color: #eef;'>&pi;</code> π (<code style='background-color: #ffe;'>$\pi$</code>)
|
55
|
+
<code style='background-color: #eef;'>&Gamma;</code> Γ (<code style='background-color: #ffe;'>$\Gamma$</code>)
|
56
|
+
<code style='background-color: #eef;'>&trade;</code> ™ (<code style='background-color: #ffe;'>$^{\rm TM}$</code>)
|
57
|
+
<code style='background-color: #eef;'>&sup3;</code> ³ (<code style='background-color: #ffe;'>$^3$</code>)
|
58
|
+
<code style='background-color: #eef;'>&Omicron;</code> Ο (<code style='background-color: #ffe;'>$O$</code>)
|
59
|
+
<code style='background-color: #eef;'>&Iuml;</code> Ï (<code style='background-color: #ffe;'>\"I</code>)
|
60
|
+
<code style='background-color: #eef;'>&THORN;</code> Þ (<code style='background-color: #ffe;'>\Thorn</code>)
|
61
|
+
<code style='background-color: #eef;'>&radic;</code> √ (<code style='background-color: #ffe;'>$\surd$</code>)
|
62
|
+
<code style='background-color: #eef;'>&forall;</code> ∀ (<code style='background-color: #ffe;'>$\forall$</code>)
|
63
|
+
<code style='background-color: #eef;'>&kappa;</code> κ (<code style='background-color: #ffe;'>$\kappa$</code>)
|
64
|
+
<code style='background-color: #eef;'>&sect;</code> § (<code style='background-color: #ffe;'>\S</code>)
|
65
|
+
<code style='background-color: #eef;'>&Eta;</code> Η (<code style='background-color: #ffe;'>$H$</code>)
|
66
|
+
<code style='background-color: #eef;'>&Otilde;</code> Õ (<code style='background-color: #ffe;'>\~O</code>)
|
67
|
+
<code style='background-color: #eef;'>&Uuml;</code> Ü (<code style='background-color: #ffe;'>\"U</code>)
|
68
|
+
<code style='background-color: #eef;'>&int;</code> ∫ (<code style='background-color: #ffe;'>$\int$</code>)
|
69
|
+
<code style='background-color: #eef;'>&Tau;</code> Τ (<code style='background-color: #ffe;'>$T$</code>)
|
70
|
+
<code style='background-color: #eef;'>&larr;</code> ← (<code style='background-color: #ffe;'>$\leftarrow$</code>)
|
71
|
+
<code style='background-color: #eef;'>&Ugrave;</code> Ù (<code style='background-color: #ffe;'>\`U</code>)
|
72
|
+
<code style='background-color: #eef;'>&tilde;</code> ˜ (<code style='background-color: #ffe;'>\textasciitilde</code>)
|
73
|
+
<code style='background-color: #eef;'>&darr;</code> ↓ (<code style='background-color: #ffe;'>$\downarrow$</code>)
|
74
|
+
<code style='background-color: #eef;'>&Pi;</code> Π (<code style='background-color: #ffe;'>$\Pi$</code>)
|
75
|
+
<code style='background-color: #eef;'>&exist;</code> ∃ (<code style='background-color: #ffe;'>$\exists$</code>)
|
76
|
+
<code style='background-color: #eef;'>&lowast;</code> ∗ (<code style='background-color: #ffe;'>$\ast$</code>)
|
77
|
+
<code style='background-color: #eef;'>&rsaquo;</code> › (<code style='background-color: #ffe;'>\guilsinglright</code>)
|
78
|
+
<code style='background-color: #eef;'>&middot;</code> · (<code style='background-color: #ffe;'>$\cdot$</code>)
|
79
|
+
<code style='background-color: #eef;'>&crarr;</code> ↵ (<code style='background-color: #ffe;'>$\hookleftarrow$</code>)
|
80
|
+
<code style='background-color: #eef;'>&Ucirc;</code> Û (<code style='background-color: #ffe;'>\^U</code>)
|
81
|
+
<code style='background-color: #eef;'>&Epsilon;</code> Ε (<code style='background-color: #ffe;'>$E$</code>)
|
82
|
+
<code style='background-color: #eef;'>&thorn;</code> þ (<code style='background-color: #ffe;'>\thorn</code>)
|
83
|
+
<code style='background-color: #eef;'>&ntilde;</code> ñ (<code style='background-color: #ffe;'>\~n</code>)
|
84
|
+
<code style='background-color: #eef;'>&raquo;</code> » (<code style='background-color: #ffe;'>\guillemotright</code>)
|
85
|
+
<code style='background-color: #eef;'>&harr;</code> ↔ (<code style='background-color: #ffe;'>$\leftrightarrow$</code>)
|
86
|
+
<code style='background-color: #eef;'>&part;</code> ∂ (<code style='background-color: #ffe;'>$\partial$</code>)
|
87
|
+
<code style='background-color: #eef;'>&atilde;</code> ã (<code style='background-color: #ffe;'>\~a</code>)
|
88
|
+
<code style='background-color: #eef;'>&ccedil;</code> ç (<code style='background-color: #ffe;'>\c{c}</code>)
|
89
|
+
<code style='background-color: #eef;'>&Acirc;</code> Â (<code style='background-color: #ffe;'>\^A</code>)
|
90
|
+
<code style='background-color: #eef;'>&otilde;</code> õ (<code style='background-color: #ffe;'>\~o</code>)
|
91
|
+
<code style='background-color: #eef;'>&uArr;</code> ⇑ (<code style='background-color: #ffe;'>$\Uparrow$</code>)
|
92
|
+
<code style='background-color: #eef;'>&diams;</code> ♦ (<code style='background-color: #ffe;'>$\diamondsuit$</code>)
|
93
|
+
<code style='background-color: #eef;'>&upsilon;</code> υ (<code style='background-color: #ffe;'>$\upsilon$</code>)
|
94
|
+
<code style='background-color: #eef;'>&Euml;</code> Ë (<code style='background-color: #ffe;'>\"E</code>)
|
95
|
+
<code style='background-color: #eef;'>&asymp;</code> ≈ (<code style='background-color: #ffe;'>$\approx$</code>)
|
96
|
+
<code style='background-color: #eef;'>&ne;</code> ≠ (<code style='background-color: #ffe;'>$\neq$</code>)
|
97
|
+
<code style='background-color: #eef;'>&rceil;</code> ⌉ (<code style='background-color: #ffe;'>$\rceil$</code>)
|
98
|
+
<code style='background-color: #eef;'>&sdot;</code> ⋅ (<code style='background-color: #ffe;'>$\cdot$</code>)
|
99
|
+
<code style='background-color: #eef;'>&beta;</code> β (<code style='background-color: #ffe;'>$\beta$</code>)
|
100
|
+
<code style='background-color: #eef;'>&ni;</code> ∋ (<code style='background-color: #ffe;'>$\ni$</code>)
|
101
|
+
<code style='background-color: #eef;'>&ouml;</code> ö (<code style='background-color: #ffe;'>\"o</code>)
|
102
|
+
<code style='background-color: #eef;'>&Atilde;</code> Ã (<code style='background-color: #ffe;'>\~A</code>)
|
103
|
+
<code style='background-color: #eef;'>&minus;</code> − (<code style='background-color: #ffe;'>$-$</code>)
|
104
|
+
<code style='background-color: #eef;'>&Ccedil;</code> Ç (<code style='background-color: #ffe;'>\c{C}</code>)
|
105
|
+
<code style='background-color: #eef;'>&igrave;</code> ì (<code style='background-color: #ffe;'>\`i</code>)
|
106
|
+
<code style='background-color: #eef;'>&brvbar;</code> ¦ (<code style='background-color: #ffe;'>\brokenvert</code>)
|
107
|
+
<code style='background-color: #eef;'>&acute;</code> ´ (<code style='background-color: #ffe;'>'</code>)
|
108
|
+
<code style='background-color: #eef;'>&sigmaf;</code> ς (<code style='background-color: #ffe;'>$\varsigma$</code>)
|
109
|
+
<code style='background-color: #eef;'>&weierp;</code> ℘ (<code style='background-color: #ffe;'>$\wp$</code>)
|
110
|
+
<code style='background-color: #eef;'>&Auml;</code> Ä (<code style='background-color: #ffe;'>\"A</code>)
|
111
|
+
<code style='background-color: #eef;'>&apos;</code> ' (<code style='background-color: #ffe;'>'</code>)
|
112
|
+
<code style='background-color: #eef;'>&micro;</code> µ (<code style='background-color: #ffe;'>$\mu$</code>)
|
113
|
+
<code style='background-color: #eef;'>&Icirc;</code> Î (<code style='background-color: #ffe;'>\^I</code>)
|
114
|
+
<code style='background-color: #eef;'>&xi;</code> ξ (<code style='background-color: #ffe;'>$\xi$</code>)
|
115
|
+
<code style='background-color: #eef;'>&clubs;</code> ♣ (<code style='background-color: #ffe;'>$\clubsuit$</code>)
|
116
|
+
<code style='background-color: #eef;'>&bull;</code> • (<code style='background-color: #ffe;'>$\bullet$</code>)
|
117
|
+
<code style='background-color: #eef;'>&Ecirc;</code> Ê (<code style='background-color: #ffe;'>\^E</code>)
|
118
|
+
<code style='background-color: #eef;'>&Kappa;</code> Κ (<code style='background-color: #ffe;'>$K$</code>)
|
119
|
+
<code style='background-color: #eef;'>&times;</code> × (<code style='background-color: #ffe;'>$\times$</code>)
|
120
|
+
<code style='background-color: #eef;'>&Zeta;</code> Ζ (<code style='background-color: #ffe;'>$Z$</code>)
|
121
|
+
<code style='background-color: #eef;'>&empty;</code> ∅ (<code style='background-color: #ffe;'>$\emptyset$</code>)
|
122
|
+
<code style='background-color: #eef;'>&image;</code> ℑ (<code style='background-color: #ffe;'>$\Im$</code>)
|
123
|
+
<code style='background-color: #eef;'>&Oacute;</code> Ó (<code style='background-color: #ffe;'>\' O</code>)
|
124
|
+
<code style='background-color: #eef;'>&nu;</code> ν (<code style='background-color: #ffe;'>$\nu$</code>)
|
125
|
+
<code style='background-color: #eef;'>&Xi;</code> Ξ (<code style='background-color: #ffe;'>$\Xi$</code>)
|
126
|
+
<code style='background-color: #eef;'>&Igrave;</code> Ì (<code style='background-color: #ffe;'>\`I</code>)
|
127
|
+
<code style='background-color: #eef;'>&ndash;</code> – (<code style='background-color: #ffe;'>--</code>)
|
128
|
+
<code style='background-color: #eef;'>&and;</code> ∧ (<code style='background-color: #ffe;'>$\wedge$</code>)
|
129
|
+
<code style='background-color: #eef;'>&prime;</code> ′ (<code style='background-color: #ffe;'>$\prime$</code>)
|
130
|
+
<code style='background-color: #eef;'>&omicron;</code> ο (<code style='background-color: #ffe;'>$o$</code>)
|
131
|
+
<code style='background-color: #eef;'>&iota;</code> ι (<code style='background-color: #ffe;'>$\iota$</code>)
|
132
|
+
<code style='background-color: #eef;'>&ang;</code> ∠ (<code style='background-color: #ffe;'>$\angle$</code>)
|
133
|
+
<code style='background-color: #eef;'>&chi;</code> χ (<code style='background-color: #ffe;'>$\chi$</code>)
|
134
|
+
<code style='background-color: #eef;'>&ge;</code> ≥ (<code style='background-color: #ffe;'>$\geq$</code>)
|
135
|
+
<code style='background-color: #eef;'>&lang;</code> ⟨ (<code style='background-color: #ffe;'>$\langle$</code>)
|
136
|
+
<code style='background-color: #eef;'>&le;</code> ≤ (<code style='background-color: #ffe;'>$\leq$</code>)
|
137
|
+
<code style='background-color: #eef;'>&rdquo;</code> ” (<code style='background-color: #ffe;'>''</code>)
|
138
|
+
<code style='background-color: #eef;'>&otimes;</code> ⊗ (<code style='background-color: #ffe;'>$\otimes$</code>)
|
139
|
+
<code style='background-color: #eef;'>&Nu;</code> Ν (<code style='background-color: #ffe;'>$N$</code>)
|
140
|
+
<code style='background-color: #eef;'>&real;</code> ℜ (<code style='background-color: #ffe;'>$\Re$</code>)
|
141
|
+
<code style='background-color: #eef;'>&lfloor;</code> ⌊ (<code style='background-color: #ffe;'>$\lfloor$</code>)
|
142
|
+
<code style='background-color: #eef;'>&rsquo;</code> ’ (<code style='background-color: #ffe;'>'</code>)
|
143
|
+
<code style='background-color: #eef;'>&equiv;</code> ≡ (<code style='background-color: #ffe;'>$\equiv$</code>)
|
144
|
+
<code style='background-color: #eef;'>&aacute;</code> á (<code style='background-color: #ffe;'>\'a</code>)
|
145
|
+
<code style='background-color: #eef;'>&permil;</code> ‰ (<code style='background-color: #ffe;'>\permil</code>)
|
146
|
+
<code style='background-color: #eef;'>&sigma;</code> σ (<code style='background-color: #ffe;'>$\sigma$</code>)
|
147
|
+
<code style='background-color: #eef;'>&oacute;</code> ó (<code style='background-color: #ffe;'>\'o</code>)
|
148
|
+
<code style='background-color: #eef;'>&supe;</code> ⊇ (<code style='background-color: #ffe;'>$\supseteq$</code>)
|
149
|
+
<code style='background-color: #eef;'>&ordf;</code> ª (<code style='background-color: #ffe;'>\textordfeminine</code>)
|
150
|
+
<code style='background-color: #eef;'>&Beta;</code> Β (<code style='background-color: #ffe;'>$B$</code>)
|
151
|
+
<code style='background-color: #eef;'>&hearts;</code> ♥ (<code style='background-color: #ffe;'>$\heartsuit$</code>)
|
152
|
+
<code style='background-color: #eef;'>&Rho;</code> Ρ (<code style='background-color: #ffe;'>$P$</code>)
|
153
|
+
<code style='background-color: #eef;'>&Psi;</code> Ψ (<code style='background-color: #ffe;'>$\Psi$</code>)
|
154
|
+
<code style='background-color: #eef;'>&oelig;</code> œ (<code style='background-color: #ffe;'>\oe</code>)
|
155
|
+
<code style='background-color: #eef;'>&AElig;</code> Æ (<code style='background-color: #ffe;'>\AE</code>)
|
156
|
+
<code style='background-color: #eef;'>&spades;</code> ♠ (<code style='background-color: #ffe;'>$\spadesuit$</code>)
|
157
|
+
<code style='background-color: #eef;'>&oline;</code> ‾ (<code style='background-color: #ffe;'>-</code>)
|
158
|
+
<code style='background-color: #eef;'>&mdash;</code> — (<code style='background-color: #ffe;'>---</code>)
|
159
|
+
<code style='background-color: #eef;'>&ocirc;</code> ô (<code style='background-color: #ffe;'>\^o</code>)
|
160
|
+
<code style='background-color: #eef;'>&Scaron;</code> Š (<code style='background-color: #ffe;'>\v{S}</code>)
|
161
|
+
<code style='background-color: #eef;'>&gt;</code> > (<code style='background-color: #ffe;'>$>$</code>)
|
162
|
+
<code style='background-color: #eef;'>&omega;</code> ω (<code style='background-color: #ffe;'>$\omega$</code>)
|
163
|
+
<code style='background-color: #eef;'>&phi;</code> φ (<code style='background-color: #ffe;'>$\phi$</code>)
|
164
|
+
<code style='background-color: #eef;'>&ordm;</code> º (<code style='background-color: #ffe;'>\textordmasculine</code>)
|
165
|
+
<code style='background-color: #eef;'>&copy;</code> © (<code style='background-color: #ffe;'>\copyright</code>)
|
166
|
+
<code style='background-color: #eef;'>&infin;</code> ∞ (<code style='background-color: #ffe;'>$\infty$</code>)
|
167
|
+
<code style='background-color: #eef;'>&Aacute;</code> Á (<code style='background-color: #ffe;'>\'A</code>)
|
168
|
+
<code style='background-color: #eef;'>&rarr;</code> → (<code style='background-color: #ffe;'>$\rightarrow$</code>)
|
169
|
+
<code style='background-color: #eef;'>&lt;</code> < (<code style='background-color: #ffe;'>$<$</code>)
|
170
|
+
<code style='background-color: #eef;'>&cong;</code> ≅ (<code style='background-color: #ffe;'>$\cong$</code>)
|
171
|
+
<code style='background-color: #eef;'>&eta;</code> η (<code style='background-color: #ffe;'>$\eta$</code>)
|
172
|
+
<code style='background-color: #eef;'>&curren;</code> ¤ (<code style='background-color: #ffe;'>\currency</code>)
|
173
|
+
<code style='background-color: #eef;'>&tau;</code> τ (<code style='background-color: #ffe;'>$\tau$</code>)
|
174
|
+
<code style='background-color: #eef;'>&oplus;</code> ⊕ (<code style='background-color: #ffe;'>$\oplus$</code>)
|
175
|
+
<code style='background-color: #eef;'>&cap;</code> ∩ (<code style='background-color: #ffe;'>$\cap$</code>)
|
176
|
+
<code style='background-color: #eef;'>&Iota;</code> Ι (<code style='background-color: #ffe;'>$I$</code>)
|
177
|
+
<code style='background-color: #eef;'>&Sigma;</code> Σ (<code style='background-color: #ffe;'>$\Sigma$</code>)
|
178
|
+
<code style='background-color: #eef;'>&frac34;</code> ¾ (<code style='background-color: #ffe;'>$\frac{3}{4}$</code>)
|
179
|
+
<code style='background-color: #eef;'>&scaron;</code> š (<code style='background-color: #ffe;'>\v{s}</code>)
|
180
|
+
<code style='background-color: #eef;'>&eth;</code> ð (<code style='background-color: #ffe;'>$\eth$</code>)
|
181
|
+
<code style='background-color: #eef;'>&aring;</code> å (<code style='background-color: #ffe;'>\aa</code>)
|
182
|
+
<code style='background-color: #eef;'>&lArr;</code> ⇐ (<code style='background-color: #ffe;'>$\Leftarrow$</code>)
|
183
|
+
<code style='background-color: #eef;'>&epsilon;</code> ε (<code style='background-color: #ffe;'>$\epsilon$</code>)
|
184
|
+
<code style='background-color: #eef;'>&dArr;</code> ⇓ (<code style='background-color: #ffe;'>$\Downarrow$</code>)
|
185
|
+
<code style='background-color: #eef;'>&alpha;</code> α (<code style='background-color: #ffe;'>$\alpha$</code>)
|
186
|
+
<code style='background-color: #eef;'>&cent;</code> ¢ (<code style='background-color: #ffe;'>\cent</code>)
|
187
|
+
<code style='background-color: #eef;'>&Lambda;</code> Λ (<code style='background-color: #ffe;'>$\Lambda$</code>)
|
188
|
+
<code style='background-color: #eef;'>&loz;</code> ◊ (<code style='background-color: #ffe;'>$\lozenge$</code>)
|
189
|
+
<code style='background-color: #eef;'>&yen;</code> ¥ (<code style='background-color: #ffe;'>\textyen</code>)
|
190
|
+
<code style='background-color: #eef;'>&uuml;</code> ü (<code style='background-color: #ffe;'>\"u</code>)
|
191
|
+
<code style='background-color: #eef;'>&Eacute;</code> É (<code style='background-color: #ffe;'>\'E</code>)
|
192
|
+
<code style='background-color: #eef;'>&Ocirc;</code> Ô (<code style='background-color: #ffe;'>\^O</code>)
|
193
|
+
<code style='background-color: #eef;'>&nbsp;</code> (<code style='background-color: #ffe;'>~</code>)
|
194
|
+
<code style='background-color: #eef;'>&reg;</code> ® (<code style='background-color: #ffe;'>\textregistered</code>)
|
195
|
+
<code style='background-color: #eef;'>&cup;</code> ∪ (<code style='background-color: #ffe;'>$\cup$</code>)
|
196
|
+
<code style='background-color: #eef;'>&frasl;</code> ⁄ (<code style='background-color: #ffe;'>/</code>)
|
197
|
+
<code style='background-color: #eef;'>&Uacute;</code> Ú (<code style='background-color: #ffe;'>\'U</code>)
|
198
|
+
<code style='background-color: #eef;'>&hArr;</code> ⇔ (<code style='background-color: #ffe;'>$\Leftrightarrow$</code>)
|
199
|
+
<code style='background-color: #eef;'>&delta;</code> δ (<code style='background-color: #ffe;'>$\delta$</code>)
|
200
|
+
<code style='background-color: #eef;'>&Ouml;</code> Ö (<code style='background-color: #ffe;'>\"O</code>)
|
201
|
+
<code style='background-color: #eef;'>&ograve;</code> ò (<code style='background-color: #ffe;'>\`o</code>)
|
202
|
+
<code style='background-color: #eef;'>&Ograve;</code> Ò (<code style='background-color: #ffe;'>\`O</code>)
|
203
|
+
<code style='background-color: #eef;'>&quot;</code> " (<code style='background-color: #ffe;'>"</code>)
|
204
|
+
<code style='background-color: #eef;'>&uarr;</code> ↑ (<code style='background-color: #ffe;'>$\uparrow$</code>)
|
205
|
+
<code style='background-color: #eef;'>&yuml;</code> ÿ (<code style='background-color: #ffe;'>\"y</code>)
|
206
|
+
<code style='background-color: #eef;'>&or;</code> ∨ (<code style='background-color: #ffe;'>$\vee$</code>)
|
207
|
+
<code style='background-color: #eef;'>&Omega;</code> Ω (<code style='background-color: #ffe;'>$\Omega$</code>)
|
208
|
+
<code style='background-color: #eef;'>&Agrave;</code> À (<code style='background-color: #ffe;'>\`A</code>)
|
209
|
+
<code style='background-color: #eef;'>&lambda;</code> λ (<code style='background-color: #ffe;'>$\lambda$</code>)
|
210
|
+
<code style='background-color: #eef;'>&prod;</code> ∏ (<code style='background-color: #ffe;'>$\prod$</code>)
|
211
|
+
<code style='background-color: #eef;'>&laquo;</code> « (<code style='background-color: #ffe;'>\guillemotleft</code>)
|
212
|
+
<code style='background-color: #eef;'>&eacute;</code> é (<code style='background-color: #ffe;'>\'e</code>)
|
213
|
+
<code style='background-color: #eef;'>&plusmn;</code> ± (<code style='background-color: #ffe;'>$\pm$</code>)
|
214
|
+
<code style='background-color: #eef;'>&uacute;</code> ú (<code style='background-color: #ffe;'>\'u</code>)
|
215
|
+
<code style='background-color: #eef;'>&lsaquo;</code> ‹ (<code style='background-color: #ffe;'>\guilsinglleft</code>)
|
216
|
+
<code style='background-color: #eef;'>&Aring;</code> Å (<code style='background-color: #ffe;'>\AA</code>)
|
217
|
+
<code style='background-color: #eef;'>&frac12;</code> ½ (<code style='background-color: #ffe;'>$\frac{1}{2}$</code>)
|
218
|
+
<code style='background-color: #eef;'>&dagger;</code> † (<code style='background-color: #ffe;'>\dag</code>)
|
219
|
+
<code style='background-color: #eef;'>&gamma;</code> γ (<code style='background-color: #ffe;'>$\gamma$</code>)
|
220
|
+
<code style='background-color: #eef;'>&frac14;</code> ¼ (<code style='background-color: #ffe;'>$\frac{1}{4}$</code>)
|
221
|
+
<code style='background-color: #eef;'>&Alpha;</code> Α (<code style='background-color: #ffe;'>$A$</code>)
|
222
|
+
<code style='background-color: #eef;'>&there4;</code> ∴ (<code style='background-color: #ffe;'>$\therefore$</code>)
|
223
|
+
<code style='background-color: #eef;'>&rang;</code> ⟩ (<code style='background-color: #ffe;'>$\rangle$</code>)
|
224
|
+
<code style='background-color: #eef;'>&sub;</code> ⊂ (<code style='background-color: #ffe;'>$\subset$</code>)
|
225
|
+
<code style='background-color: #eef;'>&rfloor;</code> ⌋ (<code style='background-color: #ffe;'>$\rfloor$</code>)
|
226
|
+
<code style='background-color: #eef;'>&isin;</code> ∈ (<code style='background-color: #ffe;'>$\in$</code>)
|
227
|
+
<code style='background-color: #eef;'>&iuml;</code> ï (<code style='background-color: #ffe;'>\"i</code>)
|
228
|
+
<code style='background-color: #eef;'>&lceil;</code> ⌈ (<code style='background-color: #ffe;'>$\lceil$</code>)
|
229
|
+
<code style='background-color: #eef;'>&theta;</code> θ (<code style='background-color: #ffe;'>$\theta$</code>)
|
230
|
+
<code style='background-color: #eef;'>&deg;</code> ° (<code style='background-color: #ffe;'>\textdegree</code>)
|
231
|
+
<code style='background-color: #eef;'>&notin;</code> ∉ (<code style='background-color: #ffe;'>$\notin$</code>)
|
232
|
+
<code style='background-color: #eef;'>&agrave;</code> à (<code style='background-color: #ffe;'>\`a</code>)
|
233
|
+
<code style='background-color: #eef;'>&prop;</code> ∝ (<code style='background-color: #ffe;'>$\propto$</code>)
|
234
|
+
<code style='background-color: #eef;'>&Dagger;</code> ‡ (<code style='background-color: #ffe;'>\ddag</code>)
|
235
|
+
<code style='background-color: #eef;'>&ucirc;</code> û (<code style='background-color: #ffe;'>\^u</code>)
|
236
|
+
<code style='background-color: #eef;'>&Chi;</code> Χ (<code style='background-color: #ffe;'>$X$</code>)
|
237
|
+
<code style='background-color: #eef;'>&zeta;</code> ζ (<code style='background-color: #ffe;'>$\zeta$</code>)
|
238
|
+
<code style='background-color: #eef;'>&sum;</code> ∑ (<code style='background-color: #ffe;'>$\sum$</code>)
|
239
|
+
<code style='background-color: #eef;'>&nabla;</code> ∇ (<code style='background-color: #ffe;'>$\nabla$</code>)
|
240
|
+
<code style='background-color: #eef;'>&Iacute;</code> Í (<code style='background-color: #ffe;'>\'I</code>)
|
241
|
+
<code style='background-color: #eef;'>&Upsilon;</code> Υ (<code style='background-color: #ffe;'>$Y$</code>)
|
242
|
+
<code style='background-color: #eef;'>&sup;</code> ⊃ (<code style='background-color: #ffe;'>$\supset$</code>)
|
243
|
+
<code style='background-color: #eef;'>&auml;</code> ä (<code style='background-color: #ffe;'>\"a</code>)
|
244
|
+
<code style='background-color: #eef;'>&ldquo;</code> “ (<code style='background-color: #ffe;'>``</code>)
|
245
|
+
<code style='background-color: #eef;'>&Delta;</code> Δ (<code style='background-color: #ffe;'>$\Delta$</code>)
|
246
|
+
<code style='background-color: #eef;'>&circ;</code> ˆ (<code style='background-color: #ffe;'>\textasciicircum</code>)
|
247
|
+
<code style='background-color: #eef;'>&pound;</code> £ (<code style='background-color: #ffe;'>\pounds</code>)
|
248
|
+
<code style='background-color: #eef;'>&yacute;</code> ý (<code style='background-color: #ffe;'>\'y</code>)
|
249
|
+
<code style='background-color: #eef;'>&perp;</code> ⊥ (<code style='background-color: #ffe;'>$\perp$</code>)
|
250
|
+
<code style='background-color: #eef;'>&mu;</code> μ (<code style='background-color: #ffe;'>$\mu$</code>)
|
251
|
+
<code style='background-color: #eef;'>&hellip;</code> … (<code style='background-color: #ffe;'>\ldots</code>)
|
252
|
+
</p>
|
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 23:18 on Monday, January 08th, 2007.</span></div></body></html>
|