mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 15:47:48 +08:00
26 lines
807 B
JavaScript
26 lines
807 B
JavaScript
module.exports = {
|
|
'sobooks.net': {
|
|
_name: 'SoBooks',
|
|
'.': [
|
|
{
|
|
title: '分类',
|
|
docs: 'https://docs.rsshub.app/reading.html#sobooks',
|
|
source: ['/:category'],
|
|
target: '/sobooks/:category',
|
|
},
|
|
{
|
|
title: '标签',
|
|
docs: 'https://docs.rsshub.app/reading.html#sobooks',
|
|
source: ['/books/tag/:tag'],
|
|
target: '/sobooks/tag/:tag',
|
|
},
|
|
{
|
|
title: '归档',
|
|
docs: 'https://docs.rsshub.app/reading.html#sobooks',
|
|
source: ['/books/date/*date'],
|
|
target: (params) => `/sobooks/date/${params.date.repalce('/', '-')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|