mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
20 lines
651 B
JavaScript
20 lines
651 B
JavaScript
module.exports = {
|
|
'ieee.org': {
|
|
_name: 'IEEE',
|
|
www: [
|
|
{
|
|
title: 'latestVolume',
|
|
docs: 'https://docs.rsshub.app/journal.html#ieee-xplore',
|
|
source: '/*',
|
|
target: (params, url) => `/ieee/${new URL(url).searchParams.get('punumber')}/latest/vol`,
|
|
},
|
|
{
|
|
title: 'latestDate',
|
|
docs: 'https://docs.rsshub.app/journal.html#ieee-xplore',
|
|
source: '/*',
|
|
target: (params, url) => `/ieee/${new URL(url).searchParams.get('punumber')}/latest/date`,
|
|
},
|
|
],
|
|
},
|
|
};
|