Files
RSSHub/lib/v2/elsevier/radar.js
Derek 71a16f5121 feat(route): fix and update Elsevier route (#9954)
* 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
2022-06-16 18:44:29 +08:00

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',
},
],
},
};