summaryrefslogtreecommitdiff
path: root/website/src/pages/links
diff options
context:
space:
mode:
authorJoe Carstairs <jcarstairs@scottlogic.com>2024-06-05 17:03:04 +0100
committerJoe Carstairs <jcarstairs@scottlogic.com>2024-06-05 17:03:04 +0100
commita9c8d7772a4421eaee63a806fd947fb39743745e (patch)
treec708733a9d65d5ec4c25a88151545566575a58e5 /website/src/pages/links
parent81ef51422fe31c8de41b9d06942ce8b83346253e (diff)
RSS feeds have better links and render HTML in markdown content
Diffstat (limited to 'website/src/pages/links')
-rw-r--r--website/src/pages/links/rss.xml.ts12
1 files changed, 9 insertions, 3 deletions
diff --git a/website/src/pages/links/rss.xml.ts b/website/src/pages/links/rss.xml.ts
index 009588a..3f9e9a0 100644
--- a/website/src/pages/links/rss.xml.ts
+++ b/website/src/pages/links/rss.xml.ts
@@ -1,6 +1,12 @@
+import path from 'node:path';
import rss from '@astrojs/rss';
import type { APIContext } from 'astro';
import LINKS from '../../data/links.ts';
+import MarkdownIt from 'markdown-it';
+
+const mdParser = new MarkdownIt({
+ html: true
+});
export async function GET(context: APIContext) {
// `site` is guaranteed to exist because we define it in our Astro config
@@ -13,14 +19,14 @@ export async function GET(context: APIContext) {
<image>/images/headshot.webp</image>
<language>en-GB</language>
`,
- site,
+ site: path.join(site.toString(), 'links'),
trailingSlash: false,
items: LINKS.map((link) => ({
link: link.href,
title: link.title,
- content: link.description,
+ content: mdParser.render(link.description),
pubDate: new Date(link.isoDateAdded),
- description: link.description,
+ description: mdParser.render(link.description),
author: 'Joe Carstairs',
})),
})