mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 22:19:40 +08:00
* feat(route): add Eagle's blog and refactor to V2 * fix: remove deprecated eagle radar rules * fix: changelog date and guid * fix(route): add language option
102 lines
3.5 KiB
JavaScript
102 lines
3.5 KiB
JavaScript
module.exports = {
|
|
'eagle.cool': {
|
|
_name: 'Eagle',
|
|
cn: [
|
|
{
|
|
title: '更新日志',
|
|
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
source: '/changelog',
|
|
target: '/eagle/changelog/cn',
|
|
},
|
|
{
|
|
title: '全部',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog'],
|
|
target: '/eagle/blog',
|
|
},
|
|
{
|
|
title: '设计资源',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/design-resources'],
|
|
target: '/eagle/blog/design-resources',
|
|
},
|
|
{
|
|
title: '设计技巧',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/learn-design'],
|
|
target: '/eagle/blog/learn-design',
|
|
},
|
|
{
|
|
title: '最新消息',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/inside-eagle'],
|
|
target: '/eagle/blog/inside-eagle',
|
|
},
|
|
],
|
|
tw: [
|
|
{
|
|
title: '更新日誌',
|
|
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
source: '/changelog',
|
|
target: '/eagle/changelog/tw',
|
|
},
|
|
{
|
|
title: '全部',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog'],
|
|
target: '/eagle/blog/tw',
|
|
},
|
|
{
|
|
title: '設計資源',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/design-resources'],
|
|
target: '/eagle/blog/design-resources/tw',
|
|
},
|
|
{
|
|
title: '設計技巧',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/learn-design'],
|
|
target: '/eagle/blog/learn-design/tw',
|
|
},
|
|
{
|
|
title: '最新消息',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/inside-eagle'],
|
|
target: '/eagle/blog/inside-eagle/tw',
|
|
},
|
|
],
|
|
en: [
|
|
{
|
|
title: 'Release Notes',
|
|
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
source: '/changelog',
|
|
target: '/eagle/changelog/en',
|
|
},
|
|
{
|
|
title: 'All',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog'],
|
|
target: '/eagle/blog/en',
|
|
},
|
|
{
|
|
title: 'Design Resources',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/design-resources'],
|
|
target: '/eagle/blog/design-resources/en',
|
|
},
|
|
{
|
|
title: 'Learn Design',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/learn-design'],
|
|
target: '/eagle/blog/learn-design/en',
|
|
},
|
|
{
|
|
title: 'Inside Eagle',
|
|
docs: 'https://docs.rsshub.app/design.html#eagle',
|
|
source: ['/blog/inside-eagle'],
|
|
target: '/eagle/blog/inside-eagle/en',
|
|
},
|
|
],
|
|
},
|
|
};
|