fix: whitespace

This commit is contained in:
Cory Dransfeldt 2024-06-10 11:55:52 -07:00
parent 2d1d9dd9dd
commit 8ceab63180
No known key found for this signature in database
2 changed files with 14 additions and 15 deletions

View file

@ -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
},

View file

@ -16,12 +16,13 @@
</image>
{% for entry in entries limit: 20 -%}
{% assign rating = entry.rating %}
{%- capture entryTitle -%}
{{ entry.title | escape }}
{%- if entry.authors -%}&nbsp;via {{ entry.authors.name }}{%- endif -%}
{%- if rating -%}&nbsp;({{ rating }}){%- endif -%}
{%- endcapture -%}
<item>
<title>
{{ entry.title | escape }}
{% if entry.authors %} via {{ entry.authors.name }}{% endif %}
{% if rating %} ({{ rating }}){% endif %}
</title>
<title>{{ entryTitle }}</title>
<link>{{ entry.url | encodeAmp }}</link>
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
<guid>{{ entry.url | encodeAmp }}</guid>