docs(*): add puppeteer budge (#9772)

Signed-off-by: Rongrong <i@rong.moe>
This commit is contained in:
Rongrong
2022-05-17 19:47:39 +08:00
committed by GitHub
parent eeb37848cb
commit 731c11176d
15 changed files with 73 additions and 43 deletions

View File

@@ -40,3 +40,6 @@ indent_size = 2
[{**.yml,**.yaml}] [{**.yml,**.yaml}]
indent_size = 2 indent_size = 2
[*.vue]
indent_size = 2

View File

@@ -1,7 +1,14 @@
<template> <template>
<div class="routeBlock" :id="path"> <div class="routeBlock" :id="path">
<p class="badge"> <p class="badge">
<Badge text="支持 BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="支持播客" type="tip" vertical="middle" v-if="supportPodcast"/> <Badge text="支持 Sci-Hub" type="tip" vertical="middle" v-if="supportScihub"/> <a target="_blank" href="/faq.html" v-if="anticrawler"><Badge text="反爬严格" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="支持浏览器扩展" vertical="middle" type="tip"/></a> <a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="支持 RSSBud" vertical="middle" type="tip"/></a> <a target="_blank" href="https://docs.rsshub.app/install/" v-if="selfhost"><Badge text="仅支持自建" vertical="middle" type="warn"/></a> <Badge text="支持 BT" vertical="middle" type="tip" v-if="supportBT"/>
<Badge text="支持播客" vertical="middle" type="tip" v-if="supportPodcast"/>
<Badge text="支持 Sci-Hub" vertical="middle" type="tip" v-if="supportScihub"/>
<Badge text="依赖 Puppeteer" vertical="middle" type="warn" v-if="puppeteer"/>
<a target="_blank" href="/faq.html" v-if="anticrawler"><Badge text="反爬严格" vertical="middle" type="warn"/></a>
<a target="_blank" href="/install/" v-if="selfhost"><Badge text="仅支持自建" vertical="middle" type="warn"/></a>
<a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="支持浏览器扩展" vertical="middle" type="tip"/></a>
<a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="支持 RSSBud" vertical="middle" type="tip"/></a>
</p> </p>
<p class="author"> <p class="author">
作者: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a> 作者: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a>
@@ -69,19 +76,23 @@ export default {
type: String, type: String,
default: null default: null
}, },
puppeteer: {
type: String,
default: null
},
}, },
methods: { methods: {
renderMarkdown(item, inline = true) { renderMarkdown(item, inline = true) {
const md = require('markdown-it')({ const md = require('markdown-it')({
html: true, html: true,
}); });
return inline ? md.renderInline(item) : md.render(item); return inline ? md.renderInline(item) : md.render(item);
}, },
}, },
computed: { computed: {
demoUrl: function () { demoUrl: function () {
return 'https://rsshub.app'+ this.example return 'https://rsshub.app'+ this.example
} }
} }
} }
</script> </script>

View File

@@ -1,7 +1,14 @@
<template> <template>
<div class="routeBlock" :id="path"> <div class="routeBlock" :id="path">
<p class="badge"> <p class="badge">
<Badge text="Support BT" type="tip" vertical="middle" v-if="supportBT"/> <Badge text="Support Podcast" type="tip" vertical="middle" v-if="supportPodcast"/> <Badge text="Support Sci-Hhub" type="tip" vertical="middle" v-if="supportScihub"/> <a target="_blank" href="/en/faq.html" v-if="anticrawler"><Badge text="strict anti-crawler policy" vertical="middle" type="warn"/></a> <a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="support browser extension" vertical="middle" type="tip"/></a> <a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="support rssbud" vertical="middle" type="tip"/></a> <a target="_blank" href="https://docs.rsshub.app/en/install/" v-if="selfhost"><Badge text="self-host only" vertical="middle" type="warn"/></a> <Badge text="Support BT" vertical="middle" type="tip" v-if="supportBT"/>
<Badge text="Support Podcast" vertical="middle" type="tip" v-if="supportPodcast"/>
<Badge text="Support Sci-Hub" vertical="middle" type="tip" v-if="supportScihub"/>
<Badge text="Rely on Puppeteer" vertical="middle" type="warn" v-if="puppeteer"/>
<a target="_blank" href="/en/faq.html" v-if="anticrawler"><Badge text="Strict anti-crawler policy" vertical="middle" type="warn"/></a>
<a target="_blank" href="/en/install/" v-if="selfhost"><Badge text="Self-host only" vertical="middle" type="warn"/></a>
<a target="_blank" href="https://github.com/DIYgod/RSSHub-Radar" v-if="radar"><Badge text="Support browser extension" vertical="middle" type="tip"/></a>
<a target="_blank" href="https://github.com/Cay-Zhang/RSSBud" v-if="rssbud"><Badge text="Support RSSBud" vertical="middle" type="tip"/></a>
</p> </p>
<p class="author"> <p class="author">
Author: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a> Author: <a v-for="uid in author.split(' ')" :href="`https://github.com/${uid}`" target="_blank"> @{{ uid }} </a>
@@ -69,19 +76,23 @@ export default {
type: String, type: String,
default: null default: null
}, },
puppeteer: {
type: String,
default: null
}
}, },
methods: { methods: {
renderMarkdown(item, inline = true) { renderMarkdown(item, inline = true) {
const md = require('markdown-it')({ const md = require('markdown-it')({
html: true, html: true,
}); });
return inline ? md.renderInline(item) : md.render(item); return inline ? md.renderInline(item) : md.render(item);
}, },
}, },
computed: { computed: {
demoUrl: function () { demoUrl: function () {
return 'https://rsshub.app'+ this.example return 'https://rsshub.app'+ this.example
} }
} }
} }
</script> </script>

