mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* 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
20 lines
642 B
JavaScript
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`,
|
|
},
|
|
],
|
|
},
|
|
};
|