mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
20 lines
727 B
JavaScript
20 lines
727 B
JavaScript
module.exports = {
|
|
'secrss.com': {
|
|
_name: '安全内参',
|
|
'.': [
|
|
{
|
|
title: '分类',
|
|
docs: 'https://docs.rsshub.app/routes/programming#an-quan-nei-can',
|
|
source: ['/articles', '/'],
|
|
target: (_, url) => `/secrss/category${new URL(url).searchParams.has('tag') ? `/${new URL(url).searchParams.get('tag')}` : ''}`,
|
|
},
|
|
{
|
|
title: '作者',
|
|
docs: 'https://docs.rsshub.app/routes/programming#an-quan-nei-can',
|
|
source: ['/articles', '/'],
|
|
target: (_, url) => `/secrss/author${new URL(url).searchParams.get('author')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|