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

0001 . tests/functions.sh
0002 
0003 title "xml output with MKD_CDATA"
0004 
0005 rc=0
0006 MARKDOWN_FLAGS=
0007 
0008 try -fcdata 'xml output from markdown()' 'hello,sailor' '<p>hello,sailor</p>'
0009 try -fcdata 'from mkd_generateline()' -t'"hello,sailor"' '“hello,sailor”'
0010 try -fnocdata 'html output from markdown()' '"hello,sailor"' '<p>&ldquo;hello,sailor&rdquo;</p>'
0011 try -fnocdata '... from mkd_generateline()' -t'"hello,sailor"' '&ldquo;hello,sailor&rdquo;'
0012 
0013 try -fcdata 'xml output with multibyte utf-8' \
0014     'tecnología y servicios más confiables' \
0015     '&lt;p&gt;tecnología y servicios más confiables&lt;/p&gt;'
0016 
0017 summary $0
0018 exit $rc