mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 18:18:06 +08:00
26 lines
815 B
JavaScript
26 lines
815 B
JavaScript
module.exports = {
|
|
'cls.cn': {
|
|
_name: '财联社',
|
|
'.': [
|
|
{
|
|
title: '电报',
|
|
docs: 'https://docs.rsshub.app/routes/finance#cai-lian-she',
|
|
source: ['/telegraph', '/'],
|
|
target: '/cls/telegraph',
|
|
},
|
|
{
|
|
title: '深度',
|
|
docs: 'https://docs.rsshub.app/routes/finance#cai-lian-she',
|
|
source: ['/depth', '/'],
|
|
target: (_, url) => `/cls/depth/${new URL(url).searchParams.get('id')}`,
|
|
},
|
|
{
|
|
title: '热门文章排行榜',
|
|
docs: 'https://docs.rsshub.app/routes/finance#cai-lian-she',
|
|
source: ['/'],
|
|
target: '/cls/hot',
|
|
},
|
|
],
|
|
},
|
|
};
|