Sam Ruby has been doing a bang-up job fixing the bugs in REXML. Who knows when these improvements will trickle down to vendor distributions of Ruby. In the meantime, let's bundle the latest version of REXML with Instiki. We check the version number of the bundled REXML against that of the System REXML, and use whichever is later.
3.9 KiB
Write a comment abouth the test here. *** Parameters: *** {:footnotes_used=>["^b", "^c", "^a"]} *** Markdown input: *** That's some text with a footnote 1 and another 2 and another 3.
This is not a footnote. *** Output of inspect *** md_el(:document,[ md_par([ "That", md_entity("rsquo"), "s some text with a footnote ", md_foot_ref("^b"), " and another ", md_foot_ref("^c"), " and another ", md_foot_ref("^a"), "." ]), md_el(:footnote,[ md_par(["And that", md_entity("rsquo"), "s the footnote."]), md_par([ "That", md_entity("rsquo"), "s the second paragraph of the footnote." ]) ],{:footnote_id=>"^a"},[]), md_el(:footnote,[ md_par([ "And that", md_entity("rsquo"), "s the footnote. This is second sentence (same paragraph)." ]) ],{:footnote_id=>"^b"},[]), md_el(:footnote,[ md_par(["This is the very long one."]), md_par(["That", md_entity("rsquo"), "s the second paragraph."]) ],{:footnote_id=>"^c"},[]), md_par(["This is not a footnote."]) ],{},[]) *** Output of to_html ***
That’s some text with a footnote 1 and another 2 and another 3.
This is not a footnote.
That'{}s the second paragraph.} and another \footnote{And that'{}s the footnote.
That'{}s the second paragraph of the footnote.} .
This is not a footnote. *** Output of to_md *** That s some text with a footnote and another and another .
And that s the footnote.
That s the second paragraph of the footnote.
And that s the footnote. This is second sentence (same paragraph).
This is the very long one.
That s the second paragraph.
This is not a footnote. *** Output of to_s *** Thats some text with a footnote and another and another .And thats the footnote.Thats the second paragraph of the footnote.And thats the footnote. This is second sentence (same paragraph).This is the very long one.Thats the second paragraph.This is not a footnote. *** EOF ***
OK!
*** Output of Markdown.pl ***
That's some text with a footnote [^b] and another [^c] and another [^a].
[^a]: And that's the footnote.
That's the second paragraph of the footnote.
[^b]: And that's the footnote. This is second sentence (same paragraph).
[^c]: This is the very long one.
That's the second paragraph.
This is not a footnote.
*** Output of Markdown.pl (parsed) ***
That's some text with a footnote [^b] and another [^c] and another [^a].
[^a]: And that's the footnote.
That's the second paragraph of the footnote.
[^b]: And that's the footnote. This is second sentence (same paragraph).
[^c]: This is the very long one.
That's the second paragraph.
This is not a footnote.