mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
32 lines
995 B
JavaScript
32 lines
995 B
JavaScript
module.exports = {
|
|
'dcard.tw': {
|
|
_name: 'Dcard',
|
|
www: [
|
|
{
|
|
title: '首頁帖子-最新',
|
|
docs: 'https://docs.rsshub.app/routes/bbs#dcard',
|
|
source: '/f',
|
|
target: '/dcard/posts/latest',
|
|
},
|
|
{
|
|
title: '首頁帖子-熱門',
|
|
docs: 'https://docs.rsshub.app/routes/bbs#dcard',
|
|
source: '/f',
|
|
target: '/dcard/posts/popular',
|
|
},
|
|
{
|
|
title: '板塊帖子-最新',
|
|
docs: 'https://docs.rsshub.app/routes/bbs#dcard',
|
|
source: '/f/:section',
|
|
target: '/dcard/:section/latest',
|
|
},
|
|
{
|
|
title: '板塊帖子-熱門',
|
|
docs: 'https://docs.rsshub.app/routes/bbs#dcard',
|
|
source: '/f/:section',
|
|
target: '/dcard/:section/popular',
|
|
},
|
|
],
|
|
},
|
|
};
|