2008-02-29 08:30:46 +01:00
|
|
|
Write a comment here
|
|
|
|
*** Parameters: ***
|
|
|
|
require 'maruku/ext/div'; {} # params
|
|
|
|
*** Markdown input: ***
|
|
|
|
+-----------------------------------{.warning}------
|
|
|
|
| this is the last warning!
|
|
|
|
|
|
|
|
|
| please, go away!
|
|
|
|
|
|
|
|
|
| +------------------------------------- {.menace} --
|
|
|
|
| | or else terrible things will happen
|
|
|
|
| +--------------------------------------------------
|
|
|
|
+---------------------------------------------------
|
|
|
|
*** Output of inspect ***
|
|
|
|
md_el(:document,[
|
|
|
|
md_el(:div,[
|
|
|
|
md_par(["this is the last warning!"]),
|
|
|
|
md_par(["please, go away!"]),
|
2009-05-13 08:27:39 +02:00
|
|
|
md_el(:div,[md_par(["or else terrible things will happen"])],{:label=>nil,:num=>nil,:type=>nil},[[:class, "menace"]])
|
|
|
|
],{:label=>nil,:num=>nil,:type=>nil},[[:class, "warning"]])
|
2008-02-29 08:30:46 +01:00
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
|
|
|
<div class='warning'>
|
|
|
|
<p>this is the last warning!</p>
|
|
|
|
|
|
|
|
<p>please, go away!</p>
|
|
|
|
|
|
|
|
<div class='menace'>
|
|
|
|
<p>or else terrible things will happen</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
*** Output of to_latex ***
|
2009-05-13 08:27:39 +02:00
|
|
|
this is the last warning!
|
|
|
|
|
|
|
|
please, go away!
|
2008-02-29 08:30:46 +01:00
|
|
|
|
2009-05-13 08:27:39 +02:00
|
|
|
or else terrible things will happen
|
2008-02-29 08:30:46 +01:00
|
|
|
*** Output of to_md ***
|
|
|
|
this is the last warning!
|
|
|
|
|
|
|
|
please, go away!
|
|
|
|
|
|
|
|
or else terrible things will happen
|
|
|
|
*** Output of to_s ***
|
|
|
|
this is the last warning!please, go away!or else terrible things will happen
|
|
|
|
*** 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)
|