maruku 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data/bin/maruku +9 -3
  2. data/docs/changelog.html +52 -4
  3. data/docs/changelog.md +35 -5
  4. data/docs/index.html +13 -5
  5. data/docs/maruku.html +13 -5
  6. data/docs/maruku.md +14 -3
  7. data/lib/maruku/defaults.rb +4 -1
  8. data/lib/maruku/input/parse_block.rb +1 -1
  9. data/lib/maruku/input/parse_span_better.rb +14 -9
  10. data/lib/maruku/input/type_detection.rb +1 -1
  11. data/lib/maruku/input_textile2/t2_parser.rb +1 -1
  12. data/lib/maruku/output/to_html.rb +10 -0
  13. data/lib/maruku/output/to_latex.rb +1 -1
  14. data/lib/maruku/string_utils.rb +4 -0
  15. data/lib/maruku/tests/new_parser.rb +1 -1
  16. data/lib/maruku/version.rb +1 -1
  17. data/maruku_gem.rb +1 -1
  18. data/tests/unittest/email.md +2 -2
  19. data/tests/unittest/inline_html.md +134 -8
  20. data/tests/unittest/links.md +1 -1
  21. data/tests/unittest/links2.md +42 -0
  22. data/tests/unittest/lists10.md +62 -0
  23. data/tests/unittest/lists11.md +57 -0
  24. data/tests/unittest/lists8.md +2 -7
  25. data/tests/unittest/lists_after_paragraph.md +2 -2
  26. data/tests/unittest/misc_sw.md +2 -2
  27. data/tests/unittest/notyet/triggering.md +2 -2
  28. data/tests/unittest/paragraphs.md +1 -1
  29. data/tests/unittest/wrapping.md +2 -2
  30. data/unit_test_block.sh +5 -0
  31. data/unit_test_span.sh +2 -0
  32. metadata +215 -213
  33. data/lib/maruku/ext/diagrams/diagrams.rb +0 -8
  34. data/lib/maruku/ext/diagrams/grid.rb +0 -78
  35. data/lib/maruku/ext/diagrams/inspect.rb +0 -11
  36. data/lib/maruku/ext/diagrams/layout.rb +0 -508
  37. data/lib/maruku/ext/diagrams/parser.rb +0 -219
  38. data/lib/maruku/ext/diagrams/structures.rb +0 -168
  39. data/lib/maruku/ext/diagrams/to_html.rb +0 -37
  40. data/lib/maruku/ext/diagrams/to_latex.rb +0 -103
  41. data/lib/maruku/ext/diagrams/unittest.rb +0 -123
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
2
+ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: maruku
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.5.5
7
- date: 2007-03-07
6
+ version: 0.5.6
7
+ date: 2007-05-24 00:00:00 +02:00
8
8
  summary: Maruku is a Markdown-superset interpreter written in Ruby.
9
9
  require_paths:
10
- - lib
10
+ - lib
11
11
  email: andrea@rubyforge.org
12
12
  homepage: http://maruku.rubyforge.org
13
13
  rubyforge_project:
@@ -18,223 +18,225 @@ bindir: bin
18
18
  has_rdoc: false
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- -
22
- - ">"
23
- - !ruby/object:Gem::Version
24
- version: 0.0.0
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
25
24
  version:
26
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
27
29
  authors:
28
- - Andrea Censi
30
+ - Andrea Censi
29
31
  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/math.rb
