Sha256: 99ad9436a8e329cf20172e53f9321f24ddbbb4347b48ce7e3a3d8f10421a9a17
Contents?: true
Size: 1.29 KB
Versions: 5
Compression:
Stored size: 1.29 KB
Contents
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 *** <h1 id="a_title_with_emphasis">A title with <em>emphasis</em></h1> <h2 id="a_title_with_emphasis_2">A title with <em>emphasis</em></h2> <h4 id="a_title_with_emphasis_3">A title with <em>emphasis</em></h4> *** Output of to_latex *** \hypertarget{a_title_with_emphasis}{}\section*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis} \hypertarget{a_title_with_emphasis_2}{}\subsection*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis_2} \hypertarget{a_title_with_emphasis_3}{}\paragraph*{{A title with \emph{emphasis}}}\label{a_title_with_emphasis_3} *** Output of to_md *** # A title with *emphasis* # ## A title with *emphasis* ## #### A title with *emphasis* #### *** Output of to_s *** A title with emphasisA title with emphasisA title with emphasis
Version data entries
5 entries across 5 versions & 1 rubygems