mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-06 13:08:14 +08:00
* fix(route): sohu_mp can not get author's link and refactor to V2 * fix: pubDate * fix: remove unused timezone Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
14 lines
349 B
JavaScript
14 lines
349 B
JavaScript
module.exports = {
|
|
'sohu.com': {
|
|
_name: '搜狐',
|
|
'.': [
|
|
{
|
|
title: '搜狐号',
|
|
docs: 'https://docs.rsshub.app/new-media.html#sou-hu-hao',
|
|
source: ['/a/:id'],
|
|
target: (params) => `/sohu/mp/${params.id.split('_')[1]}`,
|
|
},
|
|
],
|
|
},
|
|
};
|