mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 17:48:15 +08:00
* add instructables projects * docs * add maintainer.js; correct radar.js * fix doc * fix radar.js * fix maintainer.js * add pubDate * fix teachers category
20 lines
647 B
JavaScript
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}`,
|
|
},
|
|
],
|
|
},
|
|
};
|