summaryrefslogtreecommitdiff
path: root/modules/html.source.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-05-13 19:45:16 +0100
committerPaul Buetow <paul@buetow.org>2021-05-13 19:45:16 +0100
commitb3277404518cf2ebc76e794ed619f8d2e87b8552 (patch)
tree6814274e084c0c8f39e78495207f87f7fd90bbb3 /modules/html.source.sh
parentda501de55d713652c7d4310582478781fbcb492d (diff)
fix encodings in links
Diffstat (limited to 'modules/html.source.sh')
-rw-r--r--modules/html.source.sh2
1 files changed, 1 insertions, 1 deletions
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 "<li>${line/\* /}</li>"
+ echo "<li>$(html::special "${line/\* /}")</li>"
else
is_list=0
echo "</ul>"