Sha256: 1bc97295b95e62583a97020dcbc0668b5cb95f80741bdf897173a5ee269f411a

Contents?: true

Size: 1.62 KB

Versions: 7

Compression:

Stored size: 1.62 KB

Contents

Directives should be preserved.
*** Parameters: ***
{}
*** Markdown input: ***

<? noTarget?> 
<?php ?> 
<?xml ?> 
<?mrk ?>

Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?>

Inside: <?mrk puts "Inside: Hello" ?> last


*** Output of inspect ***
md_el(:document,[
	md_el(:xml_instr,[],{:code=>" noTarget",:target=>""},[]),
	md_el(:xml_instr,[],{:code=>"",:target=>"php"},[]),
	md_el(:xml_instr,[],{:code=>"",:target=>"xml"},[]),
	md_el(:xml_instr,[],{:code=>"",:target=>"mrk"},[]),
	md_par([
		"Targets ",
		md_el(:xml_instr,[],{:code=>"noTarget",:target=>""},[]),
		" ",
		md_el(:xml_instr,[],{:code=>"",:target=>"php"},[]),
		" ",
		md_el(:xml_instr,[],{:code=>"",:target=>"xml"},[]),
		" ",
		md_el(:xml_instr,[],{:code=>"",:target=>"mrk"},[])
	]),
	md_par([
		"Inside: ",
		md_el(:xml_instr,[],{:code=>"puts \"Inside: Hello\"",:target=>"mrk"},[]),
		" last"
	])
],{},[])
*** Output of to_html ***
<? noTarget?><?php ?><?xml ?><?mrk ?>
<p>Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p>

<p>Inside: <?mrk puts "Inside: Hello"?> last</p>

*** Output of to_latex ***
Targets    

Inside:  last


*** Output of to_md ***
Targets

Inside: last


*** Output of to_s ***
Targets    Inside:  last
*** EOF ***



	OK!



*** Output of Markdown.pl ***
<p><? noTarget?> 
<?php ?> 
<?xml ?> 
<?mrk ?></p>

<p>Targets <? noTarget?> <?php ?> <?xml ?> <?mrk ?></p>

<p>Inside: <?mrk puts "Inside: Hello" ?> last</p>

*** Output of Markdown.pl (parsed) ***
<p
     >     <? noTarget?>     <?php ?>     <?xml ?>     <?mrk ?></p
   ><p>Targets      <? noTarget?>     <?php ?>     <?xml ?>     <?mrk ?></p
   ><p>Inside:      <?mrk puts "Inside: Hello"?> last</p
 >

Version data entries

7 entries across 7 versions & 1 rubygems

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