mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
* feat(fix): remove html code in description
* feat: fix wrong path note in the docs; update maintainer path; change to use cookieJar for route
* feat: change to use `${host}`
* fix: description.art
* fix: handle deprecated routes first
20 lines
577 B
JavaScript
20 lines
577 B
JavaScript
module.exports = {
|
|
'sciencedirect.com': {
|
|
_name: 'Elsevier',
|
|
www: [
|
|
{
|
|
title: 'Journal',
|
|
docs: 'https://docs.rsshub.app/journal.html#Elsevier',
|
|
source: '/journal/:journal/*',
|
|
target: '/elsevier/:journal',
|
|
},
|
|
{
|
|
title: 'Issue',
|
|
docs: 'https://docs.rsshub.app/journal.html#Elsevier',
|
|
source: '/journal/:journal/vol/:issue',
|
|
target: '/elsevier/:journal/:issue',
|
|
},
|
|
],
|
|
},
|
|
};
|