From b5d3e22f113df5fd728e89d1c515a532a49d3c0c Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 27 Sep 2023 08:34:06 -0700 Subject: [PATCH] chore: drop separate links feed --- .eleventy.js | 19 ------------------- config/feedFilters.js | 3 +-- src/feeds.md | 3 +-- src/feeds/links.liquid | 14 -------------- 4 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 src/feeds/links.liquid diff --git a/.eleventy.js b/.eleventy.js index dd18d7d2..65d99415 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -79,25 +79,6 @@ module.exports = function (eleventyConfig) { return Array.from(tagsSet).sort() }) - eleventyConfig.addCollection('links', (collection) => { - const links = [] - collection.getAll().forEach((item) => { - if (item.data.collections.posts) { - item.data.collections.posts.forEach((post) => { - const url = post.data.link - if (url?.includes('http') && !links.find((link) => link.title === post.data.title)) - links.push({ - url: post.data.link, - title: post.data.title, - date: post.data.date, - description: post.data.post_excerpt ? md.render(post.data.post_excerpt) : '', - }) - }) - } - }) - return links - }) - eleventyConfig.addCollection('tagMap', (collection) => { const tags = {} collection.getAll().forEach((item) => { diff --git a/config/feedFilters.js b/config/feedFilters.js index 314e3ac1..b4cb21e6 100644 --- a/config/feedFilters.js +++ b/config/feedFilters.js @@ -17,7 +17,7 @@ module.exports = { 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) { + if (entry) posts.push({ title: entry.data?.title || entry.title, url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(), @@ -25,7 +25,6 @@ module.exports = { date, excerpt, }) - } }) return posts }, diff --git a/src/feeds.md b/src/feeds.md index 1d41310b..fa033fa0 100644 --- a/src/feeds.md +++ b/src/feeds.md @@ -24,9 +24,8 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m {{ title }} -These are web feeds, also known as [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. Subscribe by copying the URL from the address bar into your newsreader. Visit [About Feeds](https://aboutfeeds.com/) to get started with newsreaders and subscribing. It's free. +These are web feeds, also known as [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. Subscribe by copying the URL from the address bar into your newsreader. Visit [About Feeds](https://aboutfeeds.com) to get started with newsreaders and subscribing. It's free. - Posts ([RSS](https://feedpress.me/coryd) • [JSON](https://feedpress.me/coryd.json)): posts from my site. -- Links ([RSS](https://feedpress.me/coryd-links) • [JSON](https://feedpress.me/coryd-links.json)): links I've shared. - Books ([RSS](https://feedpress.me/coryd-books.xml) • [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading. - Follow ([RSS](https://feedpress.me/coryd-follow) • [JSON](https://feedpress.me/coryd-follow.json)): my activity from around the web. diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid deleted file mode 100644 index 60c8a0ec..00000000 --- a/src/feeds/links.liquid +++ /dev/null @@ -1,14 +0,0 @@ ---- -layout: null -eleventyExcludeFromCollections: true -permalink: /feeds/links ---- -{%- assign links = collections.links | reverse -%} -{% render "partials/feeds/rss.liquid" - permalink:"/feeds/links" - title:"Links • Cory Dransfeldt" - description:"Links I've shared." - data:links - updated:links[0].date - site:site -%} \ No newline at end of file