diff --git a/lib/routes/facebook/page.js b/lib/routes/facebook/page.js
index cc2fef635..14e0a3926 100644
--- a/lib/routes/facebook/page.js
+++ b/lib/routes/facebook/page.js
@@ -21,7 +21,7 @@ module.exports = async (ctx) => {
const d = await getArticle('https://mbasic.facebook.com' + url);
return {
title: d.title,
- description: d.imgs.map((u) => `
`).join('\n') + d.content.replace(/\n/g, '
'),
+ description: d.imgs.map((u) => `
`).join('
') + '
' + d.content.replace(/\n/g, '
'),
link: d.url,
};
})