Add image to rss feed

This commit is contained in:
Ryan Freeman 2023-08-07 15:06:47 +01:00
parent a41a318841
commit 7d9820af01

View File

@ -33,12 +33,14 @@ export async function GET(req: NextRequest) {
let _article = $('article').first() let _article = $('article').first()
let title = _article.find('h1').first().text() let title = _article.find('h1').first().text()
let date = _article.find('time').first().attr('datetime') ?? new Date() let date = _article.find('time').first().attr('datetime') ?? new Date()
let image = _article.find('image').first().html() ?? ""
let content = _article.find('.prose').first().html() ?? "" let content = _article.find('.prose').first().html() ?? ""
feed.addItem({ feed.addItem({
title, title,
id: url, id: url,
link: url, link: url,
image,
content, content,
author: [author], author: [author],
contributor: [author], contributor: [author],