View File

@@ -564,7 +564,7 @@ pageClass: routes
### 发现 ### 发现
<Route author="zphw" example="/pincong/category/1/new" path="/pincong/category/:category?/:sort?" :paramsDesc="['分类,与官网分类 URL `category-` 后的数字对应,默认为全部', '排序方式,参数可见下表,默认为推荐']" anticrawler="1" /> <Route author="zphw" example="/pincong/category/1/new" path="/pincong/category/:category?/:sort?" :paramsDesc="['分类,与官网分类 URL `category-` 后的数字对应,默认为全部', '排序方式,参数可见下表,默认为推荐']" anticrawler="1" puppeteer="1"/>
| 最新 | 推荐 | 热门 | | 最新 | 推荐 | 热门 |
| --- | --------- | --- | | --- | --------- | --- |
@@ -572,11 +572,11 @@ pageClass: routes
### 精选 ### 精选
<Route author="zphw" example="/pincong/hot" path="/pincong/hot/:category?" :paramsDesc="['分类,与官网分类 URL `category-` 后的数字对应,默认为全部']" anticrawler="1" /> <Route author="zphw" example="/pincong/hot" path="/pincong/hot/:category?" :paramsDesc="['分类,与官网分类 URL `category-` 后的数字对应,默认为全部']" anticrawler="1" puppeteer="1"/>
### 话题 ### 话题
<Route author="zphw" example="/pincong/topic/美国" path="/pincong/topic/:topic?" :paramsDesc="['话题,可在官网获取']" anticrawler="1" /> <Route author="zphw" example="/pincong/topic/美国" path="/pincong/topic/:topic?" :paramsDesc="['话题,可在官网获取']" anticrawler="1" puppeteer="1"/>
## 三星盖乐世社区 ## 三星盖乐世社区

View File

@@ -66,7 +66,7 @@ Language
### Latest News ### Latest News
<RouteEn author="linbuxiao" example="/ccac/news/all" path="/ccac/news/:type/:lang?" :paramsDesc="['Category', 'Language, default to `sc`. Supprot `en`(English), `sc`(Simplified Chinese), `tc`(Traditional Chinese) and `pt`(Portuguese)']"> <RouteEn author="linbuxiao" example="/ccac/news/all" path="/ccac/news/:type/:lang?" :paramsDesc="['Category', 'Language, default to `sc`. Supprot `en`(English), `sc`(Simplified Chinese), `tc`(Traditional Chinese) and `pt`(Portuguese)']" puppeteer="1">
Category Category
| All | Detected Cases | Investigation Reports or Recommendations | Annual Reports | CCAC's Updates | | All | Detected Cases | Investigation Reports or Recommendations | Annual Reports | CCAC's Updates |

View File

