···11HI THERE
2233-Welcome to ${GRN}shlide${RST}. Here are a few bullet points:
33+Welcome to ${GRN}shlide${RST}. ${YLW}Here${RST} are a few bullet points:
4455- first point
66- second point
77 * sub point
88- * another sub point
88+ * ${RED}another${RST} sub point
+5-2
shlide
···2020}
21212222longest_line() {
2323- max=0 IFS=
2323+ max=0
2424+ local IFS=
2425 while read -r line; do
2525- if [ "${#line}" -gt "$max" ]; then max="${#line}"; fi
2626+ l=$(ansi_filter $(colorify "$line"))
2727+ echo "$l" >> log.txt
2828+ if [ "${#l}" -gt "$max" ]; then max="${#l}"; fi
2629 done < "$1"
2730 printf '%s\n' "$max"
2831}