2008-01-08 07:01:35 +01:00
|
|
|
Write a comment abouth the test here.
|
|
|
|
*** Parameters: ***
|
|
|
|
{:title=>"A title with emphasis"}
|
|
|
|
*** Markdown input: ***
|
|
|
|
A title with *emphasis*
|
|
|
|
=======================
|
|
|
|
|
|
|
|
A title with *emphasis*
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
|
|
#### A title with *emphasis* ####
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*** Output of inspect ***
|
|
|
|
md_el(:document,[
|
|
|
|
md_el(:header,["A title with ", md_em(["emphasis"])],{:level=>1},[]),
|
|
|
|
md_el(:header,["A title with ", md_em(["emphasis"])],{:level=>2},[]),
|
|
|
|
md_el(:header,["A title with ", md_em(["emphasis"])],{:level=>4},[])
|
|
|
|
],{},[])
|
|
|
|
*** Output of to_html ***
|
2011-08-12 03:36:44 +02:00
|
|
|
<h1 id="a_title_with_emphasis_1">A title with <em>emphasis</em></h1>
|
2008-01-08 07:01:35 +01:00
|
|
|
|
2011-08-12 03:36:44 +02:00
|
|
|
<h2 id="a_title_with_emphasis_2">A title with <em>emphasis</em></h2>
|
2008-01-08 07:01:35 +01:00
|
|
|
|
2011-08-12 03:36:44 +02:00
|
|
|
<h4 id="a_title_with_emphasis_3">A title with <em>emphasis</em></h4>
|
2008-01-08 07:01:35 +01:00
|
|
|
*** Output of to_latex ***
|
2011-08-12 03:36:44 +02:00
|
|
|
\hypertarget{a_title_with_emphasis_1}{}\section*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis_1}
|
2008-01-08 07:01:35 +01:00
|
|
|
|
2011-08-12 03:36:44 +02:00
|
|
|
\hypertarget{a_title_with_emphasis_2}{}\subsection*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis_2}
|
2008-01-08 07:01:35 +01:00
|
|
|
|
2011-08-12 03:36:44 +02:00
|
|
|
\hypertarget{a_title_with_emphasis_3}{}\paragraph*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis_3}
|
2008-01-08 07:01:35 +01:00
|
|
|
*** Output of to_md ***
|
|
|
|
A title with emphasisA title with emphasisA title with emphasis
|
|
|
|
*** Output of to_s ***
|
|
|
|
A title with emphasisA title with emphasisA title with emphasis
|