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
This commit is contained in:
wolfg
2023-03-27 19:58:35 +08:00
committed by GitHub
parent 294e690478
commit 67859336d1
6 changed files with 104 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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}`,
},
],
},
};