diff --git a/lib/routes/cnbeta/utils.js b/lib/routes/cnbeta/utils.js index 39c1321d65..3b30efd42f 100644 --- a/lib/routes/cnbeta/utils.js +++ b/lib/routes/cnbeta/utils.js @@ -30,9 +30,12 @@ async function load(link) { }); // 提取内容 - const description = $('.article-content').html(); + const description = $('.article-summary p').html() + '
' + $('.article-content').html(); - return { description, pubDate }; + // 稿源 + const author = $('.source a span').text(); + + return { description, pubDate, author }; } const ProcessFeed = async (list, caches) => {