Files
RSSHub/lib/v2/instructables/radar.js
wolfg 67859336d1 feat(route): instructables projects (#12179)
* add instructables projects

* docs

* add maintainer.js; correct radar.js

* fix doc

* fix radar.js

* fix maintainer.js

* add pubDate

* fix teachers category
2023-03-27 19:58:35 +08:00

20 lines
647 B
JavaScript

module.exports = {
'instructables.com': {
_name: 'Instructables',
'.': [
{
title: 'All Projects - Instructables',
docs: 'https://docs.rsshub.app/other.html#instructables',
source: ['/projects'],
target: '/instructables/projects',
},
{
title: 'Projects - Instructables',
docs: 'https://docs.rsshub.app/other.html#instructables',
source: ['/:category/projects'],
target: (params) => `/instructables/projects/${params.category}`,
},
],
},
};