From 02c49e983d478fad99db8658180828fea0ab242e Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 13 May 2021 19:45:16 +0100 Subject: fix encodings in links --- modules/html.source.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/html.source.sh') diff --git a/modules/html.source.sh b/modules/html.source.sh index 7d337b02..3eb2ee4e 100644 --- a/modules/html.source.sh +++ b/modules/html.source.sh @@ -53,7 +53,7 @@ html::fromgmi () { while IFS='' read -r line; do if [ $is_list -eq 1 ]; then if [[ "$line" == '* '* ]]; then - echo "
  • ${line/\* /}
  • " + echo "
  • $(html::special "${line/\* /}")
  • " else is_list=0 echo "" -- cgit v1.2.3