@@ -243,8 +243,8 @@ Type
### Homepage ### Homepage
<RouteEn author="SettingDust Halcao" example="/uraaka-joshi" path="/uraaka-joshi" radar="1" rssbud="1"/> <RouteEn author="SettingDust Halcao" example="/uraaka-joshi" path="/uraaka-joshi" radar="1" rssbud="1" puppeteer="1"/>
### User ### User
<RouteEn author="SettingDust Halcao" example="/uraaka-joshi/_rrwq" path="/uraaka-joshi/:id" :paramsDesc="['User ID']" radar="1" rssbud="1"/> <RouteEn author="SettingDust Halcao" example="/uraaka-joshi/_rrwq" path="/uraaka-joshi/:id" :paramsDesc="['User ID']" radar="1" rssbud="1" puppeteer="1"/>

View File

@@ -60,7 +60,7 @@ The following are some of the supported Channel and Topic ids.
### Topics ### Topics
<RouteEn author="zoenglinghou" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['Topic namecan be found in URL. For example: the topic name of AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) is `apf-topnews`']" radar="1" rssbud="1"/> <RouteEn author="zoenglinghou mjysci" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic" :paramsDesc="['Topic namecan be found in URL. For example: the topic name of AP Top News [https://apnews.com/apf-topnews](https://apnews.com/apf-topnews) is `apf-topnews`']" radar="1" rssbud="1" anticrawler="1" puppeteer="1"/>
## BBC ## BBC

View File

@@ -476,11 +476,11 @@ pageClass: routes
### 沟通交流 ### 沟通交流
<Route author="nczitzk" example="/gov/pbc/goutongjiaoliu" path="/gov/pbc/goutongjiaoliu"/> <Route author="nczitzk" example="/gov/pbc/goutongjiaoliu" path="/gov/pbc/goutongjiaoliu" puppeteer="1"/>
### 货币政策司公开市场交易公告 ### 货币政策司公开市场交易公告
<Route author="nczitzk" example="/gov/pbc/tradeAnnouncement" path="/gov/pbc/tradeAnnouncement"/> <Route author="nczitzk" example="/gov/pbc/tradeAnnouncement" path="/gov/pbc/tradeAnnouncement" puppeteer="1"/>
### 政策研究 ### 政策研究

View File

@@ -30,7 +30,7 @@ pageClass: routes
### 最新消息 ### 最新消息
<Route author="linbuxiao" example="/ccac/news/all" path="/ccac/news/:type/:lang?" :paramsDesc="['类别', '语言,留空为`sc`,支持`sc`(简中),`tc`(繁中),`en`(英文),`pt`(葡萄牙文)']"> <Route author="linbuxiao" example="/ccac/news/all" path="/ccac/news/:type/:lang?" :paramsDesc="['类别', '语言,留空为`sc`,支持`sc`(简中),`tc`(繁中),`en`(英文),`pt`(葡萄牙文)']" puppeteer="1">
| 全部 | 案件发布 | 调查报告或勘喻 | 年度报告 | 公署消息 | | 全部 | 案件发布 | 调查报告或勘喻 | 年度报告 | 公署消息 |
| --- | ---- | ---------- | ------------ | ------- | | --- | ---- | ---------- | ------------ | ------- |

View File

@@ -888,12 +888,14 @@ JavDB 有多个备用域名,本路由默认使用永久域名 <https://javdb.c
### 系列作品 ### 系列作品
<Route author="minimalistrojan" example="/prestige-av/series/847" path="/prestige-av/series/:mid/:sort?" :paramsDesc="['系列编号', '排序方式,缺省为 near最新']"/> <Route author="minimalistrojan" example="/prestige-av/series/847" path="/prestige-av/series/:mid/:sort?" :paramsDesc="['系列编号', '排序方式,缺省为 near最新']" puppeteer="1">
| 人气 | 最新 | 发售日期 | 标题顺序 | 价格升序 | 价格降序 | | 人气 | 最新 | 发售日期 | 标题顺序 | 价格升序 | 价格降序 |
| ------- | ---- | ---- | ----- | ---- | ---- | | ------- | ---- | ---- | ----- | ---- | ---- |
| popular | near | date | title | low | high | | popular | near | date | title | low | high |
</Route>
## rs05 人生 05 电影 ## rs05 人生 05 电影
### rs05 电影列表 ### rs05 电影列表

View File

