style: auto format

This commit is contained in:
github-actions[bot] 2024-02-05 11:48:42 +00:00
parent acfcd0cafc
commit 52bcabde30
1 changed files with 8 additions and 2 deletions

View File

@ -27,7 +27,10 @@ module.exports = async (ctx) => {
const { data } = await got(item.link);
const $ = cheerio.load(data);
item.title = $('head title').text().replace(/_财新周刊频道_财新网$/, '').trim();
item.title = $('head title')
.text()
.replace(/_财新周刊频道_财新网$/, '')
.trim();
item.pubDate = parseDate(
$('.source')
.text()
@ -47,7 +50,10 @@ module.exports = async (ctx) => {
);
ctx.state.data = {
title: $('head title').text().replace(/_财新周刊频道_财新网$/, '').trim(),
title: $('head title')
.text()
.replace(/_财新周刊频道_财新网$/, '')
.trim(),
link,
item: items,
};