fix: whitespace
This commit is contained in:
parent
2d1d9dd9dd
commit
8ceab63180
2 changed files with 14 additions and 15 deletions
|
@ -105,10 +105,8 @@ export default {
|
|||
disallowedTagsMode: 'completelyDiscard'
|
||||
})
|
||||
|
||||
|
||||
// if there's a valid entry return a normalized object
|
||||
if (entry)
|
||||
posts.push({
|
||||
if (entry) posts.push({
|
||||
title: title.trim(),
|
||||
url,
|
||||
content: entry.description,
|
||||
|
|
|
@ -16,12 +16,13 @@
|
|||
</image>
|
||||
{% for entry in entries limit: 20 -%}
|
||||
{% assign rating = entry.rating %}
|
||||
<item>
|
||||
<title>
|
||||
{%- capture entryTitle -%}
|
||||
{{ entry.title | escape }}
|
||||
{% if entry.authors %} via {{ entry.authors.name }}{% endif %}
|
||||
{% if rating %} ({{ rating }}){% endif %}
|
||||
</title>
|
||||
{%- if entry.authors -%} via {{ entry.authors.name }}{%- endif -%}
|
||||
{%- if rating -%} ({{ rating }}){%- endif -%}
|
||||
{%- endcapture -%}
|
||||
<item>
|
||||
<title>{{ entryTitle }}</title>
|
||||
<link>{{ entry.url | encodeAmp }}</link>
|
||||
<pubDate>{{ entry.date | stringToRFC822Date }}</pubDate>
|
||||
<guid>{{ entry.url | encodeAmp }}</guid>
|
||||
|
|
Reference in a new issue