From f384ae9b39f5551aa9e6056ef26308c96a959897 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 20 Sep 2023 09:49:48 -0700 Subject: [PATCH] chore: fix link feed output --- .eleventy.js | 1 - config/feedFilters.js | 5 ++++- src/_data/books.js | 2 +- src/_includes/partials/feeds/rss.liquid | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 87a9ea9d..dd18d7d2 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -65,7 +65,6 @@ module.exports = function (eleventyConfig) { excerpt_separator: '', }) - // md instance const md = markdownIt({ html: true, linkify: true }) // enable us to iterate over all the tags, excluding posts and all diff --git a/config/feedFilters.js b/config/feedFilters.js index a412632a..314e3ac1 100644 --- a/config/feedFilters.js +++ b/config/feedFilters.js @@ -1,8 +1,11 @@ +const markdownIt = require('markdown-it') + const { URL } = require('url') const BASE_URL = 'https://coryd.dev' module.exports = { normalizeEntries: (entries) => { + const md = markdownIt({ html: true, linkify: true }) const posts = [] entries.forEach((entry) => { const dateKey = Object.keys(entry).find((key) => key.includes('date')) @@ -10,8 +13,8 @@ module.exports = { let excerpt = '' // set the entry excerpt - if (entry.data?.post_excerpt) excerpt = entry.data.post_excerpt 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 (entry && !entry.data?.link) { diff --git a/src/_data/books.js b/src/_data/books.js index aec0da5a..24a1a2f0 100644 --- a/src/_data/books.js +++ b/src/_data/books.js @@ -23,7 +23,7 @@ module.exports = async function () { title: book['title'], url: book['link'], isbn: book['isbn'], - description: book['book_description'], + description: book['content'], dateAdded: book['user_date_added'], type: 'book', }) diff --git a/src/_includes/partials/feeds/rss.liquid b/src/_includes/partials/feeds/rss.liquid index b902afc6..17be393b 100644 --- a/src/_includes/partials/feeds/rss.liquid +++ b/src/_includes/partials/feeds/rss.liquid @@ -15,11 +15,11 @@ {% for entry in entries limit: 20 -%} - {{ entry.title | escape }} + {{ entry.title }} {{ entry.url | stripUtm | encodeAmp }} {{ entry.date | stringToDate | dateToRfc822 }} {{ entry.url | stripUtm | encodeAmp }} - {{ entry.excerpt | markdown | escape }} + {{ entry.excerpt | escape }} {%- endfor %}