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

0001 . tests/functions.sh
0002 
0003 title "strikethrough"
0004 
0005 rc=0
0006 MARKDOWN_FLAGS=
0007 
0008 try 'strikethrough' '~~deleted~~' '<p><del>deleted</del></p>'
0009 try -fnodel '... with -fnodel' '~~deleted~~' '<p>~~deleted~~</p>'
0010 try 'mismatched tildes' '~~~tick~~' '<p><del>~tick</del></p>'
0011 try 'mismatched tildes(2)' '~~tick~~~' '<p>~~tick~~~</p>'
0012 try 'single tildes' '~tick~' '<p>~tick~</p>'
0013 try 'tildes wrapped in spaces' '~~~ ~~~' '<p>~~~ ~~~</p>'
0014 
0015 summary $0
0016 exit $rc