chore: fix link feed output
This commit is contained in:
parent
1bb9d1782e
commit
f384ae9b39
4 changed files with 7 additions and 5 deletions
|
@ -65,7 +65,6 @@ module.exports = function (eleventyConfig) {
|
||||||
excerpt_separator: '<!-- excerpt -->',
|
excerpt_separator: '<!-- excerpt -->',
|
||||||
})
|
})
|
||||||
|
|
||||||
// md instance
|
|
||||||
const md = markdownIt({ html: true, linkify: true })
|
const md = markdownIt({ html: true, linkify: true })
|
||||||
|
|
||||||
// enable us to iterate over all the tags, excluding posts and all
|
// enable us to iterate over all the tags, excluding posts and all
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
|
const markdownIt = require('markdown-it')
|
||||||
|
|
||||||
const { URL } = require('url')
|
const { URL } = require('url')
|
||||||
const BASE_URL = 'https://coryd.dev'
|
const BASE_URL = 'https://coryd.dev'
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
normalizeEntries: (entries) => {
|
normalizeEntries: (entries) => {
|
||||||
|
const md = markdownIt({ html: true, linkify: true })
|
||||||
const posts = []
|
const posts = []
|
||||||
entries.forEach((entry) => {
|
entries.forEach((entry) => {
|
||||||
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
|
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
|
||||||
|
@ -10,8 +13,8 @@ module.exports = {
|
||||||
let excerpt = ''
|
let excerpt = ''
|
||||||
|
|
||||||
// set the entry excerpt
|
// set the entry excerpt
|
||||||
if (entry.data?.post_excerpt) excerpt = entry.data.post_excerpt
|
|
||||||
if (entry.description) excerpt = entry.description
|
if (entry.description) excerpt = entry.description
|
||||||
|
if (entry.data?.post_excerpt) excerpt = md.render(entry.data.post_excerpt)
|
||||||
|
|
||||||
// if there's a valid entry return a normalized object
|
// if there's a valid entry return a normalized object
|
||||||
if (entry && !entry.data?.link) {
|
if (entry && !entry.data?.link) {
|
||||||
|
|
|
@ -23,7 +23,7 @@ module.exports = async function () {
|
||||||
title: book['title'],
|
title: book['title'],
|
||||||
url: book['link'],
|
url: book['link'],
|
||||||
isbn: book['isbn'],
|
isbn: book['isbn'],
|
||||||
description: book['book_description'],
|
description: book['content'],
|
||||||
dateAdded: book['user_date_added'],
|
dateAdded: book['user_date_added'],
|
||||||
type: 'book',
|
type: 'book',
|
||||||
})
|
})
|
||||||
|
|
|
@ -15,11 +15,11 @@
|
||||||
</image>
|
</image>
|
||||||
{% for entry in entries limit: 20 -%}
|
{% for entry in entries limit: 20 -%}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ entry.title | escape }}</title>
|
<title>{{ entry.title }}</title>
|
||||||
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
<link>{{ entry.url | stripUtm | encodeAmp }}</link>
|
||||||
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
|
<pubDate>{{ entry.date | stringToDate | dateToRfc822 }}</pubDate>
|
||||||
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
<guid>{{ entry.url | stripUtm | encodeAmp }}</guid>
|
||||||
<description>{{ entry.excerpt | markdown | escape }}</description>
|
<description>{{ entry.excerpt | escape }}</description>
|
||||||
</item>
|
</item>
|
||||||
{%- endfor %}
|
{%- endfor %}
|
||||||
</channel>
|
</channel>
|
||||||
|
|
Reference in a new issue