Files
RSSHub/lib/v2/segmentfault/radar.js
shiluanzzz 92d2bd6a78 feat(route): segmentfault 新增了每个标签下相关的文章 (#10476)
* new segmentfault blogs

* fix radar.js route

* fix

* docs: linebreak

* style: lint
2022-08-17 20:39:36 +08:00

26 lines
818 B
JavaScript

module.exports = {
'segmentfault.com': {
_name: 'SegmentFault',
'.': [
{
title: '频道',
docs: 'https://docs.rsshub.app/programming.html#segmentfault',
source: ['/channel/:name'],
target: '/segmentfault/channel/:name',
},
{
title: '用户',
docs: 'https://docs.rsshub.app/programming.html#segmentfault',
source: ['/u/:name'],
target: '/segmentfault/user/:name',
},
{
title: "博客",
docs: "https://docs.rsshub.app/programming.html#segmentfault",
source: ["/t/:tag/blogs"],
target: "/segmentfault/blogs/:tag",
}
],
},
};