mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 04:11:26 +08:00
* feat: add news router * feat: add news path * feat: change website category * feat: complate zhonghuawang * style: format code * docs: add english router doc * feat: 调整文件名称 * feat: 添加时间处理 * feat: cr commit Co-authored-by: majiaao <jiaaoMario@gmail.com>
22 lines
597 B
JavaScript
22 lines
597 B
JavaScript
module.exports = {
|
|
'china.com': {
|
|
_name: '中华网',
|
|
military: [
|
|
{
|
|
title: '军事新闻',
|
|
docs: 'https://docs.rsshub.app/new-media.html#zhong-hua-wang',
|
|
source: '/news',
|
|
target: '/china/news/military',
|
|
},
|
|
],
|
|
news: [
|
|
{
|
|
title: '时事新闻',
|
|
docs: 'https://docs.rsshub.app/new-media.html#zhong-hua-wang',
|
|
source: '/:category',
|
|
target: '/china/news/:category?',
|
|
},
|
|
],
|
|
},
|
|
};
|