Write a comment abouth the test here. *** Parameters: *** {:title=>"header"} *** Markdown input: *** Paragraph ### header 1 ### Paragraph header 2 -------- Paragraph header 3 ======== *** Output of inspect *** md_el(:document,[ md_par(["Paragraph"]), md_el(:header,["header 1"],{:level=>3},[]), md_par(["Paragraph"]), md_el(:header,["header 2"],{:level=>2},[]), md_par(["Paragraph"]), md_el(:header,["header 3"],{:level=>1},[]) ],{},[]) *** Output of to_html ***

Paragraph

header 1

Paragraph

header 2

Paragraph

header 3

*** Output of to_latex *** Paragraph \hypertarget{header_1}{}\subsubsection*{{header 1}}\label{header_1} Paragraph \hypertarget{header_2}{}\subsection*{{header 2}}\label{header_2} Paragraph \hypertarget{header_3}{}\section*{{header 3}}\label{header_3} *** Output of to_md *** Paragraph ### header Paragraph ## header Paragraph # header *** Output of to_s *** ParagraphheaderParagraphheaderParagraphheader