mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-11-30 17:17:55 +08:00
* feat(route):add DLNEWS * clean up * use embedded JSON * fix: docusaurus style md * add description.art and rate limit * increase the concurency * fix: fix radar docs link * docs: move to finance ---------
20 lines
544 B
JavaScript
20 lines
544 B
JavaScript
module.exports = {
|
|
'dlnews.com': {
|
|
_name: 'DL NEWS',
|
|
'.': [
|
|
{
|
|
title: 'All Articles',
|
|
docs: 'https://docs.rsshub.app/routes/finance#dl-news',
|
|
source: ['/articles/'],
|
|
target: '/dlnews/',
|
|
},
|
|
{
|
|
title: 'Topic',
|
|
docs: 'https://docs.rsshub.app/routes/finance#dl-news',
|
|
source: ['/articles/:category'],
|
|
target: '/dlnews/:category',
|
|
},
|
|
],
|
|
},
|
|
};
|