| 123456789101112131415161718 |
- . tests/functions.sh
- title "xml output with MKD_CDATA"
- rc=0
- MARKDOWN_FLAGS=
- try -fcdata 'xml output from markdown()' 'hello,sailor' '<p>hello,sailor</p>'
- try -fcdata 'from mkd_generateline()' -t'"hello,sailor"' '&ldquo;hello,sailor&rdquo;'
- try -fnocdata 'html output from markdown()' '"hello,sailor"' '<p>“hello,sailor”</p>'
- try -fnocdata '... from mkd_generateline()' -t'"hello,sailor"' '“hello,sailor”'
- try -fcdata 'xml output with multibyte utf-8' \
- 'tecnología y servicios más confiables' \
- '<p>tecnología y servicios más confiables</p>'
- summary $0
- exit $rc
|