2008-08-05 20:18:23 +02:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
|
|
|
{} # params
|
|
|
|
*** Markdown input: ***
|
|
|
|
[a. b] is a link.
|
|
|
|
|
|
|
|
[a. b]: http://site.com/
|
|
|
|
|
|
|
|
*** Output of inspect ***
|
|
|
|
md_el(:document,[
|
|
|
|
md_par([md_link(["a. b"],"a_b"), " is a link."]),
|
|
|
|
md_ref_def("a_b", "http://site.com/", {:title=>nil})
|
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
2011-08-12 03:36:44 +02:00
|
|
|
<p><a href="http://site.com/">a. b</a> is a link.</p>
|
2008-08-05 20:18:23 +02:00
|
|
|
*** Output of to_latex ***
|
|
|
|
\href{http://site.com/}{a. b} is a link.
|
|
|
|
*** Output of to_md ***
|
2011-08-21 09:43:43 +02:00
|
|
|
[a. b] is a link.
|
|
|
|
|
|
|
|
[a. b]: http://site.com/
|
|
|
|
|
2008-08-05 20:18:23 +02:00
|
|
|
*** Output of to_s ***
|
|
|
|
a. b is a link.
|