chore: fix link feed output
This commit is contained in:
parent
5e24c70091
commit
1bb9d1782e
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ module.exports = function (eleventyConfig) {
|
|||
url: post.data.link,
|
||||
title: post.data.title,
|
||||
date: post.data.date,
|
||||
description: post.data.post_excerpt,
|
||||
description: post.data.post_excerpt ? md.render(post.data.post_excerpt) : '',
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
Reference in a new issue