2008-02-29 08:30:46 +01:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
|
|
|
require 'maruku/ext/div'; {} # params
|
|
|
|
*** Markdown input: ***
|
|
|
|
+--
|
|
|
|
ciao
|
|
|
|
=--
|
|
|
|
*** Output of inspect ***
|
2009-05-13 08:27:39 +02:00
|
|
|
md_el(:document,[
|
|
|
|
md_el(:div,[md_par(["ciao"])],{:label=>nil,:num=>nil,:type=>nil},[])
|
|
|
|
],{},[])
|
2008-02-29 08:30:46 +01:00
|
|
|
*** Output of to_html ***
|
|
|
|
<div>
|
|
|
|
<p>ciao</p>
|
|
|
|
</div>
|
|
|
|
*** Output of to_latex ***
|
2009-05-13 08:27:39 +02:00
|
|
|
ciao
|
2008-02-29 08:30:46 +01:00
|
|
|
*** Output of to_md ***
|
|
|
|
ciao
|
|
|
|
*** Output of to_s ***
|
|
|
|
ciao
|
|
|
|
*** EOF ***
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OK!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*** Output of Markdown.pl ***
|
2008-08-05 20:18:23 +02:00
|
|
|
(not used anymore)
|
2008-02-29 08:30:46 +01:00
|
|
|
*** Output of Markdown.pl (parsed) ***
|
2008-08-05 20:18:23 +02:00
|
|
|
(not used anymore)
|