Warning, /education/cantor/thirdparty/discount-2.2.6-patched/tests/snakepit.t is written in an unsupported language. File is not indexed.

0001 . tests/functions.sh
0002 
0003 title "The snakepit of Markdown.pl compatibility"
0004 
0005 rc=0
0006 MARKDOWN_FLAGS=
0007 
0008 try '[](single quote) text (quote)' \
0009     "[foo](http://Poe's law) will make this fail ('no, it won't!') here."\
0010     '<p><a href="http://Poe" title="s law) will make this fail ('"'no, it won't!"'">foo</a> here.</p>'
0011 
0012 try '-f1.0' '[](unclosed <url) (MKD_1_COMPAT)' '[foo](<http://no trailing gt)' \
0013                         '<p><a href="http://no%20trailing%20gt">foo</a></p>'
0014 
0015 try '[](unclosed <url)' '[foo](<http://no trailing gt)' \
0016                         '<p>[foo](&lt;http://no trailing gt)</p>'
0017 
0018 try '<unfinished <tags> (1)' \
0019 '<foo [bar](foo)  <s>hi</s>' \
0020 '<p><foo [bar](foo)  <s>hi</s></p>'
0021     
0022 try '<unfinished &<tags> (2)' \
0023 '<foo [bar](foo)  &<s>hi</s>' \
0024 '<p><foo [bar](foo)  &<s>hi</s></p>'
0025 
0026 try 'paragraph <br/> oddity' 'EOF  ' '<p>EOF</p>'
0027     
0028 summary $0
0029 exit $rc