Files
RSSHub/lib/v2/ieee/radar.js
Derek 3cfad37145 feat(route): fix and update IEEE route (#9955)
* feat: change to use cookieJar

* feat: update router.js

* feat: format

* feat: change to use `${host}`

* fix: description.art

* try to fix

* try to fix

* try to fix

* Update journal.js

* Update recent.js

* Update recent.js

* Update journal.js

* fix: mark deprecated routes
2022-06-17 00:01:57 +08:00

20 lines
642 B
JavaScript

module.exports = {
'ieee.org': {
_name: 'IEEE',
www: [
{
title: 'Journal',
docs: 'https://docs.rsshub.app/journal.html#ieee-xplore',
source: '/*',
target: (params, url) => `/ieee/journal/${new URL(url).searchParams.get('punumber')}`,
},
{
title: 'Recent',
docs: 'https://docs.rsshub.app/journal.html#ieee-xplore',
source: '/*',
target: (params, url) => `/ieee/journal/${new URL(url).searchParams.get('punumber')}/recent`,
},
],
},
};