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

0001 . tests/functions.sh
0002 
0003 title "markdown 1.0 compatibility"
0004 
0005 rc=0
0006 MARKDOWN_FLAGS=
0007 
0008 LINKY='[this] is a test
0009 
0010 [this]: /this'
0011 
0012 try 'implicit reference links' "$LINKY" '<p><a href="/this">this</a> is a test</p>'
0013 try -f1.0 'implicit reference links (-f1.0)' "$LINKY" '<p>[this] is a test</p>'
0014 
0015 WSP=' '
0016 WHITESPACE="
0017     white space$WSP
0018     and more"
0019 
0020 try 'trailing whitespace' "$WHITESPACE" '<pre><code>white space ''
0021 and more
0022 </code></pre>'
0023 
0024 try -f1.0 'trailing whitespace (-f1.0)' "$WHITESPACE" '<pre><code>white space''
0025 and more
0026 </code></pre>'
0027 
0028 summary $0
0029 exit $rc