Update to latest HTML5lib, Add Maruku testdir
Sync with the latest html5lib. Having the Maruku unit tests on-hand may be useful for debugging; so let's include them.
This commit is contained in:
parent
ebc409e1a0
commit
1085168bbf
337 changed files with 21290 additions and 72 deletions
72
vendor/plugins/maruku/tests/unittest/xml_instruction.md
vendored
Normal file
72
vendor/plugins/maruku/tests/unittest/xml_instruction.md
vendored
Normal file
|
@ -0,0 +1,72 @@
|
|||
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) ***
|
||||
Error: #<NoMethodError: private method `write_children' called for <div> ... </>:REXML::Element>
|
Loading…
Add table
Add a link
Reference in a new issue