Github changed their renderer so graphical symbols will stop rendering
altogether if they exceed some number. So we have to go back to plain
text.
if [[ $MARKDOWN_REPORT == 1 ]] {
echo '## Irssi Scripts Test Report'
- failmark=:x:
- passmark=:white_check_mark:
- skipmark=:construction:
+ # github started to block excess use of emojis
+ #failmark=:x:
+ #passmark=:white_check_mark:
+ #skipmark=:construction:
+ failmark=✘
+ passmark=✔
+ skipmark=☡
T="|"
} \
else {