Skip to content

Commit

Permalink
not title-casing rss titles until it can be done posix
Browse files Browse the repository at this point in the history
  • Loading branch information
jamestomasino committed Apr 14, 2018
1 parent 2bc0894 commit 57eb27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion burrow
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ make_rss () {
for f in $search_list; do
filename="$(printf "%s" "$f" | sed "s|${config_dir_gopher}${config_dir_phlog}/||")"
date="$(printf "%s" "$filename" | sed 's|^\./||' | awk 'BEGIN { FS="-" } { print $1; }')"
title="$(printf "%s" "$filename" | awk 'BEGIN { FS="-" } { $1=""; print $0; }' | sed "s|/gophermap||" | sed 's/^\ //' | sed 's/.*/\L&/; s/[a-z]*/\u&/g' )"
title="$(printf "%s" "$filename" | awk 'BEGIN { FS="-" } { $1=""; print $0; }' | sed "s|/gophermap||" | sed 's/^\ //' )"

{
printf "<item>\\n"
Expand Down

0 comments on commit 57eb27f

Please sign in to comment.