diff options
-rwxr-xr-x | bin/rssg | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,10 +24,13 @@ cat <<-EOF > "${rss_out_file}" EOF for file in $(__list_files_date "${rss_dir}"); do + __get_value "${file}" "draft" >/dev/null && continue + title=$(__get_value_title "${file}") date=$(__get_value_date_publication "${file}") link="${website_link}/$(__get_final_filename "${file}")" guid="$(echo "${link}" | "${__sha256}" | cut -d ' ' -f 1)" + description=$(__generate_rss_body "${file}") cat <<-EOF >> "${rss_out_file}" <item> <title>${title}</title> |