about summary refs log tree commit diff stats
path: root/sfeed_html.sh
diff options
context:
space:
mode:
authorCase Duckworth2022-07-18 08:32:06 -0500
committerCase Duckworth2022-07-18 08:32:06 -0500
commit56ad06ed26d82e35718d91e03ba20e8ea8b9f0d9 (patch)
treeae2c1abf21d6cd49d8924f16dd4e4d75041ebe31 /sfeed_html.sh
parentComment out archiving (diff)
downloadsfeed-56ad06ed26d82e35718d91e03ba20e8ea8b9f0d9.tar.gz
sfeed-56ad06ed26d82e35718d91e03ba20e8ea8b9f0d9.zip
Don't html_escape the title
It should already be HTML escaped??  I think.
Diffstat (limited to 'sfeed_html.sh')
-rwxr-xr-xsfeed_html.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed_html.sh b/sfeed_html.sh index 910323d..d241228 100755 --- a/sfeed_html.sh +++ b/sfeed_html.sh
@@ -92,7 +92,7 @@ html_feed() { # html_feed FEED(file) => HTML
92 } 92 }
93 { 93 {
94 timestamp=$1; 94 timestamp=$1;
95 title=html_escape($2); 95 title=$2;
96 link=$3; 96 link=$3;
97 content=unescape($4); 97 content=unescape($4);
98 content_type=$5; 98 content_type=$5;