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

0001 . tests/functions.sh
0002 
0003 title "paragraph flow"
0004 
0005 rc=0
0006 MARKDOWN_FLAGS=
0007 
0008 try 'header followed by paragraph' \
0009     '###Hello, sailor###
0010 And how are you today?' \
0011     '<h3>Hello, sailor</h3>
0012 
0013 <p>And how are you today?</p>'
0014 
0015 try 'two lists punctuated with a HR' \
0016     '* A
0017 * * *
0018 * B
0019 * C' \
0020     '<ul>
0021 <li>A</li>
0022 </ul>
0023 
0024 
0025 <hr />
0026 
0027 <ul>
0028 <li>B</li>
0029 <li>C</li>
0030 </ul>'
0031 
0032 summary $0
0033 exit $rc