mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-13 00:35:57 +08:00
20 lines
565 B
JavaScript
20 lines
565 B
JavaScript
module.exports = {
|
|
'scitation.org': {
|
|
_name: 'JASA',
|
|
asa: [
|
|
{
|
|
title: 'latest',
|
|
docs: 'https://docs.rsshub.app/journal.html#jasa',
|
|
source: '/*',
|
|
target: '/jasa/latest',
|
|
},
|
|
{
|
|
title: 'section',
|
|
docs: 'https://docs.rsshub.app/journal.html#jasa',
|
|
source: '/*',
|
|
target: (params, url) => `/jasa/section/${new URL(url).searchParams.get('tocSection')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|