discount/tests/reddit.t
2025-12-13 00:40:57 +04:00

28 lines
516 B
Raku

. tests/functions.sh
title "bugs & misfeatures found during the Reddit rollout"
rc=0
MARKDOWN_FLAGS=
try 'smiley faces?' '[8-9] <]:-( x ---> [4]' \
'<p>[8-9] &lt;]:-( x &mdash;> [4]</p>'
try 'really long ETX headers' \
'#####################################################hi' \
'<h6>hi</h6>'
try 'unescaping " " inside `code`' \
'`foo
bar`' \
'<p><code>foo
bar</code></p>'
try 'unescaping " " inside []()' \
'[foo](bar
bar)' \
'<p><a href="bar %0Abar">foo</a></p>'
summary $0
exit $rc