fix: whitespace
This commit is contained in:
parent
2d1d9dd9dd
commit
8ceab63180
2 changed files with 14 additions and 15 deletions
|
@ -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
|
||||||
},
|
},
|
||||||
|
|
|
@ -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 -%} via {{ entry.authors.name }}{%- endif -%}
|
||||||
|
{%- if rating -%} ({{ 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>
|
||||||
|
|
Reference in a new issue