fix: feed links

This commit is contained in:
Cory Dransfeldt 2024-02-19 09:46:57 -08:00
parent e4b397026f
commit bb6f9a3ec2
No known key found for this signature in database
5 changed files with 33 additions and 16 deletions

View file

@ -109,7 +109,6 @@ export default async function (eleventyConfig) {
eleventyConfig.addLiquidFilter(filterName, filters[filterName]) eleventyConfig.addLiquidFilter(filterName, filters[filterName])
}) })
eleventyConfig.addLiquidFilter('dateToRfc822', pluginRss.dateToRfc822) eleventyConfig.addLiquidFilter('dateToRfc822', pluginRss.dateToRfc822)
eleventyConfig.addLiquidFilter('absoluteUrl', pluginRss.absoluteUrl)
eleventyConfig.addFilter('slugify', slugifyString) eleventyConfig.addFilter('slugify', slugifyString)
// shortcodes // shortcodes

View file

@ -1,6 +1,10 @@
import { DateTime } from 'luxon' import { DateTime } from 'luxon'
import markdownIt from 'markdown-it' import markdownIt from 'markdown-it'
import { URL } from 'url' import { URL } from 'url'
import { createRequire } from 'module'
const require = createRequire(import.meta.url)
const metaData = require('../../src/_data/json/meta.json')
const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi const utmPattern = /[?&](utm_[^&=]+=[^&#]*)/gi
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
@ -90,6 +94,13 @@ export default {
if (!url || !posts) return null; if (!url || !posts) return null;
return posts[url]?.toots?.[0] || null; return posts[url]?.toots?.[0] || null;
}, },
absoluteUrl: (url, base) => {
if (!base) base = metaData.url
try {
return (new URL(url, base)).toString()
} catch(e) {}
return url;
},
// feeds // feeds
normalizeEntries: (entries) => { normalizeEntries: (entries) => {

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "6.0.3", "version": "6.0.4",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module", "type": "module",
"scripts": { "scripts": {

14
src/_data/json/meta.json Normal file
View file

@ -0,0 +1,14 @@
{
"siteName": "Cory Dransfeldt",
"siteDescription": "I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.",
"author": "Cory Dransfeldt",
"email": "coryd@hey.com",
"url": "https://coryd.dev",
"themeColor": "#3b82f6",
"siteType": "Person",
"locale": "en_US",
"lang": "en",
"meta_data": {
"opengraph_default": "https://coryd.dev/assets/img/logo.webp"
}
}

View file

@ -1,15 +1,8 @@
export default { import { createRequire } from 'module'
siteName: 'Cory Dransfeldt',
siteDescription: const require = createRequire(import.meta.url)
"I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.", const metaData = require('./json/meta.json')
author: 'Cory Dransfeldt',
email: 'coryd@hey.com', export default async function () {
url: 'https://coryd.dev', return metaData
themeColor: '#3b82f6',
siteType: 'Person',
locale: 'en_US',
lang: 'en',
meta_data: {
opengraph_default: 'https://coryd.dev/assets/img/logo.webp',
},
} }