diff --git a/config/filters/index.js b/config/filters/index.js index 821adf71..2cff600b 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -105,17 +105,15 @@ export default { disallowedTagsMode: 'completelyDiscard' }) - // if there's a valid entry return a normalized object - if (entry) - posts.push({ - title: title.trim(), - url, - content: entry.description, - date, - excerpt, - rating: entry?.rating || '' - }) + if (entry) posts.push({ + title: title.trim(), + url, + content: entry.description, + date, + excerpt, + rating: entry?.rating || '' + }) }) return posts }, diff --git a/src/_includes/partials/feeds/rss.liquid b/src/_includes/partials/feeds/rss.liquid index c9db1763..0f6e1f4e 100644 --- a/src/_includes/partials/feeds/rss.liquid +++ b/src/_includes/partials/feeds/rss.liquid @@ -16,12 +16,13 @@ {% for entry in entries limit: 20 -%} {% assign rating = entry.rating %} + {%- capture entryTitle -%} + {{ entry.title | escape }} + {%- if entry.authors -%} via {{ entry.authors.name }}{%- endif -%} + {%- if rating -%} ({{ rating }}){%- endif -%} + {%- endcapture -%} - - {{ entry.title | escape }} - {% if entry.authors %} via {{ entry.authors.name }}{% endif %} - {% if rating %} ({{ rating }}){% endif %} - + {{ entryTitle }} {{ entry.url | encodeAmp }} {{ entry.date | stringToRFC822Date }} {{ entry.url | encodeAmp }}