We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae3cf6 commit bc9957dCopy full SHA for bc9957d
lib/routes/sspai/index.ts
@@ -23,7 +23,7 @@ export const route: Route = {
23
},
24
],
25
name: '首页',
26
- maintainers: ['HenryQW'],
+ maintainers: ['HenryQW', 'cscnk52'],
27
handler,
28
url: 'sspai.com/index',
29
};
@@ -49,6 +49,10 @@ async function handler() {
49
}
50
description += articleData.body;
51
52
+ if (articleData.body_extends) {
53
+ description += articleData.body_extends.map((bodyExtendsItem) => `<h2>${bodyExtendsItem.title}</h2>${bodyExtendsItem.body}`).join('');
54
+ }
55
+
56
return {
57
title: item.title.trim(),
58
description,
0 commit comments