maruku 0.5.9 → 0.6.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.
Files changed (135) hide show
  1. data/bin/maruku +6 -1
  2. data/bin/marutest +25 -18
  3. data/lib/maruku.rb +3 -0
  4. data/lib/maruku/ext/div.rb +39 -6
  5. data/lib/maruku/ext/math/latex_fix.rb +1 -0
  6. data/lib/maruku/ext/math/mathml_engines/blahtex.rb +9 -8
  7. data/lib/maruku/ext/math/parsing.rb +15 -1
  8. data/lib/maruku/ext/math/to_html.rb +34 -17
  9. data/lib/maruku/ext/math/to_latex.rb +4 -0
  10. data/lib/maruku/helpers.rb +3 -3
  11. data/lib/maruku/input/charsource.rb +1 -1
  12. data/lib/maruku/input/parse_block.rb +1 -0
  13. data/lib/maruku/input/parse_doc.rb +12 -5
  14. data/lib/maruku/input/parse_span_better.rb +24 -10
  15. data/lib/maruku/output/s5/to_s5.rb +14 -1
  16. data/lib/maruku/output/to_html.rb +20 -1
  17. data/lib/maruku/output/to_latex.rb +27 -0
  18. data/lib/maruku/output/to_latex_entities.rb +2 -2
  19. data/lib/maruku/output/to_s.rb +5 -2
  20. data/lib/maruku/string_utils.rb +2 -2
  21. data/lib/maruku/structures.rb +2 -0
  22. data/lib/maruku/tests/new_parser.rb +5 -2
  23. data/lib/maruku/version.rb +1 -1
  24. data/tests/bugs/code_in_links.md +85 -0
  25. data/tests/bugs/complex_escaping.md +34 -0
  26. data/tests/unittest/abbreviations.md +2 -10
  27. data/tests/unittest/alt.md +2 -3
  28. data/tests/unittest/attributes/att2.md +2 -4
  29. data/tests/unittest/attributes/att3.md +2 -7
  30. data/tests/unittest/attributes/attributes.md +2 -15
  31. data/tests/unittest/attributes/circular.md +2 -7
  32. data/tests/unittest/attributes/default.md +2 -6
  33. data/tests/unittest/blank.md +2 -5
  34. data/tests/unittest/blanks_in_code.md +2 -21
  35. data/tests/unittest/bug_def.md +2 -3
  36. data/tests/unittest/bug_table.md +2 -11
  37. data/tests/unittest/code.md +2 -9
  38. data/tests/unittest/code2.md +2 -8
  39. data/tests/unittest/code3.md +2 -21
  40. data/tests/unittest/data_loss.md +2 -7
  41. data/tests/unittest/divs/div1.md +32 -57
  42. data/tests/unittest/divs/div2.md +6 -7
  43. data/tests/unittest/divs/div3_nest.md +8 -13
  44. data/tests/unittest/easy.md +2 -3
  45. data/tests/unittest/email.md +2 -3
  46. data/tests/unittest/encoding/iso-8859-1.md +2 -5
  47. data/tests/unittest/encoding/utf-8.md +2 -5
  48. data/tests/unittest/entities.md +2 -20
  49. data/tests/unittest/escaping.md +2 -12
  50. data/tests/unittest/extra_dl.md +2 -10
  51. data/tests/unittest/extra_header_id.md +2 -13
  52. data/tests/unittest/extra_table1.md +2 -8
  53. data/tests/unittest/footnotes.md +2 -19
  54. data/tests/{bugs/html.md → unittest/hang.md} +9 -9
  55. data/tests/unittest/headers.md +2 -7
  56. data/tests/unittest/hex_entities.md +2 -3
  57. data/tests/unittest/hrule.md +2 -11
  58. data/tests/unittest/html2.md +2 -6
  59. data/tests/unittest/html3.md +2 -6
  60. data/tests/unittest/html4.md +2 -7
  61. data/tests/unittest/html5.md +2 -5
  62. data/tests/unittest/ie.md +2 -23
  63. data/tests/unittest/images.md +2 -14
  64. data/tests/unittest/images2.md +2 -5
  65. data/tests/unittest/inline_html.md +6 -102
  66. data/tests/unittest/inline_html2.md +2 -5
  67. data/tests/unittest/links.md +17 -50
  68. data/tests/unittest/links2.md +2 -3
  69. data/tests/unittest/list1.md +2 -10
  70. data/tests/unittest/list12.md +2 -5
  71. data/tests/unittest/list2.md +2 -10
  72. data/tests/unittest/list3.md +2 -14
  73. data/tests/unittest/list4.md +2 -17
  74. data/tests/unittest/lists.md +2 -39
  75. data/tests/unittest/lists10.md +2 -7
  76. data/tests/unittest/lists11.md +2 -5
  77. data/tests/unittest/lists6.md +2 -3
  78. data/tests/unittest/lists9.md +2 -11
  79. data/tests/unittest/lists_after_paragraph.md +3 -51
  80. data/tests/unittest/lists_ol.md +2 -52
  81. data/tests/unittest/loss.md +2 -3
  82. data/tests/unittest/math/equations.md +54 -37
  83. data/tests/unittest/math/inline.md +4 -12
  84. data/tests/unittest/math/math2.md +4 -57
  85. data/tests/unittest/math/notmath.md +2 -5
  86. data/tests/unittest/math/table.md +5 -11
  87. data/tests/unittest/math/table2.md +2 -8
  88. data/tests/unittest/misc_sw.md +2 -80
  89. data/tests/unittest/notyet/escape.md +2 -5
  90. data/tests/unittest/notyet/header_after_par.md +2 -13
  91. data/tests/unittest/notyet/ticks.md +2 -3
  92. data/tests/unittest/notyet/triggering.md +2 -39
  93. data/tests/unittest/olist.md +2 -9
  94. data/tests/unittest/one.md +2 -3
  95. data/tests/unittest/paragraph.md +2 -3
  96. data/tests/unittest/paragraph_rules/dont_merge_ref.md +2 -5
  97. data/tests/unittest/paragraph_rules/tab_is_blank.md +2 -5
  98. data/tests/unittest/paragraphs.md +2 -10
  99. data/tests/unittest/pending/amps.md +2 -4
  100. data/tests/unittest/pending/empty_cells.md +2 -6
  101. data/tests/unittest/pending/link.md +2 -21
  102. data/tests/unittest/pending/ref.md +2 -3
  103. data/tests/unittest/recover/recover_links.md +7 -8
  104. data/tests/{bugs → unittest/red_tests}/abbrev.md +12 -103
  105. data/tests/unittest/{lists7.md → red_tests/lists7.md} +2 -13
  106. data/tests/unittest/{lists7b.md → red_tests/lists7b.md} +2 -10
  107. data/tests/unittest/{lists8.md → red_tests/lists8.md} +2 -9
  108. data/tests/unittest/red_tests/xml.md +70 -0
  109. data/tests/unittest/references/long_example.md +2 -7
  110. data/tests/unittest/references/spaces_and_numbers.md +2 -3
  111. data/tests/unittest/smartypants.md +2 -47
  112. data/tests/unittest/syntax_hl.md +2 -18
  113. data/tests/unittest/table_attributes.md +2 -8
  114. data/tests/unittest/test.md +2 -3
  115. data/tests/unittest/underscore_in_words.md +27 -0
  116. data/tests/unittest/wrapping.md +2 -11
  117. data/tests/unittest/xml2.md +2 -5
  118. data/tests/unittest/xml3.md +2 -8
  119. data/tests/unittest/xml_instruction.md +2 -10
  120. data/unit_test_span.sh +2 -1
  121. metadata +242 -241
  122. data/docs/changelog.html +0 -490
  123. data/docs/entity_test.html +0 -258
  124. data/docs/exd.html +0 -307
  125. data/docs/index.html +0 -332
  126. data/docs/markdown_syntax.html +0 -690
  127. data/docs/maruku.html +0 -332
  128. data/docs/proposal.html +0 -326
  129. data/docs/tmp.md +0 -2
  130. data/lib/sort_prof.rb +0 -22
  131. data/tests/bugs/links.md +0 -47
  132. data/tests/diagrams/diagrams.md +0 -302
  133. data/tests/s5/a.md +0 -13
  134. data/tests/s5/instiki+s5.md +0 -105
  135. data/tests/unittest/xml.md +0 -54
