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' disallowedTagsMode: 'completelyDiscard'
}) })
// if there's a valid entry return a normalized object // if there's a valid entry return a normalized object
if (entry) if (entry) posts.push({
posts.push({ title: title.trim(),
title: title.trim(), url,
url, content: entry.description,
content: entry.description, date,
date, excerpt,
excerpt, rating: entry?.rating || ''
rating: entry?.rating || '' })
})
}) })
return posts return posts
}, },

View file

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