mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* fix(route:aliyun/developer/group): 获取到的全是0 * Update lib/routes/aliyun/developer/group.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/routes/aliyun/developer/group.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * refactor: migrate to v2 * refactor: use cache.tryGet * fix: add radar * fix: article parsing
33 lines
1021 B
JavaScript
33 lines
1021 B
JavaScript
module.exports = {
|
|
'aliyun.com': {
|
|
_name: '阿里云',
|
|
developer: [
|
|
{
|
|
title: '开发者社区 - 主题',
|
|
docs: 'https://docs.rsshub.app/programming.html#a-li-yun',
|
|
source: ['/group/:type'],
|
|
target: '/aliyun/developer/group/:type',
|
|
},
|
|
],
|
|
help: [
|
|
{
|
|
title: '公告',
|
|
docs: 'https://docs.rsshub.app/programming.html#a-li-yun',
|
|
source: ['/noticelist/:type', '/'],
|
|
target: (params) => `/aliyun/notice${params.type ? '/' + params.type.replace('.html', '') : ''}`,
|
|
},
|
|
],
|
|
},
|
|
'taobao.org': {
|
|
_name: '阿里云',
|
|
mysql: [
|
|
{
|
|
title: '数据库内核月报',
|
|
docs: 'https://docs.rsshub.app/programming.html#a-li-yun',
|
|
source: ['/monthly', '/'],
|
|
target: '/aliyun/database_month',
|
|
},
|
|
],
|
|
},
|
|
};
|