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.
 
 
 
 
 
 

29 lines
834 B

. tests/functions.sh
title "The snakepit of Markdown.pl compatibility"
rc=0
MARKDOWN_FLAGS=
try '[](single quote) text (quote)' \
"[foo](http://Poe's law) will make this fail ('no, it won't!') here."\
'<p><a href="http://Poe" title="s law) will make this fail ('"'no, it won't!"'">foo</a> here.</p>'
try '-f1.0' '[](unclosed <url) (MKD_1_COMPAT)' '[foo](<http://no trailing gt)' \
'<p><a href="http://no%20trailing%20gt">foo</a></p>'
try '[](unclosed <url)' '[foo](<http://no trailing gt)' \
'<p>[foo](&lt;http://no trailing gt)</p>'
try '<unfinished <tags> (1)' \
'<foo [bar](foo) <s>hi</s>' \
'<p><foo [bar](foo) <s>hi</s></p>'
try '<unfinished &<tags> (2)' \
'<foo [bar](foo) &<s>hi</s>' \
'<p><foo [bar](foo) &<s>hi</s></p>'
try 'paragraph <br/> oddity' 'EOF ' '<p>EOF</p>'
summary $0
exit $rc