We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb82a9a commit 71f85e3Copy full SHA for 71f85e3
lib/rss.tsx
@@ -48,7 +48,7 @@ function minifyHTMLCode(htmlString: string): string {
48
export const generateRSSFeed = async () => {
49
const feed = new Feed({
50
title: Config.SiteTitle,
51
- description: Config.Sentence,
+ description: "feedId:68173131511981056+userId:69616630442815488",
52
id: Config.SiteDomain,
53
link: WebsiteURL,
54
image: Config.PageCovers.websiteCoverURL,
@@ -80,7 +80,7 @@ export const generateRSSFeed = async () => {
80
title: post.frontMatter.title,
81
id: post.id,
82
link: `https://${Config.SiteDomain}/blog/${post.id}`,
83
- description: "feedId:68173131511981056+userId:69616630442815488",
+ description: post.frontMatter.summary ?? undefined,
84
content: htmlContent,
85
author: [
86
{
0 commit comments