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
@@ -31,9 +31,6 @@ Linea 1Linea 2
31
31
 
32
32
 
33
33
  *** Output of Markdown.pl ***
34
- <p>Linea 1</p>
35
-
36
- <p>Linea 2</p>
37
-
34
+ (not used anymore)
38
35
  *** Output of Markdown.pl (parsed) ***
39
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
36
+ (not used anymore)
@@ -82,25 +82,6 @@ This block is composed of three lines:This block is composed of 5This block is c
82
82
 
83
83
 
84
84
  *** Output of Markdown.pl ***
85
- <p>This block is composed of three lines:</p>
86
-
87
- <pre><code>one
88
-
89
- three
90
- </code></pre>
91
-
92
- <p>This block is composed of 5</p>
93
-
94
- <pre><code>one
95
-
96
-
97
- four
98
- </code></pre>
99
-
100
- <p>This block is composed of 2</p>
101
-
102
- <pre><code>two
103
- </code></pre>
104
-
85
+ (not used anymore)
105
86
  *** Output of Markdown.pl (parsed) ***
106
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
87
+ (not used anymore)
@@ -23,7 +23,6 @@ test:
23
23
 
24
24
 
25
25
  *** Output of Markdown.pl ***
26
- <p>[test][]:</p>
27
-
26
+ (not used anymore)
28
27
  *** Output of Markdown.pl (parsed) ***
29
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
28
+ (not used anymore)
@@ -53,15 +53,6 @@ hellohh c1c2
53
53
 
54
54
 
55
55
  *** Output of Markdown.pl ***
56
- <p>hello
57
- {: summary="Table summary" .class1 style="color:red"}</p>
58
-
59
- <p>h | h
60
- ----------|--
61
- {:t} c1 | c2
62
- {: summary="Table summary" .class1 style="color:red"}</p>
63
-
64
- <p>{:t: scope="row"}</p>
65
-
56
+ (not used anymore)
66
57
  *** Output of Markdown.pl (parsed) ***
67
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
58
+ (not used anymore)
@@ -41,13 +41,6 @@ Here is an example of AppleScript:
41
41
 
42
42
 
43
43
  *** Output of Markdown.pl ***
44
- <p>Here is an example of AppleScript:</p>
45
-
46
- <pre><code>tell application "Foo"
47
- beep
48
- end tell
49
- tab
50
- </code></pre>
51
-
44
+ (not used anymore)
52
45
  *** Output of Markdown.pl (parsed) ***
53
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
46
+ (not used anymore)
@@ -35,12 +35,6 @@ Code
35
35
 
36
36
 
37
37
  *** Output of Markdown.pl ***
38
- <blockquote>
39
- <p>Code</p>
40
-
41
- <pre><code>Ciao
42
- </code></pre>
43
- </blockquote>
44
-
38
+ (not used anymore)
45
39
  *** Output of Markdown.pl (parsed) ***
46
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
40
+ (not used anymore)
@@ -78,25 +78,6 @@ This is code (4 spaces):This is not codeThis is code (1 tab):This is not code
78
78
 
79
79
 
80
80
  *** Output of Markdown.pl ***
81
- <p>This is code (4 spaces):</p>
82
-
83
- <pre><code>Code
84
- </code></pre>
85
-
86
- <p>This is not code</p>
87
-
88
- <pre><code>Code
89
- </code></pre>
90
-
91
- <p>This is code (1 tab):</p>
92
-
93
- <pre><code>Code
94
- </code></pre>
95
-
96
- <p>This is not code</p>
97
-
98
- <pre><code>Code
99
- </code></pre>
100
-
81
+ (not used anymore)
101
82
  *** Output of Markdown.pl (parsed) ***
102
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
83
+ (not used anymore)
@@ -32,11 +32,6 @@ abcd efgh ijkl
32
32
 
33
33
 
34
34
  *** Output of Markdown.pl ***
35
- <ol>
36
- <li>abcd
37
- efgh
38
- ijkl</li>
39
- </ol>
40
-
35
+ (not used anymore)
41
36
  *** Output of Markdown.pl (parsed) ***
42
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
37
+ (not used anymore)
@@ -54,18 +54,18 @@ require 'maruku/ext/div'; {} # params
54
54
 
55
55
  *** Output of inspect ***
56
56
  md_el(:document,[
57
- md_el(:div,[md_par(["text"])],{},[]),
58
- md_el(:div,[md_par(["text"])],{},[]),
59
- md_el(:div,[md_par(["text"])],{},[]),
60
- md_el(:div,[md_par(["text"])],{},[]),
61
- md_el(:div,[md_par(["text"])],{},[]),
62
- md_el(:div,[md_par(["text"])],{},[]),
63
- md_el(:div,[md_par(["text"])],{},[]),
64
- md_el(:div,[md_par(["text"])],{},[]),
65
- md_el(:div,[md_par(["text"])],{},[]),
66
- md_el(:div,[md_par(["text"])],{},[]),
67
- md_el(:div,[md_par(["text"])],{},[]),
68
- md_el(:div,[md_par(["text"])],{},[])
57
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
58
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
59
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
60
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
61
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
62
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
63
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
64
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
65
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
66
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
67
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[]),
68
+ md_el(:div,[md_par(["text"])],{:label=>nil,:num=>nil,:type=>nil},[])
69
69
  ],{},[])
