diff options
| author | Paul Buetow <paul@buetow.org> | 2021-05-13 19:45:16 +0100 |
|---|---|---|
| committer | Paul Buetow <git@mx.buetow.org> | 2021-05-21 05:11:05 +0100 |
| commit | 02c49e983d478fad99db8658180828fea0ab242e (patch) | |
| tree | 97ee6a98aaa79da42481d1db19954facc919cffd /modules | |
| parent | 2a062dfa2c6ea58c3eb45ea094bcf71ffc246992 (diff) | |
fix encodings in links
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/html.source.sh | 2 |
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>" |
