mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 14:07:54 +08:00
* feat(route): add 华人头条 * fix: add timezone * refactor: migrate to v2 Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
20 lines
646 B
JavaScript
20 lines
646 B
JavaScript
module.exports = {
|
|
'52hrtt.com': {
|
|
_name: '52hrtt 华人头条',
|
|
'.': [
|
|
{
|
|
title: '新闻',
|
|
docs: 'https://docs.rsshub.app/new-media.html#_52hrtt-hua-ren-tou-tiao',
|
|
source: '/',
|
|
target: (_params, url) => `/52hrtt/${new URL(url).searchParams.get('infoTypeId')}`,
|
|
},
|
|
{
|
|
title: '专题',
|
|
docs: 'https://docs.rsshub.app/new-media.html#_52hrtt-hua-ren-tou-tiao',
|
|
source: '/global/n/w/symposium/:id',
|
|
target: '/52hrtt/symposium/:id',
|
|
},
|
|
],
|
|
},
|
|
};
|