70
70
  *** Output of to_html ***
71
71
  <div>
@@ -116,8 +116,6 @@ md_el(:document,[
116
116
  <p>text</p>
117
117
  </div>
118
118
  *** Output of to_latex ***
119
-
120
- *** Output of to_md ***
121
119
  text
122
120
 
123
121
  text
@@ -141,64 +139,41 @@ text
141
139
  text
142
140
 
143
141
  text
144
- *** Output of to_s ***
145
- texttexttexttexttexttexttexttexttexttexttexttext
146
- *** EOF ***
147
-
148
-
149
-
150
- OK!
151
-
152
-
142
+ *** Output of to_md ***
143
+ text
153
144
 
154
- *** Output of Markdown.pl ***
155
- <p>+---------
156
- | text
157
- +----------</p>
145
+ text
158
146
 
159
- <p>+---------
160
- |text</p>
147
+ text
161
148
 
162
- <p>+--
163
- text</p>
149
+ text
164
150
 
165
- <p>=--</p>
151
+ text
166
152
 
167
- <p>+---------
168
- | text
169
- +----------</p>
153
+ text
170
154
 
171
- <p>+---------
172
- |text</p>
155
+ text
173
156
 
174
- <p>+--
175
- text</p>
157
+ text
176
158
 
177
- <p>=--</p>
159
+ text
178
160
 
179
- <p>+---------
180
- | text
181
- +----------</p>
161
+ text
182
162
 
183
- <p>+---------
184
- |text</p>
163
+ text
185
164
 
186
- <p>+--
187
- text</p>
165
+ text
166
+ *** Output of to_s ***
167
+ texttexttexttexttexttexttexttexttexttexttexttext
168
+ *** EOF ***
188
169
 
189
- <p>=--</p>
190
170
 
191
- <p>+---------
192
- | text
193
- +----------</p>
194
171
 
195
- <p>+---------
196
- |text</p>
172
+ OK!
197
173
 
198
- <p>+--
199
- text</p>
200
174
 
201
- <p>=--</p>
202
175
 
176
+ *** Output of Markdown.pl ***
177
+ (not used anymore)
203
178
  *** Output of Markdown.pl (parsed) ***
204
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
179
+ (not used anymore)
@@ -6,13 +6,15 @@ require 'maruku/ext/div'; {} # params
6
6
  ciao
7
7
  =--
8
8
  *** Output of inspect ***
9
- md_el(:document,[md_el(:div,[md_par(["ciao"])],{},[])],{},[])
9
+ md_el(:document,[
10
+ md_el(:div,[md_par(["ciao"])],{:label=>nil,:num=>nil,:type=>nil},[])
11
+ ],{},[])
10
12
  *** Output of to_html ***
11
13
  <div>
12
14
  <p>ciao</p>
13
15
  </div>
14
16
  *** Output of to_latex ***
15
-
17
+ ciao
16
18
  *** Output of to_md ***
17
19
  ciao
18
20
  *** Output of to_s ***
@@ -26,9 +28,6 @@ ciao
26
28
 
27
29
 
28
30
  *** Output of Markdown.pl ***
29
- <p>+--
30
- ciao
31
- =--</p>
32
-
31
+ (not used anymore)
33
32
  *** Output of Markdown.pl (parsed) ***
34
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
33
+ (not used anymore)
@@ -16,8 +16,8 @@ md_el(:document,[
16
16
  md_el(:div,[
17
17
  md_par(["this is the last warning!"]),
18
18
  md_par(["please, go away!"]),
19
- md_el(:div,[md_par(["or else terrible things will happen"])],{},[[:class, "menace"]])
20
- ],{},[[:class, "warning"]])
19
+ md_el(:div,[md_par(["or else terrible things will happen"])],{:label=>nil,:num=>nil,:type=>nil},[[:class, "menace"]])
20
+ ],{:label=>nil,:num=>nil,:type=>nil},[[:class, "warning"]])
21
21
  ],{},[])
22
22
  *** Output of to_html ***
23
23
  <div class='warning'>
