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,10 +105,8 @@ 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,

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 %}
<item> {%- capture entryTitle -%}
<title>
{{ entry.title | escape }} {{ entry.title | escape }}
{% if entry.authors %} via {{ entry.authors.name }}{% endif %} {%- if entry.authors -%}&nbsp;via {{ entry.authors.name }}{%- endif -%}
{% if rating %} ({{ rating }}){% endif %} {%- if rating -%}&nbsp;({{ rating }}){%- endif -%}
</title> {%- endcapture -%}
<item>
<title>{{ entryTitle }}</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>