45
- - lib/maruku/ext/diagrams/diagrams.rb
46
- - lib/maruku/ext/diagrams/grid.rb
47
- - lib/maruku/ext/diagrams/inspect.rb
48
- - lib/maruku/ext/diagrams/layout.rb
49
- - lib/maruku/ext/diagrams/parser.rb
50
- - lib/maruku/ext/diagrams/structures.rb
51
- - lib/maruku/ext/diagrams/to_html.rb
52
- - lib/maruku/ext/diagrams/to_latex.rb
53
- - lib/maruku/ext/diagrams/unittest.rb
54
- - lib/maruku/ext/math/elements.rb
55
- - lib/maruku/ext/math/parsing.rb
56
- - lib/maruku/ext/math/to_html.rb
57
- - lib/maruku/ext/math/to_latex.rb
58
- - lib/maruku/ext/math/mathml_engines/blahtex.rb
59
- - lib/maruku/ext/math/mathml_engines/itex2mml.rb
60
- - lib/maruku/ext/math/mathml_engines/none.rb
61
- - lib/maruku/ext/math/mathml_engines/ritex.rb
62
- - lib/maruku/input/charsource.rb
63
- - lib/maruku/input/extensions.rb
64
- - lib/maruku/input/html_helper.rb
65
- - lib/maruku/input/linesource.rb
66
- - lib/maruku/input/parse_block.rb
67
- - lib/maruku/input/parse_doc.rb
68
- - lib/maruku/input/parse_span_better.rb
69
- - lib/maruku/input/rubypants.rb
70
- - lib/maruku/input/type_detection.rb
71
- - lib/maruku/input_textile2/t2_parser.rb
72
- - lib/maruku/output/to_html.rb
73
- - lib/maruku/output/to_latex.rb
74
- - lib/maruku/output/to_latex_entities.rb
75
- - lib/maruku/output/to_latex_strings.rb
76
- - lib/maruku/output/to_markdown.rb
77
- - lib/maruku/output/to_s.rb
78
- - lib/maruku/output/s5/fancy.rb
79
- - lib/maruku/output/s5/to_s5.rb
80
- - lib/maruku/tests/benchmark.rb
81
- - lib/maruku/tests/new_parser.rb
82
- - lib/maruku/tests/tests.rb
83
- - lib/maruku/usage/example1.rb
84
- - docs/changelog.md
85
- - docs/div_syntax.md
86
- - docs/entity_test.md
87
- - docs/markdown_syntax.md
88
- - docs/maruku.md
89
- - docs/math.md
90
- - docs/other_stuff.md
91
- - docs/proposal.md
92
- - docs/tmp.md
93
- - docs/changelog.html
94
- - docs/entity_test.html
95
- - docs/exd.html
96
- - docs/index.html
97
- - docs/markdown_syntax.html
98
- - docs/maruku.html
99
- - docs/proposal.html
100
- - tests/bugs/code_in_links.md
101
- - tests/bugs/complex_escaping.md
102
- - tests/diagrams/diagrams.md
103
- - tests/math/syntax.md
104
- - tests/math_usage/document.md
105
- - tests/others/abbreviations.md
106
- - tests/others/blank.md
107
- - tests/others/code.md
108
- - tests/others/code2.md
109
- - tests/others/code3.md
110
- - tests/others/email.md
111
- - tests/others/entities.md
112
- - tests/others/escaping.md
113
- - tests/others/extra_dl.md
114
- - tests/others/extra_header_id.md
115
- - tests/others/extra_table1.md
116
- - tests/others/footnotes.md
117
- - tests/others/headers.md
118
- - tests/others/hrule.md
119
- - tests/others/images.md
120
- - tests/others/inline_html.md
121
- - tests/others/links.md
122
- - tests/others/list1.md
123
- - tests/others/list2.md
124
- - tests/others/list3.md
125
- - tests/others/lists.md
126
- - tests/others/lists_after_paragraph.md
127
- - tests/others/lists_ol.md
128
- - tests/others/misc_sw.md
129
- - tests/others/one.md
130
- - tests/others/paragraphs.md
131
- - tests/others/sss06.md
132
- - tests/others/test.md
133
- - tests/s5/a.md
134
- - tests/s5/instiki+s5.md
135
- - tests/s5/s5profiling.md
136
- - tests/unittest/abbreviations.md
137
- - tests/unittest/alt.md
138
- - tests/unittest/blank.md
139
- - tests/unittest/blanks_in_code.md
140
- - tests/unittest/bug_def.md
141
- - tests/unittest/bug_table.md
142
- - tests/unittest/code.md
143
- - tests/unittest/code2.md
144
- - tests/unittest/code3.md
145
- - tests/unittest/data_loss.md
146
- - tests/unittest/easy.md
147
- - tests/unittest/email.md
148
- - tests/unittest/entities.md
149
- - tests/unittest/escaping.md
150
- - tests/unittest/extra_dl.md
151
- - tests/unittest/extra_header_id.md
152
- - tests/unittest/extra_table1.md
153
- - tests/unittest/footnotes.md
154
- - tests/unittest/headers.md
155
- - tests/unittest/hex_entities.md
156
- - tests/unittest/hrule.md
157
- - tests/unittest/html2.md
158
- - tests/unittest/html3.md
159
- - tests/unittest/html4.md
160
- - tests/unittest/html5.md
161
- - tests/unittest/ie.md
162
- - tests/unittest/images.md
163
- - tests/unittest/images2.md
164
- - tests/unittest/inline_html.md
165
- - tests/unittest/inline_html2.md
166
- - tests/unittest/links.md
167
- - tests/unittest/list1.md
168
- - tests/unittest/list2.md
169
- - tests/unittest/list3.md
170
- - tests/unittest/list4.md
171
- - tests/unittest/lists.md
172
- - tests/unittest/lists6.md
173
- - tests/unittest/lists7.md
174
- - tests/unittest/lists8.md
175
- - tests/unittest/lists9.md
176
- - tests/unittest/lists_after_paragraph.md
177
- - tests/unittest/lists_ol.md
178
- - tests/unittest/loss.md
179
- - tests/unittest/misc_sw.md
180
- - tests/unittest/olist.md
181
- - tests/unittest/one.md
182
- - tests/unittest/paragraph.md
183
- - tests/unittest/paragraphs.md
184
- - tests/unittest/smartypants.md
185
- - tests/unittest/syntax_hl.md
186
- - tests/unittest/table_attributes.md
187
- - tests/unittest/test.md
188
- - tests/unittest/wrapping.md
189
- - tests/unittest/xml.md
190
- - tests/unittest/xml2.md
191
- - tests/unittest/xml3.md
192
- - tests/unittest/xml_instruction.md
193
- - tests/unittest/attributes/att2.md
194
- - tests/unittest/attributes/att3.md
195
- - tests/unittest/attributes/attributes.md
196
- - tests/unittest/attributes/circular.md
197
- - tests/unittest/attributes/default.md
198
- - tests/unittest/encoding/iso-8859-1.md
199
- - tests/unittest/encoding/utf-8.md
200
- - tests/unittest/math/equations.md
201
- - tests/unittest/math/inline.md
202
- - tests/unittest/math/math2.md
203
- - tests/unittest/math/notmath.md
204
- - tests/unittest/math/table.md
205
- - tests/unittest/math/table2.md
206
- - tests/unittest/notyet/escape.md
207
- - tests/unittest/notyet/header_after_par.md
208
- - tests/unittest/notyet/ticks.md
209
- - tests/unittest/notyet/triggering.md
210
- - tests/unittest/paragraph_rules/dont_merge_ref.md
211
- - tests/unittest/paragraph_rules/tab_is_blank.md
212
- - tests/unittest/recover/recover_links.md
213
- - tests/unittest/references/long_example.md
214
- - tests/unittest/references/spaces_and_numbers.md
215
- - tests/utf8-files/simple.md
216
- - bin/marudown
217
- - bin/maruku
218
- - bin/marutest
219
- - bin/marutex
220
- - Rakefile
221
- - maruku_gem.rb
32
+ - lib/maruku.rb
33
+ - lib/sort_prof.rb
34
+ - lib/maruku/attributes.rb
35
+ - lib/maruku/defaults.rb
36
+ - lib/maruku/errors_management.rb
37
+ - lib/maruku/helpers.rb
38
+ - lib/maruku/maruku.rb
39
+ - lib/maruku/string_utils.rb
40
+ - lib/maruku/structures.rb
41
+ - lib/maruku/structures_inspect.rb
42
+ - lib/maruku/structures_iterators.rb
43
+ - lib/maruku/textile2.rb
44
+ - lib/maruku/toc.rb
45
+ - lib/maruku/version.rb
46
+ - lib/maruku/ext/math.rb
47
+ - lib/maruku/ext/math/elements.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/code_in_links.md
94
+ - tests/bugs/complex_escaping.md
95
+ - tests/diagrams/diagrams.md
96
+ - tests/math/syntax.md
97
+ - tests/math_usage/document.md
98
+ - tests/others/abbreviations.md
99
+ - tests/others/blank.md
100
+ - tests/others/code.md
101
+ - tests/others/code2.md
102
+ - tests/others/code3.md
103
+ - tests/others/email.md
104
+ - tests/others/entities.md
105
+ - tests/others/escaping.md
106
+ - tests/others/extra_dl.md
107
+ - tests/others/extra_header_id.md
108
+ - tests/others/extra_table1.md
109
+ - tests/others/footnotes.md
110
+ - tests/others/headers.md
111
+ - tests/others/hrule.md
112
+ - tests/others/images.md
113
+ - tests/others/inline_html.md
114
+ - tests/others/links.md
115
+ - tests/others/list1.md
116
+ - tests/others/list2.md
117
+ - tests/others/list3.md
118
+ - tests/others/lists.md
119
+ - tests/others/lists_after_paragraph.md
120
+ - tests/others/lists_ol.md
121
+ - tests/others/misc_sw.md
122
+ - tests/others/one.md
123
+ - tests/others/paragraphs.md
124
+ - tests/others/sss06.md
125
+ - tests/others/test.md
126
+ - tests/s5/a.md
127
+ - tests/s5/instiki+s5.md
128
+ - tests/s5/s5profiling.md
129
+ - tests/unittest/abbreviations.md
130
+ - tests/unittest/alt.md
131
+ - tests/unittest/blank.md
132
+ - tests/unittest/blanks_in_code.md
133
+ - tests/unittest/bug_def.md
134
+ - tests/unittest/bug_table.md
135
+ - tests/unittest/code.md
136
+ - tests/unittest/code2.md
137
+ - tests/unittest/code3.md
138
+ - tests/unittest/data_loss.md
139
+ - tests/unittest/easy.md
140
+ - tests/unittest/email.md
141
+ - tests/unittest/entities.md
142
+ - tests/unittest/escaping.md
143
+ - tests/unittest/extra_dl.md
144
+ - tests/unittest/extra_header_id.md
145
+ - tests/unittest/extra_table1.md
146
+ - tests/unittest/footnotes.md
147
+ - tests/unittest/headers.md
148
+ - tests/unittest/hex_entities.md
149
+ - tests/unittest/hrule.md
150
+ - tests/unittest/html2.md
151
+ - tests/unittest/html3.md
152
+ - tests/unittest/html4.md
153
+ - tests/unittest/html5.md
154
+ - tests/unittest/ie.md
155
+ - tests/unittest/images.md
156
+ - tests/unittest/images2.md
157
+ - tests/unittest/inline_html.md
158
+ - tests/unittest/inline_html2.md
159
+ - tests/unittest/links.md
160
+ - tests/unittest/links2.md
161
+ - tests/unittest/list1.md
162
+ - tests/unittest/list2.md
163
+ - tests/unittest/list3.md
164
+ - tests/unittest/list4.md
165
+ - tests/unittest/lists.md
166
+ - tests/unittest/lists10.md
167
+ - tests/unittest/lists11.md
168
+ - tests/unittest/lists6.md
169
+ - tests/unittest/lists7.md
170
+ - tests/unittest/lists8.md
171
+ - tests/unittest/lists9.md
172
+ - tests/unittest/lists_after_paragraph.md
173
+ - tests/unittest/lists_ol.md
174
+ - tests/unittest/loss.md
175
+ - tests/unittest/misc_sw.md
176
+ - tests/unittest/olist.md
177
+ - tests/unittest/one.md
178
+ - tests/unittest/paragraph.md
179
+ - tests/unittest/paragraphs.md
180
+ - tests/unittest/smartypants.md
181
+ - tests/unittest/syntax_hl.md
182
+ - tests/unittest/table_attributes.md
183
+ - tests/unittest/test.md
184
+ - tests/unittest/wrapping.md
185
+ - tests/unittest/xml.md
186
+ - tests/unittest/xml2.md
187
+ - tests/unittest/xml3.md
188
+ - tests/unittest/xml_instruction.md
189
+ - tests/unittest/attributes/att2.md
190
+ - tests/unittest/attributes/att3.md
191
+ - tests/unittest/attributes/attributes.md
192
+ - tests/unittest/attributes/circular.md
193
+ - tests/unittest/attributes/default.md
194
+ - tests/unittest/encoding/iso-8859-1.md
195
+ - tests/unittest/encoding/utf-8.md
196
+ - tests/unittest/math/equations.md
197
+ - tests/unittest/math/inline.md
198
+ - tests/unittest/math/math2.md
199
+ - tests/unittest/math/notmath.md
200
+ - tests/unittest/math/table.md
201
+ - tests/unittest/math/table2.md
202
+ - tests/unittest/notyet/escape.md
203
+ - tests/unittest/notyet/header_after_par.md
204
+ - tests/unittest/notyet/ticks.md
205
+ - tests/unittest/notyet/triggering.md
206
+ - tests/unittest/paragraph_rules/dont_merge_ref.md
207
+ - tests/unittest/paragraph_rules/tab_is_blank.md
208
+ - tests/unittest/recover/recover_links.md
209
+ - tests/unittest/references/long_example.md
210
+ - tests/unittest/references/spaces_and_numbers.md
211
+ - tests/utf8-files/simple.md
212
+ - bin/marudown
213
+ - bin/maruku
214
+ - bin/marutest
215
+ - bin/marutex
216
+ - unit_test_block.sh
217
+ - unit_test_span.sh
218
+ - Rakefile
219
+ - maruku_gem.rb
222
220
  test_files: []
221
+
223
222
  rdoc_options: []
223
+
224
224
  extra_rdoc_files: []
225
+
225
226
  executables:
226
- - maruku
227
- - marutex
227
+ - maruku
228
+ - marutex
228
229
  extensions: []
230
+
229
231
  requirements: []
232
+
230
233
  dependencies:
231
- - !ruby/object:Gem::Dependency
232
- name: syntax
233
- version_requirement:
234
- version_requirements: !ruby/object:Gem::Version::Requirement
235
- requirements:
236
- -
237
- - ">="
238
- - !ruby/object:Gem::Version
239
- version: 1.0.0
240
- version:
234
+ - !ruby/object:Gem::Dependency
235
+ name: syntax
236
+ version_requirement:
237
+ version_requirements: !ruby/object:Gem::Version::Requirement
238
+ requirements:
239
+ - - ">="
240
+ - !ruby/object:Gem::Version
241
+ version: 1.0.0
242
+ version:
@@ -1,8 +0,0 @@
1
- require 'structures'
2
- require 'parser'
3
- require 'inspect'
4
- require 'grid'
5
- require 'to_html'
6
- require 'to_latex'
7
- require 'layout'
8
-