mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-09 06:30:40 +08:00
* fix: add Lofter用户文章分类 & 视频 * add limit * fix limit * refactor: migrate to v2 * fix: route path Co-authored-by: TonyRL <TonyRL@users.noreply.github.com>
18 lines
528 B
JavaScript
18 lines
528 B
JavaScript
module.exports = {
|
|
'lofter.com': {
|
|
_name: 'Lofter',
|
|
www: [
|
|
{
|
|
title: '话题 (标签)',
|
|
docs: 'https://docs.rsshub.app/social-media.html#lofter',
|
|
source: ['/tag/:name', '/tag/:name/:type'],
|
|
target: (params) => `/lofter/tag/${params.name}/${params.type || ''}`,
|
|
},
|
|
{
|
|
title: '用户',
|
|
docs: 'https://docs.rsshub.app/social-media.html#lofter',
|
|
},
|
|
],
|
|
},
|
|
};
|