@@ -41,12 +41,6 @@ hh c1c2
41
41
 
42
42
 
43
43
  *** Output of Markdown.pl ***
44
- <p>h | h
45
- ----------|--
46
- {:t} c1 | c2
47
- {: summary="Table summary" .class1 style="color:red" border=3 width="50%" frame=lhs rules=cols cellspacing=2em cellpadding=4px}</p>
48
-
49
- <p>{:t: scope="row"}</p>
50
-
44
+ (not used anymore)
51
45
  *** Output of Markdown.pl (parsed) ***
52
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
46
+ (not used anymore)
@@ -26,7 +26,6 @@ md_el(:document,[md_el(:code,[],{:raw_code=>" $ python "},[])],{},[]
26
26
 
27
27
 
28
28
  *** Output of Markdown.pl ***
29
- <p>$ python </p>
30
-
29
+ (not used anymore)
31
30
  *** Output of Markdown.pl (parsed) ***
32
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
31
+ (not used anymore)
@@ -0,0 +1,27 @@
1
+ Note that Markdown.pl gives incorrect result here.
2
+ *** Parameters: ***
3
+ {} # params
4
+ *** Markdown input: ***
5
+ Ok, this_was a_really_old bug
6
+ *** Output of inspect ***
7
+ md_el(:document,[md_par(["Ok, this_was a_really_old bug"])],{},[])
8
+ *** Output of to_html ***
9
+ <p>Ok, this_was a_really_old bug</p>
10
+ *** Output of to_latex ***
11
+ Ok, this\_was a\_really\_old bug
12
+ *** Output of to_md ***
13
+ Ok, this_was a_really_old bug
14
+ *** Output of to_s ***
15
+ Ok, this_was a_really_old bug
16
+ *** EOF ***
17
+
18
+
19
+
20
+ OK!
21
+
22
+
23
+
24
+ *** Output of Markdown.pl ***
25
+ (not used anymore)
26
+ *** Output of Markdown.pl (parsed) ***
27
+ (not used anymore)
@@ -74,15 +74,6 @@ Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ip
74
74
 
75
75
 
76
76
  *** Output of Markdown.pl ***
77
- <p>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Break: <br />
78
- Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. </p>
79
-
80
- <ul>
81
- <li>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet
82
- Lorem ipsum Break: <br />
83
- Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li>
84
- <li>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li>
85
- </ul>
86
-
77
+ (not used anymore)
87
78
  *** Output of Markdown.pl (parsed) ***
88
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
79
+ (not used anymore)
@@ -26,9 +26,6 @@ md_el(:document,[md_html("<!--\n<\n-->")],{},[])
26
26
 
27
27
 
28
28
  *** Output of Markdown.pl ***
29
- <!--
30
- <
31
- -->
32
-
29
+ (not used anymore)
33
30
  *** Output of Markdown.pl (parsed) ***
34
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
31
+ (not used anymore)
@@ -33,12 +33,6 @@ md_el(:document,[
33
33
 
34
34
 
35
35
  *** Output of Markdown.pl ***
36
- <table markdown='1'>
37
- Blah
38
- <thead>
39
- <td>*em*</td>
40
- </thead>
41
- </table>
42
-
36
+ (not used anymore)
43
37
  *** Output of Markdown.pl (parsed) ***
44
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
38
+ (not used anymore)
@@ -59,14 +59,6 @@ Targets Inside: last
59
59
 
60
60
 
61
61
  *** Output of Markdown.pl ***
62
- <p><? noTarget?>
63
- <?php ?>
64
- <?xml ?>
65
- <?mrk ?></p>
66
-
67
- <p>Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p>
68
-
69
- <p>Inside: <?mrk puts "Inside: Hello" ?> last</p>
70
-
62
+ (not used anymore)
71
63
  *** Output of Markdown.pl (parsed) ***
72
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
64
+ (not used anymore)
data/unit_test_span.sh CHANGED
@@ -1,2 +1,3 @@
1
- ruby -Ilib lib/maruku/tests/new_parser.rb $*
1
+ # try ruby -Ilib lib/maruku/tests/new_parser.rb v b
2
+ ruby -Ilib lib/maruku/tests/new_parser.rb $* v
2
3
 
metadata CHANGED
@@ -1,250 +1,251 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
3
- specification_version: 1
4
2
  name: maruku
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.5.9
7
- date: 2008-06-08
8
- summary: Maruku is a Markdown-superset interpreter written in Ruby.
9
- require_paths:
10
- - lib
11
- email: andrea@rubyforge.org
12
- homepage: http://maruku.rubyforge.org
13
- rubyforge_project:
14
- description: Maruku is a Markdown interpreter in Ruby. It features native export to HTML and PDF (via Latex). The output is really beautiful!
4
+ version: 0.6.0
5
+ platform: ruby
6
+ authors:
7
+ - Andrea Censi
15
8
  autorequire: maruku
16
- default_executable:
17
9
  bindir: bin
18
- has_rdoc: false
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- -
22
- - ">"
10
+ cert_chain: []
11
+
12
+ date: 2009-05-04 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: syntax
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
23
21
  - !ruby/object:Gem::Version
24
- version: 0.0.0
25
- version:
26
- platform: ruby
27
- authors:
28
- - Andrea Censi
29
- files:
30
- - lib/maruku.rb
31
- - lib/sort_prof.rb
32
- - lib/maruku/attributes.rb
33
- - lib/maruku/defaults.rb
34
- - lib/maruku/errors_management.rb
35
- - lib/maruku/helpers.rb
36
- - lib/maruku/maruku.rb
37
- - lib/maruku/string_utils.rb
38
- - lib/maruku/structures.rb
39
- - lib/maruku/structures_inspect.rb
40
- - lib/maruku/structures_iterators.rb
41
- - lib/maruku/textile2.rb
42
- - lib/maruku/toc.rb
43
- - lib/maruku/version.rb
44
- - lib/maruku/ext/div.rb
45
- - lib/maruku/ext/math.rb
46
- - lib/maruku/ext/math/elements.rb
47
- - lib/maruku/ext/math/latex_fix.rb
48
- - lib/maruku/ext/math/parsing.rb
49
- - lib/maruku/ext/math/to_html.rb
50
- - lib/maruku/ext/math/to_latex.rb
51
- - lib/maruku/ext/math/mathml_engines/blahtex.rb
52
- - lib/maruku/ext/math/mathml_engines/itex2mml.rb
53
- - lib/maruku/ext/math/mathml_engines/none.rb
54
- - lib/maruku/ext/math/mathml_engines/ritex.rb
55
- - lib/maruku/input/charsource.rb
56
- - lib/maruku/input/extensions.rb
57
- - lib/maruku/input/html_helper.rb
58
- - lib/maruku/input/linesource.rb
59
- - lib/maruku/input/parse_block.rb
60
- - lib/maruku/input/parse_doc.rb
61
- - lib/maruku/input/parse_span_better.rb
62
- - lib/maruku/input/rubypants.rb
63
- - lib/maruku/input/type_detection.rb
64
- - lib/maruku/input_textile2/t2_parser.rb
65
- - lib/maruku/output/to_html.rb
66
- - lib/maruku/output/to_latex.rb
67
- - lib/maruku/output/to_latex_entities.rb
68
- - lib/maruku/output/to_latex_strings.rb
69
- - lib/maruku/output/to_markdown.rb
70
- - lib/maruku/output/to_s.rb
71
- - lib/maruku/output/s5/fancy.rb
72
- - lib/maruku/output/s5/to_s5.rb
73
- - lib/maruku/tests/benchmark.rb
74
- - lib/maruku/tests/new_parser.rb
75
- - lib/maruku/tests/tests.rb
76
- - lib/maruku/usage/example1.rb
77
- - docs/changelog.md
78
- - docs/div_syntax.md
79
- - docs/entity_test.md
80
- - docs/markdown_syntax.md
81
- - docs/maruku.md
82
- - docs/math.md
83
- - docs/other_stuff.md
84
- - docs/proposal.md
85
- - docs/tmp.md
86
- - docs/changelog.html
87
- - docs/entity_test.html
88
- - docs/exd.html
89
- - docs/index.html
90
- - docs/markdown_syntax.html
91
- - docs/maruku.html
92
- - docs/proposal.html
93
- - tests/bugs/abbrev.md
94
- - tests/bugs/code_in_links.md
95
- - tests/bugs/complex_escaping.md
96
- - tests/bugs/html.md
97
- - tests/bugs/links.md
98
- - tests/diagrams/diagrams.md
99
- - tests/math/syntax.md
100
- - tests/math_usage/document.md
101
- - tests/others/abbreviations.md
102
- - tests/others/blank.md
103
- - tests/others/code.md
104
- - tests/others/code2.md
105
- - tests/others/code3.md
106
- - tests/others/email.md
107
- - tests/others/entities.md
108
- - tests/others/escaping.md
109
- - tests/others/extra_dl.md
110
- - tests/others/extra_header_id.md
111
- - tests/others/extra_table1.md
112
- - tests/others/footnotes.md
113
- - tests/others/headers.md
114
- - tests/others/hrule.md
115
- - tests/others/images.md
116
- - tests/others/inline_html.md
117
- - tests/others/links.md
118
- - tests/others/list1.md
119
- - tests/others/list2.md
120
- - tests/others/list3.md
121
- - tests/others/lists.md
122
- - tests/others/lists_after_paragraph.md
123
- - tests/others/lists_ol.md
124
- - tests/others/misc_sw.md
125
- - tests/others/one.md
126
- - tests/others/paragraphs.md
127
- - tests/others/sss06.md
128
- - tests/others/test.md
129
- - tests/s5/a.md
130
- - tests/s5/instiki+s5.md
131
- - tests/s5/s5profiling.md
132
- - tests/unittest/abbreviations.md
133
- - tests/unittest/alt.md
134
- - tests/unittest/blank.md
135
- - tests/unittest/blanks_in_code.md
136
- - tests/unittest/bug_def.md
137
- - tests/unittest/bug_table.md
138
- - tests/unittest/code.md
139
- - tests/unittest/code2.md
140
- - tests/unittest/code3.md
141
- - tests/unittest/data_loss.md
142
- - tests/unittest/easy.md
143
- - tests/unittest/email.md
144
- - tests/unittest/entities.md
145
- - tests/unittest/escaping.md
146
- - tests/unittest/extra_dl.md
147
- - tests/unittest/extra_header_id.md
148
- - tests/unittest/extra_table1.md
149
- - tests/unittest/footnotes.md
150
- - tests/unittest/headers.md
151
- - tests/unittest/hex_entities.md
152
- - tests/unittest/hrule.md
153
- - tests/unittest/html2.md
154
- - tests/unittest/html3.md
155
- - tests/unittest/html4.md
156
- - tests/unittest/html5.md
157
- - tests/unittest/ie.md
158
- - tests/unittest/images.md
159
- - tests/unittest/images2.md
160
- - tests/unittest/inline_html.md
161
- - tests/unittest/inline_html2.md
162
- - tests/unittest/links.md
163
- - tests/unittest/links2.md
164
- - tests/unittest/list1.md
165
- - tests/unittest/list12.md
166
- - tests/unittest/list2.md
167
- - tests/unittest/list3.md
168
- - tests/unittest/list4.md
169
- - tests/unittest/lists.md
170
- - tests/unittest/lists10.md
171
- - tests/unittest/lists11.md
172
- - tests/unittest/lists6.md
173
- - tests/unittest/lists7.md
174
- - tests/unittest/lists7b.md
175
- - tests/unittest/lists8.md
176
- - tests/unittest/lists9.md
177
- - tests/unittest/lists_after_paragraph.md
178
- - tests/unittest/lists_ol.md
179
- - tests/unittest/loss.md
180
- - tests/unittest/misc_sw.md
181
- - tests/unittest/olist.md
182
- - tests/unittest/one.md
183
- - tests/unittest/paragraph.md
184
- - tests/unittest/paragraphs.md
185
- - tests/unittest/smartypants.md
186
- - tests/unittest/syntax_hl.md
187
- - tests/unittest/table_attributes.md
188
- - tests/unittest/test.md
189
- - tests/unittest/wrapping.md
190
- - tests/unittest/xml.md
191
- - tests/unittest/xml2.md
192
- - tests/unittest/xml3.md
193
- - tests/unittest/xml_instruction.md
194
- - tests/unittest/attributes/att2.md
195
- - tests/unittest/attributes/att3.md
196
- - tests/unittest/attributes/attributes.md
197
- - tests/unittest/attributes/circular.md
198
- - tests/unittest/attributes/default.md
199
- - tests/unittest/divs/div1.md
200
- - tests/unittest/divs/div2.md
201
- - tests/unittest/divs/div3_nest.md
202
- - tests/unittest/encoding/iso-8859-1.md
203
- - tests/unittest/encoding/utf-8.md
204
- - tests/unittest/math/equations.md
205
- - tests/unittest/math/inline.md
206
- - tests/unittest/math/math2.md
207
- - tests/unittest/math/notmath.md
208
- - tests/unittest/math/table.md
209
- - tests/unittest/math/table2.md
210
- - tests/unittest/notyet/escape.md
211
- - tests/unittest/notyet/header_after_par.md
212
- - tests/unittest/notyet/ticks.md
213
- - tests/unittest/notyet/triggering.md
214
- - tests/unittest/paragraph_rules/dont_merge_ref.md
215
- - tests/unittest/paragraph_rules/tab_is_blank.md
216
- - tests/unittest/pending/amps.md
217
- - tests/unittest/pending/empty_cells.md
218
- - tests/unittest/pending/link.md
219
- - tests/unittest/pending/ref.md
220
- - tests/unittest/recover/recover_links.md
221
- - tests/unittest/references/long_example.md
222
- - tests/unittest/references/spaces_and_numbers.md
223
- - tests/utf8-files/simple.md
224
- - bin/marudown
225
- - bin/maruku
226
- - bin/marutest
227
- - bin/marutex
228
- - unit_test_block.sh
229
- - unit_test_span.sh
230
- - Rakefile
231
- - maruku_gem.rb
232
- test_files: []
233
- rdoc_options: []
234
- extra_rdoc_files: []
22
+ version: 1.0.0
23
+ version:
24
+ description: Maruku is a Markdown interpreter in Ruby. It features native export to HTML and PDF (via Latex). The output is really beautiful!
25
+ email: andrea@rubyforge.org
235
26
  executables:
236
- - maruku
237
- - marutex
27
+ - maruku
28
+ - marutex
238
29
  extensions: []
30
+
31
+ extra_rdoc_files: []
32
+
33
+ files:
34
+ - lib/maruku/attributes.rb
35
+ - lib/maruku/defaults.rb
36
+ - lib/maruku/errors_management.rb
37
+ - lib/maruku/ext/div.rb
38
+ - lib/maruku/ext/math/elements.rb
39
+ - lib/maruku/ext/math/latex_fix.rb
40
+ - lib/maruku/ext/math/mathml_engines/blahtex.rb
41
+ - lib/maruku/ext/math/mathml_engines/itex2mml.rb
42
+ - lib/maruku/ext/math/mathml_engines/none.rb
43
+ - lib/maruku/ext/math/mathml_engines/ritex.rb
44
+ - lib/maruku/ext/math/parsing.rb
45
+ - lib/maruku/ext/math/to_html.rb
46
+ - lib/maruku/ext/math/to_latex.rb
47
+ - lib/maruku/ext/math.rb
48
+ - lib/maruku/helpers.rb
49
+ - lib/maruku/input/charsource.rb
50
+ - lib/maruku/input/extensions.rb
51
+ - lib/maruku/input/html_helper.rb
52
+ - lib/maruku/input/linesource.rb
53
+ - lib/maruku/input/parse_block.rb
54
+ - lib/maruku/input/parse_doc.rb
55
+ - lib/maruku/input/parse_span_better.rb
56
+ - lib/maruku/input/rubypants.rb
57
+ - lib/maruku/input/type_detection.rb
58
+ - lib/maruku/input_textile2/t2_parser.rb
59
+ - lib/maruku/maruku.rb
60
+ - lib/maruku/output/s5/fancy.rb
61
+ - lib/maruku/output/s5/to_s5.rb
62
+ - lib/maruku/output/to_html.rb
63
+ - lib/maruku/output/to_latex.rb
64
+ - lib/maruku/output/to_latex_entities.rb
65
+ - lib/maruku/output/to_latex_strings.rb
66
+ - lib/maruku/output/to_markdown.rb
67
+ - lib/maruku/output/to_s.rb
68
+ - lib/maruku/string_utils.rb
69
+ - lib/maruku/structures.rb
70
+ - lib/maruku/structures_inspect.rb
71
+ - lib/maruku/structures_iterators.rb
72
+ - lib/maruku/tests/benchmark.rb
73
+ - lib/maruku/tests/new_parser.rb
74
+ - lib/maruku/tests/tests.rb
75
+ - lib/maruku/textile2.rb
76
+ - lib/maruku/toc.rb
77
+ - lib/maruku/usage/example1.rb
78
+ - lib/maruku/version.rb
79
+ - lib/maruku.rb
80
+ - docs/changelog.md
81
+ - docs/div_syntax.md
82
+ - docs/entity_test.md
83
+ - docs/markdown_syntax.md
84
+ - docs/maruku.md
85
+ - docs/math.md
86
+ - docs/other_stuff.md
87
+ - docs/proposal.md
88
+ - tests/bugs/code_in_links.md
89
+ - tests/bugs/complex_escaping.md
90
+ - tests/math/syntax.md
91
+ - tests/math_usage/document.md
92
+ - tests/others/abbreviations.md
93
+ - tests/others/blank.md
94
+ - tests/others/code.md
95
+ - tests/others/code2.md
96
+ - tests/others/code3.md
97
+ - tests/others/email.md
98
+ - tests/others/entities.md
99
+ - tests/others/escaping.md
100
+ - tests/others/extra_dl.md
101
+ - tests/others/extra_header_id.md
102
+ - tests/others/extra_table1.md
103
+ - tests/others/footnotes.md
104
+ - tests/others/headers.md
105
+ - tests/others/hrule.md
106
+ - tests/others/images.md
107
+ - tests/others/inline_html.md
108
+ - tests/others/links.md
109
+ - tests/others/list1.md
110
+ - tests/others/list2.md
111
+ - tests/others/list3.md
112
+ - tests/others/lists.md
113
+ - tests/others/lists_after_paragraph.md
114
+ - tests/others/lists_ol.md
115
+ - tests/others/misc_sw.md
116
+ - tests/others/one.md
117
+ - tests/others/paragraphs.md
118
+ - tests/others/sss06.md
119
+ - tests/others/test.md
120
+ - tests/s5/s5profiling.md
121
+ - tests/unittest/abbreviations.md
122
+ - tests/unittest/alt.md
123
+ - tests/unittest/attributes/att2.md
124
+ - tests/unittest/attributes/att3.md
125
+ - tests/unittest/attributes/attributes.md
126
+ - tests/unittest/attributes/circular.md
127
+ - tests/unittest/attributes/default.md
128
+ - tests/unittest/blank.md
129
+ - tests/unittest/blanks_in_code.md
130
+ - tests/unittest/bug_def.md
131
+ - tests/unittest/bug_table.md
132
+ - tests/unittest/code.md
133
+ - tests/unittest/code2.md
134
+ - tests/unittest/code3.md
135
+ - tests/unittest/data_loss.md
136
+ - tests/unittest/divs/div1.md
137
+ - tests/unittest/divs/div2.md
138
+ - tests/unittest/divs/div3_nest.md
139
+ - tests/unittest/easy.md
140
+ - tests/unittest/email.md
141
+ - tests/unittest/encoding/iso-8859-1.md
142
+ - tests/unittest/encoding/utf-8.md
143
+ - tests/unittest/entities.md
144
+ - tests/unittest/escaping.md
145
+ - tests/unittest/extra_dl.md
146
+ - tests/unittest/extra_header_id.md
147
+ - tests/unittest/extra_table1.md
148
+ - tests/unittest/footnotes.md
149
+ - tests/unittest/hang.md
150
+ - tests/unittest/headers.md
151
+ - tests/unittest/hex_entities.md
152
+ - tests/unittest/hrule.md
153
+ - tests/unittest/html2.md
154
+ - tests/unittest/html3.md
155
+ - tests/unittest/html4.md
156
+ - tests/unittest/html5.md
157
+ - tests/unittest/ie.md
158
+ - tests/unittest/images.md
159
+ - tests/unittest/images2.md
160
+ - tests/unittest/inline_html.md
161
+ - tests/unittest/inline_html2.md
162
+ - tests/unittest/links.md
163
+ - tests/unittest/links2.md
164
+ - tests/unittest/list1.md
165
+ - tests/unittest/list12.md
166
+ - tests/unittest/list2.md
167
+ - tests/unittest/list3.md
168
+ - tests/unittest/list4.md
169
+ - tests/unittest/lists.md
170
+ - tests/unittest/lists10.md
171
+ - tests/unittest/lists11.md
172
+ - tests/unittest/lists6.md
173
+ - tests/unittest/lists9.md
174
+ - tests/unittest/lists_after_paragraph.md
175
+ - tests/unittest/lists_ol.md
176
+ - tests/unittest/loss.md
177
+ - tests/unittest/math/equations.md
178
+ - tests/unittest/math/inline.md
179
+ - tests/unittest/math/math2.md
180
+ - tests/unittest/math/notmath.md
181
+ - tests/unittest/math/table.md
182
+ - tests/unittest/math/table2.md
183
+ - tests/unittest/misc_sw.md
184
+ - tests/unittest/notyet/escape.md
185
+ - tests/unittest/notyet/header_after_par.md
186
+ - tests/unittest/notyet/ticks.md
187
+ - tests/unittest/notyet/triggering.md
188
+ - tests/unittest/olist.md
189
+ - tests/unittest/one.md
190
+ - tests/unittest/paragraph.md
191
+ - tests/unittest/paragraph_rules/dont_merge_ref.md
192
+ - tests/unittest/paragraph_rules/tab_is_blank.md
193
+ - tests/unittest/paragraphs.md
194
+ - tests/unittest/pending/amps.md
195
+ - tests/unittest/pending/empty_cells.md
196
+ - tests/unittest/pending/link.md
197
+ - tests/unittest/pending/ref.md
198
+ - tests/unittest/recover/recover_links.md
199
+ - tests/unittest/red_tests/abbrev.md
200
+ - tests/unittest/red_tests/lists7.md
201
+ - tests/unittest/red_tests/lists7b.md
202
+ - tests/unittest/red_tests/lists8.md
203
+ - tests/unittest/red_tests/xml.md
204
+ - tests/unittest/references/long_example.md
205
+ - tests/unittest/references/spaces_and_numbers.md
206
+ - tests/unittest/smartypants.md
207
+ - tests/unittest/syntax_hl.md
208
+ - tests/unittest/table_attributes.md
209
+ - tests/unittest/test.md
210
+ - tests/unittest/underscore_in_words.md
211
+ - tests/unittest/wrapping.md
212
+ - tests/unittest/xml2.md
213
+ - tests/unittest/xml3.md
214
+ - tests/unittest/xml_instruction.md
215
+ - tests/utf8-files/simple.md
216
+ - bin/marudown
217
+ - bin/maruku
218
+ - bin/marutest
219
+ - bin/marutex
220
+ - unit_test_block.sh
221
+ - unit_test_span.sh
222
+ - Rakefile
223
+ - maruku_gem.rb
224
+ has_rdoc: false
225
+ homepage: http://maruku.rubyforge.org
226
+ post_install_message:
227
+ rdoc_options: []
228
+
229
+ require_paths:
230
+ - lib
231
+ required_ruby_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: "0"
236
+ version:
237
+ required_rubygems_version: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - ">="
240
+ - !ruby/object:Gem::Version
241
+ version: "0"
242
+ version:
239
243
  requirements: []
240
- dependencies:
241
- - !ruby/object:Gem::Dependency
242
- name: syntax
243
- version_requirement:
244
- version_requirements: !ruby/object:Gem::Version::Requirement
245
- requirements:
246
- -
247
- - ">="
248
- - !ruby/object:Gem::Version
249
- version: 1.0.0
250
- version:
244
+
245
+ rubyforge_project:
246
+ rubygems_version: 1.0.1
247
+ signing_key:
248
+ specification_version: 2
249
+ summary: Maruku is a Markdown-superset interpreter written in Ruby.
250
+ test_files: []
251
+