2008-08-05 20:18:23 +02:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
|
|
|
{} # params
|
|
|
|
*** Markdown input: ***
|
2011-08-14 09:16:15 +02:00
|
|
|
See [foo' bar][foo_bar]
|
2008-08-05 20:18:23 +02:00
|
|
|
|
2011-08-14 09:16:15 +02:00
|
|
|
[foo_bar]: http://agorf.gr/
|
2008-08-05 20:18:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
*** Output of inspect ***
|
2011-08-14 09:16:15 +02:00
|
|
|
md_el(:document,[ md_par([ "See ", md_link(["foo", md_entity("rsquo"), " bar"],"foo_bar")]),
|
2008-08-05 20:18:23 +02:00
|
|
|
md_ref_def("foo_bar", "http://agorf.gr/", {:title=>nil})
|
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
2011-08-14 09:16:15 +02:00
|
|
|
<p>See <a href="http://agorf.gr/">foo’ bar</a></p>
|
2008-08-05 20:18:23 +02:00
|
|
|
*** Output of to_latex ***
|
|
|
|
See \href{http://agorf.gr/}{foo'{} bar}
|
|
|
|
*** Output of to_md ***
|
|
|
|
See foo bar
|
|
|
|
*** Output of to_s ***
|
|
|
|
See foo bar
|