summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/atomfeed.source.sh2
-rw-r--r--lib/html.source.sh3
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/atomfeed.source.sh b/lib/atomfeed.source.sh
index cc810d1..079c2fb 100644
--- a/lib/atomfeed.source.sh
+++ b/lib/atomfeed.source.sh
@@ -74,7 +74,7 @@ ATOMHEADER
while read -r gmi_file; do
atomfeed::_entry "$gemfeed_dir" "$gmi_file" "$atom_file.tmp"
- done < <(gemfeed::get_posts | head -n $ATOM_MAX_ENTRIES)
+ done < <(gemfeed::get_posts | head -n "$ATOM_MAX_ENTRIES")
cat <<ATOMFOOTER >> "$atom_file.tmp"
</feed>
diff --git a/lib/html.source.sh b/lib/html.source.sh
index 7056f24..8f057a0 100644
--- a/lib/html.source.sh
+++ b/lib/html.source.sh
@@ -4,6 +4,7 @@ html::encode () {
s|\&|\&amp;|g;
s|<|\&lt;|g;
s|>|\&gt;|g;
+ s|'\''|\&#39;|g;
' <<< "$@"
}
@@ -70,7 +71,7 @@ html::make_link () {
descr="$link"
fi
- echo "<a class='textlink' href='$link'>$descr</a><br />"
+ echo "<a class='textlink' href='$($SED 's/'\''/\&#39;/g' <<< "$link")'>$descr</a><br />"
}
html::process_inline () {