mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-03 10:38:03 +08:00
26 lines
871 B
JavaScript
26 lines
871 B
JavaScript
module.exports = {
|
|
'acfun.cn': {
|
|
_name: 'AcFun',
|
|
www: [
|
|
{
|
|
title: '番剧',
|
|
docs: 'https://docs.rsshub.app/routes/anime#acfun-fan-ju',
|
|
source: '/bangumi/:id',
|
|
target: (params) => `/acfun/bangumi/${params.id.replace('aa', '')}`,
|
|
},
|
|
{
|
|
title: '用户投稿',
|
|
docs: 'https://docs.rsshub.app/routes/anime#acfun-yong-hu-tou-gao',
|
|
source: '/u/:id',
|
|
target: '/acfun/user/video/:id',
|
|
},
|
|
{
|
|
title: '文章',
|
|
docs: 'https://docs.rsshub.app/routes/anime#acfun',
|
|
source: '/v/:categoryId/index.htm',
|
|
target: (params) => `/acfun/article/${params.categoryId.replace('list', '')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|