Sha256: d415e4f76ddefc9c06755507332d7b84ee72572b8b76da96129e500a48cb62d9

Contents?: true

Size: 904 Bytes

Versions: 3

Compression:

Stored size: 904 Bytes

Contents

Paragraphs eats everything, but not link definitions.
*** Parameters: ***
{}
*** Markdown input: ***
Paragraph
[google1]: #

Paragraph
 [google2]: #

Paragraph
  [google3]: #

*** Output of inspect ***
md_el(:document,[
	md_par(["Paragraph"]),
	md_ref_def("google1", "#", {:title=>nil}),
	md_par(["Paragraph"]),
	md_ref_def("google2", "#", {:title=>nil}),
	md_par(["Paragraph"]),
	md_ref_def("google3", "#", {:title=>nil})
],{},[])
*** Output of to_html ***
<p>Paragraph</p>

<p>Paragraph</p>

<p>Paragraph</p>
*** Output of to_latex ***
Paragraph

Paragraph

Paragraph
*** Output of to_md ***
Paragraph

Paragraph

Paragraph
*** Output of to_s ***
ParagraphParagraphParagraph
*** EOF ***



	OK!



*** Output of Markdown.pl ***
<p>Paragraph
Paragraph
Paragraph</p>

*** Output of Markdown.pl (parsed) ***
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
maruku-0.5.7 tests/unittest/paragraph_rules/dont_merge_ref.md
maruku-0.5.8 tests/unittest/paragraph_rules/dont_merge_ref.md
maruku-0.5.9 tests/unittest/paragraph_rules/dont_merge_ref.md