Files
RSSHub/lib/v2/acfun/radar.js
2023-08-15 03:12:12 +01:00

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', '')}`,
},
],
},
};