aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-06-09 11:46:12 +0100
committerGitHub <[email protected]>2020-06-09 11:46:12 +0100
commit1c28b39da6da3c77f6ddc5e11f995f1765601d2c (patch)
treee00e08185378dcf8b0335b4923c853723f603955
parent43032d7952c9dafce3ba8590db928cfd7edf5519 (diff)
parenta2e40087bfd772c3bed8a07d4947968c1c820500 (diff)
Merge pull request #1 from pcr910303/master
Fix broken rss feed
-rw-r--r--rss.esh2
1 files changed, 1 insertions, 1 deletions
diff --git a/rss.esh b/rss.esh
index 324642f..39e8d99 100644
--- a/rss.esh
+++ b/rss.esh
@@ -14,7 +14,7 @@
14 <% for f in `ls -t ./posts`; do 14 <% for f in `ls -t ./posts`; do
15 file="./posts/"$f 15 file="./posts/"$f
16 post_date=$(date -u -r "$file" "+%a, %d %b %Y %H:%M:00 %z") 16 post_date=$(date -u -r "$file" "+%a, %d %b %Y %H:%M:00 %z")
17 html=$(pandoc -t html "$file") 17 html=$(pandoc -t html "$file" | sed -e "s/&/\&amp;/g" -e "s/</\&lt;/g" -e "s/>/\&gt;/g")
18 id="${file##*/}" 18 id="${file##*/}"
19 id="${id%.*}" 19 id="${id%.*}"
20 post_title=$(echo "$id" | sed -E -e "s/\..+$//g" -e "s/_(.)/ \u\1/g" -e "s/^(.)/\u\1/g") 20 post_title=$(echo "$id" | sed -E -e "s/\..+$//g" -e "s/_(.)/ \u\1/g" -e "s/^(.)/\u\1/g")