@@ -30,7 +30,11 @@ md_el(:document,[
30
30
  </div>
31
31
  </div>
32
32
  *** Output of to_latex ***
33
+ this is the last warning!
34
+
35
+ please, go away!
33
36
 
37
+ or else terrible things will happen
34
38
  *** Output of to_md ***
35
39
  this is the last warning!
36
40
 
@@ -48,15 +52,6 @@ this is the last warning!please, go away!or else terrible things will happen
48
52
 
49
53
 
50
54
  *** Output of Markdown.pl ***
51
- <p>+-----------------------------------{.warning}------
52
- | this is the last warning!
53
- |
54
- | please, go away!
55
- |
56
- | +------------------------------------- {.menace} --
57
- | | or else terrible things will happen
58
- | +--------------------------------------------------
59
- +---------------------------------------------------</p>
60
-
55
+ (not used anymore)
61
56
  *** Output of Markdown.pl (parsed) ***
62
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
57
+ (not used anymore)
@@ -22,7 +22,6 @@ Hello! how are you?
22
22
 
23
23
 
24
24
  *** Output of Markdown.pl ***
25
- <p><em>Hello!</em> how are <strong>you</strong>?</p>
26
-
25
+ (not used anymore)
27
26
  *** Output of Markdown.pl (parsed) ***
28
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
27
+ (not used anymore)
@@ -27,7 +27,6 @@ This is an email address:
27
27
 
28
28
 
29
29
  *** Output of Markdown.pl ***
30
- <p>This is an email address: <a href="m&#97;&#105;&#x6C;&#116;o:&#x61;&#x6E;&#100;&#x72;&#x65;&#97;&#64;&#x69;&#110;v&#97;&#x6C;&#x69;&#x64;&#46;&#x69;&#x74;">&#x61;&#x6E;&#100;&#x72;&#x65;&#97;&#64;&#x69;&#110;v&#97;&#x6C;&#x69;&#x64;&#46;&#x69;&#x74;</a></p>
31
-
30
+ (not used anymore)
32
31
  *** Output of Markdown.pl (parsed) ***
33
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
32
+ (not used anymore)
@@ -30,9 +30,6 @@ This is iso-8859-1: àèìàù.
30
30
 
31
31
 
32
32
  *** Output of Markdown.pl ***
33
- <p>Encoding: iso-8859-1</p>
34
-
35
- <p>This is iso-8859-1: àèìàù.</p>
36
-
33
+ (not used anymore)
37
34
  *** Output of Markdown.pl (parsed) ***
38
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
35
+ (not used anymore)
@@ -25,9 +25,6 @@ Japanese: マルク
25
25
 
26
26
 
27
27
  *** Output of Markdown.pl ***
28
- <p>Italian: àèìòù.</p>
29
-
30
- <p>Japanese: マルク</p>
31
-
28
+ (not used anymore)
32
29
  *** Output of Markdown.pl (parsed) ***
33
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
30
+ (not used anymore)
@@ -101,24 +101,6 @@ Maruku translates HTML entities to the equivalent in LaTeX:EntityResultabEntity-
101
101
 
102
102
 
103
103
  *** Output of Markdown.pl ***
104
- <p>Maruku translates HTML entities to the equivalent in LaTeX:</p>
105
-
106
- <p>Entity | Result
107
- ------------|----------
108
- <code>&amp;copy;</code> | &copy;
109
- <code>&amp;pound;</code> | &pound;
110
- <code>a&amp;nbsp;b</code> | a&nbsp;b
111
- <code>&amp;lambda;</code> | &lambda;
112
- <code>&amp;mdash;</code> | &mdash;</p>
113
-
114
- <p>Entity-substitution does not happen in code blocks or inline code.</p>
115
-
116
- <p>The following should not be translated:</p>
117
-
118
- <pre><code>&amp;copy;
119
- </code></pre>
120
-
121
- <p>It should read just like this: <code>&amp;copy;</code>.</p>
122
-
104
+ (not used anymore)
123
105
  *** Output of Markdown.pl (parsed) ***
124
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
106
+ (not used anymore)
@@ -74,16 +74,6 @@ Hello: ! ! ` { } [ ] ( ) # . ! * * *Ora, emphasis, bold, * <- due asterischi-> *
74
74
 
75
75
 
76
76
  *** Output of Markdown.pl ***
77
- <p>Hello: ! ! ` { } [ ] ( ) # . ! * * *</p>
78
-
79
- <p>Ora, <em>emphasis</em>, <strong>bold</strong>, * &lt;- due asterischi-> * , un underscore-> _ , <em>emphasis</em>,
80
- incre<em>dible</em>e!</p>
81
-
82
- <p>This is <code>Code with a special: -&gt; ` &lt;-</code>(after)</p>
83
-
84
- <p><code>Start</code> of paragraph</p>
85
-
86
- <p>End of <code>paragraph</code></p>
87
-
77
+ (not used anymore)
88
78
  *** Output of Markdown.pl (parsed) ***
89
- Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
79
+ (not used anymore)
@@ -59,14 +59,6 @@ ApplePomaceous fruit of plants of the genus Malus in the family Rosaceae.OrangeT
59
59
 
60
60
 
61
61
  *** Output of Markdown.pl ***
62
- <p>CSS: style.css</p>
63
-
64
- <p>Apple
65
- : Pomaceous fruit of plants of the genus Malus in
66
- the family Rosaceae.</p>
67
-
68
- <p>Orange
69
- : The fruit of an evergreen tree of the genus Citrus.</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)