mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 14:07:54 +08:00
* feat(route): add 起点作者页面的作品 * fix(route): 起点作者缺少 v2 路由必要文件 * fix(route): typo * fix(route): remove redundant code * fix(route): author accepts pure string only * refactor(route): cleanup code * fix(route): remove old date parser * refactor: migrate to v2
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
module.exports = {
|
|
'qidian.com': {
|
|
_name: '起点',
|
|
book: [
|
|
{
|
|
title: '章节',
|
|
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
source: '/info/:id',
|
|
target: '/qidian/chapter/:id',
|
|
},
|
|
{
|
|
title: '讨论区',
|
|
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
source: '/info/:id',
|
|
target: '/qidian/forum/:id',
|
|
},
|
|
],
|
|
my: [
|
|
{
|
|
title: '作者',
|
|
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
source: '/author/:id',
|
|
target: '/qidian/author/:id',
|
|
},
|
|
],
|
|
www: [
|
|
{
|
|
title: '限免',
|
|
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
source: '/free',
|
|
target: '/qidian/free',
|
|
},
|
|
{
|
|
title: '女生限免',
|
|
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
source: '/mm/free',
|
|
target: '/qidian/free/mm',
|
|
},
|
|
],
|
|
},
|
|
};
|