mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 22:19:40 +08:00
* feat: upload files * feat: add docs; update radar.js * feat(fix): fix docs/en * Update docs/en/journal.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/journal.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/journal.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/journal.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/section.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/section.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/section.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/scitation/templates/description.art Co-authored-by: Tony <TonyRL@users.noreply.github.com> * feat: remove config request * Update lib/v2/scitation/templates/description.art
20 lines
646 B
JavaScript
20 lines
646 B
JavaScript
module.exports = {
|
|
'scitation.org': {
|
|
_name: 'scitation',
|
|
'.': [
|
|
{
|
|
title: 'journal',
|
|
docs: 'https://docs.rsshub.app/journal.html#scitation',
|
|
source: ':pub.scitation.org/toc/:jrn',
|
|
target: '/scitation/:pub/:jrn',
|
|
},
|
|
{
|
|
title: 'section',
|
|
docs: 'https://docs.rsshub.app/journal.html#scitation',
|
|
source: ':pub.scitation.org/toc/:jrn',
|
|
target: (params, url) => `/scitation/:pub/:jrn/${new URL(url).searchParams.get('tocSection')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|