maruku 0.5.6 → 0.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/maruku +16 -9
- data/bin/marutest +2 -0
- data/docs/maruku.md +0 -51
- data/lib/maruku/input/linesource.rb +1 -0
- data/lib/maruku/input/parse_block.rb +28 -19
- data/lib/maruku/input/parse_doc.rb +1 -0
- data/lib/maruku/output/to_html.rb +24 -8
- data/lib/maruku/output/to_latex.rb +1 -1
- data/lib/maruku/version.rb +1 -1
- data/tests/unittest/abbreviations.md +2 -12
- data/tests/unittest/alt.md +1 -10
- data/tests/unittest/attributes/att2.md +1 -3
- data/tests/unittest/attributes/att3.md +1 -11
- data/tests/unittest/attributes/attributes.md +1 -16
- data/tests/unittest/attributes/circular.md +1 -9
- data/tests/unittest/attributes/default.md +1 -10
- data/tests/unittest/blank.md +1 -9
- data/tests/unittest/blanks_in_code.md +1 -26
- data/tests/unittest/bug_def.md +1 -8
- data/tests/unittest/bug_table.md +1 -11
- data/tests/unittest/code.md +1 -14
- data/tests/unittest/code2.md +1 -16
- data/tests/unittest/code3.md +1 -26
- data/tests/unittest/data_loss.md +1 -12
- data/tests/unittest/easy.md +1 -11
- data/tests/unittest/email.md +3 -11
- data/tests/unittest/encoding/iso-8859-1.md +1 -9
- data/tests/unittest/encoding/utf-8.md +1 -7
- data/tests/unittest/entities.md +78 -35
- data/tests/unittest/escaping.md +5 -25
- data/tests/unittest/extra_dl.md +1 -10
- data/tests/unittest/extra_header_id.md +1 -18
- data/tests/unittest/extra_table1.md +1 -8
- data/tests/unittest/footnotes.md +1 -21
- data/tests/unittest/headers.md +1 -11
- data/tests/unittest/hex_entities.md +1 -8
- data/tests/unittest/hrule.md +1 -8
- data/tests/unittest/html2.md +1 -12
- data/tests/unittest/html3.md +1 -15
- data/tests/unittest/html4.md +1 -6
- data/tests/unittest/html5.md +1 -8
- data/tests/unittest/ie.md +32 -33
- data/tests/unittest/images.md +2 -19
- data/tests/unittest/images2.md +1 -10
- data/tests/unittest/inline_html.md +22 -145
- data/tests/unittest/inline_html2.md +1 -3
- data/tests/unittest/links.md +22 -8
- data/tests/unittest/links2.md +1 -8
- data/tests/unittest/list1.md +1 -19
- data/tests/unittest/list12.md +43 -0
- data/tests/unittest/list2.md +1 -21
- data/tests/unittest/list3.md +1 -29
- data/tests/unittest/list4.md +1 -19
- data/tests/unittest/lists.md +1 -59
- data/tests/unittest/lists10.md +2 -13
- data/tests/unittest/lists11.md +2 -28
- data/tests/unittest/lists6.md +1 -0
- data/tests/unittest/lists7.md +56 -8
- data/tests/unittest/lists7b.md +136 -0
- data/tests/unittest/lists8.md +1 -22
- data/tests/unittest/lists9.md +1 -21
- data/tests/unittest/lists_after_paragraph.md +3 -48
- data/tests/unittest/lists_ol.md +1 -81
- data/tests/unittest/loss.md +1 -4
- data/tests/unittest/math/equations.md +1 -14
- data/tests/unittest/math/inline.md +1 -15
- data/tests/unittest/math/math2.md +38 -12
- data/tests/unittest/math/notmath.md +1 -9
- data/tests/unittest/math/table.md +1 -9
- data/tests/unittest/math/table2.md +33 -10
- data/tests/unittest/misc_sw.md +1 -195
- data/tests/unittest/notyet/escape.md +3 -13
- data/tests/unittest/notyet/header_after_par.md +1 -11
- data/tests/unittest/notyet/ticks.md +2 -11
- data/tests/unittest/notyet/triggering.md +1 -32
- data/tests/unittest/olist.md +1 -15
- data/tests/unittest/one.md +1 -8
- data/tests/unittest/paragraph.md +1 -8
- data/tests/unittest/paragraph_rules/dont_merge_ref.md +1 -10
- data/tests/unittest/paragraph_rules/tab_is_blank.md +1 -9
- data/tests/unittest/paragraphs.md +1 -14
- data/tests/unittest/recover/recover_links.md +1 -6
- data/tests/unittest/references/long_example.md +1 -17
- data/tests/unittest/references/spaces_and_numbers.md +1 -0
- data/tests/unittest/smartypants.md +21 -6
- data/tests/unittest/syntax_hl.md +1 -24
- data/tests/unittest/table_attributes.md +1 -8
- data/tests/unittest/test.md +1 -5
- data/tests/unittest/wrapping.md +1 -18
- data/tests/unittest/xml.md +1 -15
- data/tests/unittest/xml2.md +1 -3
- data/tests/unittest/xml3.md +1 -9
- data/tests/unittest/xml_instruction.md +1 -10
- metadata +211 -215
data/tests/unittest/syntax_hl.md
CHANGED
@@ -23,7 +23,6 @@ md_el(:document,[
|
|
23
23
|
md_el(:code,[],{:raw_code=>"puts Maruku.new($stdin).to_html"},[])
|
24
24
|
],{},[])
|
25
25
|
*** Output of to_html ***
|
26
|
-
|
27
26
|
<p>This is ruby code:</p>
|
28
27
|
|
29
28
|
<pre><code>require 'maruku'
|
@@ -35,7 +34,6 @@ puts Maruku.new($stdin).to_html</code></pre>
|
|
35
34
|
<pre><code class='ruby' lang='ruby'><span class='ident'>require</span> <span class='punct'>'</span><span class='string'>maruku</span><span class='punct'>'</span></code></pre>
|
36
35
|
|
37
36
|
<pre><code>puts Maruku.new($stdin).to_html</code></pre>
|
38
|
-
|
39
37
|
*** Output of to_latex ***
|
40
38
|
This is ruby code:
|
41
39
|
|
@@ -46,13 +44,10 @@ This is ruby code:
|
|
46
44
|
|
47
45
|
\begin{verbatim}require 'maruku'\end{verbatim}
|
48
46
|
\begin{verbatim}puts Maruku.new($stdin).to_html\end{verbatim}
|
49
|
-
|
50
47
|
*** Output of to_md ***
|
51
48
|
This is ruby code:
|
52
49
|
|
53
50
|
This is ruby code:
|
54
|
-
|
55
|
-
|
56
51
|
*** Output of to_s ***
|
57
52
|
This is ruby code:This is ruby code:
|
58
53
|
*** EOF ***
|
@@ -82,22 +77,4 @@ puts Maruku.new($stdin).to_html
|
|
82
77
|
</code></pre>
|
83
78
|
|
84
79
|
*** Output of Markdown.pl (parsed) ***
|
85
|
-
<
|
86
|
-
><pre
|
87
|
-
><code>require 'maruku'
|
88
|
-
|
89
|
-
puts Maruku.new($stdin).to_html
|
90
|
-
</code
|
91
|
-
></pre
|
92
|
-
><p>This is ruby code:</p
|
93
|
-
><pre
|
94
|
-
><code>require 'maruku'
|
95
|
-
</code
|
96
|
-
></pre
|
97
|
-
><p>{: lang=ruby html<em>use</em
|
98
|
-
>syntax}</p
|
99
|
-
><pre
|
100
|
-
><code>puts Maruku.new($stdin).to_html
|
101
|
-
</code
|
102
|
-
></pre
|
103
|
-
>
|
80
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
@@ -28,8 +28,6 @@ h&h\\
|
|
28
28
|
\hline
|
29
29
|
c1&c2\\
|
30
30
|
\end{tabular}
|
31
|
-
|
32
|
-
|
33
31
|
*** Output of to_md ***
|
34
32
|
hh c1c2
|
35
33
|
*** Output of to_s ***
|
@@ -51,9 +49,4 @@ hh c1c2
|
|
51
49
|
<p>{:t: scope="row"}</p>
|
52
50
|
|
53
51
|
*** Output of Markdown.pl (parsed) ***
|
54
|
-
<
|
55
|
-
----------|--
|
56
|
-
{:t} c1 | c2
|
57
|
-
{: summary="Table summary" .class1 style="color:red" border=3 width="50%" frame=lhs rules=cols cellspacing=2em cellpadding=4px}</p
|
58
|
-
><p>{:t: scope="row"}</p
|
59
|
-
>
|
52
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
data/tests/unittest/test.md
CHANGED
@@ -10,12 +10,9 @@ Write a comment abouth the test here.
|
|
10
10
|
*** Output of inspect ***
|
11
11
|
md_el(:document,[md_el(:code,[],{:raw_code=>" $ python "},[])],{},[])
|
12
12
|
*** Output of to_html ***
|
13
|
-
|
14
13
|
<pre><code> $ python </code></pre>
|
15
|
-
|
16
14
|
*** Output of to_latex ***
|
17
15
|
\begin{verbatim} $ python \end{verbatim}
|
18
|
-
|
19
16
|
*** Output of to_md ***
|
20
17
|
|
21
18
|
*** Output of to_s ***
|
@@ -32,5 +29,4 @@ md_el(:document,[md_el(:code,[],{:raw_code=>" $ python "},[])],{},[]
|
|
32
29
|
<p>$ python </p>
|
33
30
|
|
34
31
|
*** Output of Markdown.pl (parsed) ***
|
35
|
-
<
|
36
|
-
>
|
32
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
data/tests/unittest/wrapping.md
CHANGED
@@ -29,7 +29,6 @@ md_el(:document,[
|
|
29
29
|
],{},[])
|
30
30
|
],{},[])
|
31
31
|
*** Output of to_html ***
|
32
|
-
|
33
32
|
<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 />Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet.</p>
|
34
33
|
|
35
34
|
<ul>
|
@@ -37,7 +36,6 @@ md_el(:document,[
|
|
37
36
|
|
38
37
|
<li>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li>
|
39
38
|
</ul>
|
40
|
-
|
41
39
|
*** Output of to_latex ***
|
42
40
|
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:\newline Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet.
|
43
41
|
|
@@ -46,7 +44,6 @@ Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ip
|
|
46
44
|
\item Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet
|
47
45
|
|
48
46
|
\end{itemize}
|
49
|
-
|
50
47
|
*** Output of to_md ***
|
51
48
|
Lorem ipsum dolor amet. Lorem ipsum
|
52
49
|
dolor amet. Lorem ipsum dolor amet.
|
@@ -66,8 +63,6 @@ dolor amet. Lorem ipsum dolor amet
|
|
66
63
|
-orem ipsum dolor amet. Lorem ipsum
|
67
64
|
dolor amet. Lorem ipsum dolor amet.
|
68
65
|
Lorem ipsum dolor amet
|
69
|
-
|
70
|
-
|
71
66
|
*** Output of to_s ***
|
72
67
|
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: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. Lorem ipsum dolor amet Lorem ipsum Break:Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor ametLorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet
|
73
68
|
*** EOF ***
|
@@ -90,16 +85,4 @@ Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li>
|
|
90
85
|
</ul>
|
91
86
|
|
92
87
|
*** Output of Markdown.pl (parsed) ***
|
93
|
-
|
94
|
-
>
|
95
|
-
Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. </p
|
96
|
-
><ul>
|
97
|
-
<li>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet
|
98
|
-
Lorem ipsum Break: <br/
|
99
|
-
>
|
100
|
-
Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li
|
101
|
-
>
|
102
|
-
<li>Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet. Lorem ipsum dolor amet</li
|
103
|
-
>
|
104
|
-
</ul
|
105
|
-
>
|
88
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
data/tests/unittest/xml.md
CHANGED
@@ -51,18 +51,4 @@ width="600px" height="400px">
|
|
51
51
|
</svg:svg></p>
|
52
52
|
|
53
53
|
*** Output of Markdown.pl (parsed) ***
|
54
|
-
<
|
55
|
-
><svg:svg/
|
56
|
-
></p
|
57
|
-
><p
|
58
|
-
><svg:svg height='400px' width='600px'>
|
59
|
-
<svg:g id='group'>
|
60
|
-
<svg:circle cy='3cm' id='circ1' r='1cm' cx='3cm' style='fill:red;'/
|
61
|
-
>
|
62
|
-
<svg:circle cy='3cm' id='circ2' r='1cm' cx='7cm' style='fill:red;'/
|
63
|
-
>
|
64
|
-
</svg:g
|
65
|
-
>
|
66
|
-
</svg:svg
|
67
|
-
></p
|
68
|
-
>
|
54
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
data/tests/unittest/xml2.md
CHANGED
data/tests/unittest/xml3.md
CHANGED
@@ -41,12 +41,4 @@ md_el(:document,[
|
|
41
41
|
</table>
|
42
42
|
|
43
43
|
*** Output of Markdown.pl (parsed) ***
|
44
|
-
|
45
|
-
Blah
|
46
|
-
<thead>
|
47
|
-
<td>*em*</td
|
48
|
-
>
|
49
|
-
</thead
|
50
|
-
>
|
51
|
-
</table
|
52
|
-
>
|
44
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
@@ -40,19 +40,14 @@ md_el(:document,[
|
|
40
40
|
<p>Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p>
|
41
41
|
|
42
42
|
<p>Inside: <?mrk puts "Inside: Hello"?> last</p>
|
43
|
-
|
44
43
|
*** Output of to_latex ***
|
45
44
|
Targets
|
46
45
|
|
47
46
|
Inside: last
|
48
|
-
|
49
|
-
|
50
47
|
*** Output of to_md ***
|
51
48
|
Targets
|
52
49
|
|
53
50
|
Inside: last
|
54
|
-
|
55
|
-
|
56
51
|
*** Output of to_s ***
|
57
52
|
Targets Inside: last
|
58
53
|
*** EOF ***
|
@@ -74,8 +69,4 @@ Targets Inside: last
|
|
74
69
|
<p>Inside: <?mrk puts "Inside: Hello" ?> last</p>
|
75
70
|
|
76
71
|
*** Output of Markdown.pl (parsed) ***
|
77
|
-
<
|
78
|
-
> <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p
|
79
|
-
><p>Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p
|
80
|
-
><p>Inside: <?mrk puts "Inside: Hello"?> last</p
|
81
|
-
>
|
72
|
+
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.
|
2
|
+
rubygems_version: 0.8.10
|
3
3
|
specification_version: 1
|
4
4
|
name: maruku
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.5.
|
7
|
-
date: 2007-05
|
6
|
+
version: 0.5.7
|
7
|
+
date: 2007-10-05
|
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,225 +18,221 @@ bindir: bin
|
|
18
18
|
has_rdoc: false
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
-
|
22
|
+
- ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
24
25
|
version:
|
25
26
|
platform: ruby
|
26
|
-
signing_key:
|
27
|
-
cert_chain:
|
28
|
-
post_install_message:
|
29
27
|
authors:
|
30
|
-
- Andrea Censi
|
28
|
+
- Andrea Censi
|
31
29
|
files:
|
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/
|
163
|
-
- tests/unittest/
|
164
|
-
- tests/unittest/
|
165
|
-
- tests/unittest/
|
166
|
-
- tests/unittest/
|
167
|
-
- tests/unittest/
|
168
|
-
- tests/unittest/
|
169
|
-
- tests/unittest/
|
170
|
-
- tests/unittest/
|
171
|
-
- tests/unittest/
|
172
|
-
- tests/unittest/
|
173
|
-
- tests/unittest/
|
174
|
-
- tests/unittest/
|
175
|
-
- tests/unittest/
|
176
|
-
- tests/unittest/
|
177
|
-
- tests/unittest/
|
178
|
-
- tests/unittest/
|
179
|
-
- tests/unittest/
|
180
|
-
- tests/unittest/
|
181
|
-
- tests/unittest/
|
182
|
-
- tests/unittest/
|
183
|
-
- tests/unittest/
|
184
|
-
- tests/unittest/
|
185
|
-
- tests/unittest/
|
186
|
-
- tests/unittest/
|
187
|
-
- tests/unittest/
|
188
|
-
- tests/unittest/
|
189
|
-
- tests/unittest/
|
190
|
-
- tests/unittest/
|
191
|
-
- tests/unittest/attributes/
|
192
|
-
- tests/unittest/attributes/
|
193
|
-
- tests/unittest/attributes/
|
194
|
-
- tests/unittest/
|
195
|
-
- tests/unittest/
|
196
|
-
- tests/unittest/
|
197
|
-
- tests/unittest/
|
198
|
-
- tests/unittest/math/
|
199
|
-
- tests/unittest/math/
|
200
|
-
- tests/unittest/math/
|
201
|
-
- tests/unittest/math/
|
202
|
-
- tests/unittest/
|
203
|
-
- tests/unittest/
|
204
|
-
- tests/unittest/notyet/
|
205
|
-
- tests/unittest/notyet/
|
206
|
-
- tests/unittest/
|
207
|
-
- tests/unittest/
|
208
|
-
- tests/unittest/
|
209
|
-
- tests/unittest/
|
210
|
-
- tests/unittest/
|
211
|
-
- tests/
|
212
|
-
-
|
213
|
-
-
|
214
|
-
- bin/
|
215
|
-
- bin/
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
-
|
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/math/elements.rb
|
46
|
+
- lib/maruku/ext/math/parsing.rb
|
47
|
+
- lib/maruku/ext/math/to_html.rb
|
48
|
+
- lib/maruku/ext/math/to_latex.rb
|
49
|
+
- lib/maruku/ext/math/mathml_engines/blahtex.rb
|
50
|
+
- lib/maruku/ext/math/mathml_engines/itex2mml.rb
|
51
|
+
- lib/maruku/ext/math/mathml_engines/none.rb
|
52
|
+
- lib/maruku/ext/math/mathml_engines/ritex.rb
|
53
|
+
- lib/maruku/input/charsource.rb
|
54
|
+
- lib/maruku/input/extensions.rb
|
55
|
+
- lib/maruku/input/html_helper.rb
|
56
|
+
- lib/maruku/input/linesource.rb
|
57
|
+
- lib/maruku/input/parse_block.rb
|
58
|
+
- lib/maruku/input/parse_doc.rb
|
59
|
+
- lib/maruku/input/parse_span_better.rb
|
60
|
+
- lib/maruku/input/rubypants.rb
|
61
|
+
- lib/maruku/input/type_detection.rb
|
62
|
+
- lib/maruku/input_textile2/t2_parser.rb
|
63
|
+
- lib/maruku/output/to_html.rb
|
64
|
+
- lib/maruku/output/to_latex.rb
|
65
|
+
- lib/maruku/output/to_latex_entities.rb
|
66
|
+
- lib/maruku/output/to_latex_strings.rb
|
67
|
+
- lib/maruku/output/to_markdown.rb
|
68
|
+
- lib/maruku/output/to_s.rb
|
69
|
+
- lib/maruku/output/s5/fancy.rb
|
70
|
+
- lib/maruku/output/s5/to_s5.rb
|
71
|
+
- lib/maruku/tests/benchmark.rb
|
72
|
+
- lib/maruku/tests/new_parser.rb
|
73
|
+
- lib/maruku/tests/tests.rb
|
74
|
+
- lib/maruku/usage/example1.rb
|
75
|
+
- docs/changelog.md
|
76
|
+
- docs/div_syntax.md
|
77
|
+
- docs/entity_test.md
|
78
|
+
- docs/markdown_syntax.md
|
79
|
+
- docs/maruku.md
|
80
|
+
- docs/math.md
|
81
|
+
- docs/other_stuff.md
|
82
|
+
- docs/proposal.md
|
83
|
+
- docs/tmp.md
|
84
|
+
- docs/changelog.html
|
85
|
+
- docs/entity_test.html
|
86
|
+
- docs/exd.html
|
87
|
+
- docs/index.html
|
88
|
+
- docs/markdown_syntax.html
|
89
|
+
- docs/maruku.html
|
90
|
+
- docs/proposal.html
|
91
|
+
- tests/bugs/code_in_links.md
|
92
|
+
- tests/bugs/complex_escaping.md
|
93
|
+
- tests/diagrams/diagrams.md
|
94
|
+
- tests/math/syntax.md
|
95
|
+
- tests/math_usage/document.md
|
96
|
+
- tests/others/abbreviations.md
|
97
|
+
- tests/others/blank.md
|
98
|
+
- tests/others/code.md
|
99
|
+
- tests/others/code2.md
|
100
|
+
- tests/others/code3.md
|
101
|
+
- tests/others/email.md
|
102
|
+
- tests/others/entities.md
|
103
|
+
- tests/others/escaping.md
|
104
|
+
- tests/others/extra_dl.md
|
105
|
+
- tests/others/extra_header_id.md
|
106
|
+
- tests/others/extra_table1.md
|
107
|
+
- tests/others/footnotes.md
|
108
|
+
- tests/others/headers.md
|
109
|
+
- tests/others/hrule.md
|
110
|
+
- tests/others/images.md
|
111
|
+
- tests/others/inline_html.md
|
112
|
+
- tests/others/links.md
|
113
|
+
- tests/others/list1.md
|
114
|
+
- tests/others/list2.md
|
115
|
+
- tests/others/list3.md
|
116
|
+
- tests/others/lists.md
|
117
|
+
- tests/others/lists_after_paragraph.md
|
118
|
+
- tests/others/lists_ol.md
|
119
|
+
- tests/others/misc_sw.md
|
120
|
+
- tests/others/one.md
|
121
|
+
- tests/others/paragraphs.md
|
122
|
+
- tests/others/sss06.md
|
123
|
+
- tests/others/test.md
|
124
|
+
- tests/s5/a.md
|
125
|
+
- tests/s5/instiki+s5.md
|
126
|
+
- tests/s5/s5profiling.md
|
127
|
+
- tests/unittest/abbreviations.md
|
128
|
+
- tests/unittest/alt.md
|
129
|
+
- tests/unittest/blank.md
|
130
|
+
- tests/unittest/blanks_in_code.md
|
131
|
+
- tests/unittest/bug_def.md
|
132
|
+
- tests/unittest/bug_table.md
|
133
|
+
- tests/unittest/code.md
|
134
|
+
- tests/unittest/code2.md
|
135
|
+
- tests/unittest/code3.md
|
136
|
+
- tests/unittest/data_loss.md
|
137
|
+
- tests/unittest/easy.md
|
138
|
+
- tests/unittest/email.md
|
139
|
+
- tests/unittest/entities.md
|
140
|
+
- tests/unittest/escaping.md
|
141
|
+
- tests/unittest/extra_dl.md
|
142
|
+
- tests/unittest/extra_header_id.md
|
143
|
+
- tests/unittest/extra_table1.md
|
144
|
+
- tests/unittest/footnotes.md
|
145
|
+
- tests/unittest/headers.md
|
146
|
+
- tests/unittest/hex_entities.md
|
147
|
+
- tests/unittest/hrule.md
|
148
|
+
- tests/unittest/html2.md
|
149
|
+
- tests/unittest/html3.md
|
150
|
+
- tests/unittest/html4.md
|
151
|
+
- tests/unittest/html5.md
|
152
|
+
- tests/unittest/ie.md
|
153
|
+
- tests/unittest/images.md
|
154
|
+
- tests/unittest/images2.md
|
155
|
+
- tests/unittest/inline_html.md
|
156
|
+
- tests/unittest/inline_html2.md
|
157
|
+
- tests/unittest/links.md
|
158
|
+
- tests/unittest/links2.md
|
159
|
+
- tests/unittest/list1.md
|
160
|
+
- tests/unittest/list12.md
|
161
|
+
- tests/unittest/list2.md
|
162
|
+
- tests/unittest/list3.md
|
163
|
+
- tests/unittest/list4.md
|
164
|
+
- tests/unittest/lists.md
|
165
|
+
- tests/unittest/lists10.md
|
166
|
+
- tests/unittest/lists11.md
|
167
|
+
- tests/unittest/lists6.md
|
168
|
+
- tests/unittest/lists7.md
|
169
|
+
- tests/unittest/lists7b.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
|
220
220
|
test_files: []
|
221
|
-
|
222
221
|
rdoc_options: []
|
223
|
-
|
224
222
|
extra_rdoc_files: []
|
225
|
-
|
226
223
|
executables:
|
227
|
-
- maruku
|
228
|
-
- marutex
|
224
|
+
- maruku
|
225
|
+
- marutex
|
229
226
|
extensions: []
|
230
|
-
|
231
227
|
requirements: []
|
232
|
-
|
233
228
|
dependencies:
|
234
|
-
- !ruby/object:Gem::Dependency
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
229
|
+
- !ruby/object:Gem::Dependency
|
230
|
+
name: syntax
|
231
|
+
version_requirement:
|
232
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
233
|
+
requirements:
|
234
|
+
-
|
235
|
+
- ">="
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: 1.0.0
|
238
|
+
version:
|