mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 05:59:00 +08:00
* feat(route): add 东北大学医学与生物信息工程学院 * Update lib/routes/universities/neu/bmie.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Update lib/routes/universities/neu/bmie.js Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix(route): 更新BMIE 格式化日期、采用V2路由 * Apply suggestions from code review Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix(route):采用 pubDate 解析 * refactor: migrate to v2 Co-authored-by: Athena <qingcaomc+zen@gmail.com>
22 lines
635 B
JavaScript
22 lines
635 B
JavaScript
module.exports = {
|
|
'neu.edu.cn': {
|
|
_name: '东北大学',
|
|
neunews: [
|
|
{
|
|
title: '新闻网',
|
|
docs: 'https://docs.rsshub.app/university.html#dong-bei-da-xue',
|
|
source: ['/:type/list.htm'],
|
|
target: '/neu/news/:type',
|
|
},
|
|
],
|
|
'www.bmie': [
|
|
{
|
|
title: '学院新闻 - 医学与生物信息工程学院',
|
|
docs: 'https://docs.rsshub.app/university.html#dong-bei-da-xue',
|
|
source: ['/'],
|
|
target: '/neu/bmie/news',
|
|
},
|
|
],
|
|
},
|
|
};
|