Text::Markdown::Discount
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
515 B

. tests/functions.sh
title "crashes"
rc=0
MARKDOWN_FLAGS=
try 'zero-length input' '' ''
try 'hanging quote in list' \
' * > this should not die
no.' \
'<ul>
<li><blockquote><p>this should not die</p></blockquote></li>
</ul>
<p>no.</p>'
try 'dangling list item' ' - ' \
'<ul>
<li></li>
</ul>'
try -bHOHO 'empty []() with baseurl' '[]()' '<p><a href=""></a></p>'
try 'unclosed html block' '<table></table' '<p><table>&lt;/table</p>'
try 'unclosed style block' '<style>' '<p><style></p>'
summary $0
exit $rc