mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 19:59:54 +08:00
* feat(route): add 腾讯研究院 * Update lib/v2/tisi/index.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/tisi/radar.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix(route): change radar docs link Co-authored-by: Tony <TonyRL@users.noreply.github.com>
18 lines
504 B
JavaScript
18 lines
504 B
JavaScript
module.exports = {
|
|
'tisi.org': {
|
|
_name: '腾讯研究院',
|
|
'.': [
|
|
{
|
|
title: '最近更新',
|
|
docs: 'https://docs.rsshub.app/new-media.html#teng-xun-yan-jiu-yuan',
|
|
source: ['/'],
|
|
target: (_params, url) => {
|
|
if (new URL(url).searchParams.get('page_id') === '11151') {
|
|
return '/tisi/latest';
|
|
}
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|