mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 07:40:26 +08:00
20 lines
706 B
JavaScript
20 lines
706 B
JavaScript
module.exports = {
|
|
'gzh360.com': {
|
|
_name: '公众号360',
|
|
web: [
|
|
{
|
|
title: '公众号',
|
|
docs: 'https://docs.rsshub.app/new-media.html#gong-zhong-hao-360',
|
|
source: ['/gzh_articles', '/gzh', '/'],
|
|
target: (params, url) => `/gzh360/gzh/${new URL(url).searchParams.get('id') ?? ''}`,
|
|
},
|
|
{
|
|
title: '分类',
|
|
docs: 'https://docs.rsshub.app/new-media.html#gong-zhong-hao-360',
|
|
source: ['/category', '/'],
|
|
target: (params, url) => `/gzh360/category/${new URL(url).searchParams.get('id') ?? ''}`,
|
|
},
|
|
],
|
|
},
|
|
};
|