fix: json feed output
This commit is contained in:
parent
0675d3400c
commit
8f44ce9bdd
2 changed files with 3 additions and 7 deletions
|
@ -97,10 +97,5 @@ export default {
|
|||
|
||||
return `${allButLast} and ${last}`
|
||||
},
|
||||
formatVenue: (venue) => venue.split(',')[0].trim(),
|
||||
lastWatchedEpisode: (episodes) => {
|
||||
if (!episodes.length) return
|
||||
const sortedEpisodes = episodes.sort((a, b) => new Date(a.last_watched_at) - new Date(b.last_watched_at))
|
||||
return `S${sortedEpisodes[sortedEpisodes.length - 1]['season_number']}E${sortedEpisodes[sortedEpisodes.length - 1]['episode_number']}`
|
||||
}
|
||||
formatVenue: (venue) => venue.split(',')[0].trim()
|
||||
}
|
|
@ -16,7 +16,8 @@
|
|||
{
|
||||
"id": "{{ entry.feed.url | encodeAmp }}",
|
||||
"url": "{{ entry.feed.url | encodeAmp }}",
|
||||
"title": "{{ entry.feed.title }}",
|
||||
"title": "{{ entry.feed.title | escape }}",
|
||||
"content_text": "{{ entry.feed.description | markdown | strip_html | escape| normalize_whitespace | rstrip | truncatewords: 50, '...' }}",
|
||||
"date_published": "{{ entry.feed.date | stringToRFC3339 }}"
|
||||
}{%- if forloop.last == false -%},{%- endif -%}
|
||||
{%- endfor -%}
|
||||
|
|
Reference in a new issue