mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* feat(route): 增加登链社区 * fix(route): 修复路由找不到的问题 * fix(route): 修复eslint问题 * fix(route): 修复deepscan报错 * Update docs/programming.md * Update lib/v2/learnblockchain/posts.js * fix(route): 修复错误日期 ---------
20 lines
655 B
JavaScript
20 lines
655 B
JavaScript
module.exports = {
|
|
'learnblockchain.cn': {
|
|
_name: '登链社区',
|
|
'.': [{
|
|
title: '分类文章',
|
|
docs: 'https://docs.rsshub.app/programming.html#deng-lian-she-qu-wen-zhang',
|
|
source: '/categories/:cid/:sort?',
|
|
target: (params) => `/learnblockchain/posts/${params.cid}/${params.sort}`,
|
|
},
|
|
{
|
|
title: '全部文章',
|
|
docs: 'https://docs.rsshub.app/programming.html#deng-lian-she-qu-wen-zhang',
|
|
source: '*',
|
|
target: () => '/learnblockchain/posts/all/',
|
|
}
|
|
|
|
],
|
|
},
|
|
};
|