RSSHub/lib/v2/keylol/radar.js

19 lines
569 B
JavaScript

module.exports = {
'keylol.com': {
_name: '其乐',
'.': [
{
title: '论坛',
docs: 'https://docs.rsshub.app/routes/game#qi-le-lun-tan',
source: ['/:category', '/'],
target: (params, url) => {
url = new URL(url);
const path = url.href.match(/keylol\.com\/(forum.php\?.*|f\d+-\d+)?/).replace(/forum.php\?/, '')[1];
return `/keylol${path ? `/${path}` : ''}`;
},
},
],
},
};