Files
RSSHub/lib/v2/instructables/radar.js
2023-08-15 03:12:12 +01:00

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}`,
},
],
},
};