mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 12:21:31 +08:00
* Initial commit of route Penguin Random House * WIP: parse books into templates * Updated radar info * Added articles route * Renamed the route and added docs * Update lib/v2/penguin-random-house/articles.js according to suggestion Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Changed category to Reading, added En docs * Changed pubDate format * Update lib/v2/penguin-random-house/router.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/penguin-random-house/articles.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/penguin-random-house/thereaddown.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Parse time * Fallback on failed regex matches * Fallback date to undefined * Update lib/v2/penguin-random-house/utils.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix: radar domain
20 lines
668 B
JavaScript
20 lines
668 B
JavaScript
module.exports = {
|
|
'penguinrandomhouse.com': {
|
|
_name: 'Penguin Random House',
|
|
'.': [
|
|
{
|
|
title: 'Penguin Random House Book Lists',
|
|
docs: 'https://docs.rsshub.app/reading.html#penguin-random-house',
|
|
source: ['/the-read-down'],
|
|
target: '/penguin-random-house/the-read-down',
|
|
},
|
|
{
|
|
title: 'Penguin Random House Articles',
|
|
docs: 'https://docs.rsshub.app/reading.html#penguin-random-house',
|
|
source: ['/articles'],
|
|
target: '/penguin-random-house/articles',
|
|
},
|
|
],
|
|
},
|
|
};
|