mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 01:28:08 +08:00
20 lines
695 B
JavaScript
20 lines
695 B
JavaScript
module.exports = {
|
|
'learnblockchain.cn': {
|
|
_name: '登链社区',
|
|
'.': [
|
|
{
|
|
title: '分类文章',
|
|
docs: 'https://docs.rsshub.app/routes/programming#deng-lian-she-qu-wen-zhang',
|
|
source: '/categories/:cid/:sort?',
|
|
target: (params) => `/learnblockchain/posts/${params.cid || 'all'}/${params.sort || 'featured'}`,
|
|
},
|
|
{
|
|
title: '全部文章',
|
|
docs: 'https://docs.rsshub.app/routes/programming#deng-lian-she-qu-wen-zhang',
|
|
source: '*',
|
|
target: () => '/learnblockchain/posts/all/',
|
|
},
|
|
],
|
|
},
|
|
};
|