summaryrefslogtreecommitdiff
path: root/lib/html.source.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-11-23 20:45:21 +0200
committerPaul Buetow <paul@buetow.org>2022-11-23 20:45:21 +0200
commit5bbae36a59881e34fe111c0ee9f44f3907158301 (patch)
tree85d2b8da1f33c327f57def0ba31a178872050a3d /lib/html.source.sh
parent6682bd7c4c45283acdb161765dac58ec034899bd (diff)
parent4c4f379ea616eeec320ec27776c739fadf70d2da (diff)
merge
Diffstat (limited to 'lib/html.source.sh')
-rw-r--r--lib/html.source.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/html.source.sh b/lib/html.source.sh
index c303d2e..03bbb45 100644
--- a/lib/html.source.sh
+++ b/lib/html.source.sh
@@ -98,7 +98,8 @@ html::fromgmi () {
while IFS='' read -r line; do
if [[ "$is_list" == yes ]]; then
if [[ "$line" == '* '* ]]; then
- echo "<li>$(html::encode "${line/\* /}")</li>"
+ echo "<li>$(html::encode "${line/\* /}")</li>" |
+ html::process_inline
else
is_list=no
echo "</ul>"