mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-06 05:03:44 +08:00
* Add HackMD RSS source * Adapt to v2 router & minor fixes Co-authored-by: Yukai Huang <yukaihuangtw@gmail.com>
14 lines
355 B
JavaScript
14 lines
355 B
JavaScript
module.exports = {
|
|
'hackmd.io': {
|
|
_name: 'HackMD',
|
|
'.': [
|
|
{
|
|
title: 'Profile',
|
|
docs: 'http://docs.rsshub.app/programming.html#hackmd',
|
|
source: ['/:profile'],
|
|
target: (params) => `/hackmd/profile/${params.replace('@', '')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|