mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-12 08:10:32 +08:00
* feat(route): add ZodGame * style: auto format * Update docs/bbs.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update docs/en/bbs.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> Co-authored-by: FeCCC <964575805@qq.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
19 lines
515 B
JavaScript
19 lines
515 B
JavaScript
module.exports = {
|
|
'zodgame.xyz': {
|
|
_name: 'zodgame',
|
|
'.': [
|
|
{
|
|
title: '论坛版块',
|
|
docs: 'https://docs.rsshub.app/bbs.html#zodgame',
|
|
source: '/forum.php',
|
|
target: (params, url) => {
|
|
const fid = new URL(url).searchParams.get('fid');
|
|
if (fid) {
|
|
return `/zodgame/forum/${fid}`;
|
|
}
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|