@@ -613,11 +613,11 @@ type 为 all 时category 参数不支持 cost 和 free
### 主页 ### 主页
<Route author="SettingDust Halcao" example="/uraaka-joshi" path="/uraaka-joshi" radar="1" rssbud="1"/> <Route author="SettingDust Halcao" example="/uraaka-joshi" path="/uraaka-joshi" radar="1" rssbud="1" puppeteer="1"/>
### 用户 ### 用户
<Route author="SettingDust Halcao" example="/uraaka-joshi/_rrwq" path="/uraaka-joshi/:id" :paramsDesc="['用户名']" radar="1" rssbud="1"/> <Route author="SettingDust Halcao" example="/uraaka-joshi/_rrwq" path="/uraaka-joshi/:id" :paramsDesc="['用户名']" radar="1" rssbud="1" puppeteer="1"/>
## 律师事务所文章 ## 律师事务所文章

View File

@@ -848,7 +848,7 @@ YouTube 官方亦有提供频道 RSS形如 <https://www.youtube.com/feeds/vid
### 博主 ### 博主
<Route author="Max-Tortoise Rongronggg9" example="/douyin/user/MS4wLjABAAAARcAHmmF9mAG3JEixq_CdP72APhBlGlLVbN-1eBcPqao" path="/douyin/user/:uid/:routeParams?" :paramsDesc="['uid可在 URL 中找到', '额外参数query string 格式,请参阅下面的表格']" anticrawler="1" radar="1" rssbud="1"> <Route author="Max-Tortoise Rongronggg9" example="/douyin/user/MS4wLjABAAAARcAHmmF9mAG3JEixq_CdP72APhBlGlLVbN-1eBcPqao" path="/douyin/user/:uid/:routeParams?" :paramsDesc="['uid可在 URL 中找到', '额外参数query string 格式,请参阅下面的表格']" anticrawler="1" radar="1" rssbud="1" puppeteer="1">
| 键 | 含义 | 值 | 默认值 | | 键 | 含义 | 值 | 默认值 |
| -------- | ----------------------------------- | ---------------------- | ------- | | -------- | ----------------------------------- | ---------------------- | ------- |
@@ -1310,15 +1310,15 @@ rule
### 用户笔记和专辑 ### 用户笔记和专辑
<Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/notes" path="/xiaohongshu/user/:user_id/notes" :paramsDesc="['user_id']"/> <Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/notes" path="/xiaohongshu/user/:user_id/notes" :paramsDesc="['user_id']" puppeteer="1"/>
### 用户专辑 ### 用户专辑
<Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/album" path="/xiaohongshu/user/:user_id/album" :paramsDesc="['user_id']"/> <Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/album" path="/xiaohongshu/user/:user_id/album" :paramsDesc="['user_id']" puppeteer="1"/>
### 专辑 ### 专辑
<Route author="lotosbin" example="/xiaohongshu/board/5db6f79200000000020032df" path="/xiaohongshu/board/:board_id" :paramsDesc="['board_id']" /> <Route author="lotosbin" example="/xiaohongshu/board/5db6f79200000000020032df" path="/xiaohongshu/board/:board_id" :paramsDesc="['board_id']" puppeteer="1"/>
## 新榜 ## 新榜

View File

@@ -85,7 +85,7 @@ path="/ctfhub/upcoming/:limit?"
### 最新消息 ### 最新消息
<Route author="zenxds" example="/ielts" path="/ielts"/> <Route author="zenxds" example="/ielts" path="/ielts" puppeteer="1"/>
## MarginNote ## MarginNote

View File

@@ -66,9 +66,12 @@ pageClass: routes
### 话题 ### 话题
<Route author="mjysci" example="/apnews/topics/ap-top-news" path="/apnews/topics/:topic" :paramsDesc="['话题名称,可在 URL 中找到,例如 AP Top News [https://apnews.com/hub/ap-top-news](https://apnews.com/hub/ap-top-news) 的话题为 `ap-top-news`']" anticrawler="1"/> <Route author="zoenglinghou mjysci" example="/apnews/topics/ap-top-news" path="/apnews/topics/:topic" :paramsDesc="['话题名称,可在 URL 中找到,例如 AP Top News [https://apnews.com/hub/ap-top-news](https://apnews.com/hub/ap-top-news) 的话题为 `ap-top-news`']" radar="1" rssbud="1" anticrawler="1" puppeteer="1">
采用了 `puppeteer` 规避 `Project Shield`,无全文抓取,建议自建。 采用了 `puppeteer` 规避 `Project Shield`,无全文抓取,建议自建。
</Route>
## BBC ## BBC
### BBC 英文 ### BBC 英文
@@ -1221,7 +1224,7 @@ category 对应的关键词有
### 新闻 ### 新闻
<Route author="HenryQW" example="/nytimes/dual" path="/nytimes/:lang?" :paramsDesc="['语言,缺省中文']"> <Route author="HenryQW" example="/nytimes/dual" path="/nytimes/:lang?" :paramsDesc="['语言,缺省中文']" puppeteer="1">
通过提取文章全文,以提供比官方源更佳的阅读体验。 通过提取文章全文,以提供比官方源更佳的阅读体验。

