mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 01:58:11 +08:00
* feat(route): add CNCF * Update docs/en/programming.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update docs/programming.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/v2/cncf/maintainer.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> Co-authored-by: Tony <TonyRL@users.noreply.github.com>
32 lines
947 B
JavaScript
32 lines
947 B
JavaScript
module.exports = {
|
|
'cncf.io': {
|
|
_name: 'CNCF',
|
|
'.': [
|
|
{
|
|
title: 'Blog',
|
|
docs: 'https://docs.rsshub.app/programming.html#cncf',
|
|
source: ['/blog'],
|
|
target: '/cncf/blog',
|
|
},
|
|
{
|
|
title: 'News',
|
|
docs: 'https://docs.rsshub.app/programming.html#cncf',
|
|
source: ['/news'],
|
|
target: '/cncf/news',
|
|
},
|
|
{
|
|
title: 'Announcements',
|
|
docs: 'https://docs.rsshub.app/programming.html#cncf',
|
|
source: ['/announcements'],
|
|
target: '/cncf/announcements',
|
|
},
|
|
{
|
|
title: 'Reports',
|
|
docs: 'https://docs.rsshub.app/programming.html#cncf',
|
|
source: ['/reports'],
|
|
target: '/cncf/reports',
|
|
},
|
|
],
|
|
},
|
|
};
|