mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 10:08:02 +08:00
20 lines
651 B
JavaScript
20 lines
651 B
JavaScript
module.exports = {
|
|
'instructables.com': {
|
|
_name: 'Instructables',
|
|
'.': [
|
|
{
|
|
title: 'All Projects - Instructables',
|
|
docs: 'https://docs.rsshub.app/routes/other#instructables',
|
|
source: ['/projects'],
|
|
target: '/instructables/projects',
|
|
},
|
|
{
|
|
title: 'Projects - Instructables',
|
|
docs: 'https://docs.rsshub.app/routes/other#instructables',
|
|
source: ['/:category/projects'],
|
|
target: (params) => `/instructables/projects/${params.category}`,
|
|
},
|
|
],
|
|
},
|
|
};
|