View File

@@ -861,7 +861,7 @@ xskb1 对应 <http://www.auto.uestc.edu.cn/index/xskb1.htm>
### 信息与通信工程学院 ### 信息与通信工程学院
<Route author="huyyi" example="/uestc/sice" path="/uestc/sice" /> <Route author="huyyi" example="/uestc/sice" path="/uestc/sice" puppeteer="1"/>
### 信息与软件工程学院 ### 信息与软件工程学院
@@ -1308,7 +1308,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 学校通知 ### 学校通知
<Route author="vuhe" example="/ncwu/notice" path="/ncwu/notice"/> <Route author="vuhe" example="/ncwu/notice" path="/ncwu/notice" puppeteer="1"/>
## 华东理工大学 ## 华东理工大学
@@ -1651,7 +1651,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 人才招聘网 ### 人才招聘网
<Route author="ret-1" example="/nju/rczp/xxfb" path="/nju/rczp/:type" :paramsDesc="['分类名']"> <Route author="ret-1" example="/nju/rczp/xxfb" path="/nju/rczp/:type" :paramsDesc="['分类名']" puppeteer="1">
| 信息发布 | 教研类岗位 | 管理岗位及其他 | | 信息发布 | 教研类岗位 | 管理岗位及其他 |
| ---- | ----- | ------- | | ---- | ----- | ------- |
@@ -1707,7 +1707,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 教务处 ### 教务处
<Route author="arcosx Seiry qrzbing" example="/nuaa/jwc/tzgg" path="/nuaa/jwc/:type/:getDescription?" :paramsDesc="['分类名', '是否获取描述']"> <Route author="arcosx Seiry qrzbing" example="/nuaa/jwc/tzgg" path="/nuaa/jwc/:type/:getDescription?" :paramsDesc="['分类名', '是否获取描述']" puppeteer="1">
| 通知公告 | 教学服务 | 教学建设 | 学生培养 | 教学资源 | | 通知公告 | 教学服务 | 教学建设 | 学生培养 | 教学资源 |
| ---- | ---- | ---- | ---- | ---- | | ---- | ---- | ---- | ---- | ---- |
@@ -1717,7 +1717,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 计算机科学与技术学院 ### 计算机科学与技术学院
<Route author="LogicJake Seiry qrzbing" example="/nuaa/cs/jxdt" path="/nuaa/cs/:type/:getDescription?" :paramsDesc="['分类名', '是否获取描述']"> <Route author="LogicJake Seiry qrzbing" example="/nuaa/cs/jxdt" path="/nuaa/cs/:type/:getDescription?" :paramsDesc="['分类名', '是否获取描述']" puppeteer="1">
| 通知公告 | 热点新闻 | 学科科研 | 教学动态 | 本科生培养 | 研究生培养 | 学生工作 | | 通知公告 | 热点新闻 | 学科科研 | 教学动态 | 本科生培养 | 研究生培养 | 学生工作 |
| ---- | ---- | ---- | ---- | ----- | ----- | ---- | | ---- | ---- | ---- | ---- | ----- | ----- | ---- |
@@ -1739,7 +1739,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 教务处 ### 教务处
<Route author="MilkShakeYoung jasongzy" example="/njust/jwc/xstz" path="/njust/jwc/:type?" :paramsDesc="['分类名,见下表,默认为学生通知']" radar="1" rssbud="1"> <Route author="MilkShakeYoung jasongzy" example="/njust/jwc/xstz" path="/njust/jwc/:type?" :paramsDesc="['分类名,见下表,默认为学生通知']" radar="1" rssbud="1" puppeteer="1">
| 教师通知 | 学生通知 | 新闻 | 学院动态 | | 教师通知 | 学生通知 | 新闻 | 学院动态 |
| ---- | ---- | -- | ---- | | ---- | ---- | -- | ---- |
@@ -1749,7 +1749,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 财务处 ### 财务处
<Route author="MilkShakeYoung jasongzy" example="/njust/cwc/tzgg" path="/njust/cwc/:type?" :paramsDesc="['分类名,见下表,默认为通知公告']" radar="1" rssbud="1"> <Route author="MilkShakeYoung jasongzy" example="/njust/cwc/tzgg" path="/njust/cwc/:type?" :paramsDesc="['分类名,见下表,默认为通知公告']" radar="1" rssbud="1" puppeteer="1">
| 通知公告 | 办事流程 | | 通知公告 | 办事流程 |
| ---- | ---- | | ---- | ---- |
@@ -1759,7 +1759,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 研究生院 ### 研究生院
<Route author="MilkShakeYoung jasongzy" example="/njust/gs/sytzgg_4568" path="/njust/gs/:type?" :paramsDesc="['分类 ID部分示例参数见下表默认为首页通知公告其他分类 ID 可以从网站 URL Path 中找到,如国际交流为 `gjjl`']" radar="1" rssbud="1"> <Route author="MilkShakeYoung jasongzy" example="/njust/gs/sytzgg_4568" path="/njust/gs/:type?" :paramsDesc="['分类 ID部分示例参数见下表默认为首页通知公告其他分类 ID 可以从网站 URL Path 中找到,如国际交流为 `gjjl`']" radar="1" rssbud="1" puppeteer="1">
| 首页通知公告 | 首页新闻动态 | 最新通知 | 招生信息 | 培养信息 | 学术活动 | | 首页通知公告 | 首页新闻动态 | 最新通知 | 招生信息 | 培养信息 | 学术活动 |
| ----------- | ------ | ----- | ----- | ----- | ------- | | ----------- | ------ | ----- | ----- | ----- | ------- |
@@ -1769,7 +1769,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 电光学院 ### 电光学院
<Route author="jasongzy" example="/njust/eoe/tzgg" path="/njust/eoe/:type?" :paramsDesc="['分类名,见下表,默认为通知公告']" radar="1" rssbud="1"> <Route author="jasongzy" example="/njust/eoe/tzgg" path="/njust/eoe/:type?" :paramsDesc="['分类名,见下表,默认为通知公告']" radar="1" rssbud="1" puppeteer="1">
| 通知公告 | 新闻动态 | | 通知公告 | 新闻动态 |
| ---- | ---- | | ---- | ---- |
@@ -1779,7 +1779,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 电光学院研学网 ### 电光学院研学网
<Route author="jasongzy" example="/njust/dgxg/gstz" path="/njust/dgxg/:type?" :paramsDesc="['分类名,见下表,默认为公示通知']" radar="1" rssbud="1"> <Route author="jasongzy" example="/njust/dgxg/gstz" path="/njust/dgxg/:type?" :paramsDesc="['分类名,见下表,默认为公示通知']" radar="1" rssbud="1" puppeteer="1">
| 公示通知 | 学术文化 | 就业指导 | | 公示通知 | 学术文化 | 就业指导 |
| ---- | ---- | ---- | | ---- | ---- | ---- |
@@ -1789,7 +1789,7 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
### 电光学院年级网站 ### 电光学院年级网站
<Route author="jasongzy" example="/njust/eo/17/tz" path="/njust/eo/:grade?/:type?" :paramsDesc="['年级,见下表,默认为本科 2017 级,未列出的年级所对应的参数可以从级网二级页面的 URL Path 中找到,例如:本科 2020 级为 `_t1316`', '类别,见下表,默认为年级通知(通知公告),未列出的类别所对应的参数可以从级网二级页面的 URL Path 中找到,例如:电光 20 的通知公告为 `tzgg_12969`']" radar="1" rssbud="1"> <Route author="jasongzy" example="/njust/eo/17/tz" path="/njust/eo/:grade?/:type?" :paramsDesc="['年级,见下表,默认为本科 2017 级,未列出的年级所对应的参数可以从级网二级页面的 URL Path 中找到,例如:本科 2020 级为 `_t1316`', '类别,见下表,默认为年级通知(通知公告),未列出的类别所对应的参数可以从级网二级页面的 URL Path 中找到,例如:电光 20 的通知公告为 `tzgg_12969`']" radar="1" rssbud="1" puppeteer="1">
`grade` 列表: `grade` 列表: