Sha256: 2e54958365cb08d433dab5fd57ea514a176ee17f315626d3042fa0ad17595c7b

Contents?: true

Size: 668 Bytes

Versions: 7

Compression:

Stored size: 668 Bytes

Contents

Simple test for emphasis.
*** Parameters: ***
{}
*** Markdown input: ***
*Hello!* how are **you**?
*** Output of inspect ***
md_el(:document,[md_par([md_em(["Hello!"]), " how are ", md_strong(["you"]), "?"])],{},[])
*** Output of to_html ***

<p><em>Hello!</em> how are <strong>you</strong>?</p>

*** Output of to_latex ***
\emph{Hello!} how are \textbf{you}?


*** Output of to_md ***
Hello!how are you?


*** Output of to_s ***
Hello! how are you?
*** EOF ***



	OK!



*** Output of Markdown.pl ***
<p><em>Hello!</em> how are <strong>you</strong>?</p>

*** Output of Markdown.pl (parsed) ***
<p
     ><em>Hello!</em
     > how are <strong>you</strong
     >?</p
 >

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
maruku-0.5.1 tests/unittest/easy.md
maruku-0.5.3 tests/unittest/easy.md
maruku-0.5.0 tests/unittest/easy.md
maruku-0.5.2 tests/unittest/easy.md
maruku-0.5.6 tests/unittest/easy.md
maruku-0.5.4 tests/unittest/easy.md
maruku-0.5.5 tests/unittest/easy.md