hash
stringlengths 40
40
| date
stringdate 2018-04-19 20:42:56
2025-03-25 18:01:26
| author
stringlengths 1
23
| commit_message
stringlengths 9
121
| is_merge
bool 1
class | masked_commit_message
stringlengths 3
111
| type
stringclasses 10
values | git_diff
stringlengths 108
2.8M
|
|---|---|---|---|---|---|---|---|
797470c0dbd79c52ebf0a28ad47b678fc52c6708
|
2024-11-02 18:38:14
|
CaoMeiYouRen
|
fix(route): 修复 bilibili 动态路由在部分情况下出现空图片的问题 (#17420)
| false
|
修复 bilibili 动态路由在部分情况下出现空图片的问题 (#17420)
|
fix
|
diff --git a/lib/routes/bilibili/dynamic.ts b/lib/routes/bilibili/dynamic.ts
index b5b21cf88f7e56..cd1ffb353179f5 100644
--- a/lib/routes/bilibili/dynamic.ts
+++ b/lib/routes/bilibili/dynamic.ts
@@ -117,6 +117,7 @@ const getIframe = (data?: Modules, embed: boolean = true) => {
if (aid === undefined && bvid === undefined) {
return '';
}
+ // 不通过 utils.renderUGCDescription 渲染 img/description 以兼容其他格式的动态
return utils.renderUGCDescription(embed, '', '', aid, undefined, bvid);
};
@@ -146,7 +147,10 @@ const getImgs = (data?: Modules) => {
if (major[type]?.cover) {
imgUrls.push(major[type].cover);
}
- return imgUrls.map((url) => `<img src="${url}">`).join('');
+ return imgUrls
+ .filter(Boolean)
+ .map((url) => `<img src="${url}">`)
+ .join('');
};
const getUrl = (item?: Item2, useAvid = false) => {
@@ -354,10 +358,9 @@ async function handler(ctx) {
// 换行处理
description = description.replaceAll('\r\n', '<br>').replaceAll('\n', '<br>');
originDescription = originDescription.replaceAll('\r\n', '<br>').replaceAll('\n', '<br>');
-
- const descriptions = [description, originDescription, urlText, originUrlText, getIframe(data, embed), getIframe(origin, embed), getImgs(data), getImgs(origin)]
- .filter(Boolean)
+ const descriptions = [description, getIframe(data, embed), getImgs(data), urlText, originDescription, getIframe(origin, embed), getImgs(origin), originUrlText]
.map((e) => e?.trim())
+ .filter(Boolean)
.join('<br>');
return {
diff --git a/lib/routes/bilibili/templates/description.art b/lib/routes/bilibili/templates/description.art
index 65e2261cfd8687..5f6e5847d51ec8 100644
--- a/lib/routes/bilibili/templates/description.art
+++ b/lib/routes/bilibili/templates/description.art
@@ -7,6 +7,8 @@
{{ /if }}
<br>
{{ /if }}
+{{ if img}}
<img src="{{ img }}">
<br>
+{{ /if }}
{{@ description }}
|
32b0ce9058c4735c423440fcdd4ec6d5b65893ef
|
2022-07-07 18:55:31
|
Ethan Shen
|
fix(route): 36kr主题文章 (#10161)
| false
|
36kr主题文章 (#10161)
|
fix
|
diff --git a/docs/new-media.md b/docs/new-media.md
index a7b30a0e446633..afebb084576815 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -54,7 +54,7 @@ pageClass: routes
### 主题文章
-<Route author="nczitzk" example="/36kr/motif/452" path="/36kr/motif/:mid" :paramsDesc="['主题 ID']" />
+<Route author="nczitzk" example="/36kr/motif/452" path="/36kr/motif/:id" :paramsDesc="['主题 ID']" />
### 搜索文章
diff --git a/lib/v2/36kr/maintainer.js b/lib/v2/36kr/maintainer.js
index 2062fa272334c4..9a9c95a57a5e3a 100644
--- a/lib/v2/36kr/maintainer.js
+++ b/lib/v2/36kr/maintainer.js
@@ -1,7 +1,7 @@
module.exports = {
- '/motif/:mid': ['nczitzk'],
+ '/motif/:id': ['nczitzk'],
'/news/:category?': ['nczitzk'],
'/newsflashes': ['hillerliao'],
'/search/article/:keyword': ['xyqfer', 'kt286', 'nczitzk'],
- '/user/:uid': ['nczitzk'],
+ '/user/:id': ['nczitzk'],
};
diff --git a/lib/v2/36kr/motif.js b/lib/v2/36kr/motif.js
index 4d478b98337a7d..7b9b9098635bfb 100644
--- a/lib/v2/36kr/motif.js
+++ b/lib/v2/36kr/motif.js
@@ -1,36 +1,57 @@
const got = require('@/utils/got');
const { parseDate } = require('@/utils/parse-date');
+const CryptoJS = require('crypto-js');
module.exports = async (ctx) => {
- const motifUrl = `https://36kr.com/motif/${ctx.params.mid}`;
+ const id = ctx.params.id;
+
+ const rootUrl = 'https://36kr.com';
+ const currentUrl = `${rootUrl}/motif/${id}`;
+
const response = await got({
method: 'get',
- url: motifUrl,
+ url: currentUrl,
});
- const data = JSON.parse(response.data.match(/"motifDetailData":{"code":0,"data":(.*?)},"channel":/)[1]);
- const motifInfo = data.motifInfo.data;
- const motifArticleList = data.motifArticleList.data.itemList;
- const articleList = motifArticleList.map((item) => ({
+ const data = JSON.parse(response.data.match(/"motifDetailData":{"code":0,"data":(.*)},"channel"/)[1]);
+
+ let items = data.motifArticleList.data.itemList.map((item) => ({
title: item.templateMaterial.widgetTitle,
- link: `https://36kr.com/${item.route.split('?')[0] === 'detail_video' ? 'video' : 'p'}/${item.itemId}`,
+ link: `${rootUrl}/p/${item.itemId}`,
pubDate: parseDate(item.templateMaterial.publishTime),
}));
+ items = await Promise.all(
+ items.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: item.link,
+ });
+
+ const key = CryptoJS.enc.Utf8.parse('efabccee-b754-4c');
+ const cipherText = detailResponse.data.match(/{"state":"(.*)","isEncrypt":true}/)[1];
+
+ const content = JSON.parse(
+ CryptoJS.AES.decrypt(cipherText, key, {
+ mode: CryptoJS.mode.ECB,
+ padding: CryptoJS.pad.Pkcs7,
+ })
+ .toString(CryptoJS.enc.Utf8)
+ .toString()
+ ).articleDetail.articleDetailData.data;
+
+ item.author = content.author;
+ item.description = content.widgetContent;
+
+ return item;
+ })
+ )
+ );
+
ctx.state.data = {
- title: `36氪专题 - ${motifInfo.categoryTitle}`,
- link: motifUrl,
- item: await Promise.all(
- articleList.map((item) =>
- ctx.cache.tryGet(item.link, async () => {
- const contentResponse = await got({ method: 'get', url: item.link });
- const result = contentResponse.data.match(/"articleDetailData":(.*?),"articleRecommendData":/) || contentResponse.data.match(/"videoDetail":(.*?),"authorVideos":/);
- const contentData = JSON.parse(result[1]);
- item.description = contentData.data.widgetContent;
- return item;
- })
- )
- ),
- description: motifInfo.categoryTitle,
+ title: `36kr - ${data.motifInfo.data.categoryTitle}`,
+ link: currentUrl,
+ item: items,
};
};
diff --git a/lib/v2/36kr/router.js b/lib/v2/36kr/router.js
index bfc5807f4e1476..223f81cc0e7480 100644
--- a/lib/v2/36kr/router.js
+++ b/lib/v2/36kr/router.js
@@ -1,5 +1,5 @@
module.exports = (router) => {
- router.get('/motif/:mid', require('./motif'));
+ router.get('/motif/:id', require('./motif'));
router.get('/news/:category?', require('./news'));
router.get('/newsflashes', require('./newsflashes'));
router.get('/search/article/:keyword', require('./search/article'));
|
ca9efda5d4fe8de88aa3354898353686f2c43184
|
2023-03-06 21:22:11
|
Ethan Shen
|
fix(route): 日本经济新闻中文版 (#11994)
| false
|
日本经济新闻中文版 (#11994)
|
fix
|
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index e36f10b8c296ba..a6764820629ac5 100644
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -166,7 +166,6 @@
{ title: '标签最近更新', docs: 'https://docs.rsshub.app/multimedia.html#mqube', source: '/search/tag/:tag', target: '/mqube/tag/:tag' },
],
},
- 'nikkei.com': { _name: '日本経済新聞', www: [{ title: 'ホームページ', docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen', source: '/', target: '/nikkei/index' }] },
'last.fm': {
_name: 'Last.fm',
www: [
diff --git a/docs/en/traditional-media.md b/docs/en/traditional-media.md
index 46a0f535013c53..00685cf76f30b7 100644
--- a/docs/en/traditional-media.md
+++ b/docs/en/traditional-media.md
@@ -350,17 +350,11 @@ Only `s00017` is in English.
| hi | id | ko | fa | pt | ru | es |
| Kiswahili | ภาษาไทย | Türkçe | Українська | اردو | Tiếng Việt |
-| --------- | | ------- | ------ | ---------- | ---- | ---------- |
+| --------- | ------- | ------ | ---------- | ---- | ---------- |
| sw | th | tr | uk | ur | vi |
</RouteEn>
-## Nikkei Asia
-
-### Latest News
-
-<RouteEn author="rainrdx" example="/nikkei-asia" path="/nikkei-asia"/>
-
## Radio Free Asia (RFA)
### News
@@ -660,6 +654,26 @@ Provides all of the articles by the specified New York Times author.
| series-books|
| young-adult-hardcover|
+## The Nikkei 日本経済新聞
+
+### Home
+
+<RouteEn author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1" rssbud="1" />
+
+### News
+
+<RouteEn author="Arracc" example="/nikkei/news" path="/nikkei/:category/:article_type?" :paramsDesc="['Category, see table below','Only includes free articles, set `free` to enable, disabled by default']">
+
+| 総合 | オピニオン | 経済 | 政治 | 金融 | マーケット | ビジネス | マネーのまなび | テック | 国際 | スポーツ | 社会・調査 | 地域 | 文化 | ライフスタイル |
+| ---- | --------- | ------- | -------- | --------- | -------- | ------- | ----------- | ---------- | ------------- | ------- | --------- | ------- | ------- | ------------- |
+| news | opinion | economy | politics | financial | business | 不支持 | 不支持 | technology | international | sports | society | local | culture | lifestyle |
+
+</RouteEn>
+
+### Nikkei Asia Latest News
+
+<RouteEn author="rainrdx" example="/nikkei/asia" path="/nikkei/asia" radar="1"/>
+
## The Wall Street Journal (WSJ)
### News
diff --git a/docs/traditional-media.md b/docs/traditional-media.md
index d9e7228f8b90ab..3f6dbf713b5238 100644
--- a/docs/traditional-media.md
+++ b/docs/traditional-media.md
@@ -305,12 +305,6 @@ pageClass: routes
</Route>
-## Nikkei Asia
-
-### 最新新闻
-
-<Route author="rainrdx" example="/nikkei-asia" path="/nikkei-asia"/>
-
## Now 新聞
### 新聞
@@ -1069,7 +1063,7 @@ IT・科学 tech_science
### 最新报道
-<Route author="Rongronggg9" example="/kyodonews" path="/kyodonews/:language?/:keyword?" :paramsDesc="['语言: `china` = 简体中文 (默认), `tchina` = 繁體中文', '关键词']">
+<Route author="Rongronggg9" example="/kyodonews" path="/kyodonews/:language?/:keyword?" :paramsDesc="['语言: `china` = 简体中文 (默认), `tchina` = 繁體中文', '关键词']">
`keyword` 为关键词,由于共同网有许多关键词并不在主页列出,此处不一一列举,可从关键词页的 URL 的最后一级路径中提取。如 `日中关系` 的关键词页 URL 为 `https://china.kyodonews.net/news/japan-china_relationship`, 则将 `japan-china_relationship` 填入 `keyword`。特别地,当填入 `rss` 时,将从共同网官方 RSS 中抓取文章;略去时,将从首页抓取最新报道 (注意:首页更新可能比官方 RSS 稍慢)。
@@ -1938,45 +1932,43 @@ category 对应的关键词有
</Route>
-## 日本经济新闻中文版
+## 日本经济新闻
-### 新闻
+### 首页
-<Route author="nczitzk" example="/nikkei-cn" path="/nikkei-cn/:language?/:category?/:type?" :paramsDesc="['语言,可选 `zh` 即 繁体中文,`cn` 即 简体中文', '分类,默认为空,可在对应分类页 URL 中找到', '子分类,默认为空,可在对应分类页 URL 中找到']" radar="1" rssbud="1">
+<Route author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1" rssbud="1" />
-::: tip 提示
+### 新聞
-如 [中国 经济 日经中文网](https://cn.nikkei.com/china/ceconomy.html) 的 URL 为 <https://cn.nikkei.com/china/ceconomy.html> 对应路由为 [`/nikkei-cn/cn/china/ceconomy`](https://rsshub.app/nikkei-cn/cn/china/ceconomy)
+<Route author="Arracc" example="/nikkei/news" path="/nikkei/:category/:article_type?" :paramsDesc="['版块', '文章类型,`free` 仅无料全文,缺省为无料全文、有料非全文']">
-如 [中國 經濟 日經中文網](https://zh.cn.nikkei.com/china/ceconomy.html) 的 URL 为 <https://zh.cn.nikkei.com/china/ceconomy.html> 对应路由为 [`/nikkei-cn/zh/china/ceconomy`](https://rsshub.app/nikkei-cn/zh/china/ceconomy)
+综合页文章标题添加板块标签
-特别地,当 `category` 填入 `rss` 后(即路由为 [`/nikkei-cn/cn/rss`](https://rsshub.app/nikkei-cn/cn/rss)),此时返回的是 [官方 RSS 的内容](https://cn.nikkei.com/rss.html)
-
-:::
+| 総合 | オピニオン | 経済 | 政治 | 金融 | マーケット | ビジネス | マネーのまなび | テック | 国際 | スポーツ | 社会・調査 | 地域 | 文化 | ライフスタイル |
+| ---- | ------- | ------- | -------- | --------- | -------- | ---- | ------- | ---------- | ------------- | ------ | ------- | ----- | ------- | --------- |
+| news | opinion | economy | politics | financial | business | 不支持 | 不支持 | technology | international | sports | society | local | culture | lifestyle |
</Route>
-## 日本経済新聞
+### 中文版新闻
-### ホームページ
+<Route author="nczitzk" example="/nikkei/cn" path="/nikkei/cn/:language?/:path?" :paramsDesc="['语言,可选 `zh` 即 繁体中文,`cn` 即 简体中文', '类目路径,默认为空,可在对应类目页 URL 中找到']" radar="1" rssbud="1">
-<Route author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1" rssbud="1">
+::: tip 提示
-日文版首页
+如 [中国 经济 日经中文网](https://cn.nikkei.com/china/ceconomy.html) 的 URL 为 <https://cn.nikkei.com/china/ceconomy.html> 对应路由为 [`/nikkei/cn/cn/china/ceconomy`](https://rsshub.app/nikkei/cn/cn/china/ceconomy)
-</Route>
+如 [中國 經濟 日經中文網](https://zh.cn.nikkei.com/china/ceconomy.html) 的 URL 为 <https://zh.cn.nikkei.com/china/ceconomy.html> 对应路由为 [`/nikkei/cn/zh/china/ceconomy`](https://rsshub.app/nikkei/cn/zh/china/ceconomy)
-### 新聞
+特别地,当 `path` 填入 `rss` 后(如路由为 [`/nikkei/cn/cn/rss`](https://rsshub.app/nikkei/cn/cn/rss)),此时返回的是 [官方 RSS 的内容](https://cn.nikkei.com/rss.html)
-<Route author="Arracc" example="/nikkei/news" path="/nikkei/:category/:article_type?" :paramsDesc="['版块','文章类型,free 仅无料全文,缺省为无料全文、有料非全文']">
+:::
-综合页文章标题添加板块标签
+</Route>
-| 総合 | マネーのまなび | 経済・金融 | 政治 | ビジネス | マネーのまなび | テクノロジー | 国際 | スポーツ | 社会・くらし | オピニオン | 文化 | FT | 地域 | 日経ビジネス | ライフ |
-| ---- | ------- | ------- | -------- | -------- | ------- | ---------- | ------------- | ------ | ------- | ------- | ------- | --- | ----- | ------ | --- |
-| news | 未支持 | economy | politics | business | 未支持 | technology | international | sports | society | opinion | culture | 未支持 | local | 未支持 | 未支持 |
+### Nikkei Asia 最新新闻
-</Route>
+<Route author="rainrdx" example="/nikkei/asia" path="/nikkei/asia" radar="1"/>
## 厦门网
diff --git a/lib/radar-rules.js b/lib/radar-rules.js
index 43b9c57b4b910d..672219d6280987 100644
--- a/lib/radar-rules.js
+++ b/lib/radar-rules.js
@@ -411,17 +411,6 @@ module.exports = {
},
],
},
- 'nikkei.com': {
- _name: '日本経済新聞',
- www: [
- {
- title: 'ホームページ',
- docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
- source: '/',
- target: '/nikkei/index',
- },
- ],
- },
'last.fm': {
_name: 'Last.fm',
www: [
diff --git a/lib/router.js b/lib/router.js
index 1a2cc02eb92453..233514aa85d7bf 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -2402,8 +2402,8 @@ router.get('/coronavirus/yahoo-japan/:tdfk?', lazyloadRouteHandler('./routes/cor
router.get('/njfu/jwc/:category?', lazyloadRouteHandler('./routes/universities/njfu/jwc'));
// 日本経済新聞
-router.get('/nikkei/index', lazyloadRouteHandler('./routes/nikkei/index'));
-router.get('/nikkei/:category/:article_type?', lazyloadRouteHandler('./routes/nikkei/news'));
+// router.get('/nikkei/index', lazyloadRouteHandler('./routes/nikkei/index'));
+// router.get('/nikkei/:category/:article_type?', lazyloadRouteHandler('./routes/nikkei/news'));
// MQube
router.get('/mqube/user/:user', lazyloadRouteHandler('./routes/mqube/user'));
diff --git a/lib/routes/nikkei/index.js b/lib/routes/nikkei/index.js
deleted file mode 100644
index d1f0bfa670f893..00000000000000
--- a/lib/routes/nikkei/index.js
+++ /dev/null
@@ -1,34 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-
-module.exports = async (ctx) => {
- const url = 'https://www.nikkei.com';
- const response = await got({ method: 'get', url });
- const $ = cheerio.load(response.data);
-
- const list = $('div[data-rn-track-category]')
- .map((_, e) => {
- const element = $(e);
- const title = element.data('rn-track-value').title;
- const link = url + element.find('a').attr('href');
-
- const src = element.find('img').attr('src');
- const dataSrc = element.find('img').attr('data-src');
-
- const imgSrc = dataSrc ? dataSrc : src;
- const desc = `<img src="${imgSrc}" />` + element.find('div .k-card__excerpt');
-
- return {
- title,
- description: desc,
- link,
- };
- })
- .get();
-
- ctx.state.data = {
- title: '日本経済新聞',
- link: url,
- item: list,
- };
-};
diff --git a/lib/routes/nikkei/news.js b/lib/routes/nikkei/news.js
deleted file mode 100644
index 2a57e04fb3edfd..00000000000000
--- a/lib/routes/nikkei/news.js
+++ /dev/null
@@ -1,155 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-
-module.exports = async (ctx) => {
- const category = ctx.params.category;
- const article_type = ctx.params.article_type;
- let url = '';
- if (category === 'news') {
- url = `https://www.nikkei.com`;
- } else {
- url = `https://www.nikkei.com/${category}/archive`;
- }
-
- const response = await got({
- method: 'get',
- url,
- });
- const data = response.data;
- const $ = cheerio.load(data);
-
- let categoryName = '';
- let list = null;
- let iconElement = '';
- if (category === 'news') {
- categoryName = '総合';
- list = $('div.k-card.k-card--small.k-card--reverse,.k-card--headline').not('[data-rn-track="hub-ad-recommend"]').not('.k-hub-card--small-title');
- iconElement = 'li.k-card__icon';
- } else {
- categoryName = $('h1.l-miH11_title').text().trim();
- list = $('div#CONTENTS_MAIN').children('div.m-miM09').not('.PRa');
- iconElement = 'span.m-iconMember';
- }
-
- const deleteItems = [];
- const items = await Promise.all(
- list
- .map(async (index, item) => {
- item = $(item);
- let title = '';
- let link = '';
- const memberLimit = item.find(iconElement).length > 0;
-
- if (memberLimit && article_type === 'free') {
- deleteItems.push(title);
- return {
- title,
- description: '',
- link,
- };
- } else {
- if (category === 'news') {
- title = item.find('a').eq(0).text();
- link = item.find('a.k-card__block-link').eq(0).attr('href');
- } else {
- title = item.children('h3').children('a').text();
- link = item.find('a').eq(0).attr('href');
- }
- if (link.substring(0, 4) !== 'http') {
- link = 'https://www.nikkei.com' + link;
- }
-
- const tagArr = [];
- if (categoryName === '総合') {
- const tagTable = {
- economy: '経済・金融',
- politics: '政治',
- business: 'ビジネス',
- technology: 'テクノロジー',
- international: '国際',
- sports: 'スポーツ',
- society: '社会・くらし',
- opinion: 'オピニオン',
- culture: '文化',
- local: '地域',
- style: 'ライフ',
- };
- item.find('li.k-card__tag')
- .children()
- .each((index, item) => {
- const tagPath = $(item).attr('href');
- let tag = '';
- if (tagPath.indexOf('?dw') >= 0) {
- tag = $('a[href="https://www.nikkei.com' + tagPath.replace('?', '/?') + '"]')
- .parent()
- .parent()
- .parent()
- .parent()
- .parent()
- .children('a')
- .text();
- } else if (tagPath.indexOf('style') >= 0) {
- tag = 'ライフ';
- } else {
- tag = tagTable[tagPath.split('/')[1]];
- }
- tag = tag ? tag : 'コラム';
- if (tag !== 'トップ' && tagArr.indexOf(tag) < 0) {
- tagArr.push(tag);
- }
- });
- const start = tagArr.indexOf('コラム');
- if (start >= 0 && tagArr.length > 1) {
- tagArr.splice(start, 1);
- }
- }
- if (memberLimit) {
- tagArr.push('会員限定');
- }
- if (tagArr.length > 0) {
- title = '[' + tagArr.join(' ') + '] ' + title;
- }
-
- const description = await ctx.cache.tryGet(link, async () => {
- const response = await got.get(link);
- const $ = cheerio.load(response.data);
- if ($('section.container_cz8tiun').length > 0) {
- $('section.container_cz8tiun')
- .find('figure')
- .each((index, item) => {
- const imgSrc = $(item).attr('data-src-for-image-viewer');
- const $imgElement = $('<img src="' + imgSrc + '"/>');
- $(item).prepend($imgElement);
- });
- return $('section.container_cz8tiun').html();
- } else {
- return $('div.sc-54bcr2-2.jMNzyO').html();
- }
- });
-
- return {
- title,
- description,
- link,
- };
- }
- })
- .get()
- );
-
- for (const deleteItem of deleteItems) {
- for (let index = 0; index < items.length; index++) {
- const item = items[index];
- if (item.title === deleteItem) {
- items.splice(index, 1);
- break;
- }
- }
- }
-
- ctx.state.data = {
- title: '日本経済新聞-' + categoryName,
- link: url,
- item: items,
- };
-};
diff --git a/lib/v2/nikkei-asia/maintainer.js b/lib/v2/nikkei-asia/maintainer.js
deleted file mode 100644
index fb325b6fce7ee2..00000000000000
--- a/lib/v2/nikkei-asia/maintainer.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- '/nikkei-asia': ['rainrdx'],
-};
diff --git a/lib/v2/nikkei-asia/radar.js b/lib/v2/nikkei-asia/radar.js
deleted file mode 100644
index 57ce95f0e2a316..00000000000000
--- a/lib/v2/nikkei-asia/radar.js
+++ /dev/null
@@ -1,13 +0,0 @@
-module.exports = {
- 'nikkei.com': {
- _name: 'Nikkei Asia',
- asia: [
- {
- title: 'Latest News',
- docs: 'https://docs.rsshub.app/traditional-media.html#nikkei-asia',
- source: '/',
- target: '/nikkei-asia/',
- },
- ],
- },
-};
diff --git a/lib/v2/nikkei-asia/router.js b/lib/v2/nikkei-asia/router.js
deleted file mode 100644
index 20c52b09d72938..00000000000000
--- a/lib/v2/nikkei-asia/router.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = function (router) {
- router.get('/', require('./index'));
-};
diff --git a/lib/v2/nikkei-cn/index.js b/lib/v2/nikkei-cn/index.js
deleted file mode 100644
index 863570ec215751..00000000000000
--- a/lib/v2/nikkei-cn/index.js
+++ /dev/null
@@ -1,89 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const timezone = require('@/utils/timezone');
-const { parseDate } = require('@/utils/parse-date');
-const { isValidHost } = require('@/utils/valid-host');
-
-const cleanContent = (language, content) => {
- switch (language) {
- case 'cn': {
- return content.replace(/<strong>版权声明:日本经济新闻社版权所有,未经授权不得转载或部分复制,违者必究。<\/strong>/g, '');
- }
- case 'zh': {
- return content.replace(/<strong>版權聲明:日本經濟新聞社版權所有,未經授權不得轉載或部分複製,違者必究。<\/strong>/g, '');
- }
- }
-};
-
-const getPubDate = (link) => {
- const matches = link.match(/(\d{4}-\d{2}-\d{2}-\d{2}-\d{2}-\d{2}|\d{8})/);
- return matches ? timezone(parseDate(matches[1], 'YYYY-MM-DD-HH-mm-ss'), +9) : undefined;
-};
-
-module.exports = async (ctx) => {
- const language = ctx.params.language ?? 'cn';
- const category = ctx.params.category ?? '';
- const type = ctx.params.type ?? '';
- if (!isValidHost(language)) {
- throw Error('Invalid language');
- }
-
- const rootUrl = `https://${language === 'zh' ? `zh.cn` : language}.nikkei.com`;
- const currentUrl = `${rootUrl}/${category ? (category === 'rss' ? 'rss.html' : `${category}${type ? `/${type}` : ''}.html`) : ''}`;
-
- const response = await got({
- method: 'get',
- url: currentUrl,
- });
-
- const $ = cheerio.load(response.data);
-
- let items =
- category === 'rss'
- ? response.data.match(/<link>(http:\/\/.*\.html)<\/link>/g).map((l) => ({
- link: l.replace(/<(\/)?link>/g, '').replace(/http:/g, 'https:'),
- pubDate: getPubDate(l),
- }))
- : $('dt a, p.newsDetailTtl a, ul.listStyle01 li a, table.sliderContent3 td a')
- .toArray()
- .map((item) => {
- item = $(item);
-
- const link = item.attr('href');
-
- return {
- link: `${link.startsWith('http') ? '' : rootUrl}${link}`,
- pubDate: getPubDate(link),
- };
- })
- .sort((a, b) => b.pubDate - a.pubDate) // desc
- .reduce((prev, cur) => (prev.length && prev[prev.length - 1].link === cur.link ? prev : [...prev, cur]), []) // deduplicate
- .slice(0, ctx.query.limit ? parseInt(ctx.query.limit) : 25);
-
- items = await Promise.all(
- items.map((item) =>
- ctx.cache.tryGet(item.link, async () => {
- const detailResponse = await got({
- method: 'get',
- url: `${item.link}?tmpl=component&print=1`,
- });
-
- const content = cheerio.load(detailResponse.data);
-
- content('#contentDiv div').first().remove();
-
- item.author = content('meta[name="author"]').attr('content');
- item.title = content('meta[name="twitter:title"]').attr('content');
- item.description = cleanContent(language, content('#contentDiv').html());
-
- return item;
- })
- )
- );
-
- ctx.state.data = {
- title: $('title').first().text(),
- link: currentUrl,
- item: items,
- };
-};
diff --git a/lib/v2/nikkei-cn/maintainer.js b/lib/v2/nikkei-cn/maintainer.js
deleted file mode 100644
index 99bc6b570a3eee..00000000000000
--- a/lib/v2/nikkei-cn/maintainer.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = {
- '/:language?/:category?/:type?': ['nczitzk'],
-};
diff --git a/lib/v2/nikkei-cn/radar.js b/lib/v2/nikkei-cn/radar.js
deleted file mode 100644
index 23d6430a29e88a..00000000000000
--- a/lib/v2/nikkei-cn/radar.js
+++ /dev/null
@@ -1,21 +0,0 @@
-module.exports = {
- 'nikkei.com': {
- _name: '日本经济新闻',
- cn: [
- {
- title: '新闻',
- docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen-zhong-wen-ban-xin-wen',
- source: '/',
- target: '/nikkei-cn/cn/:category?/:type?',
- },
- ],
- zh: [
- {
- title: '新聞',
- docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen-zhong-wen-ban-xin-wen',
- source: '/',
- target: '/nikkei-cn/zh/:category?/:type?',
- },
- ],
- },
-};
diff --git a/lib/v2/nikkei-cn/router.js b/lib/v2/nikkei-cn/router.js
deleted file mode 100644
index e24b05124f4c37..00000000000000
--- a/lib/v2/nikkei-cn/router.js
+++ /dev/null
@@ -1,3 +0,0 @@
-module.exports = function (router) {
- router.get('/:language?/:category?/:type?', require('./index'));
-};
diff --git a/lib/v2/nikkei-asia/index.js b/lib/v2/nikkei/asia/index.js
similarity index 53%
rename from lib/v2/nikkei-asia/index.js
rename to lib/v2/nikkei/asia/index.js
index 6eac5b3f0dbcf6..2bfff54bb57da9 100644
--- a/lib/v2/nikkei-asia/index.js
+++ b/lib/v2/nikkei/asia/index.js
@@ -22,11 +22,23 @@ module.exports = async (ctx) => {
item.pubDate = parseDate(item.published);
item.link = item.shareurl;
+ item.category = item.section;
const fulltextcontent = cheerio.load(fulltext.data);
- item.description = fulltextcontent('section[class="pp-article__body"]')
- .html()
- .replace(/\.\.\/\.\.\/\.\.\/\.\.\//g, 'https://main-asianreview-nikkei.content.pugpig.com/');
+ fulltextcontent('.pp-header-group__headline, .lightbox__control, .o-ads, #AdAsia').remove();
+ fulltextcontent('img').each((_, img) => {
+ if (img.attribs.full) {
+ img.attribs.src = img.attribs.full;
+ delete img.attribs.full;
+ }
+ });
+ item.description =
+ fulltextcontent('section[class="pp-article__header"]')
+ .html()
+ .replace(/\.\.\/\.\.\/\.\.\/\.\.\//g, 'https://main-asianreview-nikkei.content.pugpig.com/') +
+ fulltextcontent('section[class="pp-article__body"]')
+ .html()
+ .replace(/\.\.\/\.\.\/\.\.\/\.\.\//g, 'https://main-asianreview-nikkei.content.pugpig.com/');
return item;
})
)
@@ -35,6 +47,7 @@ module.exports = async (ctx) => {
ctx.state.data = {
title: 'Nikkei Asia',
link: 'https://asia.nikkei.com',
+ image: 'https://main-asianreview-nikkei.content.pugpig.com/pugpig_assets/admin/pub120x120.jpg',
item: items,
};
};
diff --git a/lib/v2/nikkei/cn/index.js b/lib/v2/nikkei/cn/index.js
new file mode 100644
index 00000000000000..ebd482d2fefbf2
--- /dev/null
+++ b/lib/v2/nikkei/cn/index.js
@@ -0,0 +1,90 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const timezone = require('@/utils/timezone');
+const { parseDate } = require('@/utils/parse-date');
+const parser = require('@/utils/rss-parser');
+
+module.exports = async (ctx) => {
+ let language = '';
+ let path = ctx.path;
+
+ if (!/^\/cn\/(cn|zh)/.test(path)) {
+ language = 'cn';
+ } else {
+ language = path.match(/^\/cn\/(cn|zh)/)[1];
+ path = path.match(new RegExp('\\/cn\\/' + language + '(.*)'))[1];
+ }
+
+ const limit = ctx.query.limit ? parseInt(ctx.query.limit) : 25;
+
+ const rootUrl = `https://${language === 'zh' ? 'zh.' : ''}cn.nikkei.com`;
+ const currentUrl = `${rootUrl}${path}`;
+ const isOfficialRSS = path === `/rss`;
+ let officialFeed;
+
+ let items = [],
+ $;
+
+ if (isOfficialRSS) {
+ officialFeed = await parser.parseURL(currentUrl);
+ items = officialFeed.items.slice(0, limit).map((item) => ({
+ title: item.title,
+ link: `${rootUrl}/x-columnviewpoint/${item.link.match(/\/([\d-]+\.html)/)[1]}`,
+ }));
+ } else {
+ const response = await got({
+ method: 'get',
+ url: currentUrl,
+ });
+
+ $ = cheerio.load(response.data);
+
+ items = $('dt a')
+ .toArray()
+ .map((item) => {
+ item = $(item);
+
+ return {
+ title: item.text(),
+ link: `${rootUrl}/x-columnviewpoint/${item.attr('href').match(/\/([\d-]+\.html)/)[1]}`,
+ };
+ })
+ .reduce((prev, cur) => (prev.length && prev[prev.length - 1].link === cur.link ? prev : [...prev, cur]), [])
+ .slice(0, limit);
+ }
+
+ items = await Promise.all(
+ items.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: `${item.link}?print=1`,
+ });
+
+ const content = cheerio.load(detailResponse.data);
+
+ const divs = content('#contentDiv div');
+ divs.first().remove();
+ divs.last().remove();
+
+ item.pubDate = timezone(parseDate(item.link.match(/\/\d+-(.*?)\.html/)[1], 'YYYY-MM-DD-HH-mm-ss'), +9);
+
+ item.author = content('meta[name="author"]').attr('content');
+ item.title = item.title ?? content('meta[name="twitter:title"]').attr('content');
+ item.description = content('#contentDiv')
+ .html()
+ ?.replace(/ /g, '')
+ .replace(/<p><\/p>/g, '');
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: isOfficialRSS ? officialFeed.title : $('title').first().text(),
+ description: isOfficialRSS ? officialFeed.description : '',
+ link: currentUrl,
+ item: items,
+ };
+};
diff --git a/lib/v2/nikkei/index.js b/lib/v2/nikkei/index.js
new file mode 100644
index 00000000000000..9b201d3aa1cce8
--- /dev/null
+++ b/lib/v2/nikkei/index.js
@@ -0,0 +1,36 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+module.exports = async (ctx) => {
+ const url = 'https://www.nikkei.com';
+ const response = await got(url);
+ const $ = cheerio.load(response.data);
+
+ const list = $('a[data-rn-inview-track-value]')
+ .toArray()
+ .map((e) => {
+ e = $(e);
+ const data = e.data('rn-track-value');
+ const title = data.title;
+ const link = `${url}/article/${data.kiji_id_raw}/`;
+
+ const parent = e.parent();
+ const img = parent.find('img[class^=image_]');
+ const imgSrc = img.attr('src');
+ const imgAlt = img.attr('alt');
+
+ const desc = `<img src="${imgSrc}" alt="${imgAlt}">` + (parent.find('[class^=excerptContainer]').length ? parent.find('[class^=excerptContainer]').html() : '');
+
+ return {
+ title,
+ description: desc,
+ link,
+ };
+ });
+
+ ctx.state.data = {
+ title: '日本経済新聞',
+ link: url,
+ item: list,
+ };
+};
diff --git a/lib/v2/nikkei/maintainer.js b/lib/v2/nikkei/maintainer.js
new file mode 100644
index 00000000000000..6508d3a047a2c1
--- /dev/null
+++ b/lib/v2/nikkei/maintainer.js
@@ -0,0 +1,6 @@
+module.exports = {
+ '/asia': ['rainrdx'],
+ '/cn/:language?/:path?': ['nczitzk'],
+ '/index': ['zjysdhr'],
+ '/:category/:article_type?': ['Arracc'],
+};
diff --git a/lib/v2/nikkei/news.js b/lib/v2/nikkei/news.js
new file mode 100644
index 00000000000000..4bbb69739dd8ea
--- /dev/null
+++ b/lib/v2/nikkei/news.js
@@ -0,0 +1,90 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const { art } = require('@/utils/render');
+const path = require('path');
+
+module.exports = async (ctx) => {
+ const baseUrl = 'https://www.nikkei.com';
+ const { category, article_type = 'paid' } = ctx.params;
+ let url = '';
+ if (category === 'news') {
+ url = `${baseUrl}/news/category/`;
+ } else {
+ url = `${baseUrl}/${category}/archive/`;
+ }
+
+ const response = await got(url);
+ const data = response.data;
+ const $ = cheerio.load(data);
+
+ let categoryName = '';
+ const listSelector = $('div#CONTENTS_MAIN').children('div.m-miM09').not('.PRa');
+ const paidSelector = 'span.m-iconMember';
+
+ let list = listSelector.toArray().map((item) => {
+ item = $(item);
+ item.find('p a').remove();
+ return {
+ title: item.find('.m-miM09_titleL').text(),
+ link: `${baseUrl}${item.find('.m-miM09_title a').attr('href')}`,
+ image: item.find('.m-miM09_thumb img').removeAttr('style').removeAttr('width').removeAttr('height').parent().html(),
+ category: item
+ .find('.m-miM09_keyword a')
+ .toArray()
+ .map((item) => $(item).text()),
+ paywall: !!item.find(paidSelector).length,
+ };
+ });
+
+ if (category === 'news') {
+ categoryName = '総合';
+ list = list.concat(
+ $('div#CONTENTS_MAIN .m-miM32_itemTitle')
+ .toArray()
+ .map((item) => {
+ item = $(item);
+ const a = item.find('a').first();
+ return {
+ title: a.text(),
+ link: `${baseUrl}${a.attr('href')}`,
+ category: item
+ .find('.m-miM32_itemkeyword a')
+ .toArray()
+ .map((item) => $(item).text()),
+ paywall: !!item.find(paidSelector).length,
+ };
+ })
+ );
+ } else {
+ categoryName = $('h1.l-miH11_title').text().trim();
+ }
+
+ const items = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const { data: response } = await got(item.link);
+ const $ = cheerio.load(response);
+
+ $('.notFloated_n1oadkwi').remove();
+
+ item.pubDate = parseDate($('meta[property="article:published_time"]').attr('content'));
+ item.description = art(path.join(__dirname, 'templates/news.art'), {
+ item,
+ description: $('section[class^=container_]').html(),
+ });
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: '日本経済新聞 - ' + categoryName,
+ description: $('meta[name="description"]').attr('content'),
+ link: url,
+ image: $('meta[property="og:image"]').attr('content'),
+ language: 'ja',
+ item: article_type === 'free' ? items.filter((item) => !item.paywall) : items,
+ };
+};
diff --git a/lib/v2/nikkei/radar.js b/lib/v2/nikkei/radar.js
new file mode 100644
index 00000000000000..0d347ad9cfa258
--- /dev/null
+++ b/lib/v2/nikkei/radar.js
@@ -0,0 +1,59 @@
+module.exports = {
+ 'nikkei.com': {
+ _name: '日本经济新闻',
+ asia: [
+ {
+ title: 'Latest News',
+ docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
+ source: '/',
+ target: '/nikkei/asia',
+ },
+ ],
+ cn: [
+ {
+ title: '中文版新闻',
+ docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen-zhong-wen-ban-xin-wen',
+ source: ['/:category/:type', '/:category', '/'],
+ target: (params) => {
+ if (params.category && params.type) {
+ return `/nikkei/cn/cn/${params.category}/${params.type.replace('.html', '')}`;
+ } else if (params.category && !params.type) {
+ return `/nikkei/cn/cn/${params.category.replace('.html', '')}`;
+ } else {
+ return `/nikkei/cn/cn`;
+ }
+ },
+ },
+ ],
+ www: [
+ {
+ title: 'ホームページ',
+ docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
+ source: '/',
+ target: '/nikkei/index',
+ },
+ {
+ title: '新聞',
+ docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
+ source: ['/:category/archive', '/:category'],
+ target: '/nikkei/:category',
+ },
+ ],
+ 'zh.cn': [
+ {
+ title: '中文版新聞',
+ docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen-zhong-wen-ban-xin-wen',
+ source: ['/:category/:type', '/:category', '/'],
+ target: (params) => {
+ if (params.category && params.type) {
+ return `/nikkei/cn/zh/${params.category}/${params.type.replace('.html', '')}`;
+ } else if (params.category && !params.type) {
+ return `/nikkei/cn/zh/${params.category.replace('.html', '')}`;
+ } else {
+ return `/nikkei/cn/zh`;
+ }
+ },
+ },
+ ],
+ },
+};
diff --git a/lib/v2/nikkei/router.js b/lib/v2/nikkei/router.js
new file mode 100644
index 00000000000000..336e4db01fbaaf
--- /dev/null
+++ b/lib/v2/nikkei/router.js
@@ -0,0 +1,7 @@
+module.exports = (router) => {
+ router.get('/', require('./index'));
+ router.get('/asia', require('./asia/index'));
+ router.get(/\/cn([\w-/]+)?/, require('./cn/index'));
+ router.get('/index', require('./index'));
+ router.get('/:category/:article_type?', require('./news'));
+};
diff --git a/lib/v2/nikkei/templates/news.art b/lib/v2/nikkei/templates/news.art
new file mode 100644
index 00000000000000..7a04d32026703f
--- /dev/null
+++ b/lib/v2/nikkei/templates/news.art
@@ -0,0 +1,4 @@
+{{ if item.paywall }}
+ {{ if item.image }}{{@ item.image }}<br>{{ /if }}
+{{ /if }}
+{{@ description }}
|
4adcd609865a10e5def26cf75511b50c6863a521
|
2024-01-20 00:06:56
|
github-actions[bot]
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/website/docs/routes/finance.mdx b/website/docs/routes/finance.mdx
index 1ca499b7094a0d..056e4b1b6ca240 100644
--- a/website/docs/routes/finance.mdx
+++ b/website/docs/routes/finance.mdx
@@ -797,52 +797,50 @@ TokenInsight also provides official RSS, you can take a look at [https://api.tok
### 栏目 {#zhong-guo-qi-huo-shi-chang-jian-kong-zhong-xin-lan-mu}
<Route author="nczitzk" example="/cfmmc/main/noticeannouncement/cfmmcnotice" path="/cfmmc/:id?" paramsDesc={['栏目 id,见下表,默认为中国期货监控公告']} radar="1">
-
-#### 党的建设
-
-| 栏目 | id |
-| -------- | -------------------------------------- |
-| 党建动态 | main/partybuilding/partybuildingtrends |
-| 基层风采 | main/partybuilding/basestyle |
-| 学习园地 | main/partybuilding/learninggarden |
-
-#### 通知公告
-
-| 栏目 | id |
-| ---------------- | ----------------------------------- |
-| 中国期货监控公告 | main/noticeannouncement/cfmmcnotice |
-| 证监会公告 | main/noticeannouncement/csrcnotice |
-| 上期所公告 | main/noticeannouncement/shfenotice |
-| 郑商所公告 | main/noticeannouncement/czcenotice |
-| 大商所公告 | main/noticeannouncement/dcenotice |
-| 中金所公告 | main/noticeannouncement/cffexnotice |
-| 广期所公告 | main/noticeannouncement/gfexnotice |
-
-#### 焦点新闻
-
-| 栏目 | id |
-| -------- | -------------------------------- |
-| 财经要闻 | main/focusnews/financialnews |
-| 专题聚焦 | main/focusnews/thematicfocus |
-| 金融动态 | main/focusnews/financialdynamics |
-
-#### 保障基金
-
-| 栏目 | id |
-| -------- | ------------------------------------- |
-| 基金概况 | main/securityfund/fundoverview |
-| 政策法规 | main/securityfund/policiesregulations |
-| 公告信息 | main/securityfund/noticeinformation |
-
-#### 政策法规
-
-| 栏目 | id |
-| -------------------- | --------------------------------------------- |
-| 国家法律法规 | main/policiesregulations/lawsregulations |
-| 部门规章及规范性文件 | main/policiesregulations/regulationsnormative |
-| 行业法规政策 | main/policiesregulations/industrypolicies |
-| 中国期货监控相关规则 | main/policiesregulations/cfmmcrules |
-
+ #### 党的建设
+
+ | 栏目 | id |
+ | -------- | -------------------------------------- |
+ | 党建动态 | main/partybuilding/partybuildingtrends |
+ | 基层风采 | main/partybuilding/basestyle |
+ | 学习园地 | main/partybuilding/learninggarden |
+
+ #### 通知公告
+
+ | 栏目 | id |
+ | ---------------- | ----------------------------------- |
+ | 中国期货监控公告 | main/noticeannouncement/cfmmcnotice |
+ | 证监会公告 | main/noticeannouncement/csrcnotice |
+ | 上期所公告 | main/noticeannouncement/shfenotice |
+ | 郑商所公告 | main/noticeannouncement/czcenotice |
+ | 大商所公告 | main/noticeannouncement/dcenotice |
+ | 中金所公告 | main/noticeannouncement/cffexnotice |
+ | 广期所公告 | main/noticeannouncement/gfexnotice |
+
+ #### 焦点新闻
+
+ | 栏目 | id |
+ | -------- | -------------------------------- |
+ | 财经要闻 | main/focusnews/financialnews |
+ | 专题聚焦 | main/focusnews/thematicfocus |
+ | 金融动态 | main/focusnews/financialdynamics |
+
+ #### 保障基金
+
+ | 栏目 | id |
+ | -------- | ------------------------------------- |
+ | 基金概况 | main/securityfund/fundoverview |
+ | 政策法规 | main/securityfund/policiesregulations |
+ | 公告信息 | main/securityfund/noticeinformation |
+
+ #### 政策法规
+
+ | 栏目 | id |
+ | -------------------- | --------------------------------------------- |
+ | 国家法律法规 | main/policiesregulations/lawsregulations |
+ | 部门规章及规范性文件 | main/policiesregulations/regulationsnormative |
+ | 行业法规政策 | main/policiesregulations/industrypolicies |
+ | 中国期货监控相关规则 | main/policiesregulations/cfmmcrules |
</Route>
## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
|
0118a27f4dbdef3c3f3f4ce9093f5dc00977a16d
|
2024-08-19 16:48:07
|
dependabot[bot]
|
chore(deps): bump @tonyrl/rand-user-agent from 2.0.73 to 2.0.74 (#16483)
| false
|
bump @tonyrl/rand-user-agent from 2.0.73 to 2.0.74 (#16483)
|
chore
|
diff --git a/package.json b/package.json
index a769d3181e882b..cdb5fc0daf38c3 100644
--- a/package.json
+++ b/package.json
@@ -63,7 +63,7 @@
"@postlight/parser": "2.2.3",
"@scalar/hono-api-reference": "0.5.139",
"@sentry/node": "7.116.0",
- "@tonyrl/rand-user-agent": "2.0.73",
+ "@tonyrl/rand-user-agent": "2.0.74",
"aes-js": "3.1.2",
"art-template": "4.13.2",
"bbcodejs": "0.0.4",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0f19e62237ba8c..7b43af04a71af8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -48,8 +48,8 @@ importers:
specifier: 7.116.0
version: 7.116.0
'@tonyrl/rand-user-agent':
- specifier: 2.0.73
- version: 2.0.73
+ specifier: 2.0.74
+ version: 2.0.74
aes-js:
specifier: 3.1.2
version: 3.1.2
@@ -1829,8 +1829,8 @@ packages:
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@tonyrl/[email protected]':
- resolution: {integrity: sha512-B/D/elKgDKxlTFz1SiwFb7+q0zs3L+HOF4FpIr/lO/vN1NnlU01YUm1rQK4njBz2q0fHaXgfQxUgc9ZVqxPrFQ==}
+ '@tonyrl/[email protected]':
+ resolution: {integrity: sha512-XvPLifvoCK3IW8et9a4180dE5Ps0nDvZaIJPGNa/wnpQVKSm9/YAiS20dXlUi70gVd1qrefouWprC8vN9kTyjA==}
engines: {node: '>=14.16'}
'@tootallnate/[email protected]':
@@ -7410,7 +7410,7 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tonyrl/[email protected]': {}
+ '@tonyrl/[email protected]': {}
'@tootallnate/[email protected]': {}
|
32889f5f58b38c74fe0c7ea2493f9c63ff68aa18
|
2023-08-11 18:29:13
|
PyangWU
|
feat(route): add 东南大学研究生院公告 (#12958)
| false
|
add 东南大学研究生院公告 (#12958)
|
feat
|
diff --git a/docs/university.md b/docs/university.md
index 351464d4d6ae5e..1837a34b0b6a48 100644
--- a/docs/university.md
+++ b/docs/university.md
@@ -1067,15 +1067,21 @@ pageClass: routes
### 信息科学与工程学院学术活动
-<Route author="HenryQW" example="/seu/radio/academic" path="/seu/radio/academic"/>
+<Route author="HenryQW" example="/seu/radio/academic" path="/seu/radio/academic" radar="1"/>
### 研究生招生网通知公告
-<Route author="fuzy112" example="/seu/yzb/1" path="/seu/yzb/:type" :paramsDesc="['1 为硕士招生,2 为博士招生,3 为港澳台及中外合作办学']"/>
+<Route author="fuzy112" example="/seu/yzb/6676" path="/seu/yzb/:type" :paramsDesc="['分类名,见下表']" radar="1">
+
+| 硕士招生 | 博士招生 | 港澳台及中外合作办学 |
+| -------- | -------- | -------------------- |
+| 6676 | 6677 | 6679 |
+
+</Route>
### 计算机技术与工程学院
-<Route author="LogicJake" example="/seu/cse/xyxw" path="/seu/cse/:type?" :paramsDesc="['分类名(默认为xyxw)']">
+<Route author="LogicJake" example="/seu/cse/xyxw" path="/seu/cse/:type?" :paramsDesc="['分类名,默认为 `xyxw`']" radar="1">
| 学院新闻 | 通知公告 | 教务信息 | 就业信息 | 学工事务 |
| -------- | -------- | -------- | -------- | -------- |
@@ -1083,6 +1089,10 @@ pageClass: routes
</Route>
+### 研究生院全部公告
+
+<Route author="Denkiyohou" example="/seu/yjs" path="seu/yjs"/>
+
## 对外经济贸易大学
### 人力资源处
diff --git a/lib/router.js b/lib/router.js
index 1e91db8ab63b09..6ce4e98f81643f 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -509,9 +509,9 @@ router.get('/dpu/wlfw/news/:type?', lazyloadRouteHandler('./routes/universities/
// router.get('/dut/:subsite/:type', lazyloadRouteHandler('./routes/universities/dut/index'));
// 东南大学
-router.get('/seu/radio/academic', lazyloadRouteHandler('./routes/universities/seu/radio/academic'));
-router.get('/seu/yzb/:type', lazyloadRouteHandler('./routes/universities/seu/yzb'));
-router.get('/seu/cse/:type?', lazyloadRouteHandler('./routes/universities/seu/cse'));
+// router.get('/seu/radio/academic', lazyloadRouteHandler('./routes/universities/seu/radio/academic'));
+// router.get('/seu/yzb/:type', lazyloadRouteHandler('./routes/universities/seu/yzb'));
+// router.get('/seu/cse/:type?', lazyloadRouteHandler('./routes/universities/seu/cse'));
// 南京工业大学
router.get('/njtech/jwc', lazyloadRouteHandler('./routes/universities/njtech/jwc'));
diff --git a/lib/routes/universities/seu/cse/index.js b/lib/routes/universities/seu/cse/index.js
deleted file mode 100644
index cd1c8440f46451..00000000000000
--- a/lib/routes/universities/seu/cse/index.js
+++ /dev/null
@@ -1,69 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://cse.seu.edu.cn/';
-
-const map = new Map([
- ['xyxw', { title: '东南大学计算机技术与工程学院 -- 学院新闻', suffix: '22535/list.htm' }],
- ['tzgg', { title: '东南大学计算机技术与工程学院 -- 通知公告', suffix: '22536/list.htm' }],
- ['jwxx', { title: '东南大学计算机技术与工程学院 -- 教务信息', suffix: '22538/list.htm' }],
- ['jyxx', { title: '东南大学计算机技术与工程学院 -- 就业信息', suffix: '22537/list.htm' }],
- ['xgsw', { title: '东南大学计算机技术与工程学院 -- 学工事务', suffix: '22539/list.htm' }],
-]);
-
-module.exports = async (ctx) => {
- const type = ctx.params.type || 'xyxw';
- const suffix = map.get(type).suffix;
-
- const link = url.resolve(host, suffix);
- const response = await got.get(link);
- const $ = cheerio.load(response.data);
-
- const list = $('table.wp_article_list_table tbody tr td > table > tbody > tr')
- .slice(0, 10)
- .map(function () {
- const info = {
- title: $(this).find('div.news_title.fl > a').attr('title'),
- link: $(this).find('div.news_title.fl > a').attr('href'),
- date: $(this).find('div.news_time.fr').text(),
- };
- return info;
- })
- .get();
-
- const out = await Promise.all(
- list.map(async (info) => {
- const title = info.title;
- const date = info.date;
- const itemUrl = url.resolve(host, info.link);
-
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const single = {
- title,
- link: itemUrl,
- description: $('div.wp_articlecontent')
- .html()
- .replace(/src="\//g, `src="${url.resolve(host, '.')}`)
- .trim(),
- pubDate: new Date(date).toUTCString(),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- link,
- title: map.get(type).title,
- description: '东南大学计算机技术与工程学院RSS',
- item: out,
- };
-};
diff --git a/lib/routes/universities/seu/radio/academic.js b/lib/routes/universities/seu/radio/academic.js
deleted file mode 100644
index 105647bb7e7c36..00000000000000
--- a/lib/routes/universities/seu/radio/academic.js
+++ /dev/null
@@ -1,65 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://radio.seu.edu.cn/';
-
-module.exports = async (ctx) => {
- const link = url.resolve(host, '_s29/15986/list.psp');
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const list = $('.list_item')
- .slice(0, 10)
- .map(function () {
- const info = {
- link: $(this).find('div:nth-child(1) span.Article_Title a').attr('href'),
- date: $(this).find('div:nth-child(2) span').text(),
- };
- return info;
- })
- .get();
-
- const out = await Promise.all(
- list.map(async (info) => {
- const itemUrl = url.resolve(host, info.link);
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- if (itemUrl.indexOf('redirect') !== -1) {
- const single = {
- title: $('.rich_media_title').text().trim(),
- link: itemUrl,
- description: $('.rich_media_content').text(),
- pubDate: new Date(info.date).toUTCString(),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- }
- const single = {
- title: $('.arti_title').text(),
- link: itemUrl,
- author: $('.arti_publisher').text().replace('发布者:', ''),
- description: $('.wp_articlecontent')
- .html()
- .replace(/src="\//g, `src="${url.resolve(host, '.')}`)
- .trim(),
- pubDate: new Date($('.arti_update').text().replace('发布时间:', '')).toUTCString(),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: '东南大学信息科学与工程学院 -- 学术活动',
- link,
- item: out,
- };
-};
diff --git a/lib/routes/universities/seu/yzb/index.js b/lib/routes/universities/seu/yzb/index.js
deleted file mode 100644
index a8ba384904f64c..00000000000000
--- a/lib/routes/universities/seu/yzb/index.js
+++ /dev/null
@@ -1,38 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://yzb.seu.edu.cn/';
-
-const map = new Map([
- [1, { title: '东南大学研究生招生网 -- 硕士招生', id: 'wp_news_w11' }],
- [2, { title: '东南大学研究生招生网 -- 博士招生', id: 'wp_news_w12' }],
- [3, { title: '东南大学研究生招生网 -- 港澳台及中外合作办学', id: 'wp_news_w103' }],
-]);
-
-module.exports = async (ctx) => {
- const type = Number.parseInt(ctx.params.type);
- const response = await got.get(host);
-
- const $ = cheerio.load(response.data);
-
- const id = map.get(type).id;
-
- const items = $(`#${id} tr tr`)
- .slice(0, 10)
- .map((_, elem) => {
- const a = $('td:first-child > a', elem);
- return {
- link: url.resolve(host, a.attr('href')),
- title: a.attr('title'),
- pubDate: new Date($('td:nth-child(2)', elem).text()).toUTCString(),
- };
- })
- .get();
-
- ctx.state.data = {
- link: host,
- title: map.get(type).title,
- item: items,
- };
-};
diff --git a/lib/v2/seu/cse/index.js b/lib/v2/seu/cse/index.js
new file mode 100644
index 00000000000000..6cd8eb994cf55a
--- /dev/null
+++ b/lib/v2/seu/cse/index.js
@@ -0,0 +1,63 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const host = 'https://cse.seu.edu.cn';
+
+ const map = {
+ 22535: { initial: 'xyxw' },
+ 22536: { initial: 'tzgg' },
+ 22538: { initial: 'jwxx' },
+ 22537: { initial: 'jyxx' },
+ 22539: { initial: 'xgsw' },
+ };
+
+ const { type = 22535 } = ctx.params;
+ const id = type.length === 4 ? Object.keys(map).find((key) => map[key].initial === type) : parseInt(type); // backward compatible
+ const link = new URL(`${id}/list.htm`, host).href;
+
+ const { data: response } = await got(link);
+ const $ = cheerio.load(response);
+
+ const list = $('.news_list .news')
+ .toArray()
+ .map((e) => {
+ e = $(e);
+ const a = e.find('.news_title a');
+ return {
+ title: a.attr('title'),
+ link: new URL(a.attr('href'), host).href,
+ pubDate: parseDate(e.find('.news_meta').text()),
+ };
+ });
+
+ const out = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ let response;
+ try {
+ response = await got(item.link);
+ } catch (error) {
+ // intranet
+ if (error.response.url.startsWith('https://newids.seu.edu.cn/')) {
+ return item;
+ }
+ throw error;
+ }
+ const $ = cheerio.load(response.data);
+
+ item.description = $('div.wp_articlecontent').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ link,
+ title: `${$('meta[name=keywords]').attr('content')}${$('meta[name=description]').attr('content')} -- ${$('head title').text()}`,
+ description: '东南大学计算机技术与工程学院RSS',
+ item: out,
+ };
+};
diff --git a/lib/v2/seu/maintainer.js b/lib/v2/seu/maintainer.js
new file mode 100644
index 00000000000000..34113f54af7bcf
--- /dev/null
+++ b/lib/v2/seu/maintainer.js
@@ -0,0 +1,6 @@
+module.exports = {
+ '/cse/:type?': ['LogicJake'],
+ '/radio/academic': ['HenryQW'],
+ '/yjs': ['Denkiyohou'],
+ '/yzb/:type': ['fuzy112'],
+};
diff --git a/lib/v2/seu/radar.js b/lib/v2/seu/radar.js
new file mode 100644
index 00000000000000..3eff2f33a50db4
--- /dev/null
+++ b/lib/v2/seu/radar.js
@@ -0,0 +1,37 @@
+module.exports = {
+ 'seu.edu.cn': {
+ _name: '东南大学',
+ cse: [
+ {
+ title: '计算机技术与工程学院',
+ docs: 'https://docs.rsshub.app/university.html#dong-nan-da-xue',
+ source: ['/:type/list.htm', '/'],
+ target: '/seu/cse/:type?',
+ },
+ ],
+ radio: [
+ {
+ title: '信息科学与工程学院学术活动',
+ docs: 'https://docs.rsshub.app/university.html#dong-nan-da-xue',
+ source: ['/_s29/15986/list.psp', '/'],
+ target: '/seu/radio/academic',
+ },
+ ],
+ seugs: [
+ {
+ title: '研究生院全部公告',
+ docs: 'https://docs.rsshub.app/university.html#dong-nan-da-xue-yan-jiu-sheng-yuan-quan-bu-gong-gao',
+ source: ['/26671/list.htm', '/'],
+ target: '/seu/yjs',
+ },
+ ],
+ yzb: [
+ {
+ title: '研究生招生网通知公告',
+ docs: 'https://docs.rsshub.app/university.html#dong-nan-da-xue',
+ source: ['/:type/list.htm'],
+ target: '/seu/yzb/:type',
+ },
+ ],
+ },
+};
diff --git a/lib/v2/seu/radio/academic.js b/lib/v2/seu/radio/academic.js
new file mode 100644
index 00000000000000..e607decc1c3584
--- /dev/null
+++ b/lib/v2/seu/radio/academic.js
@@ -0,0 +1,43 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const host = 'https://radio.seu.edu.cn';
+ const link = new URL('_s29/15986/list.psp', host).href;
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ const list = $('.list_item')
+ .toArray()
+ .map((e) => {
+ e = $(e);
+ const a = e.find('.Article_Title a');
+ return {
+ title: a.attr('title'),
+ link: new URL(a.attr('href'), host).href,
+ pubDate: parseDate(e.find('.Article_PublishDate').text()),
+ };
+ });
+
+ const out = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ item.author = $('.arti_publisher').text().replace('发布者:', '');
+ item.description = $('.wp_articlecontent').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: '东南大学信息科学与工程学院 -- 学术活动',
+ link,
+ item: out,
+ };
+};
diff --git a/lib/v2/seu/router.js b/lib/v2/seu/router.js
new file mode 100644
index 00000000000000..2c2c0c0ac57532
--- /dev/null
+++ b/lib/v2/seu/router.js
@@ -0,0 +1,6 @@
+module.exports = (router) => {
+ router.get('/cse/:type?', require('./cse'));
+ router.get('/radio/academic', require('./radio/academic'));
+ router.get('/yjs', require('./yjs'));
+ router.get('/yzb/:type', require('./yzb'));
+};
diff --git a/lib/v2/seu/yjs.js b/lib/v2/seu/yjs.js
new file mode 100644
index 00000000000000..b0037a9612c03e
--- /dev/null
+++ b/lib/v2/seu/yjs.js
@@ -0,0 +1,37 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+const url = 'https://seugs.seu.edu.cn/26671/list.htm';
+
+module.exports = async (ctx) => {
+ const response = await got(url);
+ const $ = cheerio.load(response.data);
+ const list = $('.news')
+ .toArray()
+ .map((element) => {
+ const info = {
+ title: $(element).find('span.news_title > a').attr('title'),
+ link: `https://seugs.seu.edu.cn${$(element).find('span.news_title > a').attr('href')}`,
+ date: $(element).find('span.news_meta').text(),
+ };
+ return info;
+ });
+
+ const items = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+ item.description = $('.wp_articlecontent').html();
+ item.pubDate = new Date(item.date).toUTCString();
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: '东南大学研究生公告',
+ link: url,
+ item: items,
+ };
+};
diff --git a/lib/v2/seu/yzb/index.js b/lib/v2/seu/yzb/index.js
new file mode 100644
index 00000000000000..c72268a763c25e
--- /dev/null
+++ b/lib/v2/seu/yzb/index.js
@@ -0,0 +1,51 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const host = 'https://yzb.seu.edu.cn';
+
+ const map = {
+ 6676: { id: 1 },
+ 6677: { id: 2 },
+ 6679: { id: 3 },
+ };
+
+ const { type } = ctx.params;
+ const id = type.length === 1 ? Object.keys(map).find((key) => map[key].id === parseInt(type)) : parseInt(type); // backward compatible
+ const url = new URL(`${id}/list.htm`, host).href;
+
+ const { data: response } = await got(url);
+ const $ = cheerio.load(response);
+
+ const list = $('#wp_news_w3 td tbody tr')
+ .toArray()
+ .map((elem) => {
+ elem = $(elem);
+ const a = elem.find('td a');
+ return {
+ title: a.attr('title'),
+ link: new URL(a.attr('href'), host).href,
+ pubDate: parseDate(elem.find('td div').text()),
+ };
+ });
+
+ const items = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const { data: response } = await got(item.link);
+ const $ = cheerio.load(response);
+
+ item.description = $('.Article_Content').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ link: url,
+ title: `东南大学研究生招生网 -- ${$('head title').text()}`,
+ item: items,
+ };
+};
|
5891dd8cc6021086e74405129b376cf1ba09f681
|
2024-12-19 09:32:46
|
Tony
|
fix(behance): use GraphQL instead (#17928)
| false
|
use GraphQL instead (#17928)
|
fix
|
diff --git a/lib/routes/behance/queries.ts b/lib/routes/behance/queries.ts
new file mode 100644
index 00000000000000..d8101162c0e3cc
--- /dev/null
+++ b/lib/routes/behance/queries.ts
@@ -0,0 +1,1015 @@
+export const getProfileProjectsAndSelectionsQuery = `query GetProfileProjectsAndSections($username: String, $after: String) {
+ user(username: $username) {
+ hasPortfolio
+ profileSections {
+ ...profileSectionFields
+ }
+ profileProjects(first: 12, after: $after) {
+ pageInfo {
+ endCursor
+ hasNextPage
+ }
+ nodes {
+ __typename
+ adminFlags {
+ mature_lock
+ privacy_lock
+ dmca_lock
+ flagged_lock
+ privacy_violation_lock
+ trademark_lock
+ spam_lock
+ eu_ip_lock
+ }
+ canBeBoosted
+ colors {
+ r
+ g
+ b
+ }
+ covers {
+ size_202 {
+ url
+ }
+ size_404 {
+ url
+ }
+ size_808 {
+ url
+ }
+ }
+ features {
+ url
+ name
+ featuredOn
+ ribbon {
+ image
+ image2x
+ image3x
+ }
+ }
+ fields {
+ id
+ label
+ slug
+ url
+ }
+ hasMatureContent
+ id
+ isBoosted
+ isFeatured
+ isHiddenFromWorkTab
+ isMatureReviewSubmitted
+ isMonaReported
+ isOwner
+ isFounder
+ isPinnedToSubscriptionOverview
+ isPrivate
+ sourceFiles {
+ ...sourceFileWithCoverFields
+ }
+ matureAccess
+ modifiedOn
+ name
+ owners {
+ ...OwnerFields
+ images {
+ size_50 {
+ url
+ }
+ }
+ }
+ premium
+ publishedOn
+ privacyLevel
+ profileSectionId
+ stats {
+ appreciations {
+ all
+ }
+ views {
+ all
+ }
+ comments {
+ all
+ }
+ }
+ slug
+ url
+ }
+ }
+ }
+ viewer {
+ flags {
+ hasClickedOnAddProfileSectionButton
+ hasSeenProfilePortfolioUpsellModal
+ hasSeenCreatorProIntroModal
+ lastSeenMarketingPopupTimestamp
+ onboardedAsHirer
+ }
+ }
+ }
+
+ fragment sourceFileWithCoverFields on SourceFile {
+ __typename
+ sourceFileId
+ projectId
+ userId
+ title
+ assetId
+ renditionUrl
+ mimeType
+ size
+ category
+ licenseType
+ unitAmount
+ currency
+ tier
+ hidden
+ extension
+ hasUserPurchased
+ description
+ cover {
+ coverUrl
+ coverX
+ coverY
+ coverScale
+ }
+ }
+
+ fragment OwnerFields on User {
+ displayName
+ hasPremiumAccess
+ id
+ isFollowing
+ isProfileOwner
+ location
+ locationUrl
+ url
+ username
+ isMessageButtonVisible
+ availabilityInfo {
+ availabilityTimeline
+ isAvailableFullTime
+ isAvailableFreelance
+ hiringTimeline {
+ key
+ label
+ }
+ }
+ creatorPro {
+ isActive
+ initialSubscriptionDate
+ }
+ }
+
+ fragment profileSectionFields on ProfileSection {
+ id
+ isDefault
+ name
+ order
+ projectCount
+ userId
+ }`;
+
+export const getAppreciatedQuery = `query GetAppreciatedProjects($username: String, $after: String) {
+ user(username: $username) {
+ appreciatedProjects(first: 24, after: $after) {
+ nodes {
+ __typename
+ colors {
+ r
+ g
+ b
+ }
+ covers {
+ size_202 {
+ url
+ }
+ size_404 {
+ url
+ }
+ size_808 {
+ url
+ }
+ }
+ slug
+ id
+ name
+ url
+ owners {
+ ...OwnerFields
+ images {
+ size_50 {
+ url
+ }
+ }
+ }
+ stats {
+ appreciations {
+ all
+ }
+ views {
+ all
+ }
+ }
+ }
+ pageInfo {
+ endCursor
+ hasNextPage
+ }
+ }
+ }
+ }
+ fragment OwnerFields on User {
+ displayName
+ hasPremiumAccess
+ id
+ isFollowing
+ isProfileOwner
+ location
+ locationUrl
+ url
+ username
+ isMessageButtonVisible
+ availabilityInfo {
+ availabilityTimeline
+ isAvailableFullTime
+ isAvailableFreelance
+ hiringTimeline {
+ key
+ label
+ }
+ }
+ creatorPro {
+ isActive
+ initialSubscriptionDate
+ }
+ }`;
+
+export const getProjectPageQuery = `query ProjectPage($projectId: ProjectId!, $projectPassword: String) {
+ viewer {
+ ...Project_Viewer
+ }
+ project(id: $projectId) {
+ id
+ slug
+ premium
+ isPrivate
+ isOwner
+ canvasWidth
+ embedTag
+ url
+ stylesInline
+ ...Project_Project
+ ...EmbedShareModal_Project
+ creator {
+ hasPremiumAccess
+ }
+ owners {
+ id
+ username
+ displayName
+ }
+ allModules(projectPassword: $projectPassword) {
+ __typename
+ }
+ }
+ }
+ fragment Avatar_UserImageSizes on UserImageSizes {
+ ...AvatarImage_UserImageSizes
+ }
+ fragment Avatar_User on User {
+ id
+ url
+ images {
+ ...Avatar_UserImageSizes
+ }
+ creatorPro {
+ isActive
+ }
+ ...CreatorProBadge_User
+ }
+ fragment AvatarImage_UserImageSizes on UserImageSizes {
+ allAvailable {
+ url
+ width
+ type
+ }
+ }
+ fragment CreatorProBadge_User on User {
+ creatorPro {
+ initialSubscriptionDate
+ }
+ }
+ fragment EmbedShareModal_Project on Project {
+ ...EmbedShareProjectCover_Project
+ }
+ fragment Feature_ProjectFeature on ProjectFeature {
+ url
+ name
+ featuredOn
+ ribbon {
+ image
+ image2x
+ }
+ }
+ fragment HireOverlay_User on User {
+ id
+ firstName
+ isResponsiveToHiring
+ isMessageButtonVisible
+ ...Avatar_User
+ ...WideMessageButton_User
+ availabilityInfo {
+ hiringTimeline {
+ key
+ }
+ }
+ }
+ fragment ProjectInfoBox_User on User {
+ id
+ displayName
+ url
+ isFollowing
+ ...MultipleOwners_User
+ }
+ fragment ProjectInfoBox_Project on Project {
+ id
+ name
+ url
+ isOwner
+ covers {
+ allAvailable {
+ url
+ width
+ type
+ }
+ }
+ owners {
+ ...ProjectInfoBox_User
+ }
+ }
+ fragment SourceAssetsPane_SourceFile on SourceFile {
+ ...SourceFileRowsContainer_SourceFile
+ }
+ fragment SourceFileRowsContainer_SourceFile on SourceFile {
+ tier
+ hasUserPurchased
+ ...SourceFileRow_SourceFile
+ }
+ fragment UserInfo_User on User {
+ displayName
+ id
+ location
+ locationUrl
+ url
+ country
+ isProfileOwner
+ city
+ state
+ creatorPro {
+ isActive
+ }
+ ...Avatar_User
+ }
+ fragment UsersTooltip_User on User {
+ displayName
+ id
+ isFollowing
+ isProfileOwner
+ availabilityInfo {
+ isAvailableFullTime
+ isAvailableFreelance
+ }
+ ...UserInfo_User
+ }
+ fragment DominantColor_Colors on Colors {
+ r
+ g
+ b
+ }
+ fragment Tools_Tool on Tool {
+ id
+ title
+ url
+ backgroundImage {
+ size_original {
+ url
+ }
+ }
+ backgroundColor
+ synonym {
+ tagId
+ name
+ title
+ downloadUrl
+ iconUrl
+ }
+ }
+ fragment HireMeForm_UserAvailabilityInfo on UserAvailabilityInfo {
+ isAvailableFreelance
+ isAvailableFullTime
+ budgetMin
+ currency
+ compensationMin
+ hiringTimeline {
+ key
+ }
+ }
+ fragment MessageDialogManager_User on User {
+ id
+ displayName
+ username
+ images {
+ ...AvatarImage_UserImageSizes
+ }
+ creatorPro {
+ isActive
+ }
+ ...SendRegularMessagePane_User
+ ...ServicesPane_User
+ }
+ fragment SendRegularMessagePane_User on User {
+ displayName
+ availabilityInfo {
+ ...HireMeForm_UserAvailabilityInfo
+ }
+ }
+ fragment ServicesPane_User on User {
+ id
+ displayName
+ ...InquireServiceModal_User
+ ...ViewServiceInfoModal_User
+ }
+ fragment MessageManager_User on User {
+ id
+ isMessageButtonVisible
+ displayName
+ username
+ ...MessageDialogManager_User
+ availabilityInfo {
+ availabilityTimeline
+ isAvailableFullTime
+ isAvailableFreelance
+ hiringTimeline {
+ key
+ }
+ }
+ }
+ fragment WideMessageButton_User on User {
+ firstName
+ ...MessageManager_User
+ }
+ fragment AppreciationNotification_Viewer on Viewer {
+ url
+ }
+ fragment Avatar_Project_User on User {
+ id
+ ...Avatar_User
+ }
+ fragment ImageElement_ImageModule on ImageModule {
+ id
+ altText
+ height
+ width
+ fullBleed
+ imageSizes {
+ allAvailable(type: [JPG, WEBP]) {
+ url
+ width
+ height
+ type
+ }
+ size_max_158 {
+ url
+ }
+ }
+ }
+ fragment Module_ProjectModule on ProjectModule {
+ ...Embed_ProjectModule
+ ... on AudioModule {
+ id
+ caption
+ captionAlignment
+ }
+ ... on VideoModule {
+ id
+ caption
+ captionAlignment
+ }
+ ... on EmbedModule {
+ id
+ caption
+ captionAlignment
+ }
+ ... on ImageModule {
+ id
+ ...ThreeD_ImageModule
+ ...SingleImage_ImageModule
+ ...Image_ImageModule
+ }
+ ... on MediaCollectionModule {
+ id
+ caption: captionPlain
+ captionAlignment
+ components {
+ ...Actions_MediaCollectionComponent
+ filename
+ flexHeight
+ flexWidth
+ height
+ width
+ id
+ imageSizes {
+ allAvailable(type: [JPG, WEBP]) {
+ url
+ width
+ height
+ type
+ }
+ }
+ }
+ fullBleed
+ }
+ ... on TextModule {
+ id
+ text
+ alignment
+ }
+ }
+ fragment MultipleOwners_User on User {
+ ...UsersTooltip_User
+ }
+ fragment MultipleOwners_Project on Project {
+ id
+ name
+ }
+ fragment Project_Owners_User on User {
+ id
+ displayName
+ username
+ firstName
+ url
+ isFollowing
+ isMessageButtonVisible
+ isCreatorPro
+ creatorPro {
+ isActive
+ }
+ ...UsersTooltip_User
+ ...MultipleOwners_User
+ ...Avatar_Project_User
+ ...Avatar_User
+ ...HireOverlay_User
+ }
+ fragment Project_Creator_User on User {
+ id
+ isProfileOwner
+ isFollowing
+ hasPremiumAccess
+ hasAllowEmbeds
+ url
+ ...PaneHeader_User
+ }
+ fragment Project_ProjectCoverImageSizes on ProjectCoverImageSizes {
+ allAvailable {
+ url
+ width
+ type
+ }
+ }
+ fragment Project_Tool on Tool {
+ ...Tools_Tool
+ }
+ fragment Project_SourceFile on SourceFile {
+ ...SourceFileRowsContainer_SourceFile
+ ...SourceFilesProjectOverlay_SourceFile
+ ...ProjectExtras_SourceFile
+ }
+ fragment Project_ProjectFeature on ProjectFeature {
+ ...Feature_ProjectFeature
+ }
+ fragment Project_Project on Project {
+ id
+ slug
+ name
+ url
+ description
+ tags {
+ id
+ title
+ }
+ privacyLevel
+ matureAccess
+ canvasWidth
+ isOwner
+ hasMatureContent
+ isPrivate
+ publishedOn
+ canBeAddedToMoodboard
+ isMonaReported
+ isAppreciated
+ projectCTA {
+ ctaType
+ link {
+ description
+ url
+ title
+ }
+ isDefaultCTA
+ }
+ ...MultipleOwners_Project
+ ...ProjectInfoBox_Project
+ ...ProjectLightbox_Project
+ ...ProjectExtras_Project
+ covers {
+ ...Project_ProjectCoverImageSizes
+ }
+ sourceFiles {
+ ...Project_SourceFile
+ }
+ creator {
+ ...Project_Creator_User
+ }
+ owners {
+ ...Project_Owners_User
+ }
+ tools {
+ ...Project_Tool
+ }
+ allModules(projectPassword: $projectPassword) {
+ ... on AudioModule {
+ id
+ fullBleed
+ caption
+ }
+ ... on EmbedModule {
+ id
+ caption
+ }
+ ... on ImageModule {
+ id
+ fullBleed
+ caption
+ imageSizes {
+ size_disp {
+ url
+ }
+ size_disp_still {
+ url
+ }
+ }
+ ...Actions_ImageModule
+ }
+ ... on MediaCollectionModule {
+ id
+ fullBleed
+ caption: captionPlain
+ components {
+ id
+ imageSizes {
+ size_disp {
+ url
+ }
+ size_disp_still {
+ url
+ }
+ }
+ ...Actions_MediaCollectionComponent
+ }
+ }
+ ... on TextModule {
+ id
+ fullBleed
+ }
+ ... on VideoModule {
+ id
+ fullBleed
+ caption
+ }
+ ...Module_ProjectModule
+ }
+ aeroData {
+ externalUrl
+ }
+ adminNotices {
+ title
+ body
+ isReviewable
+ }
+ license {
+ license
+ }
+ features {
+ ...Project_ProjectFeature
+ }
+ stats {
+ appreciations {
+ all
+ }
+ views {
+ all
+ }
+ }
+ styles {
+ spacing {
+ projectTopMargin
+ }
+ }
+ colors {
+ r
+ g
+ b
+ }
+ }
+ fragment Project_Viewer on Viewer {
+ stats {
+ appreciations
+ }
+ pulsePoints {
+ displayFollow
+ displayAppreciate
+ }
+ flags {
+ hasSeenCreatorProIntroModal
+ onboardedAsHirer
+ }
+ creatorPro {
+ isActive
+ }
+ createdOn
+ ...AppreciationNotification_Viewer
+ ...ProjectExtras_Viewer
+ }
+ fragment ProjectComments_Viewer on Viewer {
+ ...ProjectCommentInput_Viewer
+ id
+ }
+ fragment ProjectCommentInput_Viewer on Viewer {
+ url
+ images {
+ size_50 {
+ url
+ }
+ }
+ }
+ fragment ProjectExtras_SourceFile on SourceFile {
+ ...ProjectInfo_SourceFile
+ }
+ fragment ProjectExtras_Project on Project {
+ isCommentingAllowed
+ }
+ fragment ProjectExtras_Viewer on Viewer {
+ ...ProjectInfo_Viewer
+ }
+ fragment ProjectInfo_SourceFile on SourceFile {
+ ...SourceAssetsPane_SourceFile
+ }
+ fragment ProjectInfo_Viewer on Viewer {
+ id
+ ...ProjectComments_Viewer
+ }
+ fragment ProjectLightbox_Project on Project {
+ id
+ slug
+ isOwner
+ ...ProjectInfoBox_Project
+ }
+ fragment SourceFilesProjectOverlay_SourceFile on SourceFile {
+ hasUserPurchased
+ ...SourceFileRow_SourceFile
+ }
+ fragment Video_VideoDisplay on VideoModule {
+ captionPlain
+ embed
+ height
+ id
+ width
+ }
+ fragment Actions_ImageModule on ImageModule {
+ id
+ hasCaiData
+ projectId
+ src
+ width
+ projectId
+ exifData {
+ lens {
+ ...Actions_exifDataValue
+ }
+ software {
+ ...Actions_exifDataValue
+ }
+ makeAndModel {
+ ...Actions_exifDataValue
+ }
+ focalLength {
+ ...Actions_exifDataValue
+ }
+ iso {
+ ...Actions_exifDataValue
+ }
+ location {
+ ...Actions_exifDataValue
+ }
+ flash {
+ ...Actions_exifDataValue
+ }
+ exposureMode {
+ ...Actions_exifDataValue
+ }
+ shutterSpeed {
+ ...Actions_exifDataValue
+ }
+ aperture {
+ ...Actions_exifDataValue
+ }
+ }
+ }
+ fragment Actions_exifDataValue on exifDataValue {
+ id
+ searchValue
+ label
+ value
+ }
+ fragment Actions_MediaCollectionComponent on MediaCollectionComponent {
+ id
+ }
+ fragment Audio_AudioModule on AudioModule {
+ captionPlain
+ embed
+ fullBleed
+ id
+ }
+ fragment Embed_ProjectModule on ProjectModule {
+ ... on EmbedModule {
+ ...ExternalEmbed_EmbedModule
+ }
+ ... on AudioModule {
+ isDoneProcessing
+ ...Audio_AudioModule
+ }
+ ... on VideoModule {
+ isDoneProcessing
+ ...Video_VideoModule
+ }
+ }
+ fragment ExternalEmbed_EmbedModule on EmbedModule {
+ captionPlain
+ fluidEmbed
+ embedModuleFullBleed: fullBleed
+ height
+ id
+ originalEmbed
+ originalHeight
+ originalWidth
+ width
+ widthUnit
+ }
+ fragment Image_ImageModule on ImageModule {
+ id
+ caption
+ captionAlignment
+ fullBleed
+ height
+ width
+ altText
+ ...Actions_ImageModule
+ ...ImageElement_ImageModule
+ }
+ fragment SingleImage_ImageModule on ImageModule {
+ id
+ caption
+ captionAlignment
+ fullBleed
+ height
+ width
+ ...Actions_ImageModule
+ ...ImageElement_ImageModule
+ }
+ fragment ThreeD_ImageModule on ImageModule {
+ id
+ altText
+ threeDData {
+ iframeUrl
+ }
+ }
+ fragment Video_VideoModule on VideoModule {
+ fullBleed
+ id
+ ...Video_VideoDisplay
+ }
+ fragment Avatar_EmbedFragment on User {
+ id
+ images {
+ allAvailable {
+ url
+ width
+ }
+ }
+ displayName
+ }
+ fragment EmbedShareProjectCover_SourceFile on SourceFile {
+ ...PaidAndFreeAssetsCountBadge_Embed_SourceFile
+ }
+ fragment EmbedShareProjectCover_User on User {
+ ...Avatar_EmbedFragment
+ }
+ fragment EmbedShareProjectCover_Project on Project {
+ id
+ isPrivate
+ isPublished
+ hasMatureContent
+ creator {
+ hasAllowEmbeds
+ }
+ colors {
+ ...DominantColor_Colors
+ }
+ sourceFiles {
+ ...EmbedShareProjectCover_SourceFile
+ }
+ name
+ url
+ covers {
+ allAvailable {
+ url
+ width
+ type
+ }
+ size_original_webp {
+ url
+ width
+ type
+ }
+ }
+ owners {
+ url
+ ...EmbedShareProjectCover_User
+ }
+ }
+ fragment PaidAndFreeAssetsCountBadge_Embed_SourceFile on SourceFile {
+ unitAmount
+ tier
+ hidden
+ }
+ fragment ViewServiceInfoModal_User on User {
+ id
+ displayName
+ url
+ images {
+ size_50 {
+ url
+ }
+ }
+ creatorPro {
+ isActive
+ }
+ ...CreatorProBadge_User
+ }
+ fragment InquireServiceModal_User on User {
+ id
+ displayName
+ images {
+ size_50 {
+ url
+ }
+ }
+ availabilityInfo {
+ hiringTimeline {
+ key
+ }
+ }
+ }
+ fragment SourceFileRow_SourceFile on SourceFile {
+ assetId
+ cover {
+ coverUrl
+ }
+ title
+ extension
+ currency
+ unitAmount
+ renditionUrl
+ hasUserPurchased
+ tier
+ sourceFileId
+ projectId
+ mimeType
+ category
+ licenseType
+ size
+ }
+ fragment PaneHeader_User on User {
+ id
+ url
+ displayName
+ images {
+ allAvailable {
+ width
+ url
+ type
+ }
+ }
+ }`;
diff --git a/lib/routes/behance/templates/description.art b/lib/routes/behance/templates/description.art
new file mode 100644
index 00000000000000..9f5b9fb5dcc896
--- /dev/null
+++ b/lib/routes/behance/templates/description.art
@@ -0,0 +1,21 @@
+{{ if description.length }}
+ {{ description }}<br>
+{{ /if }}
+
+{{ each modules module }}
+ {{ if module.__typename === 'ImageModule' }}
+ <figure>
+ <img src="{{ module.imageSizes.allAvailable[0].url }}" alt="{{ module.altText }}">
+ {{ if module.caption.length }}<figcaption>{{ module.caption }}</figcaption>{{ /if }}
+ </figure>
+ {{ else if module.__typename === 'TextModule' }}
+ {{@ module.text }}
+ {{ else if module.__typename === 'MediaCollectionModule' }}
+ {{ each module.components comp }}
+ <img src="https://mir-s3-cdn-cf.behance.net/project_modules/source/{{ comp.filename }}">
+ {{ /each }}
+ {{ else }}
+ UNHANDLED MODULE: {{ module.__typename }}
+ {{ /if }}
+ <br>
+{{ /each }}
diff --git a/lib/routes/behance/user.ts b/lib/routes/behance/user.ts
index 34249494f7a96c..072fe3e253a6b0 100644
--- a/lib/routes/behance/user.ts
+++ b/lib/routes/behance/user.ts
@@ -1,8 +1,13 @@
import { Route, ViewType } from '@/types';
import cache from '@/utils/cache';
-import got from '@/utils/got';
-import { load } from 'cheerio';
+import ofetch from '@/utils/ofetch';
import { parseDate } from '@/utils/parse-date';
+import crypto from 'node:crypto';
+import path from 'node:path';
+import { art } from '@/utils/render';
+import { getCurrentPath } from '@/utils/helpers';
+import { getAppreciatedQuery, getProfileProjectsAndSelectionsQuery, getProjectPageQuery } from './queries';
+const __dirname = getCurrentPath(import.meta.url);
export const route: Route = {
path: '/:user/:type?',
@@ -34,66 +39,84 @@ export const route: Route = {
description: `Behance user's profile URL, like [https://www.behance.net/mishapetrick](https://www.behance.net/mishapetrick) the username will be \`mishapetrick\`。`,
};
+const getUserProfile = async (nodes, user) =>
+ (await cache.tryGet(`behance:profile:${user}`, () => {
+ const profile = nodes.flatMap((item) => item.owners).find((owner) => owner.username === user);
+
+ return Promise.resolve({
+ displayName: profile.displayName,
+ id: profile.id,
+ link: profile.url,
+ image: profile.images.size_50.url.replace('/user/50/', '/user/source/'),
+ });
+ })) as { displayName: string; id: string; link: string; image: string };
+
async function handler(ctx) {
- const user = ctx.req.param('user') ?? '';
- const type = ctx.req.param('type') ?? 'projects';
+ const { user, type = 'projects' } = ctx.req.param();
- const response = await got({
- method: 'get',
- url: `https://www.behance.net/${user}/${type}`, // 接口只获取12个项目
- headers: {
- 'X-Requested-With': 'XMLHttpRequest',
+ const uuid = crypto.randomUUID();
+ const headers = {
+ Cookie: `gk_suid=${Math.random().toString().substring(2, 10)}, gki=; originalReferrer=; bcp=${uuid}`,
+ 'X-BCP': uuid,
+ 'X-Requested-With': 'XMLHttpRequest',
+ };
+
+ const response = await ofetch('https://www.behance.net/v3/graphql', {
+ method: 'POST',
+ headers,
+ body: {
+ query: type === 'projects' ? getProfileProjectsAndSelectionsQuery : getAppreciatedQuery,
+ variables: {
+ username: user,
+ after: '',
+ },
},
});
- const data = response.data;
- let list;
- if (type === 'projects') {
- list = data.profile.activeSection.work.projects.slice(0, 12);
- }
- if (type === 'appreciated') {
- list = data.profile.activeSection.appreciations.appreciations.slice(0, 12);
- }
- const articledata = await Promise.all(
- list.map(async (item) => {
- if (type === 'appreciated') {
- item = item.project;
- }
- const url = `${item.url}?ilo0=1`;
- const description = await cache.tryGet(url, async () => {
- const response2 = await got({
- method: 'get',
- url,
+
+ const nodes = type === 'projects' ? response.data.user.profileProjects.nodes : response.data.user.appreciatedProjects.nodes;
+ const list = nodes.map((item) => ({
+ title: item.name,
+ link: item.url,
+ author: item.owners.map((owner) => owner.displayName).join(', '),
+ image: item.covers.size_808.url.replace('/808/', '/source/'),
+ pubDate: item.publishedOn ? parseDate(item.publishedOn, 'X') : undefined,
+ category: item.fields?.map((field) => field.label.toLowerCase()),
+ projectId: item.id,
+ }));
+
+ const profile = await getUserProfile(nodes, user);
+
+ const items = await Promise.all(
+ list.map((item) =>
+ cache.tryGet(item.link, async () => {
+ const response = await ofetch('https://www.behance.net/v3/graphql', {
+ method: 'POST',
+ headers,
+ body: {
+ query: getProjectPageQuery,
+ variables: {
+ projectId: item.projectId,
+ },
+ },
});
- const articleHtml = response2.data;
- const $2 = load(articleHtml);
- $2('.ImageElement-root-kir').remove();
- $2('.embed-dimensions').remove();
- $2('script.js-lightbox-slide-content').each((_, elem) => {
- elem = $2(elem);
- elem.replaceWith(elem.html());
+ const project = response.data.project;
+
+ item.description = art(path.join(__dirname, 'templates/description.art'), {
+ description: project.description,
+ modules: project.allModules,
});
- const content = $2('div.project-styles').html();
- const single = {
- content,
- };
- return single;
- });
- return description;
- })
+ item.category = [...new Set([...(item.category || []), ...(project.tags?.map((tag) => tag.title.toLowerCase()) || [])])];
+ item.pubDate = item.pubDate || (project.publishedOn ? parseDate(project.publishedOn, 'X') : undefined);
+
+ return item;
+ })
+ )
);
+
return {
- title: `${data.profile.owner.first_name} ${data.profile.owner.last_name}'s ${type}`,
- link: data.profile.owner.url,
- item: list.map((item, index) => {
- if (type === 'appreciated') {
- item = item.project;
- }
- return {
- title: item.name,
- description: articledata[index].content,
- link: item.url,
- pubDate: parseDate(item.published_on * 1000),
- };
- }),
+ title: `${profile.displayName}'s ${type}`,
+ link: `https://www.behance.net/${user}/${type}`,
+ image: profile.image,
+ item: items,
};
}
|
a9ae562d388b1431f271fd966702a86b64bfcd05
|
2024-03-09 14:22:18
|
DIYgod
|
feat: build markdown docs from routes
| false
|
build markdown docs from routes
|
feat
|
diff --git a/scripts/workflow/build-routes.ts b/scripts/workflow/build-routes.ts
index 61e011b48306ec..ac96251ba3b4b0 100644
--- a/scripts/workflow/build-routes.ts
+++ b/scripts/workflow/build-routes.ts
@@ -17,6 +17,7 @@ const radar: {
| string;
};
} = {};
+const docs = {};
for (const namespace in namespaces) {
for (const path in namespaces[namespace].routes) {
@@ -49,9 +50,79 @@ for (const namespace in namespaces) {
});
}
}
+ const categories = data.categories || namespaces[namespace].categories || ['other'];
+ for (const category of categories) {
+ if (!docs[category]) {
+ docs[category] = {};
+ }
+ if (!docs[category][namespace]) {
+ docs[category][namespace] = {
+ routes: {},
+ };
+ }
+ docs[category][namespace].name = namespaces[namespace].name;
+ docs[category][namespace].description = namespaces[namespace].description;
+ docs[category][namespace].routes[realPath] = data;
+ }
}
}
fs.writeFileSync(path.join(__dirname, '../../assets/build/radar-rules.json'), JSON.stringify(radar, null, 2));
fs.writeFileSync(path.join(__dirname, '../../assets/build/maintainers.json'), JSON.stringify(maintainers, null, 2));
fs.writeFileSync(path.join(__dirname, '../../assets/build/routes.json'), JSON.stringify(namespaces, null, 2));
+
+const pinyinCompare = new Intl.Collator('zh-Hans-CN-u-co-pinyin').compare;
+const isASCII = (str) => /^[\u0000-\u007F]*$/.test(str);
+
+const md = {};
+for (const category in docs) {
+ md[category] = `# ${category}\n\n`;
+
+ const namespaces = Object.keys(docs[category]).sort((a, b) => {
+ const aname = docs[category][a].name;
+ const bname = docs[category][b].name;
+ const ia = isASCII(aname);
+ const ib = isASCII(bname);
+ if (ia && ib) {
+ return aname.toLowerCase() < bname.toLowerCase() ? -1 : 1;
+ } else if (ia || ib) {
+ return ia > ib ? -1 : 1;
+ } else {
+ return pinyinCompare(aname, bname);
+ }
+ });
+ for (const namespace of namespaces) {
+ md[category] += `## ${docs[category][namespace].name}\n\n`;
+ if (docs[category][namespace].description) {
+ md[category] += `${docs[category][namespace].description}\n\n`;
+ }
+
+ const realPaths = Object.keys(docs[category][namespace].routes).sort((a, b) => {
+ const aname = docs[category][namespace].routes[a].name;
+ const bname = docs[category][namespace].routes[b].name;
+ const ia = isASCII(aname);
+ const ib = isASCII(bname);
+ if (ia && ib) {
+ return aname.toLowerCase() < bname.toLowerCase() ? -1 : 1;
+ } else if (ia || ib) {
+ return ia > ib ? -1 : 1;
+ } else {
+ return pinyinCompare(aname, bname);
+ }
+ });
+
+ for (const realPath of realPaths) {
+ const data = docs[category][namespace].routes[realPath];
+ md[category] += `### ${data.name}\n\n`;
+ md[category] += `<Route data={${JSON.stringify(data)}} />\n\n`;
+ if (data.description) {
+ md[category] += `${data.description}\n\n`;
+ }
+ }
+ }
+}
+
+fs.writeFileSync(path.join(__dirname, '../../assets/build/docs.json'), JSON.stringify(docs, null, 2));
+for (const category in md) {
+ fs.writeFileSync(path.join(__dirname, `../../website/docs/routes/${category}.mdx`), md[category]);
+}
diff --git a/website/docs/routes/anime.mdx b/website/docs/routes/anime.mdx
index f9599ca6de6f20..f79cec5a39471b 100644
--- a/website/docs/routes/anime.mdx
+++ b/website/docs/routes/anime.mdx
@@ -1,530 +1,295 @@
-# 🎨️ ACG
-
-## 005.tv {#005-tv}
-
-### 二次元资讯 {#005-tv-er-ci-yuan-zi-xun}
-
-<Route author="junfengP" example="/005tv/zx/latest" path="/005tv/zx/latest" />
-
-## 78 动漫 {#78-dong-man}
-
-### 新品速递 {#78-dong-man-xin-pin-su-di}
-
-<Route author="nczitzk" example="/78dm/news" path="/78dm/news/:path+" paramsDesc={['参数,见说明,默认为空']}>
- :::tip
- 若订阅 [新品速递](https://www.78dm.net/news),网址为 `https://www.78dm.net/news`。截取 `https://www.78dm.net` 到末尾的部分 `/news` 作为参数,此时路由为 [`/78dm/news`](https://rsshub.app/78dm/news)。
-
- 若订阅子分类 [新品速递 - 综合](https://www.78dm.net/news/0/9/0/0/0/0/0/1.html),网址为 `https://www.78dm.net/news/0/9/0/0/0/0/0/1.html`。截取 `https://www.78dm.net` 到末尾 `.html` 的部分 `/news/0/9/0/0/0/0/0/1` 作为参数,路由为 [`/78dm/news/0/9/0/0/0/0/0/1`](https://rsshub.app/78dm/news/0/9/0/0/0/0/0/1)。
- :::
-</Route>
-
-### 精彩评测 {#78-dong-man-jing-cai-ping-ce}
-
-<Route author="nczitzk" example="/78dm/eval_list" path="/78dm/eval_list/:path+" paramsDesc={['参数,见说明,默认为空']}>
- :::tip
- 若订阅 [精彩评测](https://www.78dm.net/eval_list),网址为 `https://www.78dm.net/eval_list`。截取 `https://www.78dm.net` 到末尾的部分 `/eval_list` 作为参数,此时路由为 [`/78dm/eval_list`](https://rsshub.app/78dm/eval_list)。
-
- 若订阅子分类 [精彩评测 - 综合](https://www.78dm.net/eval_list/120/0/0/1.html),网址为 `https://www.78dm.net/eval_list/120/0/0/1.html`。截取 `https://www.78dm.net` 到末尾 `.html` 的部分 `/eval_list/120/0/0/1` 作为参数,路由为 [`/78dm/eval_list/120/0/0/1`](https://rsshub.app/78dm/eval_list/120/0/0/1)。
- :::
-</Route>
-
-### 好帖推荐 {#78-dong-man-hao-tie-tui-jian}
-
-<Route author="nczitzk" example="/78dm/ht_list" path="/78dm/ht_list/:path+" paramsDesc={['参数,见说明,默认为空']}>
- :::tip
- 若订阅 [好帖推荐](https://www.78dm.net/ht_list),网址为 `https://www.78dm.net/ht_list`。截取 `https://www.78dm.net` 到末尾的部分 `/ht_list` 作为参数,此时路由为 [`/78dm/ht_list`](https://rsshub.app/78dm/ht_list)。
-
- 若订阅子分类 [好帖推荐 - 综合](https://www.78dm.net/ht_list/107/0/0/1.html),网址为 `https://www.78dm.net/ht_list/107/0/0/1.html`。截取 `https://www.78dm.net` 到末尾 `.html` 的部分 `/ht_list/107/0/0/1` 作为参数,路由为 [`/78dm/ht_list/107/0/0/1`](https://rsshub.app/78dm/ht_list/107/0/0/1)。
- :::
-</Route>
+# anime
## AcFun {#acfun}
### 番剧 {#acfun-fan-ju}
-<Route author="xyqfer" example="/acfun/bangumi/5022158" path="/acfun/bangumi/:id" paramsDesc={['番剧 id']} radar="1" />
+<Route data={{"path":"/bangumi/:id","categories":["anime"],"example":"/acfun/bangumi/5022158","parameters":{"id":"番剧 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"番剧","maintainers":["xyqfer"],"description":":::tip\n番剧 id 不包含开头的 aa。\n例如:`https://www.acfun.cn/bangumi/aa5022158` 的番剧 id 是 5022158,不包括开头的 aa。\n:::","location":"bangumi.ts"}} />
:::tip
番剧 id 不包含开头的 aa。
例如:`https://www.acfun.cn/bangumi/aa5022158` 的番剧 id 是 5022158,不包括开头的 aa。
:::
-### 用户投稿 {#acfun-yong-hu-tou-gao}
-
-<Route author="wdssmq" example="/acfun/user/video/14450522" path="/acfun/user/video/:id" paramsDesc={['用户 UID']} radar="1" />
-
### 文章 {#acfun-wen-zhang}
-<Route author="TonyRL" example="/acfun/article/110" path="/acfun/article/:categoryId/:sortType?/:timeRange?" paramsDesc={['分区 ID,见下表', '排序,见下表,默认为 `createTime`', '时间范围,见下表,仅在排序是 `hotScore` 有效,默认为 `all`']} radar="1">
- | 二次元画师 | 综合 | 生活情感 | 游戏 | 动漫文化 | 漫画文学 |
- | ---------- | ---- | -------- | ---- | -------- | -------- |
- | 184 | 110 | 73 | 164 | 74 | 75 |
+<Route data={{"path":"/article/:categoryId/:sortType?/:timeRange?","categories":["anime"],"example":"/acfun/article/110","parameters":{"categoryId":"分区 ID,见下表","sortType":"排序,见下表,默认为 `createTime`","timeRange":"时间范围,见下表,仅在排序是 `hotScore` 有效,默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["TonyRL"],"description":"| 二次元画师 | 综合 | 生活情感 | 游戏 | 动漫文化 | 漫画文学 |\n | ---------- | ---- | -------- | ---- | -------- | -------- |\n | 184 | 110 | 73 | 164 | 74 | 75 |\n\n | 最新发表 | 最新动态 | 最热文章 |\n | ---------- | --------------- | -------- |\n | createTime | lastCommentTime | hotScore |\n\n | 时间不限 | 24 小时 | 三天 | 一周 | 一个月 |\n | -------- | ------- | -------- | ------- | -------- |\n | all | oneDay | threeDay | oneWeek | oneMonth |","location":"article.ts"}} />
- | 最新发表 | 最新动态 | 最热文章 |
- | ---------- | --------------- | -------- |
- | createTime | lastCommentTime | hotScore |
+| 二次元画师 | 综合 | 生活情感 | 游戏 | 动漫文化 | 漫画文学 |
+| ---------- | ---- | -------- | ---- | -------- | -------- |
+| 184 | 110 | 73 | 164 | 74 | 75 |
- | 时间不限 | 24 小时 | 三天 | 一周 | 一个月 |
- | -------- | ------- | -------- | ------- | -------- |
- | all | oneDay | threeDay | oneWeek | oneMonth |
-</Route>
+| 最新发表 | 最新动态 | 最热文章 |
+| ---------- | --------------- | -------- |
+| createTime | lastCommentTime | hotScore |
+
+| 时间不限 | 24 小时 | 三天 | 一周 | 一个月 |
+| -------- | ------- | -------- | ------- | -------- |
+| all | oneDay | threeDay | oneWeek | oneMonth |
## ACG17 {#acg17}
### 全部文章 {#acg17-quan-bu-wen-zhang}
-<Route author="SunBK201" example="/acg17/post/all" path="/acg17/post/all" radar="1" />
+<Route data={{"path":"/post/all","categories":["anime"],"example":"/acg17/post/all","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["acg17.com/post"]},"name":"全部文章","maintainers":["SunBK201"],"url":"acg17.com/post","location":"post.ts"}} />
## AGE 动漫 {#age-dong-man}
-### 最近更新 {#age-dong-man-zui-jin-geng-xin}
-
-<Route author="nczitzk" example="/agefans/update" path="/agefans/update" />
-
### 番剧详情 {#age-dong-man-fan-ju-xiang-qing}
-<Route author="s2marine" example="/agefans/detail/20200035" path="/agefans/detail/:id" paramsDesc={['番剧 id,对应详情 URL 中找到']} />
-
-## Anime1 {#anime1}
-
-### 動畫 {#anime1-dong-hua}
-
-<Route author="maple3142" example="/anime1/anime/2018年秋季/哥布林殺手" path="/anime1/anime/:time/:name" paramsDesc={['时间', '动画名称']} radar="1">
- 时间和动画名称请自己从网址取得: `https://anime1.me/category/2018年秋季/刀劍神域-alicization`
-</Route>
-
-### 搜尋 {#anime1-sou-xun}
-
-<Route author="maple3142" example="/anime1/search/兔女郎學姊" path="/anime1/search/:keyword" paramsDesc={['关键字']} radar="1" />
-
-## Anitama {#anitama}
-
-### Anitama Channel {#anitama-anitama-channel}
-
-<Route author="ranpox" path="/anitama/:channel?" example="/anitama" paramsDesc={['频道id,从频道的地址栏中查看']} notOperational="1" />
-
-## Bangumi Moe 萌番组 {#bangumi-moe-meng-fan-zu}
-
-### Latest {#bangumi-moe-meng-fan-zu-latest}
-
-<Route author="nczitzk" example="/bangumi/moe" path="/bangumi/moe" />
-
-### Tags {#bangumi-moe-meng-fan-zu-tags}
-
-<Route author="nczitzk" example="/bangumi/moe/chs/1080p" path="/bangumi/moe/:tags?" paramsDesc={['Tags, empty by default, multiple tags separated by `/`']}>
- For more tags, please go to [Search torrent](https://bangumi.moe/search/index)
-</Route>
-
-## Bangumi 番组计划 {#bangumi-fan-zu-ji-hua}
-
-### 放送列表 {#bangumi-fan-zu-ji-hua-fang-song-lie-biao}
-
-<Route author="magic-akari" example="/bangumi/tv/calendar/today" path="/bangumi/tv/calendar/today" radar="1" />
-
-### 条目的通用路由格式 {#bangumi-fan-zu-ji-hua-tiao-mu-di-tong-yong-lu-you-ge-shi}
-
-<Route author="JimenezLi" example="/bangumi/tv/subject/328609/ep/true" path="/bangumi/tv/subject/:id/:type?/:showOriginalName?" paramsDesc={['条目 id, 在条目页面的地址栏查看', '条目类型,可选值为 `ep`, `comments`, `blogs`, `topics`,默认为 `ep`', '显示番剧标题原名,可选值 0/1/false/true,默认为 false']}>
- :::warning
- 此通用路由仅用于对路由参数的描述,具体信息请查看下方与条目相关的路由
- :::
-</Route>
-
-### 条目的章节 {#bangumi-fan-zu-ji-hua-tiao-mu-di-zhang-jie}
-
-<Route author="SettingDust" example="/bangumi/tv/subject/240038" path="/bangumi/tv/subject/:id" paramsDesc={['条目 id, 在条目页面的地址栏查看']} radar="1" />
-
-### 条目的吐槽箱 {#bangumi-fan-zu-ji-hua-tiao-mu-di-tu-cao-xiang}
-
-<Route author="ylc395" example="/bangumi/tv/subject/214265/comments?minLength=100" path="/bangumi/tv/subject/:id/comments" paramsDesc={['条目 id, 在条目页面的地址栏查看. minLength: 以查询字符串(query string)的形式指定. 用于过滤掉内容长度小于指定值的吐槽']} radar="1" />
-
-### 条目的评论 {#bangumi-fan-zu-ji-hua-tiao-mu-di-ping-lun}
-
-<Route author="ylc395" example="/bangumi/tv/subject/214265/blogs" path="/bangumi/tv/subject/:id/blogs" paramsDesc={['条目 id, 在条目页面的地址栏查看']} radar="1" />
-
-### 条目的讨论 {#bangumi-fan-zu-ji-hua-tiao-mu-di-tao-lun}
-
-<Route author="ylc395" example="/bangumi/tv/subject/214265/topics" path="/bangumi/tv/subject/:id/topics" paramsDesc={['条目 id, 在条目页面的地址栏查看']} radar="1" />
+<Route data={{"path":"/detail/:id","categories":["anime"],"example":"/agefans/detail/20200035","parameters":{"id":"番剧 id,对应详情 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agemys.org/detail/:id"]},"name":"番剧详情","maintainers":["s2marine"],"location":"detail.ts"}} />
-### 现实人物的新作品 {#bangumi-fan-zu-ji-hua-xian-shi-ren-wu-de-xin-zuo-pin}
-
-<Route author="ylc395" example="/bangumi/tv/person/32943" path="/bangumi/tv/person/:id" paramsDesc={['人物 id, 在人物页面的地址栏查看']} radar="1" />
-
-### 小组话题的新回复 {#bangumi-fan-zu-ji-hua-xiao-zu-hua-ti-de-xin-hui-fu}
-
-<Route author="ylc395" example="/bangumi/tv/topic/367032" path="/bangumi/tv/topic/:id" paramsDesc={['话题 id, 在话题页面地址栏查看']} radar="1" />
-
-### 小组话题 {#bangumi-fan-zu-ji-hua-xiao-zu-hua-ti}
-
-<Route author="SettingDust" example="/bangumi/tv/group/boring" path="/bangumi/tv/group/:id" paramsDesc={['小组 id, 在小组页面地址栏查看']} radar="1" />
-
-### 用户日志 {#bangumi-fan-zu-ji-hua-yong-hu-ri-zhi}
-
-<Route author="nczitzk" example="/bangumi/tv/user/blog/sai" path="/bangumi/tv/user/blog/:id" paramsDesc={['用户 id, 在用户页面地址栏查看']} radar="1" />
-
-### 用户想看 {#bangumi-fan-zu-ji-hua-yong-hu-xiang-kan}
-
-<Route author="honue" example="/bangumi/tv/user/wish/sai" path="/bangumi/tv/user/wish/:id" paramsDesc={['用户 id, 在用户页面地址栏查看']} radar="1" />
-
-### 成员关注动画榜 {#bangumi-fan-zu-ji-hua-cheng-yuan-guan-zhu-dong-hua-bang}
+### 最近更新 {#age-dong-man-zui-jin-geng-xin}
-<Route author="honue" example="/bangumi/tv/followrank" path="/bangumi/tv/followrank" radar="1" />
+<Route data={{"path":"/update","categories":["anime"],"example":"/agefans/update","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agemys.org/update","agemys.org/"]},"name":"最近更新","maintainers":["nczitzk"],"url":"agemys.org/update","location":"update.ts"}} />
## CCC 創作集 {#ccc-chuang-zuo-ji}
### 漫畫 {#ccc-chuang-zuo-ji-man-hua}
-<Route author="TonyRL" example="/creative-comic/book/117" path="/creative-comic/book/:id/:coverOnly?/:quality?" paramsDesc={['漫畫 ID,可在 URL 中找到', '僅獲取封面,非 `true` 時將獲取**全部**頁面,預設 `true`', '閱讀品質,標準畫質 `1`,高畫質 `2`,預設 `1`']} radar="1" />
+<Route data={{"path":"/book/:id/:coverOnly?/:quality?","categories":["anime"],"example":"/creative-comic/book/117","parameters":{"id":"漫畫 ID,可在 URL 中找到","coverOnly":"僅獲取封面,非 `true` 時將獲取**全部**頁面,預設 `true`","quality":"閱讀品質,標準畫質 `1`,高畫質 `2`,預設 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["creative-comic.tw/book/:id/*"],"target":"/:id"},"name":"漫畫","maintainers":["TonyRL"],"location":"book.ts"}} />
## CnGal {#cngal}
### 每周速报 {#cngal-mei-zhou-su-bao}
-<Route author="chengyuhui" example="/cngal/weekly" path="/cngal/weekly" radar="1" />
+<Route data={{"path":"/weekly","categories":["anime"],"example":"/cngal/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cngal.org/","www.cngal.org/weeklynews"]},"name":"每周速报","maintainers":["chengyuhui"],"url":"www.cngal.org/","location":"weekly.ts"}} />
### 制作者 / 游戏新闻 {#cngal-zhi-zuo-zhe-you-xi-xin-wen}
-<Route author="chengyuhui" example="/cngal/entry/2693" path="/cngal/entry/:id" paramsDesc={['词条ID,游戏或制作者页面URL的最后一串数字']} radar="1" />
+<Route data={{"path":"/entry/:id","categories":["anime"],"example":"/cngal/entry/2693","parameters":{"id":"词条ID,游戏或制作者页面URL的最后一串数字"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cngal.org/entries/index/:id"]},"name":"制作者 / 游戏新闻","maintainers":["chengyuhui"],"location":"entry.ts"}} />
## Comicat {#comicat}
### 搜索关键词 {#comicat-sou-suo-guan-jian-ci}
-<Route author="Cyang39" example="/comicat/search/喵萌奶茶屋+跃动青春+720P+简日" path="/comicat/search/:keyword" paramsDesc={['关键词,请用`+`号连接']} supportBT="1" />
+<Route data={{"path":"/search/:keyword","categories":["anime"],"example":"/comicat/search/喵萌奶茶屋+跃动青春+720P+简日","parameters":{"keyword":"关键词,请用`+`号连接"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"搜索关键词","maintainers":["Cyang39"],"location":"search.ts"}} />
## Comics Kingdom {#comics-kingdom}
### Archive {#comics-kingdom-archive}
-<Route author="stjohnjohnson" example="/comicskingdom/pardon-my-planet" path="/comicskingdom/:name" paramsDesc={['URL path of the strip on comicskingdom.com']} />
+<Route data={{"path":"/:name","categories":["anime"],"example":"/comicskingdom/pardon-my-planet","parameters":{"name":"URL path of the strip on comicskingdom.com"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["comicskingdom.com/:name/*","comicskingdom.com/:name"]},"name":"Archive","maintainers":["stjohnjohnson"],"location":"index.ts"}} />
## DLsite {#dlsite}
-### General {#dlsite-general}
-
-<Route author="nczitzk" example="/dlsite/home/new" path="/dlsite/:path+" paramsDesc={['Path, `/home/new` by default, as Release Calendar']}>
- :::tip
- To subscribe to this route, you can first visit the site and specify filters, and then fill in the field after `https://www.dlsite.com/` in the URL of the corresponding page at the path of the route. Here are 2 examples.
-
- If you subscribe to [Voice / ASMR works Release date - New to Old](https://www.dlsite.com/home/works/type/=/work_type_category/audio/order/release_d), at the URL of the corresponding page `https://www.dlsite.com/home/works/type/=/work_type_category/audio/order/release_d` and after `https://www.dlsite.com/` is `home/works/type/=/work_ type_category/audio/order/release_d`, which can be seen as the path. In this case the route is [`/dlsite/home/works/type/=/work_type_category/audio/order/release_d`](https://rsshub.app/dlsite/home/works/type/=/work_type_category/audio/order/release_d)
+### Ci-en Creators' Article {#dlsite-ci-en-creators-article}
- If you subscribe to [Discounted works Latest Discounts - Newest to Oldest](https://www.dlsite.com/home/works/discount/=/order/cstart_d), at the URL of the corresponding page `https://www.dlsite.com/home/works/discount/=/order/cstart_d` and after `https://www.dlsite.com/` is `home/works/discount/=/order/cstart_d`, which can be seen as the path. In this case the route is [`/dlsite/home/works/discount/=/order/cstart_d`](https://rsshub.app/dlsite/home/works/discount/=/order/cstart_d)
- :::
-</Route>
+<Route data={{"path":"/ci-en/:id/article","categories":["anime"],"example":"/dlsite/ci-en/7400/article","parameters":{"id":"Creator id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ci-en.dlsite.com/creator/:id/article/843558","ci-en.dlsite.com/"]},"name":"Ci-en Creators' Article","maintainers":["nczitzk"],"location":"ci-en/article.ts"}} />
### Current Release {#dlsite-current-release}
-<Route author="cssxsh" example="/dlsite/new/home" path="/dlsite/new/:type" paramsDesc={['Type, see table below']}>
- | Doujin | Comics | PC Games | Doujin (R18) | Adult Comics | H Games | Otome | BL |
- | ------ | ------ | -------- | ------------ | ------------ | ------- | ----- | -- |
- | home | comic | soft | maniax | books | pro | girls | bl |
-</Route>
+<Route data={{"path":"/new/:type","categories":["anime"],"example":"/dlsite/new/home","parameters":{"type":"Type, see table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Current Release","maintainers":["cssxsh"],"description":"| Doujin | Comics | PC Games | Doujin (R18) | Adult Comics | H Games | Otome | BL |\n | ------ | ------ | -------- | ------------ | ------------ | ------- | ----- | -- |\n | home | comic | soft | maniax | books | pro | girls | bl |","location":"new.ts"}} />
-### Discounted Works {#dlsite-discounted-works}
-
-<Route author="cssxsh" example="/dlsite/campaign/home" path="/dlsite/campaign/:type/:free?" paramsDesc={['Type, see table above', 'Free only, empty means false, other value means true']} />
+| Doujin | Comics | PC Games | Doujin (R18) | Adult Comics | H Games | Otome | BL |
+| ------ | ------ | -------- | ------------ | ------------ | ------- | ----- | -- |
+| home | comic | soft | maniax | books | pro | girls | bl |
-### Ci-en Creators' Article {#dlsite-ci-en-creators-article}
-
-<Route author="nczitzk" example="/dlsite/ci-en/7400/article" path="/dlsite/ci-en/:id/article" paramsDesc={['Creator id, can be found in URL']} />
-
-## ebb.io {#ebb-io}
-
-### ebb {#ebb-io-ebb}
+### Discounted Works {#dlsite-discounted-works}
-<Route author="Tsuki" example="/ebb" path="/ebb" />
+<Route data={{"path":"/campaign/:type/:free?","categories":["anime"],"example":"/dlsite/campaign/home","parameters":{"type":"Type, see table above","free":"Free only, empty means false, other value means true"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Discounted Works","maintainers":["cssxsh"],"location":"campaign.ts"}} />
## Eventernote {#eventernote}
### 声优活动及演唱会 {#eventernote-sheng-you-huo-dong-ji-yan-chang-hui}
-<Route author="KTachibanaM" path="/eventernote/actors/:name/:id" example="/eventernote/actors/三森すずこ/2634" paramsDesc={['声优姓名', '声优 ID']} radar="1" />
+<Route data={{"path":"/actors/:name/:id","categories":["anime"],"example":"/eventernote/actors/三森すずこ/2634","parameters":{"name":"声优姓名","id":"声优 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.eventernote.com/actors/:name/:id/events"]},"name":"声优活动及演唱会","maintainers":["KTachibanaM"],"location":"actors.ts"}} />
## Gogoanimehd {#gogoanimehd}
### Recent Releases {#gogoanimehd-recent-releases}
-<Route author="user4302" example="/gogoanimehd/recent-releases" path="/gogoanimehd/recent-releases" />
+<Route data={{"path":"/recent-releases","categories":["anime"],"example":"/gogoanimehd/recent-releases","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["developer.anitaku.to/"]},"name":"Recent Releases","maintainers":["user4302"],"url":"developer.anitaku.to/","location":"recent-releases.ts"}} />
-## Hanime.tv {#hanime-tv}
+## Hpoi 手办维基 {#hpoi-shou-ban-wei-ji}
-### Recently updated {#hanime-tv-recently-updated}
+### 角色周边 {#hpoi-shou-ban-wei-ji-jue-se-zhou-bian}
-<Route author="EsuRt" example="/hanime/video" path="/hanime/video" />
+<Route data={{"path":"/items/character/:id/:order?","categories":["anime"],"example":"/hpoi/items/character/1035374","parameters":{"id":"角色 ID","order":"排序, 见下表,默认为 add"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"角色周边","maintainers":["DIYgod"],"description":"| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |\n | ------- | ---- | ------ | -------- | -------- | ------ |\n | release | add | hits | hits7Day | hitsDay | rating |","location":"character.ts"}} />
-## Hpoi 手办维基 {#hpoi-shou-ban-wei-ji}
+| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
+| ------- | ---- | ------ | -------- | -------- | ------ |
+| release | add | hits | hits7Day | hitsDay | rating |
### 情报 {#hpoi-shou-ban-wei-ji-qing-bao}
-<Route author="sanmmm" path="/hpoi/info/:type?" example="/hpoi/info/all" paramsDesc={['分类, 见下表, 默认为`all`']}>
- 分类
+<Route data={{"path":"/info/:type?","categories":["anime"],"example":"/hpoi/info/all","parameters":{"type":"分类, 见下表, 默认为`all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"情报","maintainers":["sanmmm DIYgod"],"description":"分类\n\n | 全部 | 手办 | 模型 |\n | ---- | ----- | ----- |\n | all | hobby | model |","location":"info.ts"}} />
- | 全部 | 手办 | 模型 |
- | ---- | ----- | ----- |
- | all | hobby | model |
-</Route>
+分类
-### 所有周边 {#hpoi-shou-ban-wei-ji-suo-you-zhou-bian}
+| 全部 | 手办 | 模型 |
+| ---- | ----- | ----- |
+| all | hobby | model |
-<Route author="DIYgod" path="/hpoi/items/all/:order?" example="/hpoi/items/all" paramsDesc={['排序, 见下表,默认为 add']}>
- | 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
- | ------- | ---- | ------ | -------- | -------- | ------ |
- | release | add | hits | hits7Day | hitsDay | rating |
-</Route>
+### 热门推荐 {#hpoi-shou-ban-wei-ji-re-men-tui-jian}
-### 角色周边 {#hpoi-shou-ban-wei-ji-jue-se-zhou-bian}
+<Route data={{"path":"/bannerItem","categories":["anime"],"example":"/hpoi/bannerItem","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.hpoi.net/bannerItem/list"]},"name":"热门推荐","maintainers":["DIYgod"],"url":"www.hpoi.net/bannerItem/list","location":"banner-item.ts"}} />
-<Route author="DIYgod" path="/hpoi/items/character/:id/:order?" example="/hpoi/items/character/1035374" paramsDesc={['角色 ID', '排序, 见下表,默认为 add']}>
- | 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
- | ------- | ---- | ------ | -------- | -------- | ------ |
- | release | add | hits | hits7Day | hitsDay | rating |
-</Route>
+### 所有周边 {#hpoi-shou-ban-wei-ji-suo-you-zhou-bian}
-### 作品周边 {#hpoi-shou-ban-wei-ji-zuo-pin-zhou-bian}
+<Route data={{"path":"/items/all/:order?","categories":["anime"],"example":"/hpoi/items/all","parameters":{"order":"排序, 见下表,默认为 add"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.hpoi.net/hobby/all"],"target":"/items/all"},"name":"所有周边","maintainers":["DIYgod"],"url":"www.hpoi.net/hobby/all","description":"| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |\n | ------- | ---- | ------ | -------- | -------- | ------ |\n | release | add | hits | hits7Day | hitsDay | rating |","location":"all.ts"}} />
-<Route author="DIYgod" path="/hpoi/items/work/:id/:order?" example="/hpoi/items/work/4117491" paramsDesc={['作品 ID', '排序, 见下表,默认为 add']}>
- | 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
- | ------- | ---- | ------ | -------- | -------- | ------ |
- | release | add | hits | hits7Day | hitsDay | rating |
-</Route>
+| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
+| ------- | ---- | ------ | -------- | -------- | ------ |
+| release | add | hits | hits7Day | hitsDay | rating |
### 用户动态 {#hpoi-shou-ban-wei-ji-yong-hu-dong-tai}
-<Route author="DIYgod luyuhuang" path="/hpoi/user/:user_id/:caty" example="/hpoi/user/116297/buy" paramsDesc={['用户ID', '类别, 见下表']}>
- | 想买 | 预定 | 已入 | 关注 | 有过 |
- | ---- | -------- | ---- | ---- | ------ |
- | want | preorder | buy | care | resell |
-</Route>
+<Route data={{"path":"/user/:user_id/:caty","categories":["anime"],"example":"/hpoi/user/116297/buy","parameters":{"user_id":"用户ID","caty":"类别, 见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户动态","maintainers":["DIYgod","luyuhuang"],"description":"| 想买 | 预定 | 已入 | 关注 | 有过 |\n | ---- | -------- | ---- | ---- | ------ |\n | want | preorder | buy | care | resell |","location":"user.ts"}} />
-### 热门推荐 {#hpoi-shou-ban-wei-ji-re-men-tui-jian}
+| 想买 | 预定 | 已入 | 关注 | 有过 |
+| ---- | -------- | ---- | ---- | ------ |
+| want | preorder | buy | care | resell |
+
+### 作品周边 {#hpoi-shou-ban-wei-ji-zuo-pin-zhou-bian}
+
+<Route data={{"path":"/items/work/:id/:order?","categories":["anime"],"example":"/hpoi/items/work/4117491","parameters":{"id":"作品 ID","order":"排序, 见下表,默认为 add"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作品周边","maintainers":["DIYgod"],"description":"| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |\n | ------- | ---- | ------ | -------- | -------- | ------ |\n | release | add | hits | hits7Day | hitsDay | rating |","location":"work.ts"}} />
-<Route author="DIYgod" path="/hpoi/bannerItem" example="/hpoi/bannerItem" />
+| 发售 | 入库 | 总热度 | 一周热度 | 一天热度 | 评价 |
+| ------- | ---- | ------ | -------- | -------- | ------ |
+| release | add | hits | hits7Day | hitsDay | rating |
## IDOLY PRIDE 偶像荣耀 {#idoly-pride-ou-xiang-rong-yao}
### News {#idoly-pride-ou-xiang-rong-yao-news}
-<Route author="Mingxia1" example="/idolypride/news" path="/idolypride/news" radar="1" />
+<Route data={{"path":"/news","categories":["anime"],"example":"/idolypride/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["idolypride.jp/news"]},"name":"News","maintainers":["Mingxia1"],"url":"idolypride.jp/news","location":"news.ts"}} />
## iwara {#iwara}
-### User {#iwara-user}
-
-<Route author="Fatpandac" example="/iwara/users/kelpie/video" path="/iwara/users/:username/:type?" paramsDesc={['username, can find in userpage', 'video by default']} radar="1">
- | type | video | image |
- | :--: | :---: | :---: |
- | | video | image |
-</Route>
-
### User Subscriptions {#iwara-user-subscriptions}
-<Route author="FeCCC" example="/iwara/subscriptions" path="/iwara/subscriptions" radar="1" configRequired="1">
- :::warning
- This route requires username and password, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
- :::
-</Route>
+<Route data={{"path":"/subscriptions","categories":["anime"],"example":"/iwara/subscriptions","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ecchi.iwara.tv/"]},"name":"User Subscriptions","maintainers":["FeCCC"],"url":"ecchi.iwara.tv/","description":":::warning\n This route requires username and password, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.\n :::","location":"subscriptions.ts"}} />
+
+:::warning
+This route requires username and password, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
+:::
## Kemono {#kemono}
### Posts {#kemono-posts}
-<Route author="nczitzk" example="/kemono" path="/kemono/:source?/:id?" paramsDesc={['Source, see below, Posts by default', 'User id, can be found in URL']}>
- Sources
-
- | Posts | Patreon | Pixiv Fanbox | Gumroad | SubscribeStar | DLsite | Discord | Fantia |
- | ----- | ------- | ------------ | ------- | ------------- | ------ | ------- | ------ |
- | posts | patreon | fanbox | gumroad | subscribestar | dlsite | discord | fantia |
+<Route data={{"path":"/:source?/:id?","categories":["anime"],"example":"/kemono","parameters":{"source":"Source, see below, Posts by default","id":"User id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kemono.su/:source/user/:id","kemono.su/"]},"name":"Posts","maintainers":["nczitzk"],"description":"Sources\n\n | Posts | Patreon | Pixiv Fanbox | Gumroad | SubscribeStar | DLsite | Discord | Fantia |\n | ----- | ------- | ------------ | ------- | ------------- | ------ | ------- | ------ |\n | posts | patreon | fanbox | gumroad | subscribestar | dlsite | discord | fantia |\n\n :::tip\n When `posts` is selected as the value of the parameter **source**, the parameter **id** does not take effect.\n :::","location":"index.ts"}} />
- :::tip
- When `posts` is selected as the value of the parameter **source**, the parameter **id** does not take effect.
- :::
-</Route>
+Sources
-## lovelive-anime {#lovelive-anime}
+| Posts | Patreon | Pixiv Fanbox | Gumroad | SubscribeStar | DLsite | Discord | Fantia |
+| ----- | ------- | ------------ | ------- | ------------- | ------ | ------- | ------ |
+| posts | patreon | fanbox | gumroad | subscribestar | dlsite | discord | fantia |
-### Love Live! Official Website Latest NEWS {#lovelive-anime-love-live-official-website-latest-news}
+:::tip
+When `posts` is selected as the value of the parameter **source**, the parameter **id** does not take effect.
+:::
-<Route author="axojhf" example="/lovelive-anime/news" path="/lovelive-anime/news/:option?" paramsDesc={['Crawl full text when `option` is `detail`.']} radar="1" />
+## lovelive-anime {#lovelive-anime}
### Love Live Official Website Categories Topics {#lovelive-anime-love-live-official-website-categories-topics}
-<Route author="axojhf" example="/lovelive-anime/topics/otonokizaka" path="/lovelive-anime/topics/:abbr/:category?/:option?" paramsDesc={['The path to the Love Live series of sub-projects on the official website is detailed in the table below', 'The official website lists the Topics category, `category` is `detail` when crawling the full text, other categories see the following table for details', 'Crawl full text when `option` is `detail`.']} radar="1">
- | Sub-project Name (not full name) | Lovelive! | Lovelive! Sunshine!! | Lovelive! Nijigasaki High School Idol Club | Lovelive! Superstar!! | 幻日のヨハネ | ラブライブ!スクールアイドルミュージカル |
- | -------------------------------- | ----------- | -------------------- | ------------------------------------------ | --------------------- | ------------ | ---------------------------------------- |
- | `abbr`parameter | otonokizaka | uranohoshi | nijigasaki | yuigaoka | yohane | musical |
-
- | Category Name | 全てのニュース | 音楽商品 | アニメ映像商品 | キャスト映像商品 | 劇場 | アニメ放送 / 配信 | キャスト配信 / ラジオ | ライブ / イベント | ブック | グッズ | ゲーム | メディア | ご当地情報 | その他 | キャンペーン |
- | ------------------- | --------------------- | -------- | -------------- | ---------------- | ------- | ----------------- | --------------------- | ----------------- | ------ | ------ | ------ | -------- | ---------- | ------ | ------------ |
- | `category`parameter | <u>*No parameter*</u> | music | anime\_movie | cast\_movie | theater | onair | radio | event | books | goods | game | media | local | other | campaign |
-</Route>
+<Route data={{"path":"/topics/:abbr/:category?/:option?","categories":["anime"],"example":"/lovelive-anime/topics/otonokizaka","parameters":{"abbr":"The path to the Love Live series of sub-projects on the official website is detailed in the table below","category":"The official website lists the Topics category, `category` is `detail` when crawling the full text, other categories see the following table for details","option":"Crawl full text when `option` is `detail`."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Love Live Official Website Categories Topics","maintainers":["axojhf"],"description":"| Sub-project Name (not full name) | Lovelive! | Lovelive! Sunshine!! | Lovelive! Nijigasaki High School Idol Club | Lovelive! Superstar!! | 幻日のヨハネ | ラブライブ!スクールアイドルミュージカル |\n | -------------------------------- | ----------- | -------------------- | ------------------------------------------ | --------------------- | ------------ | ---------------------------------------- |\n | `abbr`parameter | otonokizaka | uranohoshi | nijigasaki | yuigaoka | yohane | musical |\n\n | Category Name | 全てのニュース | 音楽商品 | アニメ映像商品 | キャスト映像商品 | 劇場 | アニメ放送 / 配信 | キャスト配信 / ラジオ | ライブ / イベント | ブック | グッズ | ゲーム | メディア | ご当地情報 | その他 | キャンペーン |\n | ------------------- | --------------------- | -------- | -------------- | ---------------- | ------- | ----------------- | --------------------- | ----------------- | ------ | ------ | ------ | -------- | ---------- | ------ | ------------ |\n | `category`parameter | <u>*No parameter*</u> | music | anime_movie | cast_movie | theater | onair | radio | event | books | goods | game | media | local | other | campaign |","location":"topics.ts"}} />
-### Love Live Official Website Schedule {#lovelive-anime-love-live-official-website-schedule}
+| Sub-project Name (not full name) | Lovelive! | Lovelive! Sunshine!! | Lovelive! Nijigasaki High School Idol Club | Lovelive! Superstar!! | 幻日のヨハネ | ラブライブ!スクールアイドルミュージカル |
+| -------------------------------- | ----------- | -------------------- | ------------------------------------------ | --------------------- | ------------ | ---------------------------------------- |
+| `abbr`parameter | otonokizaka | uranohoshi | nijigasaki | yuigaoka | yohane | musical |
-<Route author="axojhf" example="/lovelive-anime/schedules" path="/schedules/:serie?/:category?" paramsDesc={['Love Live! Series sub-projects abbreviation, see the following table', 'The official website lists the categories, see the following table for details']} radar="1">
- :::tip[Please note!]
- The schedule and other information obtained by this route is subject to the official website announcement!
- The RSS routing has not been rigorously tested and the information provided cannot be guaranteed accurate!
- :::
+| Category Name | 全てのニュース | 音楽商品 | アニメ映像商品 | キャスト映像商品 | 劇場 | アニメ放送 / 配信 | キャスト配信 / ラジオ | ライブ / イベント | ブック | グッズ | ゲーム | メディア | ご当地情報 | その他 | キャンペーン |
+| ------------------- | --------------------- | -------- | -------------- | ---------------- | ------- | ----------------- | --------------------- | ----------------- | ------ | ------ | ------ | -------- | ---------- | ------ | ------------ |
+| `category`parameter | <u>*No parameter*</u> | music | anime\_movie | cast\_movie | theater | onair | radio | event | books | goods | game | media | local | other | campaign |
- | Sub-project Name (not full name) | 全シリーズ | Lovelive! | Lovelive! Sunshine!! | Lovelive! Nijigasaki High School Idol Club | Lovelive! Superstar!! | ラブライブ!スクールアイドルミュージカル |
- | -------------------------------- | ---------------------------- | ---------- | -------------------- | ------------------------------------------ | --------------------- | ---------------------------------------- |
- | `serie`parameter | <u>*No parameter*</u>or`all` | `lovelive` | `sunshine` | `nijigasaki` | `superstar` | `musical` |
-
- | Category Name | 全て | ライブ | イベント | 生配信 |
- | ------------------- | ---------------------------- | ------ | -------- | --------- |
- | `category`parameter | <u>*No parameter*</u>or`all` | `live` | `event` | `haishin` |
-</Route>
-
-## MangaDex {#mangadex}
-
-### Manga Update {#mangadex-manga-update}
+### Love Live! Official Website Latest NEWS {#lovelive-anime-love-live-official-website-latest-news}
-<Route author="vzz64" example="/mangadex/58be6aa6-06cb-4ca5-bd20-f1392ce451fb/en" path="/:id/:lang?" paramsDesc={['manga ID', 'language code']} radar="1" />
+<Route data={{"path":"/news/:option?","categories":["anime"],"example":"/lovelive-anime/news","parameters":{"option":"Crawl full text when `option` is `detail`."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.lovelive-anime.jp/","www.lovelive-anime.jp/news"],"target":"/news"},"name":"Love Live! Official Website Latest NEWS","maintainers":["axojhf"],"url":"www.lovelive-anime.jp/","location":"news.ts"}} />
## Mox.moe {#mox-moe}
### 首頁 {#mox-moe-shou-ye}
-<Route author="nczitzk" example="/mox" path="/mox/:category?" paramsDesc={['分类,可在对应分类页 URL 中找到']} notOperational="1">
- :::tip
- 在首页将分类参数选择确定后跳转到的分类页面 URL 中,`/l/` 后的字段即为分类参数。
+<Route data={{"path":"/:category?","categories":["anime"],"example":"/mox","parameters":{"category":"分类,可在对应分类页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mox.moe/l/:category","mox.moe/"]},"name":"首頁","maintainers":["nczitzk"],"description":":::tip\n 在首页将分类参数选择确定后跳转到的分类页面 URL 中,`/l/` 后的字段即为分类参数。\n\n 如 [科幻 + 日語 + 日本 + 長篇 + 完結 + 最近更新](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL) 的 URL 为 [https://mox.moe/l/CAT%2A 科幻,日本,完結,lastupdate,jpn,l,BL](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL),此时 `/l/` 后的字段为 `CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`。最终获得路由为 [`/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`](https://rsshub.app/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL)\n :::","location":"index.ts"}} />
+
+:::tip
+在首页将分类参数选择确定后跳转到的分类页面 URL 中,`/l/` 后的字段即为分类参数。
- 如 [科幻 + 日語 + 日本 + 長篇 + 完結 + 最近更新](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL) 的 URL 为 [https://mox.moe/l/CAT%2A 科幻,日本,完結,lastupdate,jpn,l,BL](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL),此时 `/l/` 后的字段为 `CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`。最终获得路由为 [`/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`](https://rsshub.app/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL)
- :::
-</Route>
+如 [科幻 + 日語 + 日本 + 長篇 + 完結 + 最近更新](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL) 的 URL 为 [https://mox.moe/l/CAT%2A 科幻,日本,完結,lastupdate,jpn,l,BL](https://mox.moe/l/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL),此时 `/l/` 后的字段为 `CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`。最终获得路由为 [`/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL`](https://rsshub.app/mox/CAT%2A科幻,日本,完結,lastupdate,jpn,l,BL)
+:::
## nhentai {#nhentai}
-### Filter {#nhentai-filter}
+### Advanced Search {#nhentai-advanced-search}
-<Route author="MegrezZhu hoilc" example="/nhentai/language/chinese" path="/nhentai/:key/:keyword/:mode?" paramsDesc={['Filter term, can be: `parody`, `character`, `tag`, `artist`, `group`, `language` or `category`','Filter value', 'mode, `simple` to only show cover, `detail` to show all pages, `torrent` to include Magnet URI, need login, refer to [Route-specific Configurations](/install/#configuration-route-specific-configurations), default to `simple`']} anticrawler="1" supportBT="1" radar="1" />
+<Route data={{"path":"/search/:keyword/:mode?","categories":["anime"],"example":"/nhentai/search/language%3Ajapanese+-scat+-yaoi+-guro+-\"mosaic+censorship\"","parameters":{"keyword":"Keywords for search. You can copy the content after `q=` after searching on the original website, or you can enter it directly. See the [official website](https://nhentai.net/info/) for details","mode":"mode, `simple` to only show cover, `detail` to show all pages, `torrent` to include Magnet URI, need login, refer to [Route-specific Configurations](/install/#configuration-route-specific-configurations), default to `simple`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nhentai.net/:key/:keyword"],"target":"/:key/:keyword"},"name":"Advanced Search","maintainers":["MegrezZhu","hoilc"],"location":"search.ts"}} />
-### Advanced Search {#nhentai-advanced-search}
+### Filter {#nhentai-filter}
-<Route author="MegrezZhu hoilc" example="/nhentai/search/language%3Ajapanese+-scat+-yaoi+-guro+-"mosaic+censorship"" path="/nhentai/search/:keyword/:mode?" paramsDesc={['Keywords for search. You can copy the content after `q=` after searching on the original website, or you can enter it directly. See the [official website](https://nhentai.net/info/) for details', 'mode, `simple` to only show cover, `detail` to show all pages, `torrent` to include Magnet URI, need login, refer to [Route-specific Configurations](/install/#configuration-route-specific-configurations), default to `simple`']} anticrawler="1" supportBT="1" radar="1" />
+<Route data={{"path":"/:key/:keyword/:mode?","categories":["anime"],"example":"/nhentai/language/chinese","parameters":{"key":"Filter term, can be: `parody`, `character`, `tag`, `artist`, `group`, `language` or `category`","keyword":"Filter value","mode":"mode, `simple` to only show cover, `detail` to show all pages, `torrent` to include Magnet URI, need login, refer to [Route-specific Configurations](/install/#configuration-route-specific-configurations), default to `simple`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nhentai.net/:key/:keyword"],"target":"/:key/:keyword"},"name":"Filter","maintainers":["MegrezZhu","hoilc"],"location":"other.ts"}} />
## QooApp {#qooapp}
-### Game Store - Review {#qooapp-game-store-review}
+### Game Store - Article {#qooapp-game-store-article}
-<Route author="TonyRL" example="/qoo-app/apps/en/comment/7675" path="/qoo-app/apps/:lang?/comment/:id" paramsDesc={['Language, see the table below, empty means `中文`', 'Game ID, can be found in URL']} radar="1">
- | 中文 | English | 한국어 | Español | 日本語 | ไทย | Tiếng Việt |
- | ---- | ------- | ------ | ------- | ------ | --- | ---------- |
- | | en | ko | es | ja | th | vi |
-</Route>
+<Route data={{"path":"/apps/:lang?/post/:id","categories":["anime"],"example":"/qoo-app/apps/en/post/7675","parameters":{"lang":"Language, see the table above, empty means `中文`","id":"Game ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Game Store - Article","maintainers":["TonyRL"],"location":"apps/post.ts"}} />
-### Game Store - Article {#qooapp-game-store-article}
+### Game Store - Cards {#qooapp-game-store-cards}
-<Route author="TonyRL" example="/qoo-app/apps/en/post/7675" path="/qoo-app/apps/:lang?/post/:id" paramsDesc={['Language, see the table above, empty means `中文`', 'Game ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/apps/:lang?/card/:id","categories":["anime"],"example":"/qoo-app/apps/en/card/7675","parameters":{"lang":"Language, see the table above, empty means `中文`","id":"Game ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Game Store - Cards","maintainers":["TonyRL"],"location":"apps/card.ts"}} />
### Game Store - Notes {#qooapp-game-store-notes}
-<Route author="TonyRL" example="/qoo-app/apps/en/note/7675" path="/qoo-app/apps/:lang?/note/:id" paramsDesc={['Language, see the table above, empty means `中文`', 'Game ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/apps/:lang?/note/:id","categories":["anime"],"example":"/qoo-app/apps/en/note/7675","parameters":{"lang":"Language, see the table above, empty means `中文`","id":"Game ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Game Store - Notes","maintainers":["TonyRL"],"location":"apps/note.ts"}} />
-### Game Store - Cards {#qooapp-game-store-cards}
+### Game Store - Review {#qooapp-game-store-review}
-<Route author="TonyRL" example="/qoo-app/apps/en/card/7675" path="/qoo-app/apps/:lang?/card/:id" paramsDesc={['Language, see the table above, empty means `中文`', 'Game ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/apps/:lang?/comment/:id","categories":["anime"],"example":"/qoo-app/apps/en/comment/7675","parameters":{"lang":"Language, see the table below, empty means `中文`","id":"Game ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Game Store - Review","maintainers":["TonyRL"],"description":"| 中文 | English | 한국어 | Español | 日本語 | ไทย | Tiếng Việt |\n | ---- | ------- | ------ | ------- | ------ | --- | ---------- |\n | | en | ko | es | ja | th | vi |","location":"apps/comment.ts"}} />
-### News {#qooapp-news}
+| 中文 | English | 한국어 | Español | 日本語 | ไทย | Tiếng Việt |
+| ---- | ------- | ------ | ------- | ------ | --- | ---------- |
+| | en | ko | es | ja | th | vi |
-<Route author="TonyRL" example="/qoo-app/news/en" path="/qoo-app/news/:lang?" paramsDesc={['Language, see the table below, empty means `中文`']} radar="1">
- | 中文 | English |
- | ---- | ------- |
- | | en |
-</Route>
+### News {#qooapp-news}
-### Note Comments {#qooapp-note-comments}
+<Route data={{"path":"/news/:lang?","categories":["anime"],"example":"/qoo-app/news/en","parameters":{"lang":"Language, see the table below, empty means `中文`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["TonyRL"],"description":"| 中文 | English |\n | ---- | ------- |\n | | en |","location":"news.ts"}} />
-<Route author="TonyRL" example="/qoo-app/notes/en/note/2329113" path="/qoo-app/notes/:lang?/note/:id" paramsDesc={['Language, see the table above, empty means `中文`', 'Note ID, can be found in URL']} radar="1" notOperational="1" />
+| 中文 | English |
+| ---- | ------- |
+| | en |
-### Hot Hashtags {#qooapp-hot-hashtags}
+### Note Comments {#qooapp-note-comments}
-<Route author="TonyRL" example="/qoo-app/notes/en/topic/QooAppGacha" path="/qoo-app/notes/:lang?/topic/:id" paramsDesc={['Language, see the table above, empty means `中文`', 'Hashtag name without `#`']} radar="1" notOperational="1" />
+<Route data={{"path":"/notes/:lang?/note/:id","categories":["anime"],"example":"/qoo-app/notes/en/note/2329113","parameters":{"lang":"Language, see the table above, empty means `中文`","id":"Note ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Note Comments","maintainers":["TonyRL"],"location":"notes/note.ts"}} />
### User Game Comments {#qooapp-user-game-comments}
-<Route author="TonyRL" example="/qoo-app/user/en/appComment/35399143" path="/qoo-app/user/:lang?/appComment/:uid" paramsDesc={['Language, see the table above, empty means `中文`', 'User ID, can be found in URL']} radar="1" notOperational="1" />
+<Route data={{"path":"/user/:lang?/appComment/:uid","categories":["anime"],"example":"/qoo-app/user/en/appComment/35399143","parameters":{"lang":"Language, see the table above, empty means `中文`","uid":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Game Comments","maintainers":["TonyRL"],"location":"user/app-comment.ts"}} />
### User Notes {#qooapp-user-notes}
-<Route author="TonyRL" example="/qoo-app/notes/en/user/35399143" path="/qoo-app/notes/:lang?/user/:uid" paramsDesc={['Language, see the table above, empty means `中文`', 'User ID, can be found in URL']} radar="1" notOperational="1" />
+<Route data={{"path":"/notes/:lang?/user/:uid","categories":["anime"],"example":"/qoo-app/notes/en/user/35399143","parameters":{"lang":"Language, see the table above, empty means `中文`","uid":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Notes","maintainers":["TonyRL"],"location":"notes/user.ts"}} />
## Rawkuma {#rawkuma}
### Manga {#rawkuma-manga}
-<Route author="nczitzk" example="/rawkuma/manga/tensei-shitara-dai-nana-ouji-dattanode-kimamani-majutsu-o-kiwamemasu" path="/rawkuma/manga/:id" paramsDesc={['Manga ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/manga/:id","categories":["anime"],"example":"/rawkuma/manga/tensei-shitara-dai-nana-ouji-dattanode-kimamani-majutsu-o-kiwamemasu","parameters":{"id":"Manga ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rawkuma.com/manga/:id","rawkuma.com/"]},"name":"Manga","maintainers":["nczitzk"],"location":"manga.ts"}} />
## THBWiki {#thbwiki}
### Calendar {#thbwiki-calendar}
-<Route author="aether17" path="/thwiki/calendar/:before?/:after?" example="/thwiki/calendar" paramsDesc={['From how many days ago (default 30)', 'To how many days after (default 30)']} radar="1" />
-
-## Touhougarakuta 东方我乐多丛志 {#touhougarakuta-dong-fang-wo-le-duo-cong-zhi}
-
-### Articles {#touhougarakuta-dong-fang-wo-le-duo-cong-zhi-articles}
-
-<Route author="ttyfly" path="/touhougarakuta/:language/:type" example="/touhougarakuta/ja/news" paramsDesc={['language', 'article type']}>
- Languages:
-
- | Chinese | Japanese | Korean |
- | ------- | -------- | ------ |
- | cn | ja | ko |
-
- Article types:
-
- | Index | Series | Interviews | Novels | Comics | News |
- | ----- | ------ | ---------- | ------ | ------ | ---- |
- | index | series | interviews | novels | comics | news |
-
- | Music review | Game review | Book review | Where are you |
- | ------------- | ------------ | ------------ | --------------- |
- | music\_review | game\_review | book\_review | where\_are\_you |
-
- **Note:** The index type includes all types of articles. Think twice before using it.
-</Route>
+<Route data={{"path":"/calendar/:before?/:after?","categories":["anime"],"example":"/thwiki/calendar","parameters":{"before":"From how many days ago (default 30)","after":"To how many days after (default 30)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["thwiki.cc/","thwiki.cc/日程表"],"target":"/calendar"},"name":"Calendar","maintainers":["aether17"],"url":"thwiki.cc/","location":"index.ts"}} />
## VCB-Studio {#vcb-studio}
-### 最新文章 {#vcb-studio-zui-xin-wen-zhang}
-
-<Route author="cxfksword" example="/vcb-s" path="/vcb-s" radar="1" />
-
### 分类文章 {#vcb-studio-fen-lei-wen-zhang}
-<Route author="cxfksword" example="/vcb-s/category/works" path="/vcb-s/category/:cate" paramsDesc={['分类']} radar="1">
- | 作品项目 | 科普系列 | 计划与日志 |
- | -------- | -------- | ---------- |
- | works | kb | planlog |
-</Route>
-
-## Vol.moe {#vol-moe}
-
-### vol {#vol-moe-vol}
-
-<Route author="CoderTonyChan" example="/vol/finish" path="/vol/:mode?" paramsDesc={['mode type']}>
- | Comics are serialized | Comics is finshed |
- | --------------------- | ----------------- |
- | serial | finish |
-</Route>
+<Route data={{"path":"/category/:cate","categories":["anime"],"example":"/vcb-s/category/works","parameters":{"cate":"分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vcb-s.com/archives/category/:cate"]},"name":"分类文章","maintainers":["cxfksword"],"url":"vcb-s.com/","description":"| 作品项目 | 科普系列 | 计划与日志 |\n | -------- | -------- | ---------- |\n | works | kb | planlog |","location":"category.ts"}} />
-## Webtoons {#webtoons}
-
-### Comic updates {#webtoons-comic-updates}
-
-<Route author="machsix" path="/webtoons/:lang/:category/:name/:id" example="/webtoons/zh-hant/drama/gongzhuweimian/894" paramsDesc={['Language','Category','Name','ID']} />
-
-For example: `https://www.webtoons.com/zh-hant/drama/gongzhuweimian/list?title_no=894`, `lang=zh-hant`,`category=drama`,`name=gongzhucheyeweimian`,`id=894`.
-
-### Naver {#webtoons-naver}
-
-<Route author="zfanta" example="/webtoons/naver/651673" path="/webtoons/naver/:titleId" paramsDesc={['titleId of naver webtoon']} notOperational="1" />
+| 作品项目 | 科普系列 | 计划与日志 |
+| -------- | -------- | ---------- |
+| works | kb | planlog |
## X 漫画 {#x-man-hua}
### 最新动态 {#x-man-hua-zui-xin-dong-tai}
-<Route author="Ye11" example="/xmanhua/73xm" path="/xmanhua/:uid" paramsDesc={['漫画 id,在浏览器中可见,例如鬼灭之刃对应的 id 为 `73xm`']} />
+<Route data={{"path":"/:uid","categories":["anime"],"example":"/xmanhua/73xm","parameters":{"uid":"漫画 id,在浏览器中可见,例如鬼灭之刃对应的 id 为 `73xm`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xmanhua.com/:uid"]},"name":"最新动态","maintainers":["Ye11"],"location":"index.ts"}} />
## 俺の 3D エロ動画 (oreno3d) {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d}
@@ -532,95 +297,105 @@ For example: `https://www.webtoons.com/zh-hant/drama/gongzhuweimian/list?title_n
You can use some RSS parsing libraries (like `feedpraser` in `Python`) to receive the video update messages and download them automatically
:::
-### Keyword Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-keyword-search}
+### Author Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-author-search}
-<Route author="xueli-sherryli" example="/oreno3d/search/bronya/latest/1" path="/oreno3d/search/:keyword/:sort/:pagelimit?" paramsDesc={['Search keyword', 'Sort method, see the table below', 'The maximum number of pages to be crawled, the default is 1']} radar="1">
- | favorites | hot | latest | popularity |
- | --------- | --- | ------ | ---------- |
- | favorites | hot | latest | popularity |
-</Route>
+<Route data={{"path":["/authors/:authorid/:sort/:pagelimit?","/characters/:characterid/:sort/:pagelimit?","/origins/:originid/:sort/:pagelimit?","/search/:keyword/:sort/:pagelimit?","/tags/:tagid/:sort/:pagelimit?"],"categories":["anime"],"example":"/oreno3d/authors/3189/latest/1","parameters":{"authorid":"Author id, can be found in URL","sort":"Sort method, see the table above","pagelimit":"The maximum number of pages to be crawled, the default is 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Search","maintainers":["xueli_sherryli"],"description":"| favorites | hot | latest | popularity |\n | --------- | --- | ------ | ---------- |\n | favorites | hot | latest | popularity |","location":"main.ts"}} />
-### Character Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-character-search}
+| favorites | hot | latest | popularity |
+| --------- | --- | ------ | ---------- |
+| favorites | hot | latest | popularity |
-<Route author="xueli-sherryli" example="/oreno3d/characters/283/latest/1" path="/oreno3d/characters/:characterid/:sort/:pagelimit?" paramsDesc={['Character id, can be found in URL' , 'Sort method, see the table above', 'The maximum number of pages to be crawled, the default is 1']} radar="1" />
+### Author Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-author-search}
+
+<Route data={{"path":["/authors/:authorid/:sort/:pagelimit?","/characters/:characterid/:sort/:pagelimit?","/origins/:originid/:sort/:pagelimit?","/search/:keyword/:sort/:pagelimit?","/tags/:tagid/:sort/:pagelimit?"],"categories":["anime"],"example":"/oreno3d/authors/3189/latest/1","parameters":{"authorid":"Author id, can be found in URL","sort":"Sort method, see the table above","pagelimit":"The maximum number of pages to be crawled, the default is 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Search","maintainers":["xueli_sherryli"],"description":"| favorites | hot | latest | popularity |\n | --------- | --- | ------ | ---------- |\n | favorites | hot | latest | popularity |","location":"main.ts"}} />
+
+| favorites | hot | latest | popularity |
+| --------- | --- | ------ | ---------- |
+| favorites | hot | latest | popularity |
### Author Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-author-search}
-<Route author="xueli-sherryli" example="/oreno3d/authors/3189/latest/1" path="/oreno3d/authors/:authorid/:sort/:pagelimit?" paramsDesc={['Author id, can be found in URL' , 'Sort method, see the table above', 'The maximum number of pages to be crawled, the default is 1']} radar="1" />
+<Route data={{"path":["/authors/:authorid/:sort/:pagelimit?","/characters/:characterid/:sort/:pagelimit?","/origins/:originid/:sort/:pagelimit?","/search/:keyword/:sort/:pagelimit?","/tags/:tagid/:sort/:pagelimit?"],"categories":["anime"],"example":"/oreno3d/authors/3189/latest/1","parameters":{"authorid":"Author id, can be found in URL","sort":"Sort method, see the table above","pagelimit":"The maximum number of pages to be crawled, the default is 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Search","maintainers":["xueli_sherryli"],"description":"| favorites | hot | latest | popularity |\n | --------- | --- | ------ | ---------- |\n | favorites | hot | latest | popularity |","location":"main.ts"}} />
-### Tags Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-tags-search}
+| favorites | hot | latest | popularity |
+| --------- | --- | ------ | ---------- |
+| favorites | hot | latest | popularity |
-<Route author="xueli-sherryli" example="/oreno3d/tags/177/latest/1" path="/oreno3d/tags/:tagid/:sort/:pagelimit?" paramsDesc={['Tag id, can be found in URL', 'Sort method, see the table above', 'The maximum number of pages to be crawled, the default is 1']} radar="1" />
+### Author Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-author-search}
-### Origins Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-origins-search}
+<Route data={{"path":["/authors/:authorid/:sort/:pagelimit?","/characters/:characterid/:sort/:pagelimit?","/origins/:originid/:sort/:pagelimit?","/search/:keyword/:sort/:pagelimit?","/tags/:tagid/:sort/:pagelimit?"],"categories":["anime"],"example":"/oreno3d/authors/3189/latest/1","parameters":{"authorid":"Author id, can be found in URL","sort":"Sort method, see the table above","pagelimit":"The maximum number of pages to be crawled, the default is 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Search","maintainers":["xueli_sherryli"],"description":"| favorites | hot | latest | popularity |\n | --------- | --- | ------ | ---------- |\n | favorites | hot | latest | popularity |","location":"main.ts"}} />
-<Route author="xueli-sherryli" example="/oreno3d/origins/3/latest/1" path="/oreno3d/origins/:originid/:sort/:pagelimit?" paramsDesc={['Origin id, can be found in URL' , 'Sort method, see the table above', 'The maximum number of pages to be crawled, the default is 1']} radar="1" />
+| favorites | hot | latest | popularity |
+| --------- | --- | ------ | ---------- |
+| favorites | hot | latest | popularity |
-## 巴哈姆特電玩資訊站 {#ba-ha-mu-te-dian-wan-zi-xun-zhan}
+### Author Search {#an-%E3%81%AE-3d-%E3%82%A8%E3%83%AD-dong-hua-oreno3d-author-search}
-### GNN 新聞 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-gnn-xin-wen}
+<Route data={{"path":["/authors/:authorid/:sort/:pagelimit?","/characters/:characterid/:sort/:pagelimit?","/origins/:originid/:sort/:pagelimit?","/search/:keyword/:sort/:pagelimit?","/tags/:tagid/:sort/:pagelimit?"],"categories":["anime"],"example":"/oreno3d/authors/3189/latest/1","parameters":{"authorid":"Author id, can be found in URL","sort":"Sort method, see the table above","pagelimit":"The maximum number of pages to be crawled, the default is 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Search","maintainers":["xueli_sherryli"],"description":"| favorites | hot | latest | popularity |\n | --------- | --- | ------ | ---------- |\n | favorites | hot | latest | popularity |","location":"main.ts"}} />
-<Route author="Arracc" example="/gamer/gnn/1" path="/gamer/gnn/:category?" paramsDesc={['版块']} notOperational="1">
- | 首頁 | PC | TV 掌機 | 手機遊戲 | 動漫畫 | 主題報導 | 活動展覽 | 電競 |
- | ---- | -- | ------- | -------- | ------ | -------- | -------- | ---- |
- | 缺省 | 1 | 3 | 4 | 5 | 9 | 11 | 13 |
+| favorites | hot | latest | popularity |
+| --------- | --- | ------ | ---------- |
+| favorites | hot | latest | popularity |
- | Switch | PS5 | PS4 | XboxOne | XboxSX | PC 單機 | PC 線上 | iOS | Android | Web | 漫畫 | 動畫 |
- | ------ | --- | --- | ------- | ------ | ------- | ------- | --- | ------- | --- | ----- | ----- |
- | ns | ps5 | ps4 | xbone | xbsx | pc | olg | ios | android | web | comic | anime |
-</Route>
+## 巴哈姆特電玩資訊站 {#ba-ha-mu-te-dian-wan-zi-xun-zhan}
-### 熱門推薦 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-re-men-tui-jian}
+### 動畫瘋 - 動畫 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-dong-hua-feng-dong-hua}
-<Route author="nczitzk" example="/gamer/hot/47157" path="/gamer/hot/:bsn" paramsDesc={['板块 id,在 URL 可以找到']} />
+<Route data={{"path":"/ani/anime/:sn","categories":["anime"],"example":"/gamer/ani/anime/36868","parameters":{"sn":"動畫 sn,在 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"動畫瘋 - 動畫","maintainers":[],"location":"ani/anime.ts"}} />
### 動畫瘋 - 最後更新 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-dong-hua-feng-zui-hou-geng-xin}
-<Route author="maple3142" example="/gamer/ani/new_anime" path="/gamer/ani/new_anime" />
+<Route data={{"path":"/ani/new_anime","categories":["anime"],"example":"/gamer/ani/new_anime","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ani.gamer.com.tw/"],"target":"/new_anime"},"name":"動畫瘋 - 最後更新","maintainers":[],"url":"ani.gamer.com.tw/","location":"ani/new-anime.ts"}} />
-### 動畫瘋 - 動畫 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-dong-hua-feng-dong-hua}
+### 熱門推薦 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-re-men-tui-jian}
-<Route author="maple3142" example="/gamer/ani/anime/36868" path="/gamer/ani/anime/:sn" paramsDesc={['動畫 sn,在 URL 可以找到']} radar="1" />
+<Route data={{"path":"/hot/:bsn","categories":["anime"],"example":"/gamer/hot/47157","parameters":{"bsn":"板块 id,在 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"熱門推薦","maintainers":["nczitzk","TonyRL"],"location":"hot.ts"}} />
-## 包子漫画 {#bao-zi-man-hua}
+### GNN 新聞 {#ba-ha-mu-te-dian-wan-zi-xun-zhan-gnn-xin-wen}
-### 订阅漫画 {#bao-zi-man-hua-ding-yue-man-hua}
+<Route data={{"path":"/gnn/:category?","categories":["anime"],"example":"/gamer/gnn/1","parameters":{"category":"版块"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"GNN 新聞","maintainers":["Arracc"],"description":"| 首頁 | PC | TV 掌機 | 手機遊戲 | 動漫畫 | 主題報導 | 活動展覽 | 電競 |\n | ---- | -- | ------- | -------- | ------ | -------- | -------- | ---- |\n | 缺省 | 1 | 3 | 4 | 5 | 9 | 11 | 13 |\n\n | Switch | PS5 | PS4 | XboxOne | XboxSX | PC 單機 | PC 線上 | iOS | Android | Web | 漫畫 | 動畫 |\n | ------ | --- | --- | ------- | ------ | ------- | ------- | --- | ------- | --- | ----- | ----- |\n | ns | ps5 | ps4 | xbone | xbsx | pc | olg | ios | android | web | comic | anime |","location":"gnn-index.ts"}} />
+
+| 首頁 | PC | TV 掌機 | 手機遊戲 | 動漫畫 | 主題報導 | 活動展覽 | 電競 |
+| ---- | -- | ------- | -------- | ------ | -------- | -------- | ---- |
+| 缺省 | 1 | 3 | 4 | 5 | 9 | 11 | 13 |
-<Route author="Fatpandac" example="/baozimh/comic/guowangpaiming-shiricaofu" path="/baozimh/comic/:name" paramsDesc={['漫画名称,在漫画链接可以得到(`comic/` 后的那段)']} />
+| Switch | PS5 | PS4 | XboxOne | XboxSX | PC 單機 | PC 線上 | iOS | Android | Web | 漫畫 | 動畫 |
+| ------ | --- | --- | ------- | ------ | ------- | ------- | --- | ------- | --- | ----- | ----- |
+| ns | ps5 | ps4 | xbone | xbsx | pc | olg | ios | android | web | comic | anime |
-## 咚漫 {#dong-man}
+## 包子漫画 {#bao-zi-man-hua}
-### 漫画更新 {#dong-man-man-hua-geng-xin}
+### 订阅漫画 {#bao-zi-man-hua-ding-yue-man-hua}
-<Route author="machsix" path="/dongmanmanhua/:category/:name/:id" example="/dongmanmanhua/COMEDY/xin-xinlingdeshengyin/381" paramsDesc={['类别','名称','ID']} />
+<Route data={{"path":"/comic/:name","categories":["anime"],"example":"/baozimh/comic/guowangpaiming-shiricaofu","parameters":{"name":"漫画名称,在漫画链接可以得到(`comic/` 后的那段)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.baozimh.com/comic/:name"]},"name":"订阅漫画","maintainers":["Fatpandac"],"location":"index.ts"}} />
## 动漫之家 {#dong-man-zhi-jia}
### 新闻站 {#dong-man-zhi-jia-xin-wen-zhan}
-<Route author="vzz64" path="/dmzj/news/:category?" example="/dmzj/news/donghuaqingbao" paramsDesc={['类别']} radar="1">
- | 漫画情报 | 轻小说情报 | 动漫周边 | 声优情报 | 音乐资讯 | 游戏资讯 | 美图欣赏 | 漫展情报 | 大杂烩 |
- | ------------- | ------------------- | -------------- | --------------- | ----------- | ---------- | ------------- | -------------- | ------- |
- | manhuaqingbao | qingxiaoshuoqingbao | manhuazhoubian | shengyouqingbao | yinyuezixun | youxizixun | meituxinshang | manzhanqingbao | dazahui |
-</Route>
+<Route data={{"path":"/news/:category?","categories":["anime"],"example":"/dmzj/news/donghuaqingbao","parameters":{"category":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.dmzj.com/"],"target":"/news"},"name":"新闻站","maintainers":["vzz64"],"url":"news.dmzj.com/","description":"| 漫画情报 | 轻小说情报 | 动漫周边 | 声优情报 | 音乐资讯 | 游戏资讯 | 美图欣赏 | 漫展情报 | 大杂烩 |\n | ------------- | ------------------- | -------------- | --------------- | ----------- | ---------- | ------------- | -------------- | ------- |\n | manhuaqingbao | qingxiaoshuoqingbao | manhuazhoubian | shengyouqingbao | yinyuezixun | youxizixun | meituxinshang | manzhanqingbao | dazahui |","location":"news.ts"}} />
+
+| 漫画情报 | 轻小说情报 | 动漫周边 | 声优情报 | 音乐资讯 | 游戏资讯 | 美图欣赏 | 漫展情报 | 大杂烩 |
+| ------------- | ------------------- | -------------- | --------------- | ----------- | ---------- | ------------- | -------------- | ------- |
+| manhuaqingbao | qingxiaoshuoqingbao | manhuazhoubian | shengyouqingbao | yinyuezixun | youxizixun | meituxinshang | manzhanqingbao | dazahui |
## 動漫狂 {#dong-man-kuang}
### 漫画更新 {#dong-man-kuang-man-hua-geng-xin}
-<Route author="KellyHwong" path="/cartoonmad/comic/:id" example="/cartoonmad/comic/5827" paramsDesc={['漫画ID']} radar="1" />
+<Route data={{"path":"/comic/:id","categories":["anime"],"example":"/cartoonmad/comic/5827","parameters":{"id":"漫画ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cartoonmad.com/comic/:id"]},"name":"漫画更新","maintainers":["KellyHwong"],"location":"comic.ts"}} />
## 番组放送 {#fan-zu-fang-song}
### 开播提醒 {#fan-zu-fang-song-kai-bo-ti-xing}
-<Route author="x2cf" example="/bgmlist/onair/zh-Hans" path="/bgmlist/onair/:lang?" paramsDesc={['语言']} radar="1" />
+<Route data={{"path":"/onair/:lang?","categories":["anime"],"example":"/bgmlist/onair/zh-Hans","parameters":{"lang":"语言"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"开播提醒","maintainers":["x2cf"],"location":"onair.ts"}} />
## 风之动漫 {#feng-zhi-dong-man}
### 在线漫画 {#feng-zhi-dong-man-zai-xian-man-hua}
-<Route author="geeeeoff zytomorrow" path="/fffdm/manhua/:id/:cdn?" example="/fffdm/manhua/93" paramsDesc={['漫画ID。默认获取全部,建议使用通用参数limit获取指定数量', 'cdn加速器。默认5,当前可选1-5']} radar="1" />
+<Route data={{"path":"/manhua/:id/:cdn?","categories":["anime"],"example":"/fffdm/manhua/93","parameters":{"id":"漫画ID。默认获取全部,建议使用通用参数limit获取指定数量","cdn":"cdn加速器。默认5,当前可选1-5"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.fffdm.com/manhua/:id","www.fffdm.com/:id"],"target":"/manhua/:id"},"name":"在线漫画","maintainers":["zytomorrow"],"location":"manhua/manhua.ts"}} />
## 禁漫天堂 {#jin-man-tian-tang}
@@ -630,158 +405,154 @@ You can use some RSS parsing libraries (like `feedpraser` in `Python`) to receiv
### 成人 A 漫 {#jin-man-tian-tang-cheng-ren-a-man}
-<Route author="nczitzk" example="/18comic" path="/18comic/:category?/:time?/:order?/:keyword?" paramsDesc={['分类,见下表,默认为 `all` 即全部', '时间范围,见下表,默认为 `a` 即全部', '排列顺序,见下表,默认为 `mr` 即最新', '关键字,见下表,默认为空']} anticrawler="1">
- 分类
+<Route data={{"path":"/:category?/:time?/:order?/:keyword?","categories":["anime"],"example":"/18comic","parameters":{"category":"分类,见下表,默认为 `all` 即全部","time":"时间范围,见下表,默认为 `a` 即全部","order":"排列顺序,见下表,默认为 `mr` 即最新","keyword":"关键字,见下表,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jmcomic.group/"]},"name":"成人 A 漫","maintainers":["nczitzk"],"url":"jmcomic.group/","description":"分类\n\n | 全部 | 其他漫畫 | 同人 | 韓漫 | 美漫 | 短篇 | 单本 |\n | ---- | -------- | ------ | ------ | ------ | ----- | ------ |\n | all | another | doujin | hanman | meiman | short | single |\n\n 时间范围\n\n | 全部 | 今天 | 这周 | 本月 |\n | ---- | ---- | ---- | ---- |\n | a | t | w | m |\n\n 排列顺序\n\n | 最新 | 最多点阅的 | 最多图片 | 最高评分 | 最多评论 | 最多爱心 |\n | ---- | ---------- | -------- | -------- | -------- | -------- |\n | mr | mv | mp | tr | md | tf |\n\n 关键字(供参考)\n\n | YAOI | 女性向 | NTR | 非 H | 3D | 獵奇 |\n | ---- | ------ | --- | ---- | -- | ---- |","location":"index.ts"}} />
- | 全部 | 其他漫畫 | 同人 | 韓漫 | 美漫 | 短篇 | 单本 |
- | ---- | -------- | ------ | ------ | ------ | ----- | ------ |
- | all | another | doujin | hanman | meiman | short | single |
+分类
- 时间范围
+| 全部 | 其他漫畫 | 同人 | 韓漫 | 美漫 | 短篇 | 单本 |
+| ---- | -------- | ------ | ------ | ------ | ----- | ------ |
+| all | another | doujin | hanman | meiman | short | single |
- | 全部 | 今天 | 这周 | 本月 |
- | ---- | ---- | ---- | ---- |
- | a | t | w | m |
+时间范围
- 排列顺序
+| 全部 | 今天 | 这周 | 本月 |
+| ---- | ---- | ---- | ---- |
+| a | t | w | m |
- | 最新 | 最多点阅的 | 最多图片 | 最高评分 | 最多评论 | 最多爱心 |
- | ---- | ---------- | -------- | -------- | -------- | -------- |
- | mr | mv | mp | tr | md | tf |
+排列顺序
- 关键字(供参考)
+| 最新 | 最多点阅的 | 最多图片 | 最高评分 | 最多评论 | 最多爱心 |
+| ---- | ---------- | -------- | -------- | -------- | -------- |
+| mr | mv | mp | tr | md | tf |
- | YAOI | 女性向 | NTR | 非 H | 3D | 獵奇 |
- | ---- | ------ | --- | ---- | -- | ---- |
-</Route>
+关键字(供参考)
-### 搜索 {#jin-man-tian-tang-sou-suo}
+| YAOI | 女性向 | NTR | 非 H | 3D | 獵奇 |
+| ---- | ------ | --- | ---- | -- | ---- |
-<Route author="nczitzk" example="/18comic/search/photos/all/NTR" path="/18comic/search/:option?/:category?/:keyword?/:time?/:order?" paramsDesc={['选项,可选 `video` 和 `photos`,默认为 `photos`', '分类,同上表,默认为 `all` 即全部', '关键字,同上表,默认为空', '时间范围,同上表,默认为 `a` 即全部', '排列顺序,同上表,默认为 `mr` 即最新']} anticrawler="1">
- :::tip
- 关键字必须超过两个字,这是来自网站的限制。
- :::
-</Route>
+### 搜索 {#jin-man-tian-tang-sou-suo}
-### 专辑 {#jin-man-tian-tang-zhuan-ji}
+<Route data={{"path":"/search/:option?/:category?/:keyword?/:time?/:order?","categories":["anime"],"example":"/18comic/search/photos/all/NTR","parameters":{"option":"选项,可选 `video` 和 `photos`,默认为 `photos`","category":"分类,同上表,默认为 `all` 即全部","keyword":"关键字,同上表,默认为空","time":"时间范围,同上表,默认为 `a` 即全部","order":"排列顺序,同上表,默认为 `mr` 即最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jmcomic.group/"],"target":"/:category?/:time?/:order?/:keyword?"},"name":"搜索","maintainers":[],"url":"jmcomic.group/","description":":::tip\n 关键字必须超过两个字,这是来自网站的限制。\n :::","location":"search.ts"}} />
-<Route author="nczitzk" example="/18comic/album/292282" path="/18comic/album/:id" paramsDesc={['专辑 id,可在专辑页 URL 中找到']} anticrawler="1">
- :::tip
- 专辑 id 不包括 URL 中标题的部分。
- :::
-</Route>
+:::tip
+关键字必须超过两个字,这是来自网站的限制。
+:::
### 文庫 {#jin-man-tian-tang-wen-ku}
-<Route author="nczitzk" example="/18comic/blogs" path="/18comic/blogs/:category?" paramsDesc={['分类,见下表,默认为空即全部']} anticrawler="1">
- 分类
+<Route data={{"path":"/blogs/:category?","categories":["anime"],"example":"/18comic/blogs","parameters":{"category":"分类,见下表,默认为空即全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jmcomic.group/"]},"name":"文庫","maintainers":["nczitzk"],"url":"jmcomic.group/","description":"分类\n\n | 全部 | 紳夜食堂 | 遊戲文庫 | JG GAMES | 模型山下 |\n | ---- | -------- | -------- | -------- | -------- |\n | | dinner | raiders | jg | figure |","location":"blogs.ts"}} />
- | 全部 | 紳夜食堂 | 遊戲文庫 | JG GAMES | 模型山下 |
- | ---- | -------- | -------- | -------- | -------- |
- | | dinner | raiders | jg | figure |
-</Route>
+分类
-## 看漫画 {#kan-man-hua}
+| 全部 | 紳夜食堂 | 遊戲文庫 | JG GAMES | 模型山下 |
+| ---- | -------- | -------- | -------- | -------- |
+| | dinner | raiders | jg | figure |
-### 漫画更新 {#kan-man-hua-man-hua-geng-xin}
+### 专辑 {#jin-man-tian-tang-zhuan-ji}
-<Route author="MegrezZhu" path="/manhuagui/comic/:id/:chapterCnt?" example="/manhuagui/comic/22942/5" paramsDesc={['漫画ID','返回章节的数量,默认为0,返回所有章节']} radar="1" anticrawler="1" />
+<Route data={{"path":"/album/:id","categories":["anime"],"example":"/18comic/album/292282","parameters":{"id":"专辑 id,可在专辑页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jmcomic.group/"]},"name":"专辑","maintainers":["nczitzk"],"url":"jmcomic.group/","description":":::tip\n 专辑 id 不包括 URL 中标题的部分。\n :::","location":"album.ts"}} />
+
+:::tip
+专辑 id 不包括 URL 中标题的部分。
+:::
+
+## 看漫画 {#kan-man-hua}
### 漫画个人订阅 {#kan-man-hua-man-hua-ge-ren-ding-yue}
-<Route author="shininome" path="/manhuagui/subscribe" example="/manhuagui/subscribe" radar="1" configRequired="1">
- :::tip
- 个人订阅需要自建
- 环境变量需要添加 MHGUI\_COOKIE
- :::
-</Route>
+<Route data={{"path":"/subscribe","categories":["anime"],"example":"/manhuagui/subscribe","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mhgui.com/user/book/shelf"]},"name":"漫画个人订阅","maintainers":["shininome"],"url":"www.mhgui.com/user/book/shelf","description":":::tip\n 个人订阅需要自建\n 环境变量需要添加 MHGUI_COOKIE\n :::","location":"subscribe.ts"}} />
-### 镜像站 - 漫画更新 {#kan-man-hua-jing-xiang-zhan-man-hua-geng-xin}
+:::tip
+个人订阅需要自建
+环境变量需要添加 MHGUI\_COOKIE
+:::
-<Route author="btdwv" path="/manhuagui/mhgui/comic/:id/:chapterCnt?" example="/manhuagui/mhgui/comic/13317/5" paramsDesc={['漫画ID','返回章节的数量,默认为0,返回所有章节']} radar="1" anticrawler="1" />
+### 漫画更新 {#kan-man-hua-man-hua-geng-xin}
-### 台湾站 - 漫画更新 {#kan-man-hua-tai-wan-zhan-man-hua-geng-xin}
+<Route data={{"path":["/comic/:id/:chapterCnt?","/:domain?/comic/:id/:chapterCnt?"],"categories":["anime"],"example":"/manhuagui/comic/22942/5","parameters":{"id":"漫画ID","chapterCnt":"返回章节的数量,默认为0,返回所有章节"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mhgui.com/comic/:id/"],"target":"/comic/:id"},"name":"漫画更新","maintainers":["MegrezZhu"],"location":"comic.ts"}} />
-<Route author="btdwv" path="/manhuagui/twmanhuagui/comic/:id/:chapterCnt?" example="/manhuagui/twmanhuagui/comic/13317/5" paramsDesc={['漫画ID','返回章节的数量,默认为0,返回所有章节']} radar="1" anticrawler="1" />
+### 漫画更新 {#kan-man-hua-man-hua-geng-xin}
+
+<Route data={{"path":["/comic/:id/:chapterCnt?","/:domain?/comic/:id/:chapterCnt?"],"categories":["anime"],"example":"/manhuagui/comic/22942/5","parameters":{"id":"漫画ID","chapterCnt":"返回章节的数量,默认为0,返回所有章节"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mhgui.com/comic/:id/"],"target":"/comic/:id"},"name":"漫画更新","maintainers":["MegrezZhu"],"location":"comic.ts"}} />
## 拷贝漫画 {#kao-bei-man-hua}
### 漫画更新 {#kao-bei-man-hua-man-hua-geng-xin}
-<Route author="btdwv marvolo666 yan12125" path="/copymanga/comic/:id/:chapterCnt?" example="/copymanga/comic/dianjuren/5" paramsDesc={['漫画ID', '返回章节的数量,默认为 `10`']} radar="1" />
+<Route data={{"path":"/comic/:id/:chapterCnt?","categories":["anime"],"example":"/copymanga/comic/dianjuren/5","parameters":{"id":"漫画ID","chapterCnt":"返回章节的数量,默认为 `10`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"漫画更新","maintainers":["btdwv","marvolo666","yan12125"],"location":"comic.ts"}} />
## 来漫画 {#lai-man-hua}
### 漫画列表 {#lai-man-hua-man-hua-lie-biao}
-<Route author="TonyRL" example="/laimanhua/tiandikangzhanjiVERSUS" path="/laimanhua/:id" paramsDesc={['漫画 ID,可在 URL 中找到']} radar="1" />
+<Route data={{"path":"/:id","categories":["anime"],"example":"/laimanhua/tiandikangzhanjiVERSUS","parameters":{"id":"漫画 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.laimanhua8.com/kanmanhua/:id"]},"name":"漫画列表","maintainers":["TonyRL"],"location":"index.ts"}} />
+
+## 腾讯新闻较真查证平台 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai}
-## 漫画 DB {#man-hua-db}
+### 排行榜 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-pai-hang-bang}
-### 漫画 DB {#man-hua-db-man-hua-db}
+<Route data={{"path":"/ac/rank/:type?/:time?","categories":["anime"],"example":"/qq/ac/rank","parameters":{"type":"分类,见下表,默认为月票榜","time":"时间,`cur` 为当周、`prev` 为上周"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ac.qq.com/Rank/comicRank/type/:type","ac.qq.com/"]},"name":"排行榜","maintainers":["nczitzk"],"description":"| 月票榜 | 飙升榜 | 新作榜 | 畅销榜 | TOP100 | 男生榜 | 女生榜 |\n | ------ | ------ | ------ | ------ | ------ | ------ | ------ |\n | mt | rise | new | pay | top | male | female |\n\n :::tip\n `time` 参数仅在 `type` 参数选为 **月票榜** 的时候生效。\n :::","location":"ac/rank.ts"}} />
-<Route author="junfengP" path="/manhuadb/:id" example="/manhuadb/comics/1711" paramsDesc={['漫画ID']} />
+| 月票榜 | 飙升榜 | 新作榜 | 畅销榜 | TOP100 | 男生榜 | 女生榜 |
+| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
+| mt | rise | new | pay | top | male | female |
-## 漫小肆 {#man-xiao-si}
+:::tip
+`time` 参数仅在 `type` 参数选为 **月票榜** 的时候生效。
+:::
-### 漫画更新 {#man-xiao-si-man-hua-geng-xin}
+## 月幕 Galgame {#yue-mu-galgame}
-<Route author="junfengP" path="/manxiaosi/book/:id" example="/manxiaosi/book/90" paramsDesc={['漫画id,漫画主页的地址栏中']} radar="1" />
+### 本月新作 {#yue-mu-galgame-ben-yue-xin-zuo}
-## 轻之国度 {#qing-zhi-guo-du}
+<Route data={{"path":"/game/release","categories":["anime"],"example":"/ymgal/game/release","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ymgal.games/"]},"name":"本月新作","maintainers":["SunBK201"],"url":"ymgal.games/","location":"game.ts"}} />
-### 文章更新阅读 {#qing-zhi-guo-du-wen-zhang-geng-xin-yue-du}
+### 文章 {#yue-mu-galgame-wen-zhang}
-<Route author="nightmare-mio" path="/lightnovel/:keywords/:security_key" example="/lightnovel/歡迎來到實力至上主義的教室/3cfc2dc63f3575ee42e12823188ad1b5:1709125:0" paramsDesc={['关键字,可以模糊匹配,但最好精确匹配。默认为文章类型','cookie,由于文章有防爬,所以必须携带cookie请求。route中的cookie优先级高于环境变量cookie,取token中的security_key值']} radar="1" />
+<Route data={{"path":"/article/:type?","categories":["anime"],"example":"/ymgal/article","parameters":{"type":"文章类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["SunBK201"],"description":"| 全部文章 | 资讯 | 专栏 |\n | -------- | ---- | ------ |\n | all | news | column |","location":"article.ts"}} />
-## 紳士漫畫 {#shen-shi-man-hua}
+| 全部文章 | 资讯 | 专栏 |
+| -------- | ---- | ------ |
+| all | news | column |
-### 最新 {#shen-shi-man-hua-zui-xin}
+## アニメ新番組 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu}
-<Route author="KenMizz" example="/wnacg" path="/wnacg" radar="1" />
+### Unknown {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-unknown}
-### 分类更新 {#shen-shi-man-hua-fen-lei-geng-xin}
+<Route data={{"path":"/online","categories":["anime"],"example":"/bangumi/online","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bangumi.online/"]},"name":"Unknown","maintainers":["devinmugen"],"url":"bangumi.online/","location":"online/online.ts"}} />
-<Route author="Gandum2077" example="/wnacg/category/6" path="/wnacg/category/:cid" paramsDesc={['分类的 id,即对应 URL 中的数字']} radar="1" />
+### 成员关注动画榜 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-cheng-yuan-guan-zhu-dong-hua-bang}
-### 標籤更新 {#shen-shi-man-hua-biao-qian-geng-xin}
+<Route data={{"path":"/tv/followrank","categories":["anime"],"example":"/bangumi/tv/followrank","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/anime"]},"name":"成员关注动画榜","maintainers":["honue"],"url":"bgm.tv/anime","location":"tv/other/followrank.ts"}} />
-<Route author="Gandum2077" example="/wnacg/tag/漢化" path="/wnacg/tag/:tag" paramsDesc={['標籤,即 URL 中的 `tag-`後的文字']} radar="1" />
+### 放送列表 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-fang-song-lie-biao}
-## 腾讯动漫 {#teng-xun-dong-man}
+<Route data={{"path":"/tv/calendar/today","categories":["anime"],"example":"/bangumi/tv/calendar/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/calendar"]},"name":"放送列表","maintainers":["magic-akari"],"url":"bgm.tv/calendar","location":"tv/calendar/today.ts"}} />
-### 排行榜 {#teng-xun-dong-man-pai-hang-bang}
+### 条目的通用路由格式 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-tiao-mu-di-tong-yong-lu-you-ge-shi}
-<Route author="nczitzk" example="/qq/ac/rank" path="/qq/ac/rank/:type?/:time?" paramsDesc={['分类,见下表,默认为月票榜', '时间,`cur` 为当周、`prev` 为上周']} radar="1">
- | 月票榜 | 飙升榜 | 新作榜 | 畅销榜 | TOP100 | 男生榜 | 女生榜 |
- | ------ | ------ | ------ | ------ | ------ | ------ | ------ |
- | mt | rise | new | pay | top | male | female |
+<Route data={{"path":"/tv/subject/:id/:type?/:showOriginalName?","categories":["anime"],"example":"/bangumi/tv/subject/328609/ep/true","parameters":{"id":"条目 id, 在条目页面的地址栏查看","type":"条目类型,可选值为 `ep`, `comments`, `blogs`, `topics`,默认为 `ep`","showOriginalName":"显示番剧标题原名,可选值 0/1/false/true,默认为 false"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/subject/:id"],"target":"/tv/subject/:id"},"name":"条目的通用路由格式","maintainers":["JimenezLi"],"description":":::warning\n 此通用路由仅用于对路由参数的描述,具体信息请查看下方与条目相关的路由\n :::","location":"tv/subject/index.ts"}} />
- :::tip
- `time` 参数仅在 `type` 参数选为 **月票榜** 的时候生效。
- :::
-</Route>
+:::warning
+此通用路由仅用于对路由参数的描述,具体信息请查看下方与条目相关的路由
+:::
-### 漫画 {#teng-xun-dong-man-man-hua}
+### 现实人物的新作品 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-xian-shi-ren-wu-de-xin-zuo-pin}
-<Route author="nczitzk" example="/qq/ac/comic/531490" path="/qq/ac/comic/:id" paramsDesc={['编号,可在对应页 URL 中找到']} radar="1" />
+<Route data={{"path":"/tv/person/:id","categories":["anime"],"example":"/bangumi/tv/person/32943","parameters":{"id":"人物 id, 在人物页面的地址栏查看"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/person/:id"]},"name":"现实人物的新作品","maintainers":["ylc395"],"location":"tv/person/index.ts"}} />
-## 月幕 Galgame {#yue-mu-galgame}
+### 小组话题 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-xiao-zu-hua-ti}
-### 文章 {#yue-mu-galgame-wen-zhang}
+<Route data={{"path":"/tv/group/:id","categories":["anime"],"example":"/bangumi/tv/group/boring","parameters":{"id":"小组 id, 在小组页面地址栏查看"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/group/:id"]},"name":"小组话题","maintainers":["SettingDust"],"location":"tv/group/topic.ts"}} />
-<Route author="SunBK201" example="/ymgal/article" path="/ymgal/article/:type?" paramsDesc={['文章类型']} radar="1">
- | 全部文章 | 资讯 | 专栏 |
- | -------- | ---- | ------ |
- | all | news | column |
-</Route>
+### 小组话题的新回复 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-xiao-zu-hua-ti-de-xin-hui-fu}
-### 本月新作 {#yue-mu-galgame-ben-yue-xin-zuo}
+<Route data={{"path":"/tv/topic/:id","categories":["anime"],"example":"/bangumi/tv/topic/367032","parameters":{"id":"话题 id, 在话题页面地址栏查看"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/group/topic/:id"]},"name":"小组话题的新回复","maintainers":["ylc395"],"location":"tv/group/reply.ts"}} />
-<Route author="SunBK201" example="/ymgal/game/release" path="/ymgal/game/release" radar="1" />
+### 用户日志 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-yong-hu-ri-zhi}
-## アニメ新番組 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu}
+<Route data={{"path":"/tv/user/blog/:id","categories":["anime"],"example":"/bangumi/tv/user/blog/sai","parameters":{"id":"用户 id, 在用户页面地址栏查看"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/user/:id"]},"name":"用户日志","maintainers":["nczitzk"],"location":"tv/user/blog.ts"}} />
-### 當季新番 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-dang-ji-xin-fan}
+### 用户想看 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-yong-hu-xiang-kan}
-<Route author="devinmugen" example="/bangumi/online" path="/bangumi/online" anticrawler="1" />
+<Route data={{"path":"/tv/user/wish/:id","categories":["anime"],"example":"/bangumi/tv/user/wish/sai","parameters":{"id":"用户 id, 在用户页面地址栏查看"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bgm.tv/anime/list/:id/wish"]},"name":"用户想看","maintainers":["honue"],"location":"tv/user/wish.ts"}} />
diff --git a/website/docs/routes/bbs.mdx b/website/docs/routes/bbs.mdx
index 22632efcbb98c5..8634b691f1d77f 100644
--- a/website/docs/routes/bbs.mdx
+++ b/website/docs/routes/bbs.mdx
@@ -1,128 +1,90 @@
-# 💬️ BBS
+# bbs
## 19 楼 {#19-lou}
### 头条 {#19-lou-tou-tiao}
-<Route author="nczitzk" example="/19lou/jiaxing" path="/19lou/:city?" paramsDesc={['分类,见下表,默认为 www,即杭州']}>
- | 杭州 | 台州 | 嘉兴 | 宁波 | 湖州 |
- | ---- | ------- | ------- | ------ | ------ |
- | www | taizhou | jiaxing | ningbo | huzhou |
+<Route data={{"path":"/:city?","categories":["bbs"],"example":"/19lou/jiaxing","parameters":{"city":"分类,见下表,默认为 www,即杭州"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"头条","maintainers":["nczitzk"],"description":"| 杭州 | 台州 | 嘉兴 | 宁波 | 湖州 |\n | ---- | ------- | ------- | ------ | ------ |\n | www | taizhou | jiaxing | ningbo | huzhou |\n\n | 绍兴 | 湖州 | 温州 | 金华 | 舟山 |\n | -------- | ------ | ------- | ------ | -------- |\n | shaoxing | huzhou | wenzhou | jinhua | zhoushan |\n\n | 衢州 | 丽水 | 义乌 | 萧山 | 余杭 |\n | ------ | ------ | ---- | -------- | ------ |\n | quzhou | lishui | yiwu | xiaoshan | yuhang |\n\n | 临安 | 富阳 | 桐庐 | 建德 | 淳安 |\n | ----- | ------ | ------ | ------ | ------ |\n | linan | fuyang | tonglu | jiande | chunan |","location":"index.ts"}} />
- | 绍兴 | 湖州 | 温州 | 金华 | 舟山 |
- | -------- | ------ | ------- | ------ | -------- |
- | shaoxing | huzhou | wenzhou | jinhua | zhoushan |
+| 杭州 | 台州 | 嘉兴 | 宁波 | 湖州 |
+| ---- | ------- | ------- | ------ | ------ |
+| www | taizhou | jiaxing | ningbo | huzhou |
- | 衢州 | 丽水 | 义乌 | 萧山 | 余杭 |
- | ------ | ------ | ---- | -------- | ------ |
- | quzhou | lishui | yiwu | xiaoshan | yuhang |
+| 绍兴 | 湖州 | 温州 | 金华 | 舟山 |
+| -------- | ------ | ------- | ------ | -------- |
+| shaoxing | huzhou | wenzhou | jinhua | zhoushan |
- | 临安 | 富阳 | 桐庐 | 建德 | 淳安 |
- | ----- | ------ | ------ | ------ | ------ |
- | linan | fuyang | tonglu | jiande | chunan |
-</Route>
+| 衢州 | 丽水 | 义乌 | 萧山 | 余杭 |
+| ------ | ------ | ---- | -------- | ------ |
+| quzhou | lishui | yiwu | xiaoshan | yuhang |
-## 423Down {#423down}
-
-### 分类 {#423down-fen-lei}
-
-<Route author="Fatpandac" example="/423down/index/all" path="/423down/:category/:type" paramsDesc={['类型', '分类']} radar="1">
- | category | 全部 |
- | :------: | :--: |
- | index | all |
-
- | category | 安卓软件 |
- | :------: | :------: |
- | android | apk |
-
- | category | 原创软件 | 媒体播放 | 网页浏览 | 图形图像 | 聊天软件 | 办公软件 | 上传下载 | 系统辅助 | 系统必备 | 安全软件 | 补丁相关 | 硬件相关 |
- | :------: | :----------: | :--------: | :------: | :------: | :------: | :------: | :------: | :--------: | :--------: | :------: | :------: | :------: |
- | computer | originalsoft | multimedia | browser | image | im | work | down | systemsoft | systemplus | security | patch | hardware |
-
- | category | windows 11 | windows 10 | windows 7 | windows xp | windows pe |
- | :------: | :--------: | :--------: | :-------: | :--------: | :--------: |
- | os | win11 | win10 | win7 | winxp | winpe |
-</Route>
+| 临安 | 富阳 | 桐庐 | 建德 | 淳安 |
+| ----- | ------ | ------ | ------ | ------ |
+| linan | fuyang | tonglu | jiande | chunan |
## 8264 {#8264}
### 列表 {#8264-lie-biao}
-<Route author="nczitzk" example="/8264/list/751" path="/8264/list/:id?" paramsDesc={['列表 id,见下表,默认为 751,即热门推荐']} radar="1">
- | 热门推荐 | 户外知识 | 户外装备 |
- | -------- | -------- | -------- |
- | 751 | 238 | 204 |
-
- <details>
- <summary>更多列表</summary>
-
- #### 热门推荐
+<Route data={{"path":"/list/:id?","categories":["bbs"],"example":"/8264/list/751","parameters":{"id":"列表 id,见下表,默认为 751,即热门推荐"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"列表","maintainers":["nczitzk"],"description":"| 热门推荐 | 户外知识 | 户外装备 |\n | -------- | -------- | -------- |\n | 751 | 238 | 204 |\n\n <details>\n <summary>更多列表</summary>\n\n #### 热门推荐\n\n | 业界 | 国际 | 专访 | 图说 | 户外 | 登山 | 攀岩 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | 489 | 733 | 746 | 902 | 914 | 934 | 935 |\n\n #### 户外知识\n\n | 徒步 | 露营 | 安全急救 | 领队 | 登雪山 |\n | ---- | ---- | -------- | ---- | ------ |\n | 242 | 950 | 931 | 920 | 915 |\n\n | 攀岩 | 骑行 | 跑步 | 滑雪 | 水上运动 |\n | ---- | ---- | ---- | ---- | -------- |\n | 916 | 917 | 918 | 919 | 921 |\n\n | 钓鱼 | 潜水 | 攀冰 | 冲浪 | 网球 |\n | ---- | ---- | ---- | ---- | ---- |\n | 951 | 952 | 953 | 966 | 967 |\n\n | 绳索知识 | 高尔夫 | 马术 | 户外摄影 | 羽毛球 |\n | -------- | ------ | ---- | -------- | ------ |\n | 968 | 969 | 970 | 973 | 971 |\n\n | 游泳 | 溯溪 | 健身 | 瑜伽 |\n | ---- | ---- | ---- | ---- |\n | 974 | 975 | 976 | 977 |\n\n #### 户外装备\n\n | 服装 | 冲锋衣 | 抓绒衣 | 皮肤衣 | 速干衣 |\n | ---- | ------ | ------ | ------ | ------ |\n | 209 | 923 | 924 | 925 | 926 |\n\n | 羽绒服 | 软壳 | 户外鞋 | 登山鞋 | 徒步鞋 |\n | ------ | ---- | ------ | ------ | ------ |\n | 927 | 929 | 211 | 928 | 930 |\n\n | 越野跑鞋 | 溯溪鞋 | 登山杖 | 帐篷 | 睡袋 |\n | -------- | ------ | ------ | ---- | ---- |\n | 933 | 932 | 220 | 208 | 212 |\n\n | 炉具 | 灯具 | 水具 | 面料 | 背包 |\n | ---- | ---- | ---- | ---- | ---- |\n | 792 | 218 | 219 | 222 | 207 |\n\n | 防潮垫 | 电子导航 | 冰岩绳索 | 综合装备 |\n | ------ | -------- | -------- | -------- |\n | 214 | 216 | 215 | 223 |\n </details>","location":"list.ts"}} />
- | 业界 | 国际 | 专访 | 图说 | 户外 | 登山 | 攀岩 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 489 | 733 | 746 | 902 | 914 | 934 | 935 |
+| 热门推荐 | 户外知识 | 户外装备 |
+| -------- | -------- | -------- |
+| 751 | 238 | 204 |
- #### 户外知识
+<details>
+ <summary>更多列表</summary>
- | 徒步 | 露营 | 安全急救 | 领队 | 登雪山 |
- | ---- | ---- | -------- | ---- | ------ |
- | 242 | 950 | 931 | 920 | 915 |
+ #### 热门推荐
- | 攀岩 | 骑行 | 跑步 | 滑雪 | 水上运动 |
- | ---- | ---- | ---- | ---- | -------- |
- | 916 | 917 | 918 | 919 | 921 |
+ | 业界 | 国际 | 专访 | 图说 | 户外 | 登山 | 攀岩 |
+ | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 489 | 733 | 746 | 902 | 914 | 934 | 935 |
- | 钓鱼 | 潜水 | 攀冰 | 冲浪 | 网球 |
- | ---- | ---- | ---- | ---- | ---- |
- | 951 | 952 | 953 | 966 | 967 |
+ #### 户外知识
- | 绳索知识 | 高尔夫 | 马术 | 户外摄影 | 羽毛球 |
- | -------- | ------ | ---- | -------- | ------ |
- | 968 | 969 | 970 | 973 | 971 |
+ | 徒步 | 露营 | 安全急救 | 领队 | 登雪山 |
+ | ---- | ---- | -------- | ---- | ------ |
+ | 242 | 950 | 931 | 920 | 915 |
- | 游泳 | 溯溪 | 健身 | 瑜伽 |
- | ---- | ---- | ---- | ---- |
- | 974 | 975 | 976 | 977 |
+ | 攀岩 | 骑行 | 跑步 | 滑雪 | 水上运动 |
+ | ---- | ---- | ---- | ---- | -------- |
+ | 916 | 917 | 918 | 919 | 921 |
- #### 户外装备
+ | 钓鱼 | 潜水 | 攀冰 | 冲浪 | 网球 |
+ | ---- | ---- | ---- | ---- | ---- |
+ | 951 | 952 | 953 | 966 | 967 |
- | 服装 | 冲锋衣 | 抓绒衣 | 皮肤衣 | 速干衣 |
- | ---- | ------ | ------ | ------ | ------ |
- | 209 | 923 | 924 | 925 | 926 |
+ | 绳索知识 | 高尔夫 | 马术 | 户外摄影 | 羽毛球 |
+ | -------- | ------ | ---- | -------- | ------ |
+ | 968 | 969 | 970 | 973 | 971 |
- | 羽绒服 | 软壳 | 户外鞋 | 登山鞋 | 徒步鞋 |
- | ------ | ---- | ------ | ------ | ------ |
- | 927 | 929 | 211 | 928 | 930 |
+ | 游泳 | 溯溪 | 健身 | 瑜伽 |
+ | ---- | ---- | ---- | ---- |
+ | 974 | 975 | 976 | 977 |
- | 越野跑鞋 | 溯溪鞋 | 登山杖 | 帐篷 | 睡袋 |
- | -------- | ------ | ------ | ---- | ---- |
- | 933 | 932 | 220 | 208 | 212 |
+ #### 户外装备
- | 炉具 | 灯具 | 水具 | 面料 | 背包 |
- | ---- | ---- | ---- | ---- | ---- |
- | 792 | 218 | 219 | 222 | 207 |
+ | 服装 | 冲锋衣 | 抓绒衣 | 皮肤衣 | 速干衣 |
+ | ---- | ------ | ------ | ------ | ------ |
+ | 209 | 923 | 924 | 925 | 926 |
- | 防潮垫 | 电子导航 | 冰岩绳索 | 综合装备 |
- | ------ | -------- | -------- | -------- |
- | 214 | 216 | 215 | 223 |
- </details>
-</Route>
+ | 羽绒服 | 软壳 | 户外鞋 | 登山鞋 | 徒步鞋 |
+ | ------ | ---- | ------ | ------ | ------ |
+ | 927 | 929 | 211 | 928 | 930 |
-## Chiphell {#chiphell}
+ | 越野跑鞋 | 溯溪鞋 | 登山杖 | 帐篷 | 睡袋 |
+ | -------- | ------ | ------ | ---- | ---- |
+ | 933 | 932 | 220 | 208 | 212 |
-### 子版块 {#chiphell-zi-ban-kuai}
+ | 炉具 | 灯具 | 水具 | 面料 | 背包 |
+ | ---- | ---- | ---- | ---- | ---- |
+ | 792 | 218 | 219 | 222 | 207 |
-<Route author="tylinux" example="/chiphell/forum/80" path="/chiphell/forum/:forumId" paramsDesc={['子版块 id,可在子版块 URL 找到']} />
-
-## Citavi 中文网站论坛 {#citavi-zhong-wen-wang-zhan-lun-tan}
-
-### 分类 {#citavi-zhong-wen-wang-zhan-lun-tan-fen-lei}
-
-<Route author="nczitzk" example="/citavi" path="/citavi/:caty" paramsDesc={['分类名,可在对应分类页 URL 中找到,默认为全部']}>
- | 全部 | 下载安装 | 许可证 | 入门指南 | 升级更新 | 教程 | 新闻资讯 | 技巧分享 | 账户插件 | 其他 | |
- | ---- | ---------- | ------- | -------------- | -------- | -------------- | -------- | -------- | ------------- | ------ | ------ |
- | | Installing | License | GettingStarted | Update | CitaviinDetail | News | Share | CitaviAccount | Addons | Others |
-</Route>
+ | 防潮垫 | 电子导航 | 冰岩绳索 | 综合装备 |
+ | ------ | -------- | -------- | -------- |
+ | 214 | 216 | 215 | 223 |
+</details>
## Dcard {#dcard}
@@ -130,13 +92,9 @@
僅能透過台灣 IP 抓取。
:::
-### 首頁帖子 {#dcard-shou-ye-tie-zi}
-
-<Route author="DIYgod" example="/dcard/posts/popular" path="/dcard/posts/:type?" paramsDesc={['排序,popular 熱門;latest 最新,默認為 latest']} radar="1" anticrawler="1" puppeteer="1" />
-
### 板塊帖子 {#dcard-ban-kuai-tie-zi}
-<Route author="HenryQW" example="/dcard/funny/popular" path="/dcard/:section/:type?" paramsDesc={['板塊名稱,URL 中獲得', '排序,popular 熱門;latest 最新,默認為 latest']} radar="1" anticrawler="1" puppeteer="1" />
+<Route data={{"path":"/:section/:type?","categories":["bbs"],"example":"/dcard/funny/popular","parameters":{"section":"板塊名稱,URL 中獲得","type":"排序,popular 熱門;latest 最新,默認為 latest"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"板塊帖子","maintainers":["HenryQW"],"location":"section.ts"}} />
## Discourse {#discourse}
@@ -146,563 +104,349 @@ You need to set the environment variable `DISCOURSE_CONFIG_{id}` before using it
### Latest posts {#discourse-latest-posts}
-<Route author="dzx-dzx" example="/discourse/0/posts" path="/discourse/:configId/posts" paramsDesc={['Environment variable configuration id, see above']} configRequired="1" />
+<Route data={{"path":"/:configId/posts","categories":["bbs"],"example":"/discourse/0/posts","parameters":{"configId":"Environment variable configuration id, see above"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Latest posts","maintainers":["dzx-dzx"],"location":"posts.ts"}} />
### Notifications {#discourse-notifications}
-<Route author="dzx-dzx" example="/discourse/0/notifications" path="/discourse/:configId/notifications/:fulltext?" paramsDesc={['Environment variable configuration id, see above','Fetch the content if the notification points to a post. This is disabled by default, set it to `1` to enable it.']} configRequired="1" />
+<Route data={{"path":"/:configId/notifications/:fulltext?","categories":["bbs"],"example":"/discourse/0/notifications","parameters":{"configId":"Environment variable configuration id, see above","fulltext":"Fetch the content if the notification points to a post. This is disabled by default, set it to `1` to enable it."},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Notifications","maintainers":[],"description":":::warning\nIf you opt to enable `fulltext` feature, consider adding `limit` parameter to your query to avoid sending too many request.\n:::","location":"notifications.ts"}} />
:::warning
If you opt to enable `fulltext` feature, consider adding `limit` parameter to your query to avoid sending too many request.
:::
-## Discuz {#discuz}
-
-### General Subforum - Auto detection {#discuz-general-subforum-auto-detection}
-
-<Route author="junfengP" example="/discuz/http%3a%2f%2fwww.u-share.cn%2fforum.php%3fmod%3dforumdisplay%26fid%3d56" path="/discuz/:link" paramsDesc={['link of subforum, require url encoded ']} anticrawler="1" />
-
-### General Subforum - Manual version {#discuz-general-subforum-manual-version}
-
-<Route author="junfengP" example="/discuz/x/https%3a%2f%2fwww.52pojie.cn%2fforum-16-1.html" path="/discuz/:ver/:link" paramsDesc={['discuz version,see below table','link of subforum, require url encoded']}>
- | Discuz X Series | Discuz 7.x Series |
- | --------------- | ----------------- |
- | x | 7 |
-</Route>
-
-### General Subforum - Support cookie {#discuz-general-subforum-support-cookie}
-
-<Route author="junfengP" example="/discuz/x/00/https%3a%2f%2fbbs.zdfx.net%2fforum-2-1.html" path="/discuz/:ver/:cid/:link" paramsDesc={['discuz version,see below table', 'Cookie id,require self hosted and set environment parameters, see Deploy - Configuration pages for detail','link of subforum, require url encoded']} configRequired="1">
- | Discuz X Series | Discuz 7.x Series |
- | --------------- | ----------------- |
- | x | 7 |
-</Route>
-
## Elastic 中文社区 {#elastic-zhong-wen-she-qu}
### 发现 {#elastic-zhong-wen-she-qu-fa-xian}
-<Route author="nczitzk" example="/elasticsearch-cn" path="/elasticsearch-cn/:params?" paramsDesc={['分类,可在对应分类页 URL 中找到']}>
- 如 [Elasticsearch 最新](https://elasticsearch.cn/category-2) 的 URL 为 `https://elasticsearch.cn/category-2`,则分类参数处填写 `category-2`,最后得到路由地址 [`/elasticsearch-cn/category-2`](https://rsshub.app/elasticsearch-cn/category-2)。
+<Route data={{"path":"/:params?","categories":["bbs"],"example":"/elasticsearch-cn","parameters":{"params":"分类,可在对应分类页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["elasticsearch.cn/:params","elasticsearch.cn/"],"target":"/:params"},"name":"发现","maintainers":["nczitzk"],"description":"如 [Elasticsearch 最新](https://elasticsearch.cn/category-2) 的 URL 为 `https://elasticsearch.cn/category-2`,则分类参数处填写 `category-2`,最后得到路由地址 [`/elasticsearch-cn/category-2`](https://rsshub.app/elasticsearch-cn/category-2)。\n\n 又如 [求职招聘 30 天热门](https://elasticsearch.cn/sort_type-hot____category-12__day-30) 的 URL 为 `https://elasticsearch.cn/sort_type-hot____category-12__day-30`,则分类参数处填写 `sort_type-hot____category-12__day-30`,最后得到路由地址 [`/elasticsearch-cn/sort_type-hot____category-12__day-30`](https://rsshub.app/elasticsearch-cn/sort_type-hot____category-12__day-30)。","location":"index.ts"}} />
- 又如 [求职招聘 30 天热门](https://elasticsearch.cn/sort_type-hot____category-12__day-30) 的 URL 为 `https://elasticsearch.cn/sort_type-hot____category-12__day-30`,则分类参数处填写 `sort_type-hot____category-12__day-30`,最后得到路由地址 [`/elasticsearch-cn/sort_type-hot____category-12__day-30`](https://rsshub.app/elasticsearch-cn/sort_type-hot____category-12__day-30)。
-</Route>
+如 [Elasticsearch 最新](https://elasticsearch.cn/category-2) 的 URL 为 `https://elasticsearch.cn/category-2`,则分类参数处填写 `category-2`,最后得到路由地址 [`/elasticsearch-cn/category-2`](https://rsshub.app/elasticsearch-cn/category-2)。
-## eTOLAND {#etoland}
-
-### 主题贴 {#etoland-zhu-ti-tie}
-
-<Route author="mengx8" example="/etoland/star01" path="/etoland/:boardId" paramsDesc={['板块 id,可在板块 URL 找到']} radar="1" />
-
-## HACKER TALK 黑客说 {#hacker-talk-hei-ke-shuo}
-
-### 最新帖子 {#hacker-talk-hei-ke-shuo-zui-xin-tie-zi}
-
-<Route author="hyoban" example="/hackertalk" path="/hackertalk" radar="1" />
+又如 [求职招聘 30 天热门](https://elasticsearch.cn/sort_type-hot____category-12__day-30) 的 URL 为 `https://elasticsearch.cn/sort_type-hot____category-12__day-30`,则分类参数处填写 `sort_type-hot____category-12__day-30`,最后得到路由地址 [`/elasticsearch-cn/sort_type-hot____category-12__day-30`](https://rsshub.app/elasticsearch-cn/sort_type-hot____category-12__day-30)。
## LearnKu {#learnku}
### 社区 {#learnku-she-qu}
-<Route author="haokaiyang" example="/learnku/laravel/qa" path="/learnku/:community/:category?" paramsDesc={['社区 标识,可在 <https://learnku.com/communities> 找到', '分类,如果不传 `category` 则获取全部分类']} />
+<Route data={{"path":"/:community/:category?","categories":["bbs"],"example":"/learnku/laravel/qa","parameters":{"community":"社区 标识,可在 <https://learnku.com/communities> 找到","category":"分类,如果不传 `category` 则获取全部分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["learnku.com/:community"],"target":"/:community"},"name":"社区","maintainers":["kayw-geek"],"description":"| 招聘 | 翻译 | 问答 | 链接 |\n| ---- | ------------ | ---- | ----- |\n| jobs | translations | qa | links |","location":"topic.ts"}} />
| 招聘 | 翻译 | 问答 | 链接 |
| ---- | ------------ | ---- | ----- |
| jobs | translations | qa | links |
-## MCBBS {#mcbbs}
-
-### 版块 {#mcbbs-ban-kuai}
-
-<Route author="cssxsh" example="/mcbbs/forum/news" path="/mcbbs/forum/:type" paramsDesc={['版块名称或者版块号']} />
-
-### 帖子 {#mcbbs-tie-zi}
-
-<Route author="cssxsh" example="/mcbbs/post/915861/3038" path="/mcbbs/post/:tid/:authorid?" paramsDesc={['贴子id,可在帖子 URL 找到', '用户id,此参数不为空时,只看此作者']} />
-
## Meteor {#meteor}
### 看板 {#meteor-kan-ban}
-<Route author="TonyRL" example="/meteor/all" path="/meteor/:board?" paramsDesc={['看板 ID 或簡稱,可在 URL 或下方路由找到,預設為 `all`']} radar="1" />
+<Route data={{"path":"/:board?","categories":["bbs"],"example":"/meteor/all","parameters":{"board":"看板 ID 或簡稱,可在 URL 或下方路由找到,預設為 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"看板","maintainers":["TonyRL"],"location":"index.ts"}} />
### 看板列表 {#meteor-kan-ban-lie-biao}
-<Route author="TonyRL" example="/meteor/boards" path="/meteor/boards" radar="1" />
+<Route data={{"path":"/boards","categories":["bbs"],"example":"/meteor/boards","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["meteor.today/"]},"name":"看板列表","maintainers":["TonyRL"],"url":"meteor.today/","location":"boards.ts"}} />
## NGA {#nga}
### 分区帖子 {#nga-fen-qu-tie-zi}
-<Route author="xyqfer" example="/nga/forum/489" path="/nga/forum/:fid/:recommend?" paramsDesc={['分区 id, 可在分区主页 URL 找到, 没有 fid 时 stid 同样适用','是否只显示精华主题, 留空为否, 任意值为是']} radar="1" />
+<Route data={{"path":"/forum/:fid/:recommend?","categories":["bbs"],"example":"/nga/forum/489","parameters":{"fid":"分区 id, 可在分区主页 URL 找到, 没有 fid 时 stid 同样适用","recommend":"是否只显示精华主题, 留空为否, 任意值为是"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分区帖子","maintainers":["xyqfer"],"location":"forum.ts"}} />
### 帖子 {#nga-tie-zi}
-<Route author="xyqfer syrinka" example="/nga/post/18449558" path="/nga/post/:tid/:authorId?" paramsDesc={['帖子 id, 可在帖子 URL 找到', '作者 id']} radar="1" />
+<Route data={{"path":"/post/:tid/:authorId?","categories":["bbs"],"example":"/nga/post/18449558","parameters":{"tid":"帖子 id, 可在帖子 URL 找到","authorId":"作者 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"帖子","maintainers":["xyqfer","syrinka"],"location":"post.ts"}} />
## Pikabu {#pikabu}
-### Community {#pikabu-community}
-
-<Route author="TonyRL" example="/pikabu/community/real_true_story" path="/pikabu/community/:name" paramsDesc={['Community name']} radar="1" notOperational="1" />
-
-### Tag {#pikabu-tag}
-
-<Route author="TonyRL" example="/pikabu/tag/Metallica" path="/pikabu/tag/:name" paramsDesc={['Tag name']} radar="1" />
-
### User {#pikabu-user}
-<Route author="TonyRL" example="/pikabu/user/@bula.dragon" path="/pikabu/user/:name" paramsDesc={['User name']} radar="1" />
+<Route data={{"path":"/user/:name","categories":["bbs"],"example":"/pikabu/user/@bula.dragon","parameters":{"name":"User name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pikabu.ru/:name"]},"name":"User","maintainers":["TonyRL"],"location":"user.ts"}} />
## PKMer {#pkmer}
### 最近更新 {#pkmer-zui-jin-geng-xin}
-<Route author="Gnoyong" example="/pkmer/recent" path="/pkmer/recent" radar="1" />
+<Route data={{"path":"/recent","categories":["bbs"],"example":"/pkmer/recent","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pkmer.cn/page/*"]},"name":"最近更新","maintainers":["Gnoyong"],"url":"pkmer.cn/page/*","location":"recent.ts"}} />
## PLAYNO.1 玩樂達人 {#playno-1-wan-le-da-ren}
### AV {#playno-1-wan-le-da-ren-av}
+<Route data={{"path":"/av/:catid?","categories":["bbs"],"example":"/playno1/av","parameters":{"catid":"分类,见下表,默认为全部文章"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"AV","maintainers":["TonyRL"],"description":":::warning\n目前观测到该博客可能禁止日本 IP 访问。建议部署在日本区以外的服务器上。\n:::\n\n | 全部文章 | AV 新聞 | AV 導覽 |\n | -------- | ------- | ------- |\n | 78 | 3 | 5 |","location":"av.ts"}} />
+
:::warning
目前观测到该博客可能禁止日本 IP 访问。建议部署在日本区以外的服务器上。
:::
-<Route author="TonyRL" example="/playno1/av" path="/playno1/av/:catid?" paramsDesc={['分类,见下表,默认为全部文章']} radar="1">
- | 全部文章 | AV 新聞 | AV 導覽 |
- | -------- | ------- | ------- |
- | 78 | 3 | 5 |
-</Route>
+| 全部文章 | AV 新聞 | AV 導覽 |
+| -------- | ------- | ------- |
+| 78 | 3 | 5 |
### 情趣 {#playno-1-wan-le-da-ren-qing-qu}
-<Route author="TonyRL" example="/playno1/st" path="/playno1/st/:catid?" paramsDesc={['分类,见下表,默认为全部文章']} radar="1">
- | 全部文章 | 情趣體驗報告 | 情趣新聞 | 情趣研究所 |
- | -------- | ------------ | -------- | ---------- |
- | all | experience | news | graduate |
-</Route>
-
-## RF 技术社区 {#rf-ji-shu-she-qu}
-
-### 文章 {#rf-ji-shu-she-qu-wen-zhang}
-
-<Route author="nczitzk" example="/rf/article" path="/rf/article" />
+<Route data={{"path":"/st/:catid?","categories":["bbs"],"example":"/playno1/st","parameters":{"catid":"分类,见下表,默认为全部文章"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["stno1.playno1.com/stno1/:catid/"],"target":"/st/:catid"},"name":"情趣","maintainers":["TonyRL"],"description":"| 全部文章 | 情趣體驗報告 | 情趣新聞 | 情趣研究所 |\n | -------- | ------------ | -------- | ---------- |\n | all | experience | news | graduate |","location":"st.ts"}} />
-## Ruby China {#ruby-china}
-
-> 未登录状态下抓取页面非实时更新
-
-### 主题 {#ruby-china-zhu-ti}
-
-<Route author="ahonn" example="/ruby-china/topics" path="/ruby-china/topics/:type" paramsDesc={['主题类型,在 URL 可以找到']} />
-
-| 主题类型 | type |
-| -------- | ----------- |
-| 精华贴 | excellent |
-| 优质帖子 | popular |
-| 无人问津 | no\_reply |
-| 最新回复 | last\_reply |
-| 最新发布 | last |
-
-### 招聘 {#ruby-china-zhao-pin}
-
-<Route author="ahonn" example="/ruby-china/jobs" path="/ruby-china/jobs" />
+| 全部文章 | 情趣體驗報告 | 情趣新聞 | 情趣研究所 |
+| -------- | ------------ | -------- | ---------- |
+| all | experience | news | graduate |
## Saraba1st {#saraba1st}
-### 帖子 {#saraba1st-tie-zi}
-
-<Route author="zengxs" example="/saraba1st/thread/1842868" path="/saraba1st/thread/:tid" paramsDesc={['帖子 id']} radar="1" notOperational="1">
- 帖子网址如果为 `https://bbs.saraba1st.com/2b/thread-1842868-1-1.html` 那么帖子 id 就是 `1789863`。
-</Route>
-
### 论坛摘要 {#saraba1st-lun-tan-zhai-yao}
-<Route author="shinemoon" example="/saraba1st/digest/forum-75-1" path="/saraba1st/digest/:tid" paramsDesc={['论坛 id']} radar="1">
- 版面网址如果为 `https://bbs.saraba1st.com/2b/forum-75-1.html` 那么论坛 id 就是 `forum-75-1`。
-</Route>
-
-## SCBOY forum {#scboy-forum}
-
-### Thread {#scboy-forum-thread}
-
-<Route author="totorowechat" example="/scboy/thread/188673" path="/scboy/thread/:tid" paramsDesc={['thread tid']} radar="1" configRequired="1">
- If the url of the thread is `https://www.scboy.com/?thread-188673.htm` then tid would be `1789863`.
+<Route data={{"path":"/digest/:tid","categories":["bbs"],"example":"/saraba1st/digest/forum-75-1","parameters":{"tid":"论坛 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"论坛摘要","maintainers":["shinemoon"],"description":"版面网址如果为 `https://bbs.saraba1st.com/2b/forum-75-1.html` 那么论坛 id 就是 `forum-75-1`。","location":"digest.ts"}} />
- When accessing Joeyray's Bar, `SCBOY_BBS_TOKEN` needs to be filled in `environment`. See [/install](/install) for details. `SCBOY_BBS_TOKEN` is included in cookies with `bbs_token`.
-</Route>
+版面网址如果为 `https://bbs.saraba1st.com/2b/forum-75-1.html` 那么论坛 id 就是 `forum-75-1`。
-## SecIN 信息安全技术社区 {#secin-xin-xi-an-quan-ji-shu-she-qu}
+### 帖子 {#saraba1st-tie-zi}
-### 最新文章 {#secin-xin-xi-an-quan-ji-shu-she-qu-zui-xin-wen-zhang}
+<Route data={{"path":"/thread/:tid","categories":["bbs"],"example":"/saraba1st/thread/1842868","parameters":{"tid":"帖子 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"帖子","maintainers":["zengxs"],"description":"帖子网址如果为 `https://bbs.saraba1st.com/2b/thread-1842868-1-1.html` 那么帖子 id 就是 `1789863`。","location":"thread.ts"}} />
-<Route author="p7e4" example="/sec-in" path="/sec-in" />
+帖子网址如果为 `https://bbs.saraba1st.com/2b/thread-1842868-1-1.html` 那么帖子 id 就是 `1789863`。
## The Ring of Wonder {#the-ring-of-wonder}
### 首页更新 {#the-ring-of-wonder-shou-ye-geng-xin}
-<Route author="shiningdracon" example="/trow/portal" path="/trow/portal" />
+<Route data={{"path":"/portal","categories":["bbs"],"example":"/trow/portal","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["trow.cc/"]},"name":"首页更新","maintainers":["shiningdracon"],"url":"trow.cc/","location":"portal.ts"}} />
## V2EX {#v2ex}
-### 最热 / 最新主题 {#v2ex-zui-re-zui-xin-zhu-ti}
+### 标签 {#v2ex-biao-qian}
-<Route author="WhiteWorld" example="/v2ex/topics/latest" path="/v2ex/topics/:type" paramsDesc={['hot 或 latest']} />
+<Route data={{"path":"/tab/:tabid","categories":["bbs"],"example":"/v2ex/tab/hot","parameters":{"tabid":"tab标签ID,在 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"标签","maintainers":["liyefox"],"location":"tab.ts"}} />
### 帖子 {#v2ex-tie-zi}
-<Route author="kt286" example="/v2ex/post/584403" path="/v2ex/post/:postid" paramsDesc={['帖子ID,在 URL 可以找到']} />
+<Route data={{"path":"/post/:postid","categories":["bbs"],"example":"/v2ex/post/584403","parameters":{"postid":"帖子ID,在 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["v2ex.com/t/:postid"]},"name":"帖子","maintainers":["kt286"],"location":"post.ts"}} />
-### 标签 {#v2ex-biao-qian}
+### 最热 / 最新主题 {#v2ex-zui-re-zui-xin-zhu-ti}
-<Route author="liyefox" example="/v2ex/tab/hot" path="/v2ex/tab/:tabid" paramsDesc={['tab标签ID,在 URL 可以找到']} />
+<Route data={{"path":"/topics/:type","categories":["bbs"],"example":"/v2ex/topics/latest","parameters":{"type":"hot 或 latest"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最热 / 最新主题","maintainers":["WhiteWorld"],"location":"topics.ts"}} />
## ZodGame {#zodgame}
### forum {#zodgame-forum}
-<Route author="FeCCC" example="/zodgame/forum/13" path="/zodgame/forum/:fid?" paramsDesc={['forum id, can be found in URL']} radar="1" configRequired="1" />
+<Route data={{"path":"/forum/:fid?","categories":["bbs"],"example":"/zodgame/forum/13","parameters":{"fid":"forum id, can be found in URL"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"forum","maintainers":["FeCCC"],"location":"forum.ts"}} />
## Zuvio {#zuvio}
-### 校園話題 {#zuvio-xiao-yuan-hua-ti}
-
-<Route author="TonyRL" example="/zuvio/student5/34" path="/zuvio/student5/:board?" paramsDesc={['看板 ID,空为全站文章,可在看板 URL 或下方路由找到']} radar="1" />
-
### 看板列表 {#zuvio-kan-ban-lie-biao}
-<Route author="TonyRL" example="/zuvio/student5/boards" path="/zuvio/student5/boards" />
+<Route data={{"path":"/student5/boards","categories":["bbs"],"example":"/zuvio/student5/boards","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"看板列表","maintainers":["TonyRL"],"location":"boards.ts"}} />
-## 百度贴吧 {#bai-du-tie-ba}
+### 校園話題 {#zuvio-xiao-yuan-hua-ti}
-### 帖子列表 {#bai-du-tie-ba-tie-zi-lie-biao}
+<Route data={{"path":"/student5/:board?","categories":["bbs"],"example":"/zuvio/student5/34","parameters":{"board":"看板 ID,空为全站文章,可在看板 URL 或下方路由找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"校園話題","maintainers":["TonyRL"],"location":"student5.ts"}} />
-<Route author="u3u" example="/baidu/tieba/forum/女图" path="/baidu/tieba/forum/:kw/:sortBy?" paramsDesc={['吧名', '排序方式:`created`, `replied`。默认为 `created`']} radar="1" />
+## 百度 {#bai-du}
-### 精品帖子 {#bai-du-tie-ba-jing-pin-tie-zi}
+### 精品帖子 {#bai-du-jing-pin-tie-zi}
-<Route author="u3u" example="/baidu/tieba/forum/good/女图" path="/baidu/tieba/forum/good/:kw/:cid?/:sortBy?" paramsDesc={['吧名', '精品分类,默认为 `0`(全部分类),如果不传 `cid` 则获取全部分类', '排序方式:`created`, `replied`。默认为 `created`']} radar="1" />
+<Route data={{"path":["/tieba/forum/good/:kw/:cid?/:sortBy?","/tieba/forum/:kw/:sortBy?"],"categories":["bbs"],"example":"/baidu/tieba/forum/good/女图","parameters":{"kw":"吧名","cid":"精品分类,默认为 `0`(全部分类),如果不传 `cid` 则获取全部分类","sortBy":"排序方式:`created`, `replied`。默认为 `created`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"精品帖子","maintainers":["u3u"],"location":"tieba/forum.ts"}} />
-### 帖子动态 {#bai-du-tie-ba-tie-zi-dong-tai}
+### 精品帖子 {#bai-du-jing-pin-tie-zi}
-<Route author="u3u" example="/baidu/tieba/post/686961453" path="/baidu/tieba/post/:id" paramsDesc={['帖子 ID']} radar="1" />
+<Route data={{"path":["/tieba/forum/good/:kw/:cid?/:sortBy?","/tieba/forum/:kw/:sortBy?"],"categories":["bbs"],"example":"/baidu/tieba/forum/good/女图","parameters":{"kw":"吧名","cid":"精品分类,默认为 `0`(全部分类),如果不传 `cid` 则获取全部分类","sortBy":"排序方式:`created`, `replied`。默认为 `created`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"精品帖子","maintainers":["u3u"],"location":"tieba/forum.ts"}} />
-### 楼主动态 {#bai-du-tie-ba-lou-zhu-dong-tai}
+### 帖子动态 {#bai-du-tie-zi-dong-tai}
-<Route author="u3u" example="/baidu/tieba/post/lz/529691897" path="/baidu/tieba/post/lz/:id" paramsDesc={['帖子 ID']} radar="1" />
+<Route data={{"path":["/tieba/post/:id","/tieba/post/lz/:id"],"categories":["bbs"],"example":"/baidu/tieba/post/686961453","parameters":{"id":"帖子 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tieba.baidu.com/p/:id"]},"name":"帖子动态","maintainers":["u3u"],"location":"tieba/post.ts"}} />
-### 用户帖子 {#bai-du-tie-ba-yong-hu-tie-zi}
+### 帖子动态 {#bai-du-tie-zi-dong-tai}
-<Route author="igxlin nczitzk" example="/baidu/tieba/user/斗鱼游戏君" path="/baidu/tieba/user/:uid" paramsDesc={['用户 ID']} radar="1">
- 用户 ID 可以通过打开用户的主页后查看地址栏的 `un` 字段来获取。
-</Route>
+<Route data={{"path":["/tieba/post/:id","/tieba/post/lz/:id"],"categories":["bbs"],"example":"/baidu/tieba/post/686961453","parameters":{"id":"帖子 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tieba.baidu.com/p/:id"]},"name":"帖子动态","maintainers":["u3u"],"location":"tieba/post.ts"}} />
-### 贴吧搜索 {#bai-du-tie-ba-tie-ba-sou-suo}
+### 贴吧搜索 {#bai-du-tie-ba-sou-suo}
-<Route author="JimenezLi" example="/baidu/tieba/search/neuro" path="/baidu/tieba/search/:qw/:routeParams?" paramsDesc={['搜索关键词', '额外参数;请参阅以下说明和表格']} radar="1">
- | 键 | 含义 | 接受的值 | 默认值 |
- | ------------ | ---------------------------------------------------------- | ------------- | ------ |
- | kw | 在名为 kw 的贴吧中搜索 | 任意名称 / 无 | 无 |
- | only\_thread | 只看主题帖,默认为 0 关闭 | 0/1 | 0 |
- | rn | 返回条目的数量 | 1-20 | 20 |
- | sm | 排序方式,0 为按时间顺序,1 为按时间倒序,2 为按相关性顺序 | 0/1/2 | 1 |
+<Route data={{"path":"/tieba/search/:qw/:routeParams?","categories":["bbs"],"example":"/baidu/tieba/search/neuro","parameters":{"qw":"搜索关键词","routeParams":"额外参数;请参阅以下说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"贴吧搜索","maintainers":["JimenezLi"],"description":"| 键 | 含义 | 接受的值 | 默认值 |\n | ------------ | ---------------------------------------------------------- | ------------- | ------ |\n | kw | 在名为 kw 的贴吧中搜索 | 任意名称 / 无 | 无 |\n | only_thread | 只看主题帖,默认为 0 关闭 | 0/1 | 0 |\n | rn | 返回条目的数量 | 1-20 | 20 |\n | sm | 排序方式,0 为按时间顺序,1 为按时间倒序,2 为按相关性顺序 | 0/1/2 | 1 |\n\n 用例:`/baidu/tieba/search/neuro/kw=neurosama&only_thread=1&sm=2`","location":"tieba/search.ts"}} />
- 用例:`/baidu/tieba/search/neuro/kw=neurosama&only_thread=1&sm=2`
-</Route>
+| 键 | 含义 | 接受的值 | 默认值 |
+| ------------ | ---------------------------------------------------------- | ------------- | ------ |
+| kw | 在名为 kw 的贴吧中搜索 | 任意名称 / 无 | 无 |
+| only\_thread | 只看主题帖,默认为 0 关闭 | 0/1 | 0 |
+| rn | 返回条目的数量 | 1-20 | 20 |
+| sm | 排序方式,0 为按时间顺序,1 为按时间倒序,2 为按相关性顺序 | 0/1/2 | 1 |
-## 超理论坛 {#chao-li-lun-tan}
+用例:`/baidu/tieba/search/neuro/kw=neurosama&only_thread=1&sm=2`
-### 板块 {#chao-li-lun-tan-ban-kuai}
+### 用户帖子 {#bai-du-yong-hu-tie-zi}
-<Route author="nczitzk" example="/chaoli" path="/chaoli/:channel?" paramsDesc={['板块,见下表,默认为全部']}>
- | 数学 | 物理 | 化学 | 生物 | 天文 | 技术 | 管理 | 公告 |
- | ---- | ------- | ---- | ------- | ----- | ---- | ----- | ------ |
- | math | physics | chem | biology | astro | tech | admin | announ |
+<Route data={{"path":"/tieba/user/:uid","categories":["bbs"],"example":"/baidu/tieba/user/斗鱼游戏君","parameters":{"uid":"用户 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户帖子","maintainers":["igxlin","nczitzk"],"description":"用户 ID 可以通过打开用户的主页后查看地址栏的 `un` 字段来获取。","location":"tieba/user.ts"}} />
- | 其他 | 语言 | 社科 | 科幻 | 辑录 |
- | ------ | ---- | ------ | ------ | ----------- |
- | others | lang | socsci | sci-fi | collections |
-</Route>
+用户 ID 可以通过打开用户的主页后查看地址栏的 `un` 字段来获取。
## 第一会所 {#di-yi-hui-suo}
### 子版块 {#di-yi-hui-suo-zi-ban-kuai}
-<Route author="TonyRL" example="/sis001/forum/322" path="/sis001/forum/:id?" paramsDesc={['子版块 ID,可在子论坛 URL 找到,默认为 `Funny Jokes | 短篇笑话区`']} radar="1" />
+<Route data={{"path":"/forum/:id?","categories":["bbs"],"example":"/sis001/forum/322","parameters":{"id":"子版块 ID,可在子论坛 URL 找到,默认为 `Funny Jokes | 短篇笑话区`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"子版块","maintainers":[],"location":"forum.ts"}} />
## 电鸭社区 {#dian-ya-she-qu}
-### 工作机会 {#dian-ya-she-qu-gong-zuo-ji-hui}
-
-<Route author="sfyumi" example="/eleduck/jobs" path="/eleduck/jobs" radar="1" />
-
### 分类文章 {#dian-ya-she-qu-fen-lei-wen-zhang}
-<Route author="running-grass" example="/eleduck/posts/4" path="/eleduck/posts/:id?" paramsDesc={['分类id,可以论坛的URL找到,默认为全部']} radar="1">
- | id | 分类 |
- | -- | -------- |
- | 0 | 全部 |
- | 1 | 讨论 |
- | 2 | 分享 |
- | 3 | 露个脸 |
- | 4 | 访谈故事 |
- | 5 | 招聘 |
- | 10 | 海外移民 |
- | 12 | 英语 |
- | 14 | 电鸭官方 |
- | 15 | 独立产品 |
- | 17 | 闲话开源 |
- | 19 | Web3 |
- | 21 | 设计 |
- | 22 | 人才库 |
- | 23 | Upwork |
- | 24 | 经验课 |
-</Route>
+<Route data={{"path":"/posts/:id?","categories":["bbs"],"example":"/eleduck/posts/4","parameters":{"id":"分类id,可以论坛的URL找到,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类文章","maintainers":["running-grass"],"description":"| id | 分类 |\n | -- | -------- |\n | 0 | 全部 |\n | 1 | 讨论 |\n | 2 | 分享 |\n | 3 | 露个脸 |\n | 4 | 访谈故事 |\n | 5 | 招聘 |\n | 10 | 海外移民 |\n | 12 | 英语 |\n | 14 | 电鸭官方 |\n | 15 | 独立产品 |\n | 17 | 闲话开源 |\n | 19 | Web3 |\n | 21 | 设计 |\n | 22 | 人才库 |\n | 23 | Upwork |\n | 24 | 经验课 |","location":"posts.ts"}} />
+
+| id | 分类 |
+| -- | -------- |
+| 0 | 全部 |
+| 1 | 讨论 |
+| 2 | 分享 |
+| 3 | 露个脸 |
+| 4 | 访谈故事 |
+| 5 | 招聘 |
+| 10 | 海外移民 |
+| 12 | 英语 |
+| 14 | 电鸭官方 |
+| 15 | 独立产品 |
+| 17 | 闲话开源 |
+| 19 | Web3 |
+| 21 | 设计 |
+| 22 | 人才库 |
+| 23 | Upwork |
+| 24 | 经验课 |
-## 丁香园 {#ding-xiang-yuan}
+### 工作机会 {#dian-ya-she-qu-gong-zuo-ji-hui}
-### 专题 {#ding-xiang-yuan-zhuan-ti}
+<Route data={{"path":"/jobs","categories":["bbs"],"example":"/eleduck/jobs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["eleduck.com/categories/5","eleduck.com/"]},"name":"工作机会","maintainers":["sfyumi"],"url":"eleduck.com/categories/5","location":"jobs.ts"}} />
-<Route author="TonyRL" example="/dxy/bbs/special/72" path="/dxy/bbs/special/:specialId" paramsDesc={['专题 ID,可在对应专题页 URL 中找到']} radar="1" />
+## 丁香园 {#ding-xiang-yuan}
### 个人帖子 {#ding-xiang-yuan-ge-ren-tie-zi}
-<Route author="TonyRL" example="/dxy/bbs/profile/thread/8335054" path="/dxy/bbs/profile/thread/:userId" paramsDesc={['个人 ID,可在 URL 中找到']} radar="1" />
-
-## 斗鱼 {#dou-yu}
-
-### 鱼吧帖子 {#dou-yu-yu-ba-tie-zi}
+<Route data={{"path":"/bbs/profile/thread/:userId","categories":["bbs"],"example":"/dxy/bbs/profile/thread/8335054","parameters":{"userId":"个人 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dxy.cn/bbs/newweb/pc/profile/:userId/threads","dxy.cn/bbs/newweb/pc/profile/:userId"]},"name":"个人帖子","maintainers":["TonyRL"],"location":"profile/thread.ts"}} />
-<Route author="nczitzk" example="/douyu/group/1011" path="/douyu/group/:id/:sort?" paramsDesc={['鱼吧 id,可在鱼吧页 URL 中找到', '排序方式,见下表,默认为发布时间排序']}>
- | 回复时间排序 | 发布时间排序 |
- | ------------ | ------------ |
- | 1 | 2 |
-</Route>
-
-### 鱼吧跟帖 {#dou-yu-yu-ba-gen-tie}
+### 专题 {#ding-xiang-yuan-zhuan-ti}
-<Route author="nczitzk" example="/douyu/post/631737151576473201" path="/douyu/post/:id" paramsDesc={['帖子 id,可在帖子页 URL 中找到']} />
+<Route data={{"path":"/bbs/special/:specialId","categories":["bbs"],"example":"/dxy/bbs/special/72","parameters":{"specialId":"专题 ID,可在对应专题页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专题","maintainers":["TonyRL"],"location":"special.ts"}} />
-## 恩山无线论坛 {#en-shan-wu-xian-lun-tan}
+## 斗鱼直播 {#dou-yu-zhi-bo}
-### 板块 {#en-shan-wu-xian-lun-tan-ban-kuai}
+### 鱼吧跟帖 {#dou-yu-zhi-bo-yu-ba-gen-tie}
-<Route author="nczitzk" example="/right/forum/31" path="/right/forum/:id?" paramsDesc={['板块 id,可在板块页 URL 中找到,默认为新手入门及其它(硬件)']} />
+<Route data={{"path":"/post/:id","categories":["bbs"],"example":"/douyu/post/631737151576473201","parameters":{"id":"帖子 id,可在帖子页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yuba.douyu.com/p/:id","yuba.douyu.com/"]},"name":"鱼吧跟帖","maintainers":["nczitzk"],"location":"post.ts"}} />
-## 二次元虫洞 {#er-ci-yuan-chong-dong}
+### 鱼吧帖子 {#dou-yu-zhi-bo-yu-ba-tie-zi}
-### 板块 {#er-ci-yuan-chong-dong-ban-kuai}
+<Route data={{"path":"/group/:id/:sort?","categories":["bbs"],"example":"/douyu/group/1011","parameters":{"id":"鱼吧 id,可在鱼吧页 URL 中找到","sort":"排序方式,见下表,默认为发布时间排序"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yuba.douyu.com/group/:id","yuba.douyu.com/group/newself/:id","yuba.douyu.com/group/newall/:id","yuba.douyu.com/"],"target":"/group/:id"},"name":"鱼吧帖子","maintainers":["nczitzk"],"description":"| 回复时间排序 | 发布时间排序 |\n | ------------ | ------------ |\n | 1 | 2 |","location":"group.ts"}} />
-<Route author="shelken" example="/2cycd/43/dateline" path="/2cycd/:fid?/:sort?" paramsDesc={['板块', '排序']} radar="1">
- 板块(更多板块请自行 [查看](http://www.2cycd.com))
+| 回复时间排序 | 发布时间排序 |
+| ------------ | ------------ |
+| 1 | 2 |
- | 音乐下载(默认) | 动漫下载 | 游戏下载 |
- | ---------------- | -------- | -------- |
- | 43 | 53 | 42 |
+## 恩山无线论坛 {#en-shan-wu-xian-lun-tan}
- 排序
+### 板块 {#en-shan-wu-xian-lun-tan-ban-kuai}
- | 发布时间排序(默认) | 回复/查看 | 查看 |
- | -------------------- | ---------- | ----- |
- | dateline | replies | views |
-</Route>
+<Route data={{"path":"/forum/:id?","categories":["bbs"],"example":"/right/forum/31","parameters":{"id":"板块 id,可在板块页 URL 中找到,默认为新手入门及其它(硬件)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"板块","maintainers":["nczitzk"],"location":"forum.ts"}} />
-## 光谷社区 {#guang-gu-she-qu}
+## 虎扑 {#hu-pu}
-### 子论坛 {#guang-gu-she-qu-zi-lun-tan}
+### 热帖 {#hu-pu-re-tie}
-<Route author="nczitzk" example="/guanggoo/index" path="/guanggoo/:category?" paramsDesc={['子论坛,默认为首页']}>
- | 首页 | 你问我答 | 同城活动 | IT 技术 | 金融财经 | 创业创客 | 城市建设 |
- | ---- | -------- | -------- | ------- | -------- | -------- | -------- |
- | | qna | lowshine | it | finance | startup | city |
-</Route>
+<Route data={{"path":"/all/:id?","categories":["bbs"],"example":"/hupu/all/topic-daily","parameters":{"id":"编号,可在对应热帖版面 URL 中找到,默认为步行街每日话题"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.hupu.com/:category","m.hupu.com/"],"target":"/:category"},"name":"热帖","maintainers":["nczitzk"],"description":":::tip\n 更多热帖版面参见 [论坛](https://bbs.hupu.com)\n :::","location":"all.ts"}} />
-## 虎扑 {#hu-pu}
+:::tip
+更多热帖版面参见 [论坛](https://bbs.hupu.com)
+:::
-### 首页 {#hu-pu-shou-ye}
+### 社区 {#hu-pu-she-qu}
-<Route author="nczitzk" example="/hupu/nba" path="/hupu/:category?" paramsDesc={['分类,见下表']}>
- | NBA | CBA | 足球 |
- | --- | --- | ------ |
- | nba | cba | soccer |
+<Route data={{"path":["/bbs/:id?/:order?","/bxj/:id?/:order?"],"categories":["bbs"],"example":"/hupu/bbs/topic-daily","parameters":{"id":"编号,可在对应社区 URL 中找到,默认为#步行街主干道","order":"排序方式,可选 `0` 即 最新回复 或 `1` 即 最新发布,默认为最新回复"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.hupu.com/:category","m.hupu.com/"],"target":"/:category"},"name":"社区","maintainers":["LogicJake","nczitzk"],"description":":::tip\n 更多社区参见 [社区](https://bbs.hupu.com)\n :::","location":"bbs.ts"}} />
- :::tip
- 电竞分类参见 [游戏热帖](https://bbs.hupu.com/all-gg) 的对应路由 [`/hupu/all/all-gg`](https://rsshub.app/hupu/all/all-gg)。
- :::
-</Route>
+:::tip
+更多社区参见 [社区](https://bbs.hupu.com)
+:::
### 社区 {#hu-pu-she-qu}
-<Route author="LogicJake nczitzk" example="/hupu/bbs/topic-daily" path="/hupu/bbs/:id?/:order?" paramsDesc={['编号,可在对应社区 URL 中找到,默认为#步行街主干道', '排序方式,可选 `0` 即 最新回复 或 `1` 即 最新发布,默认为最新回复']}>
- :::tip
- 更多社区参见 [社区](https://bbs.hupu.com)
- :::
-</Route>
+<Route data={{"path":["/bbs/:id?/:order?","/bxj/:id?/:order?"],"categories":["bbs"],"example":"/hupu/bbs/topic-daily","parameters":{"id":"编号,可在对应社区 URL 中找到,默认为#步行街主干道","order":"排序方式,可选 `0` 即 最新回复 或 `1` 即 最新发布,默认为最新回复"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.hupu.com/:category","m.hupu.com/"],"target":"/:category"},"name":"社区","maintainers":["LogicJake","nczitzk"],"description":":::tip\n 更多社区参见 [社区](https://bbs.hupu.com)\n :::","location":"bbs.ts"}} />
-### 热帖 {#hu-pu-re-tie}
-
-<Route author="nczitzk" example="/hupu/all/topic-daily" path="/hupu/all/:id?" paramsDesc={['编号,可在对应热帖版面 URL 中找到,默认为步行街每日话题']}>
- :::tip
- 更多热帖版面参见 [论坛](https://bbs.hupu.com)
- :::
-</Route>
+:::tip
+更多社区参见 [社区](https://bbs.hupu.com)
+:::
## 火线 {#huo-xian}
### Zone {#huo-xian-zone}
-<Route author="p7e4" example="/huoxian/zone" path="/huoxian/zone" />
+<Route data={{"path":"/zone","categories":["bbs"],"example":"/huoxian/zone","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Zone","maintainers":["p7e4"],"location":"zone.ts"}} />
## 集思录 {#ji-si-lu}
### 广场 {#ji-si-lu-guang-chang}
-<Route author="nczitzk" example="/jisilu" path="/jisilu/:category?/:sort?/:day?" paramsDesc={['分类,见下表,默认为全部,可在 URL 中找到', '排序,见下表,默认为最新,可在 URL 中找到', '几天内,见下表,默认为30天,本参数仅在排序参数设定为 `热门` 后才可生效']}>
- 分类
-
- | 全部 | 债券 / 可转债 | 基金 | 套利 | 新股 |
- | ---- | ------------- | ---- | ---- | ---- |
- | | 4 | 7 | 5 | 3 |
-
- 排序
-
- | 最新 | 热门 | 按发表时间 |
- | ---- | ---- | ---------- |
- | | hot | add\_time |
-
- 几天内
-
- | 30 天 | 7 天 | 当天 |
- | ----- | ---- | ---- |
- | 30 | 7 | 1 |
-</Route>
-
-### 用户回复 {#ji-si-lu-yong-hu-hui-fu}
-
-<Route author="nczitzk" example="/jisilu/reply/BKL" path="/jisilu/reply/:user" paramsDesc={['用户名,可在用户页 URL 中找到']} />
-
-### 用户主题 {#ji-si-lu-yong-hu-zhu-ti}
-
-<Route author="nczitzk" example="/jisilu/topic/BKL" path="/jisilu/topic/:user" paramsDesc={['用户名,可在用户页 URL 中找到']} />
-
-## 看雪 {#kan-xue}
-
-### 论坛 {#kan-xue-lun-tan}
-
-<Route author="renzhexigua" example="/pediy/topic/android/digest" path="/pediy/topic/:category?/:type?" paramsDesc={['版块, 缺省为`all`', '类型, 缺省为`latest`']} notOperational="1" />
-
-| 版块 | category |
-| ------------ | ---------- |
-| 智能设备 | iot |
-| 区块链安全 | blockchain |
-| Android 安全 | android |
-| iOS 安全 | ios |
-| 软件逆向 | re |
-| 编程技术 | coding |
-| 加壳脱壳 | unpack |
-| 密码算法 | crypto |
-| 二进制漏洞 | vuln |
-| CrackMe | crackme |
-| Pwn | pwn |
-| WEB 安全 | web |
-| 外文翻译 | translate |
-| 全站 | all |
-
-| 类型 | type |
-| -------- | ------ |
-| 最新主题 | latest |
-| 精华主题 | digest |
-
-## 梨园 {#li-yuan}
+<Route data={{"path":"/:category?/:sort?/:day?","categories":["bbs"],"example":"/jisilu","parameters":{"category":"分类,见下表,默认为全部,可在 URL 中找到","sort":"排序,见下表,默认为最新,可在 URL 中找到","day":"几天内,见下表,默认为30天,本参数仅在排序参数设定为 `热门` 后才可生效"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jisilu.cn/home/explore","jisilu.cn/explore","jisilu.cn/"]},"name":"广场","maintainers":["nczitzk"],"url":"jisilu.cn/home/explore","description":"分类\n\n | 全部 | 债券 / 可转债 | 基金 | 套利 | 新股 |\n | ---- | ------------- | ---- | ---- | ---- |\n | | 4 | 7 | 5 | 3 |\n\n 排序\n\n | 最新 | 热门 | 按发表时间 |\n | ---- | ---- | ---------- |\n | | hot | add_time |\n\n 几天内\n\n | 30 天 | 7 天 | 当天 |\n | ----- | ---- | ---- |\n | 30 | 7 | 1 |","location":"index.ts"}} />
-### 主题帖(全站) {#li-yuan-zhu-ti-tie-quan-zhan}
+分类
-<Route author="WooMai" example="/liyuan-forums/threads" path="/liyuan-forums/threads" />
+| 全部 | 债券 / 可转债 | 基金 | 套利 | 新股 |
+| ---- | ------------- | ---- | ---- | ---- |
+| | 4 | 7 | 5 | 3 |
-### 主题帖(板块) {#li-yuan-zhu-ti-tie-ban-kuai}
+排序
-<Route author="WooMai" example="/liyuan-forums/threads/forum/1" path="/liyuan-forums/threads/forum/:forum_id" paramsDesc={['板块 ID, 支持多个, 使用英文逗号分隔']} />
+| 最新 | 热门 | 按发表时间 |
+| ---- | ---- | ---------- |
+| | hot | add\_time |
-### 主题帖(专题) {#li-yuan-zhu-ti-tie-zhuan-ti}
+几天内
-<Route author="WooMai" example="/liyuan-forums/threads/topic/1" path="/liyuan-forums/threads/topic/:topic_id" paramsDesc={['专题 ID, 支持多个, 使用英文逗号分隔']} />
+| 30 天 | 7 天 | 当天 |
+| ----- | ---- | ---- |
+| 30 | 7 | 1 |
-### 主题帖(用户) {#li-yuan-zhu-ti-tie-yong-hu}
+## 牛客网 {#niu-ke-wang}
-<Route author="WooMai" example="/liyuan-forums/threads/user/1" path="/liyuan-forums/threads/user/:user_id" paramsDesc={['用户 ID (仅支持数字 ID), 支持多个, 使用英文逗号分隔']} />
+### 面经 {#niu-ke-wang-mian-jing}
-## 龙空 {#long-kong}
+<Route data={{"path":"/experience/:tagId","categories":["bbs"],"example":"/nowcoder/experience/639?order=3&companyId=665&phaseId=0","parameters":{"tagId":"职位id [🔗查询链接](https://www.nowcoder.com/profile/all-jobs)复制打开"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nowcoder.com/"],"target":"/experience"},"name":"面经","maintainers":["huyyi"],"url":"nowcoder.com/","description":"可选参数:\n\n - companyId:公司 id,[🔗查询链接](https://www.nowcoder.com/discuss/tag/exp), 复制打开\n - order:3 - 最新;1 - 最热\n - phaseId:0 - 所有;1 - 校招;2 - 实习;3 - 社招","location":"experience.ts"}} />
-### 分区 {#long-kong-fen-qu}
+可选参数:
-<Route author="ma6254 nczitzk" example="/lkong/forum/60" path="/lkong/forum/:id/:digest?" paramsDesc={['分区 id, 可在分区的URL里找到','默认获取全部主题,任意值则只获取精华主题']} notOperational="1" />
+- companyId:公司 id,[🔗查询链接](https://www.nowcoder.com/discuss/tag/exp), 复制打开
+- order:3 - 最新;1 - 最热
+- phaseId:0 - 所有;1 - 校招;2 - 实习;3 - 社招
-### 帖子 {#long-kong-tie-zi}
+### 求职推荐 {#niu-ke-wang-qiu-zhi-tui-jian}
-<Route author="ma6254 nczitzk" example="/lkong/thread/3100275" path="/lkong/thread/:id?" paramsDesc={['帖子 id, 可在帖子的URL里找到']} />
+<Route data={{"path":"/recommend","categories":["bbs"],"example":"/nowcoder/recommend","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nowcoder.com/"]},"name":"求职推荐","maintainers":["junfengP"],"url":"nowcoder.com/","location":"recommend.ts"}} />
-## 龙腾网 {#long-teng-wang}
+### 实习广场 & 社招广场 {#niu-ke-wang-shi-xi-guang-chang-she-zhao-guang-chang}
-### 网帖翻译 {#long-teng-wang-wang-tie-fan-yi}
+<Route data={{"path":"/jobcenter/:recruitType?/:city?/:type?/:order?/:latest?","categories":["bbs"],"example":"/nowcoder/jobcenter/1/北京/1/1/true","parameters":{"recruitType":"招聘分类,`1` 指 实习广场,`2` 指 社招广场,默认为 `1`","city":"所在城市,可选城市见下表,若空则为 `全国`","type":"职位类型,可选职位代码见下表,若空则为 `全部`","order":"排序参数,可选排序参数代码见下表,若空则为 `默认`","latest":"是否仅查看最近一周,可选 `true` 和 `false`,默认为 `false`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nowcoder.com/"],"target":"/jobcenter"},"name":"实习广场 & 社招广场","maintainers":["nczitzk"],"url":"nowcoder.com/","description":"可选城市有:北京、上海、广州、深圳、杭州、南京、成都、厦门、武汉、西安、长沙、哈尔滨、合肥、其他\n\n 职位类型代码见下表:\n\n | 研发 | 测试 | 数据 | 算法 | 前端 | 产品 | 运营 | 其他 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 0 |\n\n 排序参数见下表:\n\n | 最新发布 | 最快处理 | 处理率最高 |\n | -------- | -------- | ---------- |\n | 1 | 2 | 3 |","location":"jobcenter.ts"}} />
-<Route author="sgqy nczitzk" example="/ltaaa" path="/ltaaa/:category?" paramsDesc={['分类,见下表,默认为最新']}>
- | 最新 | 科技 | 娱乐 | 文化 | 社会 | 体育 | 历史 | 趣闻 | 图说世界 |
- | ------ | ---------- | ----- | ------- | --------- | ----- | ------- | ----------- | -------- |
- | latest | technology | funny | culture | community | sport | history | curiosities | picture |
-</Route>
+可选城市有:北京、上海、广州、深圳、杭州、南京、成都、厦门、武汉、西安、长沙、哈尔滨、合肥、其他
-## 牛客网 {#niu-ke-wang}
+职位类型代码见下表:
-### 面经 {#niu-ke-wang-mian-jing}
+| 研发 | 测试 | 数据 | 算法 | 前端 | 产品 | 运营 | 其他 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 0 |
-<Route author="huyyi" example="/nowcoder/experience/639?order=3&companyId=665&phaseId=0" path="/nowcoder/experience/:tagId" paramsDesc={['职位id [🔗查询链接](https://www.nowcoder.com/profile/all-jobs)复制打开']}>
- 可选参数:
+排序参数见下表:
- - companyId:公司 id,[🔗查询链接](https://www.nowcoder.com/discuss/tag/exp), 复制打开
- - order:3 - 最新;1 - 最热
- - phaseId:0 - 所有;1 - 校招;2 - 实习;3 - 社招
-</Route>
+| 最新发布 | 最快处理 | 处理率最高 |
+| -------- | -------- | ---------- |
+| 1 | 2 | 3 |
### 讨论区 {#niu-ke-wang-tao-lun-qu}
-<Route author="LogicJake" example="/nowcoder/discuss/2/4" path="/nowcoder/discuss/:type/:order" paramsDesc={['讨论区分区id 在 URL 中可以找到', '排序方式']} notOperational="1">
- | 最新回复 | 最新发表 | 最新 | 精华 |
- | -------- | -------- | ---- | ---- |
- | 0 | 3 | 1 | 4 |
-</Route>
-
-### 校招日程 {#niu-ke-wang-xiao-zhao-ri-cheng}
-
-<Route author="junfengP" example="/nowcoder/schedule" path="/nowcoder/schedule/:propertyId?/:typeId?" paramsDesc={['行业, 在控制台中抓取接口,可获得行业id,默认0', '类别,同上']} />
-
-### 求职推荐 {#niu-ke-wang-qiu-zhi-tui-jian}
-
-<Route author="junfengP" example="/nowcoder/recommend" path="/nowcoder/recommend" />
+<Route data={{"path":"/discuss/:type/:order","categories":["bbs"],"example":"/nowcoder/discuss/2/4","parameters":{"type":"讨论区分区id 在 URL 中可以找到","order":"排序方式"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"讨论区","maintainers":["LogicJake"],"description":"| 最新回复 | 最新发表 | 最新 | 精华 |\n | -------- | -------- | ---- | ---- |\n | 0 | 3 | 1 | 4 |","location":"discuss.ts"}} />
-### 实习广场 & 社招广场 {#niu-ke-wang-shi-xi-guang-chang-she-zhao-guang-chang}
-
-<Route author="nczitzk" example="/nowcoder/jobcenter/1/北京/1/1/true" path="/nowcoder/jobcenter/:recruitType?/:city?/:type?/:order?/:latest?" paramsDesc={['招聘分类,`1` 指 实习广场,`2` 指 社招广场,默认为 `1`', '所在城市,可选城市见下表,若空则为 `全国`', '职位类型,可选职位代码见下表,若空则为 `全部`', '排序参数,可选排序参数代码见下表,若空则为 `默认`', '是否仅查看最近一周,可选 `true` 和 `false`,默认为 `false`']}>
- 可选城市有:北京、上海、广州、深圳、杭州、南京、成都、厦门、武汉、西安、长沙、哈尔滨、合肥、其他
-
- 职位类型代码见下表:
+| 最新回复 | 最新发表 | 最新 | 精华 |
+| -------- | -------- | ---- | ---- |
+| 0 | 3 | 1 | 4 |
- | 研发 | 测试 | 数据 | 算法 | 前端 | 产品 | 运营 | 其他 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 0 |
-
- 排序参数见下表:
+### 校招日程 {#niu-ke-wang-xiao-zhao-ri-cheng}
- | 最新发布 | 最快处理 | 处理率最高 |
- | -------- | -------- | ---------- |
- | 1 | 2 | 3 |
-</Route>
+<Route data={{"path":"/schedule/:propertyId?/:typeId?","categories":["bbs"],"example":"/nowcoder/schedule","parameters":{"propertyId":"行业, 在控制台中抓取接口,可获得行业id,默认0","typeId":"类别,同上"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nowcoder.com/"],"target":"/schedule"},"name":"校招日程","maintainers":["junfengP"],"url":"nowcoder.com/","location":"schedule.ts"}} />
## 品葱 {#pin-cong}
### 发现 {#pin-cong-fa-xian}
-<Route author="zphw" example="/pincong/category/1/new" path="/pincong/category/:category?/:sort?" paramsDesc={['分类,与官网分类 URL `category-` 后的数字对应,默认为全部', '排序方式,参数可见下表,默认为推荐']} anticrawler="1" puppeteer="1" />
+<Route data={{"path":"/category/:category?/:sort?","categories":["bbs"],"example":"/pincong/category/1/new","parameters":{"category":"分类,与官网分类 URL `category-` 后的数字对应,默认为全部","sort":"排序方式,参数可见下表,默认为推荐"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"发现","maintainers":["zphw"],"description":"| 最新 | 推荐 | 热门 |\n| ---- | --------- | ---- |\n| new | recommend | hot |","location":"index.ts"}} />
| 最新 | 推荐 | 热门 |
| ---- | --------- | ---- |
@@ -710,306 +454,138 @@ If you opt to enable `fulltext` feature, consider adding `limit` parameter to yo
### 精选 {#pin-cong-jing-xuan}
-<Route author="zphw" example="/pincong/hot" path="/pincong/hot/:category?" paramsDesc={['分类,与官网分类 URL `category-` 后的数字对应,默认为全部']} anticrawler="1" puppeteer="1" />
-
-### 话题 {#pin-cong-hua-ti}
+<Route data={{"path":"/hot/:category?","categories":["bbs"],"example":"/pincong/hot","parameters":{"category":"分类,与官网分类 URL `category-` 后的数字对应,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"精选","maintainers":["zphw"],"location":"hot.ts"}} />
-<Route author="zphw" example="/pincong/topic/美国" path="/pincong/topic/:topic?" paramsDesc={['话题,可在官网获取']} anticrawler="1" puppeteer="1" />
-
-## 三星盖乐世社区 {#san-xing-gai-le-shi-she-qu}
+## 司机社 {#si-ji-she}
-### 最新帖子 {#san-xing-gai-le-shi-she-qu-zui-xin-tie-zi}
+### 论坛 {#si-ji-she-lun-tan}
-<Route author="nczitzk" example="/samsungmembers/latest" path="/samsungmembers/latest" />
+<Route data={{"path":"/forum/:fid","categories":["bbs"],"example":"/xsijishe/forum/51","parameters":{"fid":"子论坛 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"论坛","maintainers":["akynazh"],"description":":::tip[关于子论坛 id 的获取方法]\n `/xsijishe/forum/51` 对应于论坛 `https://xsijishe.com/forum-51-1.html`,这个论坛的 fid 为 51,也就是 `forum-{fid}-1` 中的 fid。\n :::","location":"forum.ts"}} />
-## 司机社 {#si-ji-she}
+:::tip[关于子论坛 id 的获取方法]
+`/xsijishe/forum/51` 对应于论坛 `https://xsijishe.com/forum-51-1.html`,这个论坛的 fid 为 51,也就是 `forum-{fid}-1` 中的 fid。
+:::
### 排行榜 {#si-ji-she-pai-hang-bang}
-<Route author="akynazh" example="/xsijishe/rank/weekly" path="/xsijishe/rank/:type" paramsDesc={['排行榜类型: weekly | monthly']} radar="1" />
-
-### 论坛 {#si-ji-she-lun-tan}
-
-<Route author="akynazh" example="/xsijishe/forum/51" path="/xsijishe/forum/:fid" paramsDesc={['子论坛 id']} radar="1">
- :::tip[关于子论坛 id 的获取方法]
- `/xsijishe/forum/51` 对应于论坛 `https://xsijishe.com/forum-51-1.html`,这个论坛的 fid 为 51,也就是 `forum-{fid}-1` 中的 fid。
- :::
-</Route>
+<Route data={{"path":"/rank/:type","categories":["bbs"],"example":"/xsijishe/rank/weekly","parameters":{"type":"排行榜类型: weekly | monthly"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"排行榜","maintainers":["akynazh"],"location":"rank.ts"}} />
## 通信人家园 {#tong-xin-ren-jia-yuan}
### 论坛 频道 {#tong-xin-ren-jia-yuan-lun-tan-pin-dao}
-<Route author="Fatpandac" example="/txrjy/fornumtopic" path="/txrjy/fornumtopic/:channel?" paramsDesc={['频道的 id,见下表,默认为最新500个主题帖']}>
- | 最新 500 个主题帖 | 最新 500 个回复帖 | 最新精华帖 | 最新精华帖 | 一周热帖 | 本月热帖 |
- | :---------------: | :---------------: | :--------: | :--------: | :------: | :------: |
- | 1 | 2 | 3 | 4 | 5 | 6 |
-</Route>
-
-## 万维读者 {#wan-wei-du-zhe}
+<Route data={{"path":"/fornumtopic/:channel?","categories":["bbs"],"example":"/txrjy/fornumtopic","parameters":{"channel":"频道的 id,见下表,默认为最新500个主题帖"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"论坛 频道","maintainers":["Fatpandac"],"description":"| 最新 500 个主题帖 | 最新 500 个回复帖 | 最新精华帖 | 最新精华帖 | 一周热帖 | 本月热帖 |\n | :---------------: | :---------------: | :--------: | :--------: | :------: | :------: |\n | 1 | 2 | 3 | 4 | 5 | 6 |","location":"fornumtopic.ts"}} />
-### 焦点新闻 {#wan-wei-du-zhe-jiao-dian-xin-wen}
-
-<Route author="nczitzk" example="/creaders/headline" path="/creaders/headline" />
+| 最新 500 个主题帖 | 最新 500 个回复帖 | 最新精华帖 | 最新精华帖 | 一周热帖 | 本月热帖 |
+| :---------------: | :---------------: | :--------: | :--------: | :------: | :------: |
+| 1 | 2 | 3 | 4 | 5 | 6 |
## 威锋 {#wei-feng}
### 社区 {#wei-feng-she-qu}
-<Route author="TonyRL" example="/feng/forum/1" path="/feng/forum/:id/:type?" paramsDesc={['版块 ID,可在版块 URL 找到', '排序,见下表,默认为 `all`']} radar="1">
- | 最新回复 | 最新发布 | 热门 | 精华 |
- | -------- | -------- | ---- | ------- |
- | newest | all | hot | essence |
-</Route>
-
-## 文学城 {#wen-xue-cheng}
-
-### 博客 {#wen-xue-cheng-bo-ke}
-
-<Route author="changlan" example="/wenxuecity/blog/43626" path="/wenxuecity/blog/:id" paramsDesc={['博客 ID, 可在 URL 中找到']} radar="1" />
-
-### 最热主题 {#wen-xue-cheng-zui-re-zhu-ti}
-
-<Route author="changlan" example="/wenxuecity/hot/9" path="/wenxuecity/hot/:cid" paramsDesc={['版面 ID, 可在 URL 中找到']} radar="1" />
-
-### 最新主题 {#wen-xue-cheng-zui-xin-zhu-ti}
-
-<Route author="changlan" example="/wenxuecity/bbs/tzlc" path="/wenxuecity/bbs/:cat/:elite?" paramsDesc={['版面名, 可在 URL 中找到', '是否精华区, 1 为精华区']} radar="1" />
-
-### 焦点新闻 {#wen-xue-cheng-jiao-dian-xin-wen}
-
-<Route author="nczitzk" example="/wenxuecity/news" path="/wenxuecity/news" />
-
-## 小木虫论坛 {#xiao-mu-chong-lun-tan}
-
-### 期刊点评 {#xiao-mu-chong-lun-tan-qi-kan-dian-ping}
-
-<Route author="nczitzk" example="/muchong/journal" path="/muchong/journal/:type?" paramsDesc={['类型,见下表']} />
-
-| SCI 期刊 | 中文期刊 |
-| -------- | -------- |
-| | cn |
-
-### 分类 {#xiao-mu-chong-lun-tan-fen-lei}
-
-<Route author="nczitzk" example="/muchong/290" path="/muchong/:id/:type?/:sort?" paramsDesc={['板块 id,可在板块页 URL 中找到', '子类别 id,可在板块页导航栏中找到,默认为 `all` 即 全部', '排序,可选 `order-tid` 即 发表排序,默认为 回帖排序']}>
- :::tip
- 尚不支持需要登录访问的版块
- :::
-
- 网络生活区
-
- | 休闲灌水 | 虫友互识 | 文学芳草园 | 育儿交流 | 竞技体育 | 有奖起名 | 有奖问答 | 健康生活 |
- | -------- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- |
- | 6 | 133 | 166 | 359 | 377 | 408 | 69 | 179 |
-
- 科研生活区
-
- | 硕博家园 | 教师之家 | 博后之家 | English Cafe | 职场人生 | 专业外语 | 外语学习 | 导师招生 | 找工作 | 招聘信息布告栏 | 考研 | 考博 | 公务员考试 |
- | -------- | -------- | -------- | ------------ | -------- | -------- | -------- | -------- | ------ | -------------- | ---- | ---- | ---------- |
- | 198 | 199 | 342 | 328 | 405 | 432 | 126 | 430 | 185 | 346 | 127 | 197 | 280 |
+<Route data={{"path":"/forum/:id/:type?","categories":["bbs"],"example":"/feng/forum/1","parameters":{"id":"版块 ID,可在版块 URL 找到","type":"排序,见下表,默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["feng.com/forum/photo/:id","feng.com/forum/:id"],"target":"/forum/:id"},"name":"社区","maintainers":["TonyRL"],"description":"| 最新回复 | 最新发布 | 热门 | 精华 |\n | -------- | -------- | ---- | ------- |\n | newest | all | hot | essence |","location":"forum.ts"}} />
- 学术交流区
-
- | 论文投稿 | SCI 期刊点评 | 中文期刊点评 | 论文道贺祈福 | 论文翻译 | 基金申请 | 学术会议 | 会议与征稿布告栏 |
- | -------- | ------------ | ------------ | ------------ | -------- | -------- | -------- | ---------------- |
- | 125 | 见期刊路由 | 见期刊路由 | 307 | 278 | 234 | 299 | 345 |
-
- 出国留学区
-
- | 留学生活 | 公派出国 | 访问学者 | 海外博后 | 留学 DIY | 签证指南 | 出国考试 | 海外院所点评 | 海外校友录 | 海归之家 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ---------- | -------- |
- | 336 | 131 | 386 | 385 | 334 | 335 | 337 | 399 | 见院校路由 | 428 |
-
- 化学化工区
-
- | 有机交流 | 有机资源 | 高分子 | 无机 / 物化 | 分析 | 催化 | 工艺技术 | 化工设备 | 石油化工 | 精细化工 | 电化学 | 环境 | SciFinder/Reaxys |
- | -------- | -------- | ------ | ----------- | ---- | ---- | -------- | -------- | -------- | -------- | ------ | ---- | ---------------- |
- | 189 | 325 | 236 | 170 | 238 | 190 | 373 | 374 | 212 | 227 | 263 | 230 | 343 |
-
- 材料区
-
- | 材料综合 | 材料工程 | 微米和纳米 | 晶体 | 金属 | 无机非金属 | 生物材料 | 功能材料 | 复合材料 |
- | -------- | -------- | ---------- | ---- | ---- | ---------- | -------- | -------- | -------- |
- | 378 | 379 | 233 | 262 | 301 | 213 | 286 | 364 | 365 |
-
- 计算模拟区
-
- | 第一性原理 | 量子化学 | 计算模拟 | 分子模拟 | 仿真模拟 | 程序语言 |
- | ---------- | -------- | -------- | -------- | -------- | -------- |
- | 291 | 290 | 279 | 322 | 292 | 312 |
-
- 生物医药区
-
- | 新药研发 | 药学 | 药品生产 | 分子生物 | 微生物 | 动植物 | 生物科学 | 医学 |
- | -------- | ---- | -------- | -------- | ------ | ------ | -------- | ---- |
- | 192 | 148 | 429 | 366 | 367 | 368 | 144 | 142 |
-
- 人文经济区
-
- | 金融投资 | 人文社科 | 管理学 | 经济学 |
- | -------- | -------- | ------ | ------ |
- | 272 | 453 | 447 | 446 |
-
- 专业学科区
-
- | 数理科学综合 | 机械 | 物理 | 数学 | 农林 | 食品 | 地学 | 能源 | 信息科学 | 土木建筑 | 航空航天 | 转基因 |
- | ------------ | ---- | ---- | ---- | ---- | ---- | ---- | ---- | -------- | -------- | -------- | ------ |
- | 452 | 370 | 228 | 323 | 371 | 207 | 261 | 372 | 145 | 147 | 434 | 438 |
-
- 注册执考区
-
- | 化环类执考 | 医药类考试 | 土建类考试 | 经管类考试 | 其他类执考 |
- | ---------- | ---------- | ---------- | ---------- | ---------- |
- | 414 | 417 | 418 | 415 | 419 |
-
- 文献求助区
-
- | 文献求助 | 外文书籍求助 | 标准与专利 | 检索知识 | 代理 Proxy 资源 |
- | -------- | ------------ | ---------- | -------- | --------------- |
- | 158 | 219 | 226 | 130 | 203 |
-
- 资源共享区
-
- | 电脑软件 | 手机资源 | 科研工具 | 科研资料 | 课件资源 | 试题资源 | 资源求助 | 电脑使用 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 55 | 410 | 188 | 300 | 112 | 380 | 401 | 347 |
-
- 科研市场区
-
- | 课堂列表 | 综合广告 | 试剂耗材抗体 | 仪器设备 | 测试定制合成 | 技术服务 | 留学服务 | 教育培训 | 个人求购专版 | 个人转让专版 | QQ 群 / 公众号专版 | 手机红包 | 金币购物 |
- | -------- | -------- | ------------ | -------- | ------------ | -------- | -------- | -------- | ------------ | ------------ | ------------------ | -------- | -------- |
- | 454 | 284 | 390 | 389 | 392 | 396 | 350 | 394 | 316 | 436 | 362 | 302 | 460 |
-
- 论坛事务区
-
- | 木虫讲堂 | 论坛更新日志 | 论坛公告发布 | 我来提意见 | 版主交流 | 规章制度 | 论坛使用帮助 (只读) | 我与小木虫的故事 |
- | -------- | ------------ | ------------ | ---------- | -------- | -------- | ------------------- | ---------------- |
- | 468 | 437 | 5 | 321 | 134 | 317 | 215 | 376 |
-
- 版块孵化区
-
- | 版块工场 |
- | -------- |
- | myf |
-</Route>
+| 最新回复 | 最新发布 | 热门 | 精华 |
+| -------- | -------- | ---- | ------- |
+| newest | all | hot | essence |
## 小特社区 {#xiao-te-she-qu}
### 首页帖子 {#xiao-te-she-qu-shou-ye-tie-zi}
-<Route author="wxsimon" example="/xiaote/news" path="/xiaote/news" />
+<Route data={{"path":"/news","categories":["bbs"],"example":"/xiaote/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaote.com/"]},"name":"首页帖子","maintainers":["wxsimon"],"url":"xiaote.com/","location":"index.ts"}} />
## 一亩三分地 {#yi-mu-san-fen-di}
-### 帖子 {#yi-mu-san-fen-di-tie-zi}
-
-<Route author="EthanWng97 DIYgod nczitzk" example="/1point3acres/thread/hot" path="/1point3acres/thread/:type?/:order?" paramsDesc={['帖子分类, 见下表,默认为 hot,即热门帖子', '排序方式,见下表,默认为空,即最新回复']}>
- 分类
+### 标签 {#yi-mu-san-fen-di-biao-qian}
- | 热门帖子 | 最新帖子 |
- | -------- | -------- |
- | hot | new |
+<Route data={{"path":"/category/:id?/:type?/:order?","categories":["bbs"],"example":"/1point3acres/category/h1b","parameters":{"id":"标签 id,默认为全部","type":"帖子分类, 见下表,默认为 hot,即热门帖子","order":"排序方式,见下表,默认为空,即最新回复"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["instant.1point3acres.com/section/:id","instant.1point3acres.com/"]},"name":"标签","maintainers":["nczitzk"],"description":":::tip\n 更多标签可以在 [标签列表](https://instant.1point3acres.com/tags) 中找到。\n :::\n\n 分类\n\n | 热门帖子 | 最新帖子 |\n | -------- | -------- |\n | hot | new |\n\n 排序方式\n\n | 最新回复 | 最新发布 |\n | -------- | -------- |\n | | post |","location":"category.ts"}} />
- 排序方式
+:::tip
+更多标签可以在 [标签列表](https://instant.1point3acres.com/tags) 中找到。
+:::
- | 最新回复 | 最新发布 |
- | -------- | -------- |
- | | post |
-</Route>
+分类
-### 分区 {#yi-mu-san-fen-di-fen-qu}
+| 热门帖子 | 最新帖子 |
+| -------- | -------- |
+| hot | new |
-<Route author="nczitzk" example="/1point3acres/section/345" path="/1point3acres/section/:id?/:type?/:order?" paramsDesc={['分区 id,见下表,默认为全部', '帖子分类, 见下表,默认为 hot,即热门帖子', '排序方式,见下表,默认为空,即最新回复']}>
- 分区
+排序方式
- | 分区 | id |
- | -------- | --- |
- | 留学申请 | 257 |
- | 世界公民 | 379 |
- | 投资理财 | 400 |
- | 生活干货 | 31 |
- | 职场达人 | 345 |
- | 人际关系 | 391 |
- | 海外求职 | 38 |
- | 签证移民 | 265 |
+| 最新回复 | 最新发布 |
+| -------- | -------- |
+| | post |
- 分类
+### 博客 {#yi-mu-san-fen-di-bo-ke}
- | 热门帖子 | 最新帖子 |
- | -------- | -------- |
- | hot | new |
+<Route data={{"path":"/blog/:category?","categories":["bbs"],"example":"/1point3acres/blog","parameters":{"category":"分类,见下表,可在对应分类页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["blog.1point3acres.com/:category"]},"name":"博客","maintainers":["nczitzk"],"description":"| 留学申请 | 找工求职 | 生活攻略 | 投资理财 | 签证移民 | 时政要闻 |\n | ---------- | -------- | --------- | -------- | -------- | -------- |\n | studyinusa | career | lifestyle | invest | visa | news |","location":"blog.ts"}} />
- 排序方式
+| 留学申请 | 找工求职 | 生活攻略 | 投资理财 | 签证移民 | 时政要闻 |
+| ---------- | -------- | --------- | -------- | -------- | -------- |
+| studyinusa | career | lifestyle | invest | visa | news |
- | 最新回复 | 最新发布 |
- | -------- | -------- |
- | | post |
-</Route>
+### 分区 {#yi-mu-san-fen-di-fen-qu}
-### 标签 {#yi-mu-san-fen-di-biao-qian}
+<Route data={{"path":"/section/:id?/:type?/:order?","categories":["bbs"],"example":"/1point3acres/section/345","parameters":{"id":"分区 id,见下表,默认为全部","type":"帖子分类, 见下表,默认为 hot,即热门帖子","order":"排序方式,见下表,默认为空,即最新回复"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["instant.1point3acres.com/section/:id","instant.1point3acres.com/"]},"name":"分区","maintainers":["nczitzk"],"description":"分区\n\n | 分区 | id |\n | -------- | --- |\n | 留学申请 | 257 |\n | 世界公民 | 379 |\n | 投资理财 | 400 |\n | 生活干货 | 31 |\n | 职场达人 | 345 |\n | 人际关系 | 391 |\n | 海外求职 | 38 |\n | 签证移民 | 265 |\n\n 分类\n\n | 热门帖子 | 最新帖子 |\n | -------- | -------- |\n | hot | new |\n\n 排序方式\n\n | 最新回复 | 最新发布 |\n | -------- | -------- |\n | | post |","location":"section.ts"}} />
-<Route author="nczitzk" example="/1point3acres/category/h1b" path="/1point3acres/category/:id?/:type?/:order?" paramsDesc={['标签 id,默认为全部', '帖子分类, 见下表,默认为 hot,即热门帖子', '排序方式,见下表,默认为空,即最新回复']}>
- :::tip
- 更多标签可以在 [标签列表](https://instant.1point3acres.com/tags) 中找到。
- :::
+分区
- 分类
+| 分区 | id |
+| -------- | --- |
+| 留学申请 | 257 |
+| 世界公民 | 379 |
+| 投资理财 | 400 |
+| 生活干货 | 31 |
+| 职场达人 | 345 |
+| 人际关系 | 391 |
+| 海外求职 | 38 |
+| 签证移民 | 265 |
- | 热门帖子 | 最新帖子 |
- | -------- | -------- |
- | hot | new |
+分类
- 排序方式
+| 热门帖子 | 最新帖子 |
+| -------- | -------- |
+| hot | new |
- | 最新回复 | 最新发布 |
- | -------- | -------- |
- | | post |
-</Route>
+排序方式
-### 用户主题帖 {#yi-mu-san-fen-di-yong-hu-zhu-ti-tie}
+| 最新回复 | 最新发布 |
+| -------- | -------- |
+| | post |
-<Route author="Maecenas" example="/1point3acres/user/1/threads" path="/1point3acres/user/:id/threads" paramsDesc={['用户 id,可在 Instant 版网站的个人主页 URL 找到']} notOperational="1" />
+### 录取结果 {#yi-mu-san-fen-di-lu-qu-jie-guo}
-### 用户回帖 {#yi-mu-san-fen-di-yong-hu-hui-tie}
+<Route data={{"path":"/offer/:year?/:major?/:school?","categories":["bbs"],"example":"/1point3acres/offer/12/null/CMU","parameters":{"year":"录取年份 id,空为null","major":"录取专业 id,空为null","school":"录取学校 id,空为null"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["offer.1point3acres.com/"],"target":"/offer"},"name":"录取结果","maintainers":["EthanWng97"],"url":"offer.1point3acres.com/","description":":::tip[三个 id 获取方式]\n 1. 打开 [https://offer.1point3acres.com](https://offer.1point3acres.com)\n 2. 打开控制台\n 3. 切换到 Network 面板\n 4. 点击 搜索 按钮\n 5. 点击 results?ps=15&pg=1 POST 请求\n 6. 找到 Request Payload 请求参数,例如 `filters: {planyr: \"13\", planmajor: \"1\", outname_w: \"ACADIAU\"}` ,则三个 id 分别为: 13,1,ACADIAU\n :::","location":"offer.ts"}} />
-<Route author="Maecenas" example="/1point3acres/user/1/posts" path="/1point3acres/user/:id/posts" paramsDesc={['用户 id,可在 Instant 版网站的个人主页 URL 找到']} notOperational="1" />
+:::tip[三个 id 获取方式]
+1. 打开 [https://offer.1point3acres.com](https://offer.1point3acres.com)
+2. 打开控制台
+3. 切换到 Network 面板
+4. 点击 搜索 按钮
+5. 点击 results?ps=15\&pg=1 POST 请求
+6. 找到 Request Payload 请求参数,例如 `filters: {planyr: "13", planmajor: "1", outname_w: "ACADIAU"}` ,则三个 id 分别为: 13,1,ACADIAU
+:::
-### 录取结果 {#yi-mu-san-fen-di-lu-qu-jie-guo}
+### 用户回帖 {#yi-mu-san-fen-di-yong-hu-hui-tie}
-<Route author="EthanWng97" example="/1point3acres/offer/12/null/CMU" path="/1point3acres/offer/:year?/:major?/:school?" paramsDesc={['录取年份 id,空为null', '录取专业 id,空为null', '录取学校 id,空为null']}>
- :::tip[三个 id 获取方式]
- 1. 打开 [https://offer.1point3acres.com](https://offer.1point3acres.com)
- 2. 打开控制台
- 3. 切换到 Network 面板
- 4. 点击 搜索 按钮
- 5. 点击 results?ps=15\&pg=1 POST 请求
- 6. 找到 Request Payload 请求参数,例如 `filters: {planyr: "13", planmajor: "1", outname_w: "ACADIAU"}` ,则三个 id 分别为: 13,1,ACADIAU
- :::
-</Route>
+<Route data={{"path":"/user/:id/posts","categories":["bbs"],"example":"/1point3acres/user/1/posts","parameters":{"id":"用户 id,可在 Instant 版网站的个人主页 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["instant.1point3acres.com/profile/:id","instant.1point3acres.com/"]},"name":"用户回帖","maintainers":["Maecenas"],"location":"user/post.ts"}} />
-### 博客 {#yi-mu-san-fen-di-bo-ke}
+### 用户主题帖 {#yi-mu-san-fen-di-yong-hu-zhu-ti-tie}
-<Route author="nczitzk" example="/1point3acres/blog" path="/1point3acres/blog/:category?" paramsDesc={['分类,见下表,可在对应分类页 URL 中找到']} radar="1">
- | 留学申请 | 找工求职 | 生活攻略 | 投资理财 | 签证移民 | 时政要闻 |
- | ---------- | -------- | --------- | -------- | -------- | -------- |
- | studyinusa | career | lifestyle | invest | visa | news |
-</Route>
+<Route data={{"path":"/user/:id/threads","categories":["bbs"],"example":"/1point3acres/user/1/threads","parameters":{"id":"用户 id,可在 Instant 版网站的个人主页 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["instant.1point3acres.com/profile/:id","instant.1point3acres.com/"]},"name":"用户主题帖","maintainers":["Maecenas"],"location":"user/thread.ts"}} />
## 直播吧 {#zhi-bo-ba}
-### 子论坛 {#zhi-bo-ba-zi-lun-tan}
+### Unknown {#zhi-bo-ba-unknown}
-<Route author="LogicJake" example="/zhibo8/forum/8" path="/zhibo8/forum/:id" paramsDesc={['子论坛 id,可在子论坛 URL 找到']} radar="1" />
+<Route data={{"path":"/more/:category?","categories":["bbs"],"example":"/zhibo8/more/nba","parameters":{"category":"分类,见下表,默认为 NBA"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.zhibo8.cc/:category"],"target":"/more/:category"},"name":"Unknown","maintainers":["nczitzk"],"location":"more.ts"}} />
### 回帖 {#zhi-bo-ba-hui-tie}
-<Route author="LogicJake" example="/zhibo8/post/3050708" path="/zhibo8/post/:id" paramsDesc={['帖子 id,可在帖子 URL 找到']} radar="1" />
+<Route data={{"path":"/post/:id","categories":["bbs"],"example":"/zhibo8/post/3050708","parameters":{"id":"帖子 id,可在帖子 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"回帖","maintainers":["LogicJake"],"location":"post.ts"}} />
-### 滚动新闻 {#zhi-bo-ba-gun-dong-xin-wen}
+### 子论坛 {#zhi-bo-ba-zi-lun-tan}
-<Route author="nczitzk" example="/zhibo8/more/nba" path="/zhibo8/more/:category?" paramsDesc={['分类,见下表,默认为 NBA']} radar="1">
- | NBA | 足球 | 电竞 | 综合 |
- | --- | ----- | -------- | ------ |
- | nba | zuqiu | dianjing | zonghe |
-</Route>
+<Route data={{"path":"/forum/:id","categories":["bbs"],"example":"/zhibo8/forum/8","parameters":{"id":"子论坛 id,可在子论坛 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"子论坛","maintainers":["LogicJake"],"location":"forum.ts"}} />
diff --git a/website/docs/routes/blog.mdx b/website/docs/routes/blog.mdx
index 0ea8cd45e33d0e..986cef6e5824ae 100644
--- a/website/docs/routes/blog.mdx
+++ b/website/docs/routes/blog.mdx
@@ -1,499 +1,273 @@
-# 🖊️️ Blog
-
-## Amazon {#amazon}
-
-### AWS Blogs {#amazon-aws-blogs}
-
-<Route author="HankChow" example="/amazon/awsblogs" path="/awsblogs/:locale?" paramsDesc={['Blog postes in a specified language, only the following options are supported. Default `zh_CN`']}>
- | zh\_CN | en\_US | fr\_FR | de\_DE | ja\_JP | ko\_KR | pt\_BR | es\_ES | ru\_RU | id\_ID | tr\_TR |
- | ------- | ------- | ------ | ------ | -------- | ------ | ---------- | -------- | ------- | ---------- | ------- |
- | Chinese | English | French | German | Japanese | Korean | Portuguese | Spainish | Russian | Indonesian | Turkish |
-</Route>
+# blog
## Apache {#apache}
### APISIX 博客 {#apache-apisix-bo-ke}
-<Route author="aneasystone" example="/apache/apisix/blog" path="/apache/apisix/blog" />
-
-## archdaily {#archdaily}
-
-### Home {#archdaily-home}
-
-<Route author="kt286" example="/archdaily" path="/archdaily" />
+<Route data={{"path":"/apisix/blog","categories":["blog"],"example":"/apache/apisix/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"APISIX 博客","maintainers":["aneasystone"],"location":"apisix/blog.ts"}} />
## Backlinko {#backlinko}
### Blog {#backlinko-blog}
-<Route author="TonyRL" example="/backlinko/blog" path="/backlinko/blog" radar="1" />
-
-## Benedict Evans {#benedict-evans}
-
-### Essays {#benedict-evans-essays}
-
-<Route author="emdoe" example="/benedictevans" path="/benedictevans" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/backlinko/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["backlinko.com/blog","backlinko.com/"]},"name":"Blog","maintainers":["TonyRL"],"url":"backlinko.com/blog","location":"blog.ts"}} />
## cmpxchg8b {#cmpxchg8b}
### Articles {#cmpxchg8b-articles}
-<Route author="yuguorui" example="/cmpxchg8b/articles" path="/cmpxchg8b/articles" />
+<Route data={{"path":"/articles","categories":["blog"],"example":"/cmpxchg8b/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lock.cmpxchg8b.com/articles"]},"name":"Articles","maintainers":["yuguorui"],"url":"lock.cmpxchg8b.com/articles","location":"articles.ts"}} />
## CSDN {#csdn}
### User Feed {#csdn-user-feed}
-<Route author="Jkker" example="/csdn/blog/csdngeeknews" path="/csdn/blog/:user" radar="1" paramsDesc={['`user` is the username of a CSDN blog which can be found in the url of the home page']} />
+<Route data={{"path":"/blog/:user","categories":["blog"],"example":"/csdn/blog/csdngeeknews","parameters":{"user":"`user` is the username of a CSDN blog which can be found in the url of the home page"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["blog.csdn.net/:user"]},"name":"User Feed","maintainers":[],"location":"blog.ts"}} />
## Delta Lake {#delta-lake}
### Blogs {#delta-lake-blogs}
-<Route author="RengarLee" example="/deltaio/blog" path="/deltaio/blog" radar="1" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/deltaio/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["delta.io/blog"]},"name":"Blogs","maintainers":["RengarLee"],"url":"delta.io/blog","location":"blog.ts"}} />
## DevolverDigital {#devolverdigital}
### Official Blogs {#devolverdigital-official-blogs}
-<Route author="XXY233" example="/devolverdigital/blog" path="/devolverdigital/blog" radar="1" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/devolverdigital/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["devolverdigital.com/blog"]},"name":"Official Blogs","maintainers":["XXY233"],"url":"devolverdigital.com/blog","location":"blog.ts"}} />
## FreeBuf {#freebuf}
### 文章 {#freebuf-wen-zhang}
-<Route author="trganda" example="/freebuf/articles/web" path="/freebuf/articles/:type" paramsDesc={['文章类别', '文章id号,可选']}>
- :::tip
- Freebuf 的文章页面带有反爬虫机制,所以目前无法获取文章的完整内容。
- :::
-</Route>
+<Route data={{"path":"/articles/:type","categories":["blog"],"example":"/freebuf/articles/web","parameters":{"type":"文章类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["freebuf.com/articles/:type/*.html","freebuf.com/articles/:type"]},"name":"文章","maintainers":["trganda"],"description":":::tip\n Freebuf 的文章页面带有反爬虫机制,所以目前无法获取文章的完整内容。\n :::","location":"index.ts"}} />
+
+:::tip
+Freebuf 的文章页面带有反爬虫机制,所以目前无法获取文章的完整内容。
+:::
## Geocaching {#geocaching}
### Official Blogs {#geocaching-official-blogs}
-<Route author="HankChow" example="/geocaching/blogs" path="/geocaching/blogs" radar="1" />
-
-## Gwern Branwen {#gwern-branwen}
-
-### 博客 {#gwern-branwen-bo-ke}
-
-<Route author="cerebrater" example="/gwern/newest" path="/gwern/:category" paramsDesc={['網誌主頁的分類訊息']} />
+<Route data={{"path":"/blogs","categories":["blog"],"example":"/geocaching/blogs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["geocaching.com/blog/","geocaching.com/"]},"name":"Official Blogs","maintainers":["HankChow"],"url":"geocaching.com/blog/","location":"blogs.ts"}} />
## hashnode {#hashnode}
### 用户博客 {#hashnode-yong-hu-bo-ke}
-<Route author="hnrainll" example="/hashnode/blog/inklings" path="/hashnode/blog/:username" paramsDesc={['博主名称,用户头像 URL 中找到']}>
- :::tip
- username 为博主用户名,而非`xxx.hashnode.dev`中`xxx`所代表的 blog 地址。
- :::
-</Route>
-
-## Hedwig.pub {#hedwig-pub}
-
-### 博客 {#hedwig-pub-bo-ke}
+<Route data={{"path":"/blog/:username","categories":["blog"],"example":"/hashnode/blog/inklings","parameters":{"username":"博主名称,用户头像 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hashnode.dev/"]},"name":"用户博客","maintainers":["hnrainll"],"url":"hashnode.dev/","description":":::tip\n username 为博主用户名,而非`xxx.hashnode.dev`中`xxx`所代表的 blog 地址。\n :::","location":"blog.ts"}} />
-<Route author="zwithz" example="/blogs/hedwig/zmd" path="/blogs/hedwig/:type" paramsDesc={['分类, 见下表']} />
-
-| 呆唯的 Newsletter | 0neSe7en 的技术周刊 | 地心引力 | 宪学宪卖 | Comeet 每周精选 | 无鸡之谈 | 我有一片芝麻地 |
-| ----------------- | ------------------- | -------- | -------- | --------------- | -------- | -------------- |
-| hirasawayui | se7en | walnut | themez | comeet | sunskyxh | zmd |
-
-> 原则上只要是 `type`.hedwig.pub 都可以匹配。
-
-## Hexo {#hexo}
-
-### Blog using Next theme {#hexo-blog-using-next-theme}
-
-<Route author="fengkx" path="/hexo/next/:url" example="/hexo/next/archive.diygod.me" paramsDesc={['the blog URL without the protocol (http:// and https://)']} configRequired="1" />
-
-### Blog using Yilia theme {#hexo-blog-using-yilia-theme}
-
-<Route author="aha2mao" path="/hexo/yilia/:url" example="/hexo/yilia/cloudstone.xin" paramsDesc={['the blog URL without the protocol (http:// and https://)']} configRequired="1" />
-
-### Blog using Fluid theme {#hexo-blog-using-fluid-theme}
-
-<Route author="gkkeys" path="/hexo/fluid/:url" example="/hexo/fluid/blog.tonyzhao.xyz" paramsDesc={['the blog URL without the protocol (http:// and https://)']} configRequired="1" />
-
-## HiFeng'Blog {#hifeng-blog}
-
-### 博客 {#hifeng-blog-bo-ke}
-
-<Route author="aneasystone" example="/hicairo" path="/hicairo" />
+:::tip
+username 为博主用户名,而非`xxx.hashnode.dev`中`xxx`所代表的 blog 地址。
+:::
## Ian Spriggss {#ian-spriggss}
### Category {#ian-spriggss-category}
-<Route author="nczitzk" example="/ianspriggs/portraits" path="/ianspriggs/:category?" paramsDesc={['Category, see below, 3D PORTRAITS by default']} radar="1">
- | 3D PORTRAITS | CHARACTERS |
- | ------------ | ---------- |
- | portraits | characters |
-</Route>
+<Route data={{"path":"/:category?","categories":["blog"],"example":"/ianspriggs/portraits","parameters":{"category":"Category, see below, 3D PORTRAITS by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"description":"| 3D PORTRAITS | CHARACTERS |\n | ------------ | ---------- |\n | portraits | characters |","location":"index.ts"}} />
+
+| 3D PORTRAITS | CHARACTERS |
+| ------------ | ---------- |
+| portraits | characters |
## Kun Cheng {#kun-cheng}
### Essay {#kun-cheng-essay}
-<Route author="nczitzk" example="/kunchengblog/essay" path="/kunchengblog/essay" radar="1" />
-
-## LaTeX 开源小屋 {#latex-kai-yuan-xiao-wu}
-
-### 首页 {#latex-kai-yuan-xiao-wu-shou-ye}
-
-<Route author="kt286 nczitzk" example="/latexstudio/home" path="/latexstudio/home" />
-
-## LeeMeng {#leemeng}
-
-### blog {#leemeng-blog}
-
-<Route author="xyqfer" example="/leemeng" path="/leemeng" />
+<Route data={{"path":"/essay","categories":["blog"],"example":"/kunchengblog/essay","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kunchengblog.com/essay"]},"name":"Essay","maintainers":["nczitzk"],"url":"kunchengblog.com/essay","location":"essay.ts"}} />
## MacMenuBar {#macmenubar}
### Recently {#macmenubar-recently}
-<Route author="5upernova-heng" example="/macmenubar/recently/developer-apps,system-tools" path="/macmenubar/recently/:category?" paramsDesc={['Category path name, seperate by comma, default is all categories. Category path name can be found in url']} radar="1" />
+<Route data={{"path":"/recently/:category?","categories":["blog"],"example":"/macmenubar/recently/developer-apps,system-tools","parameters":{"category":"Category path name, seperate by comma, default is all categories. Category path name can be found in url"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Recently","maintainers":["5upernova-heng"],"location":"recently.ts"}} />
## Medium {#medium}
### List {#medium-list}
-<Route author="ImSingee" example="/medium/list/imsingee/f2d8d48096a9" path="/medium/list/:user/:catalogId" paramsDesc={['Username', 'List ID']}>
- The List ID is the last part of the URL after `-`, for example, the username in [https://medium.com/@imsingee/list/collection-7e67004f23f9](https://medium.com/@imsingee/list/collection-7e67004f23f9) is `imsingee`, and the ID is `7e67004f23f9`.
-
- :::warning
- To access private lists, only self-hosting is supported.
- :::
-</Route>
+<Route data={{"path":"/list/:user/:catalogId","categories":["blog"],"example":"/medium/list/imsingee/f2d8d48096a9","parameters":{"user":"Username","catalogId":"List ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"List","maintainers":["ImSingee"],"description":"The List ID is the last part of the URL after `-`, for example, the username in [https://medium.com/@imsingee/list/collection-7e67004f23f9](https://medium.com/@imsingee/list/collection-7e67004f23f9) is `imsingee`, and the ID is `7e67004f23f9`.\n\n :::warning\n To access private lists, only self-hosting is supported.\n :::","location":"list.ts"}} />
-### Personalized Recommendations - For You {#medium-personalized-recommendations-for-you}
+The List ID is the last part of the URL after `-`, for example, the username in [https://medium.com/@imsingee/list/collection-7e67004f23f9](https://medium.com/@imsingee/list/collection-7e67004f23f9) is `imsingee`, and the ID is `7e67004f23f9`.
-<Route author="ImSingee" example="/medium/for-you/imsingee" path="/medium/for-you/:user" paramsDesc={['Username']} configRequired="1">
- :::warning
- Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
- :::
-</Route>
+:::warning
+To access private lists, only self-hosting is supported.
+:::
### Personalized Recommendations - Following {#medium-personalized-recommendations-following}
-<Route author="ImSingee" example="/medium/following/imsingee" path="/medium/following/:user" paramsDesc={['Username']} configRequired="1">
- :::warning
- Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
- :::
-</Route>
+<Route data={{"path":"/following/:user","categories":["blog"],"example":"/medium/following/imsingee","parameters":{"user":"Username"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Personalized Recommendations - Following","maintainers":["ImSingee"],"description":":::warning\n Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.\n :::","location":"following.ts"}} />
-### Personalized Recommendations - Tag {#medium-personalized-recommendations-tag}
-
-<Route author="ImSingee" example="/medium/tag/imsingee/cybersecurity" path="/medium/tag/:user/:tag" paramsDesc={['Username', 'Subscribed Tag']} configRequired="1">
- There are many tags, which can be obtained by clicking on a tag from the homepage and looking at the URL. For example, if the URL is `https://medium.com/?tag=web3`, then the tag is `web3`.
-
- :::warning
- Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
- :::
-</Route>
-
-## Paul Graham {#paul-graham}
-
-### Essays {#paul-graham-essays}
+:::warning
+Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
+:::
-<Route author="Maecenas nczitzk" example="/paulgraham/articles" path="/paulgraham/articles" radar="1" />
+### Personalized Recommendations - For You {#medium-personalized-recommendations-for-you}
-## Phrack Magazine {#phrack-magazine}
+<Route data={{"path":"/for-you/:user","categories":["blog"],"example":"/medium/for-you/imsingee","parameters":{"user":"Username"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Personalized Recommendations - For You","maintainers":["ImSingee"],"description":":::warning\n Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.\n :::","location":"for-you.ts"}} />
-### Article {#phrack-magazine-article}
+:::warning
+Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
+:::
-<Route author="CitrusIce" example="/phrack" path="/phrack" />
+### Personalized Recommendations - Tag {#medium-personalized-recommendations-tag}
-## Stratechery by Ben Thompson {#stratechery-by-ben-thompson}
+<Route data={{"path":"/tag/:user/:tag","categories":["blog"],"example":"/medium/tag/imsingee/cybersecurity","parameters":{"user":"Username","tag":"Subscribed Tag"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Personalized Recommendations - Tag","maintainers":["ImSingee"],"description":"There are many tags, which can be obtained by clicking on a tag from the homepage and looking at the URL. For example, if the URL is `https://medium.com/?tag=web3`, then the tag is `web3`.\n\n :::warning\n Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.\n :::","location":"tag.ts"}} />
-### Blog {#stratechery-by-ben-thompson-blog}
+There are many tags, which can be obtained by clicking on a tag from the homepage and looking at the URL. For example, if the URL is `https://medium.com/?tag=web3`, then the tag is `web3`.
-<Route author="chazeon" example="/stratechery" path="/stratechery" />
+:::warning
+Personalized recommendations require the cookie value after logging in, so only self-hosting is supported. See the configuration module on the deployment page for details.
+:::
-## Surfshark {#surfshark}
+## Paul Graham {#paul-graham}
-### Blog {#surfshark-blog}
+### Essays {#paul-graham-essays}
-<Route author="nczitzk" example="/surfshark/blog" path="/surfshark/blog/:category?" paramsDesc={['Category, can be found in URL ,see below, All by default']} radar="1">
- | Home | Cybersecurity | All things VPN | Internet censorship | Entertainment | News |
- | ---- | ------------- | -------------- | ------------------- | ------------- | ---- |
- | | cybersecurity | all-things-vpn | internet-censorship | entertainment | news |
+<Route data={{"path":["/articles","/essays","/"],"categories":["blog"],"example":"/paulgraham/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["paulgraham.com/articles.html"]},"name":"Essays","maintainers":["Maecenas","nczitzk"],"url":"paulgraham.com/articles.html","location":"article.ts"}} />
- #### Cybersecurity
+### Essays {#paul-graham-essays}
- | Internet Security | Mobile Security | Identity Protection | Phishing |
- | ------------------------------- | ----------------------------- | --------------------------------- | ---------------------- |
- | cybersecurity/internet-security | cybersecurity/mobile-security | cybersecurity/identity-protection | cybersecurity/phishing |
+<Route data={{"path":["/articles","/essays","/"],"categories":["blog"],"example":"/paulgraham/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["paulgraham.com/articles.html"]},"name":"Essays","maintainers":["Maecenas","nczitzk"],"url":"paulgraham.com/articles.html","location":"article.ts"}} />
- #### All things VPN
+### Essays {#paul-graham-essays}
- | Must-knows | Technology | Tips & Advice |
- | -------------- | -------------- | ------------------- |
- | vpn/must-knows | vpn/technology | vpn/tips-and-advice |
-</Route>
+<Route data={{"path":["/articles","/essays","/"],"categories":["blog"],"example":"/paulgraham/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["paulgraham.com/articles.html"]},"name":"Essays","maintainers":["Maecenas","nczitzk"],"url":"paulgraham.com/articles.html","location":"article.ts"}} />
## Uber 优步 {#uber-you-bu}
### Engineering {#uber-you-bu-engineering}
-<Route author="hulb" example="/uber/blog" path="/uber/blog/:maxPage?" paramsDesc={['max number of pages to retrieve, default to 1 page at most']} />
-
-## v1tx {#v1tx}
+<Route data={{"path":"/blog/:maxPage?","categories":["blog"],"example":"/uber/blog","parameters":{"maxPage":"max number of pages to retrieve, default to 1 page at most"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.uber.com/blog/pittsburgh/engineering"],"target":"/blog"},"name":"Engineering","maintainers":["hulb"],"url":"www.uber.com/blog/pittsburgh/engineering","location":"blog.ts"}} />
-### 最新文章 {#v1tx-zui-xin-wen-zhang}
-
-<Route author="TonyRL" example="/v1tx" path="/v1tx" radar="1" />
-
-## WordPress {#wordpress}
-
-### Blog {#wordpress-blog}
-
-<Route author="Lonor" example="/blogs/wordpress/lawrence.code.blog" path="/blogs/wordpress/:domain/:https?" paramsDesc={['WordPress blog domain', 'use https by default. options: `http` or `https`']} />
+## 博客园 {#bo-ke-yuan}
-## yuzu emulator {#yuzu-emulator}
+### 10 天推荐排行榜 {#bo-ke-yuan-10-tian-tui-jian-pai-hang-bang}
-### Entry {#yuzu-emulator-entry}
+<Route data={{"path":["/aggsite/topdiggs","/aggsite/topviews","/aggsite/headline","/cate/:type","/pick"],"categories":["blog"],"example":"/cnblogs/aggsite/topdiggs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnblogs.com/aggsite/topdiggs"]},"name":"10 天推荐排行榜","maintainers":["hujingnb"],"url":"www.cnblogs.com/aggsite/topdiggs","description":"在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)","location":"common.ts"}} />
-<Route author="nczitzk" example="/yuzu-emu/entry" path="/yuzu-emu/entry" />
-
-## 博客园 {#bo-ke-yuan}
+在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
### 10 天推荐排行榜 {#bo-ke-yuan-10-tian-tui-jian-pai-hang-bang}
-<Route author="hujingnb" example="/cnblogs/aggsite/topdiggs" path="/cnblogs/aggsite/topdiggs" radar="1" />
-
-### 48 小时阅读排行 {#bo-ke-yuan-48-xiao-shi-yue-du-pai-hang}
+<Route data={{"path":["/aggsite/topdiggs","/aggsite/topviews","/aggsite/headline","/cate/:type","/pick"],"categories":["blog"],"example":"/cnblogs/aggsite/topdiggs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnblogs.com/aggsite/topdiggs"]},"name":"10 天推荐排行榜","maintainers":["hujingnb"],"url":"www.cnblogs.com/aggsite/topdiggs","description":"在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)","location":"common.ts"}} />
-<Route author="hujingnb" example="/cnblogs/aggsite/topviews" path="/cnblogs/aggsite/topviews" radar="1" />
+在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
-### 编辑推荐 {#bo-ke-yuan-bian-ji-tui-jian}
+### 10 天推荐排行榜 {#bo-ke-yuan-10-tian-tui-jian-pai-hang-bang}
-<Route author="hujingnb" example="/cnblogs/aggsite/headline" path="/cnblogs/aggsite/headline" radar="1" />
+<Route data={{"path":["/aggsite/topdiggs","/aggsite/topviews","/aggsite/headline","/cate/:type","/pick"],"categories":["blog"],"example":"/cnblogs/aggsite/topdiggs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnblogs.com/aggsite/topdiggs"]},"name":"10 天推荐排行榜","maintainers":["hujingnb"],"url":"www.cnblogs.com/aggsite/topdiggs","description":"在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)","location":"common.ts"}} />
-### 分类 {#bo-ke-yuan-fen-lei}
+在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
-<Route author="hujingnb" example="/cnblogs/cate/go" path="/cnblogs/cate/:type" paramsDesc={['类型']} radar="1">
- 在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
-</Route>
+### 10 天推荐排行榜 {#bo-ke-yuan-10-tian-tui-jian-pai-hang-bang}
-### 精华区 {#bo-ke-yuan-jing-hua-qu}
+<Route data={{"path":["/aggsite/topdiggs","/aggsite/topviews","/aggsite/headline","/cate/:type","/pick"],"categories":["blog"],"example":"/cnblogs/aggsite/topdiggs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnblogs.com/aggsite/topdiggs"]},"name":"10 天推荐排行榜","maintainers":["hujingnb"],"url":"www.cnblogs.com/aggsite/topdiggs","description":"在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)","location":"common.ts"}} />
-<Route author="hujingnb" example="/cnblogs/pick" path="/cnblogs/pick" radar="1" />
+在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
-## 不良林 {#bu-liang-lin}
+### 10 天推荐排行榜 {#bo-ke-yuan-10-tian-tui-jian-pai-hang-bang}
-### 博客 {#bu-liang-lin-bo-ke}
+<Route data={{"path":["/aggsite/topdiggs","/aggsite/topviews","/aggsite/headline","/cate/:type","/pick"],"categories":["blog"],"example":"/cnblogs/aggsite/topdiggs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnblogs.com/aggsite/topdiggs"]},"name":"10 天推荐排行榜","maintainers":["hujingnb"],"url":"www.cnblogs.com/aggsite/topdiggs","description":"在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)","location":"common.ts"}} />
-<Route author="cnkmmk" example="/bulianglin" path="/bulianglin" radar="1" />
+在博客园主页的分类出可查看所有类型。例如,go 的分类地址为: `https://www.cnblogs.com/cate/go/`, 则: [`/cnblogs/cate/go`](https://rsshub.app/cnblogs/cate/go)
## 财新博客 {#cai-xin-bo-ke}
+> 网站部分内容需要付费订阅,RSS 仅做更新提醒,不含付费内容。
+
### 用户博客 {#cai-xin-bo-ke-yong-hu-bo-ke}
-<Route author="Maecenas" example="/caixin/blog/zhangwuchang" path="/caixin/blog/:column?" paramsDesc={['博客名称,可在博客主页的 URL 找到']}>
- 通过提取文章全文,以提供比官方源更佳的阅读体验.
-</Route>
+<Route data={{"path":"/blog/:column?","categories":["blog"],"example":"/caixin/blog/zhangwuchang","parameters":{"column":"博客名称,可在博客主页的 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户博客","maintainers":[],"description":"通过提取文章全文,以提供比官方源更佳的阅读体验.","location":"blog.ts"}} />
+
+通过提取文章全文,以提供比官方源更佳的阅读体验.
## 川流 {#chuan-liu}
### 严选 {#chuan-liu-yan-xuan}
-<Route author="nczitzk" example="/chuanliu/nice" path="/chuanliu/nice" radar="1" />
-
-## 大侠阿木 {#da-xia-a-mu}
-
-### 首页 {#da-xia-a-mu-shou-ye}
-
-<Route author="kt286" example="/daxiaamu/home" path="/daxiaamu/home" />
+<Route data={{"path":"/nice","categories":["blog"],"example":"/chuanliu/nice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chuanliu.org/nice"]},"name":"严选","maintainers":["nczitzk"],"url":"chuanliu.org/nice","location":"nice.ts"}} />
## 大眼仔旭 {#da-yan-zai-xu}
### 分类 {#da-yan-zai-xu-fen-lei}
-<Route author="nitezs" example="/dayanzai/windows" path="/dayanzai/:category/:fulltext?" paramsDesc={['分类','是否获取全文,需要获取则传入参数`y`']} radar="1">
- | 微软应用 | 安卓应用 | 教程资源 | 其他资源 |
- | -------- | -------- | -------- | -------- |
- | windows | android | tutorial | other |
-</Route>
-
-## 电脑玩物 {#dian-nao-wan-wu}
+<Route data={{"path":"/:category/:fulltext?","categories":["blog"],"example":"/dayanzai/windows","parameters":{"category":"分类","fulltext":"是否获取全文,需要获取则传入参数`y`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dayanzai.me/:category","dayanzai.me/:category/*"],"target":"/:category"},"name":"分类","maintainers":[],"description":"| 微软应用 | 安卓应用 | 教程资源 | 其他资源 |\n | -------- | -------- | -------- | -------- |\n | windows | android | tutorial | other |","location":"index.ts"}} />
-### 博客 {#dian-nao-wan-wu-bo-ke}
-
-<Route author="cnkmmk" example="/playpcesor" path="/playpcesor" radar="1" />
+| 微软应用 | 安卓应用 | 教程资源 | 其他资源 |
+| -------- | -------- | -------- | -------- |
+| windows | android | tutorial | other |
## 纷享销客 CRM {#fen-xiang-xiao-ke-crm}
### 文章 {#fen-xiang-xiao-ke-crm-wen-zhang}
-<Route author="akynazh" example="/fxiaoke/crm/news" path="/fxiaoke/crm/:type" paramsDesc={['文章类型, 见下表']}>
- | 全部文章 | 文章干货 | CRM 知识 | 纷享动态 | 签约喜报 |
- | -------- | -------- | -------- | --------------- | --------- |
- | news | blog | articles | about-influence | customers |
-</Route>
-
-## 国外主机测评 {#guo-wai-zhu-ji-ce-ping}
-
-### 最新发布 {#guo-wai-zhu-ji-ce-ping-zui-xin-fa-bu}
+<Route data={{"path":"/crm/:type","categories":["blog"],"example":"/fxiaoke/crm/news","parameters":{"type":"文章类型, 见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["akynazh"],"description":"| 全部文章 | 文章干货 | CRM 知识 | 纷享动态 | 签约喜报 |\n | -------- | -------- | -------- | --------------- | --------- |\n | news | blog | articles | about-influence | customers |","location":"crm.ts"}} />
-<Route author="cnkmmk" example="/zhujiceping" path="/zhujiceping" />
+| 全部文章 | 文章干货 | CRM 知识 | 纷享动态 | 签约喜报 |
+| -------- | -------- | -------- | --------------- | --------- |
+| news | blog | articles | about-influence | customers |
## 虎皮椒 {#hu-pi-jiao}
### 文章 {#hu-pi-jiao-wen-zhang}
-<Route author="wxluckly" example="/xunhupay/blog" path="/xunhupay/blog" radar="1" />
-
-## 荒岛 {#huang-dao}
-
-### 博客 {#huang-dao-bo-ke}
-
-<Route author="cnkmmk" example="/lala" path="/lala" />
-
-## 劍心.回憶 {#jian-xin-hui-yi}
-
-### 分类 {#jian-xin-hui-yi-fen-lei}
-
-<Route author="nczitzk" example="/kenshin" path="/kenshin/:category?/:type?" paramsDesc={['分类,见下表,默认为首页', '子分类,见下表,默认为首页']}>
- :::tip
- 如 `藝能新聞` 的 `日劇新聞` 分类,路由为 `/jnews/news_drama`
- :::
-
- 藝能新聞 jnews
-
- | 日劇新聞 | 日影新聞 | 日樂新聞 | 日藝新聞 |
- | ----------- | ----------- | ----------- | ------------------- |
- | news\_drama | news\_movie | news\_music | news\_entertainment |
-
- | 動漫新聞 | 藝人美照 | 清涼寫真 | 日本廣告 | 其他日聞 |
- | --------- | ------------ | ---------- | -------- | ------------ |
- | news\_acg | artist-photo | photoalbum | jpcm | news\_others |
-
- 旅遊情報 jpnews
-
- | 日本美食情報 | 日本甜點情報 | 日本零食情報 | 日本飲品情報 | 日本景點情報 |
- | ------------ | ------------- | ------------- | ------------- | ------------------ |
- | jpnews-food | jpnews-sweets | jpnews-okashi | jpnews-drinks | jpnews-attractions |
-
- | 日本玩樂情報 | 日本住宿情報 | 日本活動情報 | 日本購物情報 | 日本社會情報 |
- | ------------ | ------------ | ------------- | --------------- | -------------- |
- | jpnews-play | jpnews-hotel | jpnews-events | jpnews-shopping | jpnews-society |
-
- | 日本交通情報 | 日本天氣情報 |
- | -------------- | -------------- |
- | jpnews-traffic | jpnews-weather |
-
- 日劇世界 jdrama
-
- | 每周劇評 | 日劇總評 | 資料情報 |
- | --------------------- | -------------------- | ----------- |
- | drama\_review\_weekly | drama\_review\_final | drama\_data |
-
- | 深度日劇 | 收視報告 | 日劇專欄 | 劇迷互動 |
- | ----------- | ------------- | ------------- | ------------------ |
- | drama\_deep | drama\_rating | drama\_column | drama\_interactive |
-</Route>
-
-## 交流岛资源网 {#jiao-liu-dao-zi-yuan-wang}
-
-### 最新文章 {#jiao-liu-dao-zi-yuan-wang-zui-xin-wen-zhang}
-
-<Route author="TonyRL" example="/jiaoliudao" path="/jiaoliudao" radar="1" />
-
-## 敬维博客 {#jing-wei-bo-ke}
-
-### 文章 {#jing-wei-bo-ke-wen-zhang}
-
-<Route author="a180285" example="/blogs/jingwei.link" path="/blogs/jingwei.link" />
-
-## 每日安全 {#mei-ri-an-quan}
-
-### 推送 {#mei-ri-an-quan-tui-song}
-
-<Route author="LogicJake" example="/security/pulses" path="/security/pulses" anticrawler="1" />
-
-## 免費資源網路社群 {#mian-fei-zi-yuan-wang-lu-she-qun}
-
-### 博客 {#mian-fei-zi-yuan-wang-lu-she-qun-bo-ke}
-
-<Route author="cnkmmk" example="/free" path="/free" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/xunhupay/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.xunhupay.com/blog"]},"name":"文章","maintainers":["Joey"],"url":"www.xunhupay.com/blog","location":"index.ts"}} />
## 十年之约 {#shi-nian-zhi-yue}
### 专题展示 - 文章 {#shi-nian-zhi-yue-zhuan-ti-zhan-shi-wen-zhang}
-<Route author="7Wate a180285" example="/foreverblog/feeds" path="/foreverblog/feeds" radar="1" />
+<Route data={{"path":"/feeds","categories":["blog"],"example":"/foreverblog/feeds","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.foreverblog.cn/feeds.html"]},"name":"专题展示 - 文章","maintainers":["7Wate","a180285"],"url":"www.foreverblog.cn/feeds.html","location":"feeds.ts"}} />
## 土猛的员外 {#tu-meng-de-yuan-wai}
### 文章 {#tu-meng-de-yuan-wai-wen-zhang}
-<Route author="Levix" example="/luxiangdong/archive" path="/luxiangdong/archive" />
-
-## 王五四文集 {#wang-wu-si-wen-ji}
-
-### 文章 {#wang-wu-si-wen-ji-wen-zhang}
-
-<Route author="prnake" example="/blogs/wang54" path="/blogs/wang54/:id?" paramsDesc={['RSS抓取地址:https://wangwusiwj.blogspot.com/:id?,默认为2020']} />
-
-## 王垠博客 {#wang-yin-bo-ke}
-
-### 文章 {#wang-yin-bo-ke-wen-zhang}
-
-<Route author="junbaor SkiTiSu" example="/blogs/wangyin" path="/blogs/wangyin" />
+<Route data={{"path":"/archive","categories":["blog"],"example":"/luxiangdong/archive","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["luxiangdong.com/"]},"name":"文章","maintainers":["Levix"],"url":"luxiangdong.com/","location":"archive.ts"}} />
## 新语丝 {#xin-yu-si}
### 新到资料 {#xin-yu-si-xin-dao-zi-liao}
-<Route author="wenzhenl" example="/xys/new" path="/xys/new" radar="1" />
+<Route data={{"path":"/new","categories":["blog"],"example":"/xys/new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xys.org/","xys.org/new.html"]},"name":"新到资料","maintainers":["wenzhenl"],"url":"xys.org/","location":"new.ts"}} />
## 雨苁博客 {#yu-cong-bo-ke}
-### 首页 {#yu-cong-bo-ke-shou-ye}
-
-<Route author="XinRoom" example="/ddosi" path="/ddosi" anticrawler="1" />
-
### 分类 {#yu-cong-bo-ke-fen-lei}
-<Route author="XinRoom" example="/ddosi/category/黑客工具" path="/ddosi/category/:category?" />
+<Route data={{"path":"/category/:category?","categories":["blog"],"example":"/ddosi/category/黑客工具","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ddosi.org/category/:category/"],"target":"/category/:category"},"name":"分类","maintainers":[],"url":"ddosi.org/","location":"category.ts"}} />
## 云原生社区 {#yun-yuan-sheng-she-qu}
### 博客 {#yun-yuan-sheng-she-qu-bo-ke}
-<Route author="aneasystone" example="/cloudnative/blog" path="/cloudnative/blog" />
-
-## 赵容部落 {#zhao-rong-bu-luo}
-
-### 博客 {#zhao-rong-bu-luo-bo-ke}
-
-<Route author="cnkmmk" example="/zrblog" path="/zrblog" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/cloudnative/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"博客","maintainers":["aneasystone"],"location":"blog.ts"}} />
## 浙江大学可视分析小组 {#zhe-jiang-da-xue-ke-shi-fen-xi-xiao-zu}
### 博客 {#zhe-jiang-da-xue-ke-shi-fen-xi-xiao-zu-bo-ke}
-<Route author="KaiyoungYu" example="/zjuvag/blog" path="/zjuvag/blog" radar="1" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/zjuvag/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"博客","maintainers":["KaiyoungYu"],"location":"blog.ts"}} />
## 支流科技 {#zhi-liu-ke-ji}
### 博客 {#zhi-liu-ke-ji-bo-ke}
-<Route author="aneasystone" example="/apiseven/blog" path="/apiseven/blog" />
+<Route data={{"path":"/blog","categories":["blog"],"example":"/apiseven/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"博客","maintainers":["aneasystone"],"location":"blog.ts"}} />
## 竹白 {#zhu-bai}
-### 文章 {#zhu-bai-wen-zhang}
+### Unknown {#zhu-bai-unknown}
+
+<Route data={{"path":"/top20","categories":["blog"],"example":"/zhubai/top20","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["analy.zhubai.love/"]},"name":"Unknown","maintainers":["nczitzk"],"url":"analy.zhubai.love/","location":"top20.ts"}} />
-<Route author="naixy28" example="/zhubai/via" path="/zhubai/:id" paramsDesc={['`id` 为竹白主页 url 中的三级域名,如 via.zhubai.love 的 `id` 为 `via`']}>
- :::tip
- 在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`20`
- :::
-</Route>
+### 文章 {#zhu-bai-wen-zhang}
-### 上周热门 TOP 20 {#zhu-bai-shang-zhou-re-men-top-20}
+<Route data={{"path":"/:id","categories":["blog"],"example":"/zhubai/via","parameters":{"id":"`id` 为竹白主页 url 中的三级域名,如 via.zhubai.love 的 `id` 为 `via`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["naixy28"],"description":":::tip\n 在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`20`\n :::","location":"index.ts"}} />
-<Route author="nczitzk" example="/zhubai/top20" path="/zhubai/top20" radar="1" />
+:::tip
+在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`20`
+:::
diff --git a/website/docs/routes/design.mdx b/website/docs/routes/design.mdx
index 04d42ecfc4be02..6c7345954b677f 100644
--- a/website/docs/routes/design.mdx
+++ b/website/docs/routes/design.mdx
@@ -1,355 +1,223 @@
-# 🎨️ Design
-
-## Axis Studios {#axis-studios}
-
-### Work type {#axis-studios-work-type}
-
-<Route author="MisteryMonster" example="/axis-studios/work/full-service-cg-production" path="/axis-studios/:type/:tag?" paramsDesc={['`work`, `blog`', 'Work type URL: `compositing`, `full-service-cg-production`, `vfx-supervision`, `realtime`, `art-direction`, `animation`']}>
- Work type URL in articles. Such as: [https://axisstudiosgroup.com/work/full-service-cg-production](https://axisstudiosgroup.com/work/full-service-cg-production) the tag will be `full-service-cg-production`.
-
- Some tags are rarely used: `Script`, `direction`, `production`, `design-concept` etc。
-</Route>
+# design
## Behance {#behance}
### User Works {#behance-user-works}
-<Route author="MisteryMonster" example="/behance/mishapetrick" path="/behance/:user/:type?" paramsDesc={['username', 'type, `projects` or `appreciated`, `projects` by default']} radar="1">
- Behance user's profile URL, like [https://www.behance.net/mishapetrick](https://www.behance.net/mishapetrick) the username will be `mishapetrick`。
-</Route>
-
-## Blow Studio {#blow-studio}
-
-### Home {#blow-studio-home}
-
-<Route author="MisteryMonster" example="/blow-studio" path="/blow-studio" />
-
-## Blur Studio {#blur-studio}
+<Route data={{"path":"/:user/:type?","categories":["design"],"example":"/behance/mishapetrick","parameters":{"user":"username","type":"type, `projects` or `appreciated`, `projects` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Works","maintainers":["MisteryMonster"],"description":"Behance user's profile URL, like [https://www.behance.net/mishapetrick](https://www.behance.net/mishapetrick) the username will be `mishapetrick`。","location":"user.ts"}} />
-### Works {#blur-studio-works}
-
-<Route author="MisteryMonster" example="/blur-studio" path="/blur-studio" />
+Behance user's profile URL, like [https://www.behance.net/mishapetrick](https://www.behance.net/mishapetrick) the username will be `mishapetrick`。
## Boss 设计 {#boss-she-ji}
### 分类 {#boss-she-ji-fen-lei}
-<Route author="TonyRL" example="/bossdesign" path="/bossdesign/:category?" paramsDesc={['分类,可在对应分类页 URL 中找到,留空为全部']} radar="1">
- | Boss 笔记 | 电脑日志 | 素材资源 | 设计师神器 | 设计教程 | 设计资讯 |
- | --------- | --------------- | ---------------- | --------------- | --------------- | ------------------- |
- | note | computer-skills | design-resources | design-software | design-tutorial | design\_information |
-</Route>
+<Route data={{"path":"/:category?","categories":["design"],"example":"/bossdesign","parameters":{"category":"分类,可在对应分类页 URL 中找到,留空为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["TonyRL"],"description":"| Boss 笔记 | 电脑日志 | 素材资源 | 设计师神器 | 设计教程 | 设计资讯 |\n | --------- | --------------- | ---------------- | --------------- | --------------- | ------------------- |\n | note | computer-skills | design-resources | design-software | design-tutorial | design_information |","location":"index.ts"}} />
+
+| Boss 笔记 | 电脑日志 | 素材资源 | 设计师神器 | 设计教程 | 设计资讯 |
+| --------- | --------------- | ---------------- | --------------- | --------------- | ------------------- |
+| note | computer-skills | design-resources | design-software | design-tutorial | design\_information |
## Dribbble {#dribbble}
-### Popular {#dribbble-popular}
+### Keyword {#dribbble-keyword}
-<Route path="/dribbble/popular/:timeframe?" example="/dribbble/popular" paramsDesc={['support the following values: week, month, year and ever']} />
+<Route data={{"path":"/keyword/:keyword","categories":["design"],"example":"/dribbble/keyword/player","parameters":{"keyword":"desired keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keyword","maintainers":["DIYgod","loganrockmore"],"location":"keyword.ts"}} />
-### User (or team) {#dribbble-user-or-team}
+### Popular {#dribbble-popular}
-<Route path="/dribbble/user/:name" example="/dribbble/user/google" paramsDesc={['username, available in user\'s homepage URL']} />
+<Route data={{"path":"/popular/:timeframe?","categories":["design"],"example":"/dribbble/popular","parameters":{"timeframe":"support the following values: week, month, year and ever"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dribbble.com/"],"target":"/popular"},"name":"Popular","maintainers":["DIYgod","loganrockmore"],"url":"dribbble.com/","location":"popular.ts"}} />
-### Keyword {#dribbble-keyword}
+### User (or team) {#dribbble-user-or-team}
-<Route path="/dribbble/keyword/:keyword" example="/dribbble/keyword/player" paramsDesc={['desired keyword']} />
+<Route data={{"path":"/user/:name","categories":["design"],"example":"/dribbble/user/google","parameters":{"name":"username, available in user's homepage URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dribbble.com/:name"]},"name":"User (or team)","maintainers":["DIYgod","loganrockmore"],"location":"user.ts"}} />
## Eagle {#eagle}
### Blog {#eagle-blog}
-<Route author="Fatpandac" example="/eagle/blog/en" path="/eagle/blog/:cate?/:language?" paramsDesc={['Category, get by URL, `all` by default', 'Language, `cn`, `tw`, `en`, `en` by default']} radar="1" rsshub="1" />
+<Route data={{"path":"/blog/:cate?/:language?","categories":["design"],"example":"/eagle/blog/en","parameters":{"cate":"Category, get by URL, `all` by default","language":"Language, `cn`, `tw`, `en`, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cn.eagle.cool/blog"],"target":"/blog"},"name":"Blog","maintainers":["Fatpandac"],"url":"cn.eagle.cool/blog","location":"blog.ts"}} />
## Google {#google}
### Google Fonts {#google-google-fonts}
-<Route author="Fatpandac" example="/google/fonts/date" path="/google/fonts/:sort?" paramsDesc={['Sorting type, see below, default to `date`']} configRequired="1">
- | Newest | Trending | Most popular | Name | Number of styles |
- | :----: | :------: | :----------: | :---: | :--------------: |
- | date | trending | popularity | alpha | style |
-
- :::warning
- This route requires API key, therefore it's only available when self-hosting, refer to the [Deploy Guide](https://docs.rsshub.app/install/#configuration-route-specific-configurations) for route-specific configurations.
- :::
-</Route>
-
-## Inside Design {#inside-design}
-
-### Recent Stories {#inside-design-recent-stories}
-
-<Route author="miaoyafeng" example="/invisionapp/inside-design" path="/invisionapp/inside-design" />
-
-## LogoNews 标志情报局 {#logonews-biao-zhi-qing-bao-ju}
-
-### 首页 {#logonews-biao-zhi-qing-bao-ju-shou-ye}
-
-<Route author="nczitzk" example="/logonews" path="/logonews" />
-
-### 文章分类 {#logonews-biao-zhi-qing-bao-ju-wen-zhang-fen-lei}
-
-<Route author="nczitzk" example="/logonews/category/news/newsletter" path="/logonews/category/:category/:type" paramsDesc={['分类,可在对应分类页 URL 中找到', '类型,可在对应分类页 URL 中找到']}>
- 如 [简讯 - 标志情报局](https://www.logonews.cn/category/news/newsletter) 的 URL 为 `https://www.logonews.cn/category/news/newsletter`,可得路由为 [`/logonews/category/news/newsletter`](https://rsshub.app/logonews/category/news/newsletter)。
-</Route>
-
-### 文章标签 {#logonews-biao-zhi-qing-bao-ju-wen-zhang-biao-qian}
-
-<Route author="nczitzk" example="/logonews/tag/china" path="/logonews/tag/:tag" paramsDesc={['标签,可在对应标签页 URL 中找到']}>
- 如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。
-</Route>
-
-### 作品 {#logonews-biao-zhi-qing-bao-ju-zuo-pin}
-
-<Route author="nczitzk" example="/logonews/work" path="/logonews/work" />
-
-### 作品分类 {#logonews-biao-zhi-qing-bao-ju-zuo-pin-fen-lei}
+<Route data={{"path":"/fonts/:sort?","categories":["design"],"example":"/google/fonts/date","parameters":{"sort":"Sorting type, see below, default to `date`"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Google Fonts","maintainers":["Fatpandac"],"description":"| Newest | Trending | Most popular | Name | Number of styles |\n | :----: | :------: | :----------: | :---: | :--------------: |\n | date | trending | popularity | alpha | style |\n\n :::warning\n This route requires API key, therefore it's only available when self-hosting, refer to the [Deploy Guide](https://docs.rsshub.app/install/#configuration-route-specific-configurations) for route-specific configurations.\n :::","location":"fonts.ts"}} />
-<Route author="nczitzk" example="/logonews/work/categorys/hotel-catering" path="/logonews/work/categorys/:category" paramsDesc={['分类,可在对应分类页 URL 中找到']}>
- 如 [LOGO 作品分类:酒店餐饮 - 标志情报局](https://www.logonews.cn/work/categorys/hotel-catering) 的 URL 为 `https://www.logonews.cn/work/categorys/hotel-catering`,可得路由为 [`/logonews/work/categorys/hotel-catering`](https://rsshub.app/logonews/work/categorys/hotel-catering)。
-</Route>
+| Newest | Trending | Most popular | Name | Number of styles |
+| :----: | :------: | :----------: | :---: | :--------------: |
+| date | trending | popularity | alpha | style |
-### 作品标签 {#logonews-biao-zhi-qing-bao-ju-zuo-pin-biao-qian}
-
-<Route author="nczitzk" example="/logonews/work/tags/旅游" path="/logonews/work/tags/:tag?" paramsDesc={['标签,可在对应标签页 URL 中找到']}>
- 如 [LOGO 标签:旅游 - 标志情报局](https://www.logonews.cn/work/tags/旅游) 的 URL 为 [https://www.logonews.cn/work/tags/ 旅游](https://www.logonews.cn/work/tags/旅游),可得路由为 [`/logonews/work/tags/旅游`](https://rsshub.app/logonews/work/tags/旅游)。
-</Route>
-
-## Method Studios {#method-studios}
-
-### Menus {#method-studios-menus}
-
-<Route author="MisteryMonster" path="/method-studios/:menu?" example="/method-studios/games" paramsDesc={['URL behind /en: `features`, `advertising`, `episodic`, `games`, `methodmade`']}>
- Not support `main`, `news`.
-
- Default is under [https://www.methodstudios.com/en/features](https://www.methodstudios.com/en/features).
-</Route>
-
-## Monotype {#monotype}
-
-### Featured Article {#monotype-featured-article}
-
-<Route author="nczitzk" example="/monotype/article" path="/monotype/article" />
+:::warning
+This route requires API key, therefore it's only available when self-hosting, refer to the [Deploy Guide](https://docs.rsshub.app/install/#configuration-route-specific-configurations) for route-specific configurations.
+:::
## Notefolio {#notefolio}
### Works {#notefolio-works}
-<Route author="BianTan" example="/notefolio/search/1/pick/all/life" path="/notefolio/search/:category?/:order?/:time?/:query?" paramsDesc={['Category, see below, `all` by default', 'Order, `pick` as Notefolio Pick, `published` as Newest, `like` as like, `pick` by default', 'Time, `all` as All the time, `one-day` as Latest 24 hours, `week` as Latest week, `month` as Latest month, `three-month` as Latest 3 months, `all` by default', 'Keyword, empty by default']}>
- | Category | Name in Korean | Name in English |
- | -------- | ------------------ | ----------------------- |
- | all | 전체 | All |
- | 1 | 영상/모션그래픽 | Video / Motion Graphics |
- | 2 | 그래픽 디자인 | Graphic Design |
- | 3 | 브랜딩/편집 | Branding / Editing |
- | 4 | UI/UX | UI/UX |
- | 5 | 일러스트레이션 | Illustration |
- | 6 | 디지털 아트 | Digital Art |
- | 7 | 캐릭터 디자인 | Character Design |
- | 8 | 제품/패키지 디자인 | Product Package Design |
- | 9 | 포토그래피 | Photography |
- | 10 | 타이포그래피 | Typography |
- | 11 | 공예 | Crafts |
- | 12 | 파인아트 | Fine Art |
-</Route>
+<Route data={{"path":"/search/:category?/:order?/:time?/:query?","categories":["design"],"example":"/notefolio/search/1/pick/all/life","parameters":{"category":"Category, see below, `all` by default","order":"Order, `pick` as Notefolio Pick, `published` as Newest, `like` as like, `pick` by default","time":"Time, `all` as All the time, `one-day` as Latest 24 hours, `week` as Latest week, `month` as Latest month, `three-month` as Latest 3 months, `all` by default","query":"Keyword, empty by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["notefolio.net/search"]},"name":"Works","maintainers":["BianTan"],"url":"notefolio.net/search","description":"| Category | Name in Korean | Name in English |\n | -------- | ------------------ | ----------------------- |\n | all | 전체 | All |\n | 1 | 영상/모션그래픽 | Video / Motion Graphics |\n | 2 | 그래픽 디자인 | Graphic Design |\n | 3 | 브랜딩/편집 | Branding / Editing |\n | 4 | UI/UX | UI/UX |\n | 5 | 일러스트레이션 | Illustration |\n | 6 | 디지털 아트 | Digital Art |\n | 7 | 캐릭터 디자인 | Character Design |\n | 8 | 제품/패키지 디자인 | Product Package Design |\n | 9 | 포토그래피 | Photography |\n | 10 | 타이포그래피 | Typography |\n | 11 | 공예 | Crafts |\n | 12 | 파인아트 | Fine Art |","location":"search.ts"}} />
+
+| Category | Name in Korean | Name in English |
+| -------- | ------------------ | ----------------------- |
+| all | 전체 | All |
+| 1 | 영상/모션그래픽 | Video / Motion Graphics |
+| 2 | 그래픽 디자인 | Graphic Design |
+| 3 | 브랜딩/편집 | Branding / Editing |
+| 4 | UI/UX | UI/UX |
+| 5 | 일러스트레이션 | Illustration |
+| 6 | 디지털 아트 | Digital Art |
+| 7 | 캐릭터 디자인 | Character Design |
+| 8 | 제품/패키지 디자인 | Product Package Design |
+| 9 | 포토그래피 | Photography |
+| 10 | 타이포그래피 | Typography |
+| 11 | 공예 | Crafts |
+| 12 | 파인아트 | Fine Art |
## Shopping Design {#shopping-design}
### 文章列表 {#shopping-design-wen-zhang-lie-biao}
-<Route author="miles170" example="/shoppingdesign/posts" path="/shoppingdesign/posts" notOperational="1" />
-
-## UI 中国 {#ui-zhong-guo}
-
-### 推荐文章 {#ui-zhong-guo-tui-jian-wen-zhang}
-
-<Route author="WenryXu" example="/ui-cn/article" path="/ui-cn/article" />
-
-### 个人作品 {#ui-zhong-guo-ge-ren-zuo-pin}
-
-<Route author="WenryXu" example="/ui-cn/user/85974" path="/ui-cn/user/:id" paramsDesc={['用户id']} />
-
-## Unit Image {#unit-image}
-
-### Films {#unit-image-films}
-
-<Route author="MisteryMonster" example="/unit-image/films/vfx" path="/unit-image/films/:type?" paramsDesc={['Films type,`vfx`, `game-trailer`, `animation`, `commercials`, `making-of`']} />
+<Route data={{"path":"/posts","categories":["design"],"example":"/shoppingdesign/posts","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.shoppingdesign.com.tw/post"]},"name":"文章列表","maintainers":["miles170"],"url":"www.shoppingdesign.com.tw/post","location":"posts.ts"}} />
## 爱果果 {#ai-guo-guo}
### 最新 H5 {#ai-guo-guo-zui-xin-h5}
-<Route author="yuxinliu-alex" example="/iguoguo/html5" path="/iguoguo/html5" />
-
-## 优设网 {#you-she-wang}
-
-### 行业新闻 {#you-she-wang-hang-ye-xin-wen}
-
-<Route author="nczitzk" example="/uisdc/hangye" path="/uisdc/hangye/:caty?" paramsDesc={['分类,见下表,默认为全部新闻']} anticrawler="1">
- | 全部新闻 | 活动赛事 | 品牌资讯 | 新品推荐 |
- | -------- | --------------- | ---------- | ------------ |
- | | events-activity | brand-news | new-products |
-</Route>
+<Route data={{"path":"/html5","categories":["design"],"example":"/iguoguo/html5","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新 H5","maintainers":["yuxinliu-alex"],"location":"index.ts"}} />
## 站酷 {#zhan-ku}
-### 发现(+ 推荐预设) {#zhan-ku-fa-xian-tui-jian-yu-she}
-
-<Route author="junbaor nczitzk" example="/zcool/discover/all" path="/zcool/discover/:type?" paramsDesc={['预设参数,见下表']} radar="1" notOperational="1">
- 推荐类型
-
- | all | home | editor | article |
- | -------- | -------- | -------- | -------- |
- | 全部推荐 | 首页推荐 | 编辑精选 | 文章推荐 |
-</Route>
-
-### 发现(+ 查询参数) {#zhan-ku-fa-xian-cha-xun-can-shu}
+### Unknown {#zhan-ku-unknown}
-<Route author="nczitzk" example="/zcool/discover/cate=0&subCate=0" path="/zcool/discover/:query?" paramsDesc={['查询参数']} radar="1" notOperational="1">
- 在 [站酷发现页](https://www.zcool.com.cn/discover) 中选择好所有可选的查询参数后会跳转到对应搜索结果页面。此时地址栏 `https://www.zcool.com.cn/discover/` 后的字段即为查询参数。
-
- 如:选择 **精选** 分类下的 **运营设计** 子分类后,选择 **编辑精选**,默认 **视频** 取消勾选,默认 **城市** 和 **学校** 留空即全部,就会跳转到链接:
-
- `https://www.zcool.com.cn/discover?cate=0&subCate=617&hasVideo=0&city=0&college=0&recommendLevel=2&sort=9`
-
- 此时其查询参数为 `cate=0&subCate=617&hasVideo=0&city=0&college=0&recommendLevel=2&sort=9`。其对应的路由即 [`/zcool/discover/cate=0&subCate=617&hasVideo=0&city=0&college=0&recommendLevel=2&sort=9`](https://rsshub.app/zcool/discover/cate=0\&subCate=617\&hasVideo=0\&city=0\&college=0\&recommendLevel=2\&sort=9)
-</Route>
+<Route data={{"path":"/user/:uid","categories":["design"],"example":"/zcool/user/baiyong","parameters":{"uid":"个性域名前缀或者用户ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zcool.com.cn/u/:id"],"target":"/user/:id"},"name":"Unknown","maintainers":["junbaor"],"location":"user.ts"}} />
### 发现 {#zhan-ku-fa-xian}
-<Route author="nczitzk" example="/zcool/discover" path="/zcool/discover/:query?/:subCate?/:hasVideo?/:city?/:college?/:recommendLevel?/:sort?" paramsDesc={['查询参数或分类,若填写分类见下表,默认为空 或 `0` 即精选', '子分类,见下表,默认为 `0` 即该父分类下全部', '是否含视频,默认为 `0` 即全部,亦可选 `1` 即含视频', '地区代码,填入发现页中 `选择城市` 中的各级地名,如 `亚洲`、`中国`、`北京`、`纽约`、`巴黎`等', '学校,默认为 `0` 即全部', '推荐等级,见下表,默认为 `2` 即编辑精选', '排序方式,可选 `0` 即最新发布 或 `9` 即默认排序,默认为 `9`']} radar="1" notOperational="1">
- 查看 **精选** 分类下的全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0`](https://rsshub.app/zcool/discover/0)
+<Route data={{"path":"/discover/:query?/:subCate?/:hasVideo?/:city?/:college?/:recommendLevel?/:sort?","categories":["design"],"example":"/zcool/discover","parameters":{"query":"查询参数或分类,若填写分类见下表,默认为空 或 `0` 即精选","subCate":"子分类,见下表,默认为 `0` 即该父分类下全部","hasVideo":"是否含视频,默认为 `0` 即全部,亦可选 `1` 即含视频","city":"地区代码,填入发现页中 `选择城市` 中的各级地名,如 `亚洲`、`中国`、`北京`、`纽约`、`巴黎`等","college":"学校,默认为 `0` 即全部","recommendLevel":"推荐等级,见下表,默认为 `2` 即编辑精选","sort":"排序方式,可选 `0` 即最新发布 或 `9` 即默认排序,默认为 `9`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"发现","maintainers":["nczitzk"],"description":"查看 **精选** 分类下的全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0`](https://rsshub.app/zcool/discover/0)\n\n 查看 **精选** 分类下的 **运营设计** 子分类全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0/617`](https://rsshub.app/zcool/discover/0/617)\n\n 在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,可直接使用路由 [`/zcool/discover/0/617/1`](https://rsshub.app/zcool/discover/0/617/1)\n\n 在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,且城市选择 **北京**,可直接使用路由 [`/zcool/discover/0/617/1/北京`](https://rsshub.app/zcool/discover/0/617/1/北京)\n\n :::tip\n 下方仅提供 **分类及其子分类** 参数的代码。**学校** 参数的代码可以在 [站酷发现页](https://www.zcool.com.cn/discover) 中选择跳转后,从浏览器地址栏中找到。\n :::\n\n 分类 cate\n\n | 精选 | 平面 | 插画 | UI | 网页 | 摄影 | 三维 | 影视 | 空间 | 工业 / 产品 | 动漫 | 纯艺术 | 手工艺 | 服装 | 其他 |\n | ---- | ---- | ---- | -- | ---- | ---- | ---- | ---- | ---- | ----------- | ---- | ------ | ------ | ---- | ---- |\n | 0 | 8 | 1 | 17 | 607 | 33 | 24 | 610 | 609 | 499 | 608 | 612 | 611 | 613 | 44 |\n\n 子分类 subCate\n\n 精选 0\n\n | 运营设计 | 包装 | 动画 / 影视 | 人像摄影 | 商业插画 | 电商 | APP 界面 | 艺术插画 | 家装设计 | 海报 | 文章 |\n | -------- | ---- | ----------- | -------- | -------- | ---- | -------- | -------- | -------- | ---- | ------ |\n | 617 | 9 | 30 | 34 | 2 | 616 | 757 | 292 | 637 | 10 | 809824 |\n\n 平面 8\n\n | 包装 | 海报 | 品牌 | IP 形象 | 字体 / 字形 | Logo | 书籍 / 画册 | 宣传物料 | 图案 | 信息图表 | PPT/Keynote | 其他平面 | 文章 |\n | ---- | ---- | ---- | ------- | ----------- | ---- | ----------- | -------- | ---- | -------- | ----------- | -------- | ---- |\n | 9 | 10 | 15 | 779 | 14 | 13 | 12 | 534 | 624 | 625 | 626 | 11 | 809 |\n\n 插画 1\n\n | 商业插画 | 概念设定 | 游戏原画 | 绘本 | 儿童插画 | 艺术插画 | 创作习作 | 新锐潮流插画 | 像素画 | 文章 |\n | -------- | -------- | -------- | ---- | -------- | -------- | -------- | ------------ | ------ | ---- |\n | 2 | 5 | 685 | 631 | 684 | 292 | 7 | 3 | 4 | 819 |\n\n UI 17\n\n | APP 界面 | 游戏 UI | 软件界面 | 图标 | 主题 / 皮肤 | 交互 / UE | 动效设计 | 闪屏 / 壁纸 | 其他 UI | 文章 |\n | -------- | ------- | -------- | ---- | ----------- | --------- | -------- | ----------- | ------- | ---- |\n | 757 | 692 | 621 | 20 | 19 | 623 | 797 | 21 | 23 | 822 |\n\n 网页 607\n\n | 电商 | 企业官网 | 游戏 / 娱乐 | 运营设计 | 移动端网页 | 门户网站 | 个人网站 | 其他网页 | 文章 |\n | ---- | -------- | ----------- | -------- | ---------- | -------- | -------- | -------- | ---- |\n | 616 | 614 | 693 | 617 | 777 | 615 | 618 | 620 | 823 |\n\n 摄影 33\n\n | 人像摄影 | 风光摄影 | 人文 / 纪实摄影 | 美食摄影 | 产品摄影 | 环境 / 建筑摄影 | 时尚 / 艺术摄影 | 修图 / 后期 | 宠物摄影 | 婚礼摄影 | 其他摄影 | 文章 |\n | -------- | -------- | --------------- | -------- | -------- | --------------- | --------------- | ----------- | -------- | -------- | -------- | ---- |\n | 34 | 35 | 36 | 825 | 686 | 38 | 800 | 687 | 40 | 808 | 43 | 810 |\n\n 三维 24\n\n | 动画 / 影视 | 机械 / 交通 | 人物 / 生物 | 产品 | 场景 | 建筑 / 空间 | 其他三维 | 文章 |\n | ----------- | ----------- | ----------- | ---- | ---- | ----------- | -------- | ---- |\n | 30 | 25 | 27 | 807 | 26 | 29 | 32 | 818 |\n\n 影视 610\n\n | 短片 | Motion Graphic | 宣传片 | 影视后期 | 栏目片头 | MV | 设定 / 分镜 | 其他影视 | 文章 |\n | ---- | -------------- | ------ | -------- | -------- | --- | ----------- | -------- | ---- |\n | 645 | 649 | 804 | 646 | 647 | 644 | 650 | 651 | 817 |\n\n 空间 609\n\n | 家装设计 | 酒店餐饮设计 | 商业空间设计 | 建筑设计 | 舞台美术 | 展陈设计 | 景观设计 | 其他空间 | 文章 |\n | -------- | ------------ | ------------ | -------- | -------- | -------- | -------- | -------- | ---- |\n | 637 | 811 | 641 | 636 | 638 | 639 | 640 | 642 | 812 |\n\n 工业 / 产品 499\n\n | 生活用品 | 电子产品 | 交通工具 | 工业用品 / 机械 | 人机交互 | 玩具 | 其他工业 / 产品 | 文章 |\n | -------- | -------- | -------- | --------------- | -------- | ---- | --------------- | ---- |\n | 508 | 506 | 509 | 511 | 510 | 689 | 514 | 813 |\n\n 动漫 608\n\n | 短篇 / 格漫 | 中 / 长篇漫画 | 网络表情 | 单幅漫画 | 动画片 | 其他动漫 | 文章 |\n | ----------- | ------------- | -------- | -------- | ------ | -------- | ---- |\n | 628 | 629 | 632 | 627 | 633 | 635 | 820 |\n\n 纯艺术 612\n\n | 绘画 | 雕塑 | 书法 | 实验艺术 | 文章 |\n | ---- | ---- | ---- | -------- | ---- |\n | 659 | 662 | 668 | 657 | 821 |\n\n 手工艺 611\n\n | 工艺品设计 | 手办 / 模玩 | 首饰设计 | 其他手工艺 | 文章 |\n | ---------- | ----------- | -------- | ---------- | ---- |\n | 654 | 656 | 756 | 658 | 816 |\n\n 服装 613\n\n | 休闲 / 流行服饰 | 正装 / 礼服 | 传统 / 民族服饰 | 配饰 | 鞋履设计 | 儿童服饰 | 其他服装 | 文章 |\n | --------------- | ----------- | --------------- | ---- | -------- | -------- | -------- | ---- |\n | 672 | 671 | 814 | 677 | 676 | 673 | 680 | 815 |\n\n 其他 44\n\n | 文案 / 策划 | VR 设计 | 独立游戏 | 其他 | 文章 |\n | ----------- | ------- | -------- | ---- | ---- |\n | 417 | 798 | 683 | 45 | 824 |\n\n 推荐等级 recommendLevel\n\n | 全部 | 编辑精选 | 首页推荐 | 全部推荐 |\n | ---- | -------- | -------- | -------- |\n | 0 | 2 | 3 | 1 |","location":"discover.ts"}} />
- 查看 **精选** 分类下的 **运营设计** 子分类全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0/617`](https://rsshub.app/zcool/discover/0/617)
+查看 **精选** 分类下的全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0`](https://rsshub.app/zcool/discover/0)
- 在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,可直接使用路由 [`/zcool/discover/0/617/1`](https://rsshub.app/zcool/discover/0/617/1)
+查看 **精选** 分类下的 **运营设计** 子分类全部内容,其他参数选择默认,可直接使用路由 [`/zcool/discover/0/617`](https://rsshub.app/zcool/discover/0/617)
- 在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,且城市选择 **北京**,可直接使用路由 [`/zcool/discover/0/617/1/北京`](https://rsshub.app/zcool/discover/0/617/1/北京)
+在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,可直接使用路由 [`/zcool/discover/0/617/1`](https://rsshub.app/zcool/discover/0/617/1)
- :::tip
- 下方仅提供 **分类及其子分类** 参数的代码。**学校** 参数的代码可以在 [站酷发现页](https://www.zcool.com.cn/discover) 中选择跳转后,从浏览器地址栏中找到。
- :::
+在 **精选** 分类下的 **运营设计** 子分类全部内容基础上,筛选出有 **视频**,且城市选择 **北京**,可直接使用路由 [`/zcool/discover/0/617/1/北京`](https://rsshub.app/zcool/discover/0/617/1/北京)
- 分类 cate
+:::tip
+下方仅提供 **分类及其子分类** 参数的代码。**学校** 参数的代码可以在 [站酷发现页](https://www.zcool.com.cn/discover) 中选择跳转后,从浏览器地址栏中找到。
+:::
- | 精选 | 平面 | 插画 | UI | 网页 | 摄影 | 三维 | 影视 | 空间 | 工业 / 产品 | 动漫 | 纯艺术 | 手工艺 | 服装 | 其他 |
- | ---- | ---- | ---- | -- | ---- | ---- | ---- | ---- | ---- | ----------- | ---- | ------ | ------ | ---- | ---- |
- | 0 | 8 | 1 | 17 | 607 | 33 | 24 | 610 | 609 | 499 | 608 | 612 | 611 | 613 | 44 |
+分类 cate
- 子分类 subCate
+| 精选 | 平面 | 插画 | UI | 网页 | 摄影 | 三维 | 影视 | 空间 | 工业 / 产品 | 动漫 | 纯艺术 | 手工艺 | 服装 | 其他 |
+| ---- | ---- | ---- | -- | ---- | ---- | ---- | ---- | ---- | ----------- | ---- | ------ | ------ | ---- | ---- |
+| 0 | 8 | 1 | 17 | 607 | 33 | 24 | 610 | 609 | 499 | 608 | 612 | 611 | 613 | 44 |
- 精选 0
+子分类 subCate
- | 运营设计 | 包装 | 动画 / 影视 | 人像摄影 | 商业插画 | 电商 | APP 界面 | 艺术插画 | 家装设计 | 海报 | 文章 |
- | -------- | ---- | ----------- | -------- | -------- | ---- | -------- | -------- | -------- | ---- | ------ |
- | 617 | 9 | 30 | 34 | 2 | 616 | 757 | 292 | 637 | 10 | 809824 |
+精选 0
- 平面 8
+| 运营设计 | 包装 | 动画 / 影视 | 人像摄影 | 商业插画 | 电商 | APP 界面 | 艺术插画 | 家装设计 | 海报 | 文章 |
+| -------- | ---- | ----------- | -------- | -------- | ---- | -------- | -------- | -------- | ---- | ------ |
+| 617 | 9 | 30 | 34 | 2 | 616 | 757 | 292 | 637 | 10 | 809824 |
- | 包装 | 海报 | 品牌 | IP 形象 | 字体 / 字形 | Logo | 书籍 / 画册 | 宣传物料 | 图案 | 信息图表 | PPT/Keynote | 其他平面 | 文章 |
- | ---- | ---- | ---- | ------- | ----------- | ---- | ----------- | -------- | ---- | -------- | ----------- | -------- | ---- |
- | 9 | 10 | 15 | 779 | 14 | 13 | 12 | 534 | 624 | 625 | 626 | 11 | 809 |
+平面 8
- 插画 1
+| 包装 | 海报 | 品牌 | IP 形象 | 字体 / 字形 | Logo | 书籍 / 画册 | 宣传物料 | 图案 | 信息图表 | PPT/Keynote | 其他平面 | 文章 |
+| ---- | ---- | ---- | ------- | ----------- | ---- | ----------- | -------- | ---- | -------- | ----------- | -------- | ---- |
+| 9 | 10 | 15 | 779 | 14 | 13 | 12 | 534 | 624 | 625 | 626 | 11 | 809 |
- | 商业插画 | 概念设定 | 游戏原画 | 绘本 | 儿童插画 | 艺术插画 | 创作习作 | 新锐潮流插画 | 像素画 | 文章 |
- | -------- | -------- | -------- | ---- | -------- | -------- | -------- | ------------ | ------ | ---- |
- | 2 | 5 | 685 | 631 | 684 | 292 | 7 | 3 | 4 | 819 |
+插画 1
- UI 17
+| 商业插画 | 概念设定 | 游戏原画 | 绘本 | 儿童插画 | 艺术插画 | 创作习作 | 新锐潮流插画 | 像素画 | 文章 |
+| -------- | -------- | -------- | ---- | -------- | -------- | -------- | ------------ | ------ | ---- |
+| 2 | 5 | 685 | 631 | 684 | 292 | 7 | 3 | 4 | 819 |
- | APP 界面 | 游戏 UI | 软件界面 | 图标 | 主题 / 皮肤 | 交互 / UE | 动效设计 | 闪屏 / 壁纸 | 其他 UI | 文章 |
- | -------- | ------- | -------- | ---- | ----------- | --------- | -------- | ----------- | ------- | ---- |
- | 757 | 692 | 621 | 20 | 19 | 623 | 797 | 21 | 23 | 822 |
+UI 17
- 网页 607
+| APP 界面 | 游戏 UI | 软件界面 | 图标 | 主题 / 皮肤 | 交互 / UE | 动效设计 | 闪屏 / 壁纸 | 其他 UI | 文章 |
+| -------- | ------- | -------- | ---- | ----------- | --------- | -------- | ----------- | ------- | ---- |
+| 757 | 692 | 621 | 20 | 19 | 623 | 797 | 21 | 23 | 822 |
- | 电商 | 企业官网 | 游戏 / 娱乐 | 运营设计 | 移动端网页 | 门户网站 | 个人网站 | 其他网页 | 文章 |
- | ---- | -------- | ----------- | -------- | ---------- | -------- | -------- | -------- | ---- |
- | 616 | 614 | 693 | 617 | 777 | 615 | 618 | 620 | 823 |
+网页 607
- 摄影 33
+| 电商 | 企业官网 | 游戏 / 娱乐 | 运营设计 | 移动端网页 | 门户网站 | 个人网站 | 其他网页 | 文章 |
+| ---- | -------- | ----------- | -------- | ---------- | -------- | -------- | -------- | ---- |
+| 616 | 614 | 693 | 617 | 777 | 615 | 618 | 620 | 823 |
- | 人像摄影 | 风光摄影 | 人文 / 纪实摄影 | 美食摄影 | 产品摄影 | 环境 / 建筑摄影 | 时尚 / 艺术摄影 | 修图 / 后期 | 宠物摄影 | 婚礼摄影 | 其他摄影 | 文章 |
- | -------- | -------- | --------------- | -------- | -------- | --------------- | --------------- | ----------- | -------- | -------- | -------- | ---- |
- | 34 | 35 | 36 | 825 | 686 | 38 | 800 | 687 | 40 | 808 | 43 | 810 |
+摄影 33
- 三维 24
+| 人像摄影 | 风光摄影 | 人文 / 纪实摄影 | 美食摄影 | 产品摄影 | 环境 / 建筑摄影 | 时尚 / 艺术摄影 | 修图 / 后期 | 宠物摄影 | 婚礼摄影 | 其他摄影 | 文章 |
+| -------- | -------- | --------------- | -------- | -------- | --------------- | --------------- | ----------- | -------- | -------- | -------- | ---- |
+| 34 | 35 | 36 | 825 | 686 | 38 | 800 | 687 | 40 | 808 | 43 | 810 |
- | 动画 / 影视 | 机械 / 交通 | 人物 / 生物 | 产品 | 场景 | 建筑 / 空间 | 其他三维 | 文章 |
- | ----------- | ----------- | ----------- | ---- | ---- | ----------- | -------- | ---- |
- | 30 | 25 | 27 | 807 | 26 | 29 | 32 | 818 |
+三维 24
- 影视 610
+| 动画 / 影视 | 机械 / 交通 | 人物 / 生物 | 产品 | 场景 | 建筑 / 空间 | 其他三维 | 文章 |
+| ----------- | ----------- | ----------- | ---- | ---- | ----------- | -------- | ---- |
+| 30 | 25 | 27 | 807 | 26 | 29 | 32 | 818 |
- | 短片 | Motion Graphic | 宣传片 | 影视后期 | 栏目片头 | MV | 设定 / 分镜 | 其他影视 | 文章 |
- | ---- | -------------- | ------ | -------- | -------- | --- | ----------- | -------- | ---- |
- | 645 | 649 | 804 | 646 | 647 | 644 | 650 | 651 | 817 |
+影视 610
- 空间 609
+| 短片 | Motion Graphic | 宣传片 | 影视后期 | 栏目片头 | MV | 设定 / 分镜 | 其他影视 | 文章 |
+| ---- | -------------- | ------ | -------- | -------- | --- | ----------- | -------- | ---- |
+| 645 | 649 | 804 | 646 | 647 | 644 | 650 | 651 | 817 |
- | 家装设计 | 酒店餐饮设计 | 商业空间设计 | 建筑设计 | 舞台美术 | 展陈设计 | 景观设计 | 其他空间 | 文章 |
- | -------- | ------------ | ------------ | -------- | -------- | -------- | -------- | -------- | ---- |
- | 637 | 811 | 641 | 636 | 638 | 639 | 640 | 642 | 812 |
+空间 609
- 工业 / 产品 499
+| 家装设计 | 酒店餐饮设计 | 商业空间设计 | 建筑设计 | 舞台美术 | 展陈设计 | 景观设计 | 其他空间 | 文章 |
+| -------- | ------------ | ------------ | -------- | -------- | -------- | -------- | -------- | ---- |
+| 637 | 811 | 641 | 636 | 638 | 639 | 640 | 642 | 812 |
- | 生活用品 | 电子产品 | 交通工具 | 工业用品 / 机械 | 人机交互 | 玩具 | 其他工业 / 产品 | 文章 |
- | -------- | -------- | -------- | --------------- | -------- | ---- | --------------- | ---- |
- | 508 | 506 | 509 | 511 | 510 | 689 | 514 | 813 |
+工业 / 产品 499
- 动漫 608
+| 生活用品 | 电子产品 | 交通工具 | 工业用品 / 机械 | 人机交互 | 玩具 | 其他工业 / 产品 | 文章 |
+| -------- | -------- | -------- | --------------- | -------- | ---- | --------------- | ---- |
+| 508 | 506 | 509 | 511 | 510 | 689 | 514 | 813 |
- | 短篇 / 格漫 | 中 / 长篇漫画 | 网络表情 | 单幅漫画 | 动画片 | 其他动漫 | 文章 |
- | ----------- | ------------- | -------- | -------- | ------ | -------- | ---- |
- | 628 | 629 | 632 | 627 | 633 | 635 | 820 |
+动漫 608
- 纯艺术 612
+| 短篇 / 格漫 | 中 / 长篇漫画 | 网络表情 | 单幅漫画 | 动画片 | 其他动漫 | 文章 |
+| ----------- | ------------- | -------- | -------- | ------ | -------- | ---- |
+| 628 | 629 | 632 | 627 | 633 | 635 | 820 |
- | 绘画 | 雕塑 | 书法 | 实验艺术 | 文章 |
- | ---- | ---- | ---- | -------- | ---- |
- | 659 | 662 | 668 | 657 | 821 |
+纯艺术 612
- 手工艺 611
+| 绘画 | 雕塑 | 书法 | 实验艺术 | 文章 |
+| ---- | ---- | ---- | -------- | ---- |
+| 659 | 662 | 668 | 657 | 821 |
- | 工艺品设计 | 手办 / 模玩 | 首饰设计 | 其他手工艺 | 文章 |
- | ---------- | ----------- | -------- | ---------- | ---- |
- | 654 | 656 | 756 | 658 | 816 |
+手工艺 611
- 服装 613
+| 工艺品设计 | 手办 / 模玩 | 首饰设计 | 其他手工艺 | 文章 |
+| ---------- | ----------- | -------- | ---------- | ---- |
+| 654 | 656 | 756 | 658 | 816 |
- | 休闲 / 流行服饰 | 正装 / 礼服 | 传统 / 民族服饰 | 配饰 | 鞋履设计 | 儿童服饰 | 其他服装 | 文章 |
- | --------------- | ----------- | --------------- | ---- | -------- | -------- | -------- | ---- |
- | 672 | 671 | 814 | 677 | 676 | 673 | 680 | 815 |
+服装 613
- 其他 44
+| 休闲 / 流行服饰 | 正装 / 礼服 | 传统 / 民族服饰 | 配饰 | 鞋履设计 | 儿童服饰 | 其他服装 | 文章 |
+| --------------- | ----------- | --------------- | ---- | -------- | -------- | -------- | ---- |
+| 672 | 671 | 814 | 677 | 676 | 673 | 680 | 815 |
- | 文案 / 策划 | VR 设计 | 独立游戏 | 其他 | 文章 |
- | ----------- | ------- | -------- | ---- | ---- |
- | 417 | 798 | 683 | 45 | 824 |
+其他 44
- 推荐等级 recommendLevel
+| 文案 / 策划 | VR 设计 | 独立游戏 | 其他 | 文章 |
+| ----------- | ------- | -------- | ---- | ---- |
+| 417 | 798 | 683 | 45 | 824 |
- | 全部 | 编辑精选 | 首页推荐 | 全部推荐 |
- | ---- | -------- | -------- | -------- |
- | 0 | 2 | 3 | 1 |
-</Route>
+推荐等级 recommendLevel
-### 作品总榜单 {#zhan-ku-zuo-pin-zong-bang-dan}
+| 全部 | 编辑精选 | 首页推荐 | 全部推荐 |
+| ---- | -------- | -------- | -------- |
+| 0 | 2 | 3 | 1 |
-<Route author="yuuow" example="/zcool/top/design" path="/zcool/top/:type" paramsDesc={['推荐类型,详见下面的表格']} radar="1" notOperational="1">
- 榜单类型
-
- | design | article |
- | -------- | -------- |
- | 作品榜单 | 文章榜单 |
-</Route>
-
-### 用户作品 {#zhan-ku-yong-hu-zuo-pin}
+### 作品总榜单 {#zhan-ku-zuo-pin-zong-bang-dan}
-<Route author="junbaor" example="/zcool/user/baiyong" path="/zcool/user/:uid" paramsDesc={['个性域名前缀或者用户ID']} radar="1" notOperational="1">
- 例如:
+<Route data={{"path":"/top/:type","categories":["design"],"example":"/zcool/top/design","parameters":{"type":"推荐类型,详见下面的表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作品总榜单","maintainers":["yuuow"],"description":"榜单类型\n\n | design | article |\n | -------- | -------- |\n | 作品榜单 | 文章榜单 |","location":"top.ts"}} />
- 站酷的个人主页 `https://baiyong.zcool.com.cn` 对应 rss 路径 `/zcool/user/baiyong`
+榜单类型
- 站酷的个人主页 `https://www.zcool.com.cn/u/568339` 对应 rss 路径 `/zcool/user/568339`
-</Route>
+| design | article |
+| -------- | -------- |
+| 作品榜单 | 文章榜单 |
diff --git a/website/docs/routes/finance.mdx b/website/docs/routes/finance.mdx
index 5554f7a043cf40..d9a514d0045c10 100644
--- a/website/docs/routes/finance.mdx
+++ b/website/docs/routes/finance.mdx
@@ -1,277 +1,182 @@
-# 💰 Finance
-
-## AI 财经社 {#ai-cai-jing-she}
-
-### 最新文章 {#ai-cai-jing-she-zui-xin-wen-zhang}
-
-<Route author="nczitzk" example="/aicaijing/latest" path="/aicaijing/latest" />
-
-### 封面文章 {#ai-cai-jing-she-feng-mian-wen-zhang}
-
-<Route author="nczitzk" example="/aicaijing/cover" path="/aicaijing/cover" />
-
-### 推荐资讯 {#ai-cai-jing-she-tui-jian-zi-xun}
-
-<Route author="nczitzk" example="/aicaijing/recommend" path="/aicaijing/recommend" />
-
-### 热点 & 深度 {#ai-cai-jing-she-re-dian-shen-du}
-
-<Route author="nczitzk" example="/aicaijing/information/14" path="/aicaijing/information/:id?" paramsDesc={['栏目 id,可在对应栏目页 URL 中找到,默认为 14,即热点最新']}>
- | 栏目 id | 栏目 |
- | ------- | ----------- |
- | 14 | 热点 - 最新 |
- | 5 | 热点 - 科技 |
- | 9 | 热点 - 消费 |
- | 7 | 热点 - 出行 |
- | 13 | 热点 - 文娱 |
- | 10 | 热点 - 教育 |
- | 25 | 热点 - 地产 |
- | 11 | 热点 - 更多 |
- | 28 | 深度 - 出行 |
- | 29 | 深度 - 科技 |
- | 31 | 深度 - 消费 |
- | 33 | 深度 - 教育 |
- | 34 | 深度 - 更多 |
- | 8 | 深度 - 地产 |
- | 6 | 深度 - 文娱 |
-</Route>
+# finance
## AInvest {#ainvest}
### Latest Article {#ainvest-latest-article}
-<Route author="TonyRL" example="/ainvest/article" path="/ainvest/article" radar="1" />
+<Route data={{"path":"/article","categories":["finance"],"example":"/ainvest/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ainvest.com/news"]},"name":"Latest Article","maintainers":["TonyRL"],"url":"ainvest.com/news","location":"article.ts"}} />
### Latest News {#ainvest-latest-news}
-<Route author="TonyRL" example="/ainvest/news" path="/ainvest/news" radar="1" />
+<Route data={{"path":"/news","categories":["finance"],"example":"/ainvest/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ainvest.com/news"]},"name":"Latest News","maintainers":["TonyRL"],"url":"ainvest.com/news","location":"news.ts"}} />
## BigQuant {#bigquant}
### 专题报告 {#bigquant-zhuan-ti-bao-gao}
-<Route author="nczitzk" example="/bigquant/collections" path="/bigquant/collections" />
+<Route data={{"path":"/collections","categories":["finance"],"example":"/bigquant/collections","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bigquant.com/"]},"name":"专题报告","maintainers":["nczitzk"],"url":"bigquant.com/","location":"collections.ts"}} />
## Bloomberg {#bloomberg}
-### News {#bloomberg-news}
-
-<Route author="bigfei" example="/bloomberg" path="/bloomberg/:site?" paramsDesc={['Site, see below, News by default']} anticrawler="1">
- | Site | Name |
- | ------------ | ------------ |
- | / | News |
- | bpol | Politics |
- | bbiz | Business |
- | markets | Markets |
- | technology | Technology |
- | green | Green |
- | wealth | Wealth |
- | pursuits | Pursuits |
- | bview | Opinion |
- | equality | Equality |
- | businessweek | Businessweek |
- | citylab | CityLab |
-</Route>
-
### Authors {#bloomberg-authors}
-<Route author="josh" example="/bloomberg/authors/ARbTQlRLRjE/matthew-s-levine" path="/bloomberg/authors/:id/:slug/:source?" paramsDesc={['Author ID, can be found in URL', 'Author Slug, can be found in URL', 'Data source, either `api` or `rss`,`api` by default']} anticrawler="1" radar="1" />
-
-## DL NEWS {#dl-news}
-
-### All Articles {#dl-news-all-articles}
-
-<Route author="Rjnishant530" example="/dlnews" path="/dlnews" radar="1" />
-
-### Topic {#dl-news-topic}
-
-<Route author="Rjnishant530" example="/dlnews/fintech" path="/dlnews/:category" paramsDesc={['Find in Table. Defaults to All articles']} radar="1" notOperational="1">
- | Topic | Link |
- | ---------------- | -------------- |
- | DeFi | defi |
- | Fintech/VC/Deals | fintech |
- | Llama U | llama-u |
- | Markets | markets |
- | People & Culture | people-culture |
- | Regulation | regulation |
- | Snapshot | snapshot |
- | Web3 | web3 |
-</Route>
+<Route data={{"path":"/authors/:id/:slug/:source?","categories":["finance"],"example":"/bloomberg/authors/ARbTQlRLRjE/matthew-s-levine","parameters":{"id":"Author ID, can be found in URL","slug":"Author Slug, can be found in URL","source":"Data source, either `api` or `rss`,`api` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.bloomberg.com/*/authors/:id/:slug","www.bloomberg.com/authors/:id/:slug"],"target":"/authors/:id/:slug"},"name":"Authors","maintainers":["josh"],"location":"authors.ts"}} />
## DT 财经 {#dt-cai-jing}
### 数据洞察 {#dt-cai-jing-shu-ju-dong-cha}
-<Route author="nczitzk" example="/dtcj/datainsight" path="/dtcj/datainsight/:id?" paramsDesc={['分类,见下表,默认为全部']}>
- | 城数 | NEXT 情报局 | 专业精选 |
- | ---- | ----------- | -------- |
- | 3 | 1 | 4 |
-</Route>
+<Route data={{"path":"/datainsight/:id?","categories":["finance"],"example":"/dtcj/datainsight","parameters":{"id":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dtcj.com/insighttopic/:id"],"target":"/datainsight/:id"},"name":"数据洞察","maintainers":["nczitzk"],"url":"dtcj.com/dtcj/datainsight","description":"| 城数 | NEXT 情报局 | 专业精选 |\n | ---- | ----------- | -------- |\n | 3 | 1 | 4 |","location":"datainsight.ts"}} />
+
+| 城数 | NEXT 情报局 | 专业精选 |
+| ---- | ----------- | -------- |
+| 3 | 1 | 4 |
### 数据侠专栏 {#dt-cai-jing-shu-ju-xia-zhuan-lan}
-<Route author="nczitzk" example="/dtcj/datahero" path="/dtcj/datahero/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- | 侠创 | 纽约数据科学学院 | RS 实验所 | 阿里云天池 |
- | ---- | ---------------- | --------- | ---------- |
- | 5 | 6 | 9 | 10 |
-</Route>
+<Route data={{"path":"/datahero/:category?","categories":["finance"],"example":"/dtcj/datahero","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"数据侠专栏","maintainers":["nczitzk"],"description":"| 侠创 | 纽约数据科学学院 | RS 实验所 | 阿里云天池 |\n | ---- | ---------------- | --------- | ---------- |\n | 5 | 6 | 9 | 10 |","location":"datahero.ts"}} />
+
+| 侠创 | 纽约数据科学学院 | RS 实验所 | 阿里云天池 |
+| ---- | ---------------- | --------- | ---------- |
+| 5 | 6 | 9 | 10 |
## Finology Insider {#finology-insider}
### Bullets {#finology-insider-bullets}
-<Route author="Rjnishant530" example="/finology/bullets" path="/finology/bullets" radar="1" />
+<Route data={{"path":"/bullets","categories":["finance"],"example":"/finology/bullets","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["insider.finology.in/bullets"]},"name":"Bullets","maintainers":["Rjnishant530"],"url":"insider.finology.in/bullets","location":"bullets.ts"}} />
+
+### Category {#finology-insider-category}
+
+<Route data={{"path":["/:category","/tag/:topic"],"categories":["finance"],"example":"/finology/success-stories","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["insider.finology.in/:category"]},"name":"Category","maintainers":["Rjnishant530"],"description":":::note[Category]\n | Category | Link |\n | --------------------- | ------------------ |\n | **Business** | business |\n | Big Shots | entrepreneurship |\n | Startups | startups-india |\n | Brand Games | success-stories |\n | Juicy Scams | juicy-scams |\n | **Finance** | finance |\n | Macro Moves | economy |\n | News Platter | market-news |\n | Tax Club | tax |\n | Your Money | your-money |\n | **Invest** | investing |\n | Stock Market | stock-market |\n | Financial Ratios | stock-ratios |\n | Investor's Psychology | behavioral-finance |\n | Mutual Funds | mutual-fund |\n :::","location":"tag.ts"}} />
+
+:::note[Category]
+| Category | Link |
+| --------------------- | ------------------ |
+| **Business** | business |
+| Big Shots | entrepreneurship |
+| Startups | startups-india |
+| Brand Games | success-stories |
+| Juicy Scams | juicy-scams |
+| **Finance** | finance |
+| Macro Moves | economy |
+| News Platter | market-news |
+| Tax Club | tax |
+| Your Money | your-money |
+| **Invest** | investing |
+| Stock Market | stock-market |
+| Financial Ratios | stock-ratios |
+| Investor's Psychology | behavioral-finance |
+| Mutual Funds | mutual-fund |
+:::
### Category {#finology-insider-category}
-<Route author="Rjnishant530" example="/finology/success-stories" path="/finology/:category" paramDesc={['Refer Table below or find in URL']} radar="1">
- :::note[Category]
- | Category | Link |
- | --------------------- | ------------------ |
- | **Business** | business |
- | Big Shots | entrepreneurship |
- | Startups | startups-india |
- | Brand Games | success-stories |
- | Juicy Scams | juicy-scams |
- | **Finance** | finance |
- | Macro Moves | economy |
- | News Platter | market-news |
- | Tax Club | tax |
- | Your Money | your-money |
- | **Invest** | investing |
- | Stock Market | stock-market |
- | Financial Ratios | stock-ratios |
- | Investor's Psychology | behavioral-finance |
- | Mutual Funds | mutual-fund |
- :::
-</Route>
+<Route data={{"path":["/:category","/tag/:topic"],"categories":["finance"],"example":"/finology/success-stories","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["insider.finology.in/:category"]},"name":"Category","maintainers":["Rjnishant530"],"description":":::note[Category]\n | Category | Link |\n | --------------------- | ------------------ |\n | **Business** | business |\n | Big Shots | entrepreneurship |\n | Startups | startups-india |\n | Brand Games | success-stories |\n | Juicy Scams | juicy-scams |\n | **Finance** | finance |\n | Macro Moves | economy |\n | News Platter | market-news |\n | Tax Club | tax |\n | Your Money | your-money |\n | **Invest** | investing |\n | Stock Market | stock-market |\n | Financial Ratios | stock-ratios |\n | Investor's Psychology | behavioral-finance |\n | Mutual Funds | mutual-fund |\n :::","location":"tag.ts"}} />
+
+:::note[Category]
+| Category | Link |
+| --------------------- | ------------------ |
+| **Business** | business |
+| Big Shots | entrepreneurship |
+| Startups | startups-india |
+| Brand Games | success-stories |
+| Juicy Scams | juicy-scams |
+| **Finance** | finance |
+| Macro Moves | economy |
+| News Platter | market-news |
+| Tax Club | tax |
+| Your Money | your-money |
+| **Invest** | investing |
+| Stock Market | stock-market |
+| Financial Ratios | stock-ratios |
+| Investor's Psychology | behavioral-finance |
+| Mutual Funds | mutual-fund |
+:::
### Most Viewed {#finology-insider-most-viewed}
-<Route author="Rjnishant530" example="/finology/most-viewed/monthly" path="/finology/most-viewed/:time" paramDesc={['Accepts : `alltime` or `monthly` only']} radar="1" />
-
-### Trending Topic {#finology-insider-trending-topic}
-
-<Route author="Rjnishant530" example="/finology/tag/startups" path="/tag/:topic" paramDesc={['Refer Table below or find in URL']} radar="1">
- Topic
-
- | Topic | Link |
- | ------------------------ | ------------------------ |
- | Investment Decisions | investment-decisions |
- | Investing 101 | investing-101 |
- | Stock Markets | stock-markets |
- | business news india | business-news-india |
- | Company Analysis | company-analysis |
- | Business and brand tales | business-and-brand-tales |
- | Featured | featured |
- | Fundamental Analysis | fundamental-analysis |
- | Business Story | business-story |
- | All Biz | all-biz |
- | Stock Analysis | stock-analysis |
- | Automobile Industry | automobile-industry |
- | Indian Economy | indian-economy |
- | Govt's Words | govt%27s-words |
- | Behavioral Finance | behavioral-finance |
- | Global Economy | global-economy |
- | Startups | startups |
- | GST | gst |
- | Product Review | product-review |
- | My Pocket | my-pocket |
- | Business Games | business-games |
- | Business Models | business-models |
- | Indian Indices | indian-indices |
- | Banking System | banking-system |
- | Debt | debt |
- | World News | world-news |
- | Technology | technology |
- | Regulatory Bodies | regulatory-bodies |
-</Route>
+<Route data={{"path":"/most-viewed/:time","categories":["finance"],"example":"/finology/most-viewed/monthly","parameters":{"time":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["insider.finology.in/:category"],"target":"/:category"},"name":"Most Viewed","maintainers":["Rjnishant530"],"location":"most-viewed.ts"}} />
## finviz {#finviz}
### News {#finviz-news}
-<Route author="nczitzk" example="/finviz" path="/finviz/:category?" paramsDesc={['Category, see below, News by default']} notOperational="1">
- | News | Blog |
- | ---- | ---- |
- | news | blog |
-</Route>
+<Route data={{"path":"/:category?","categories":["finance"],"example":"/finviz","parameters":{"category":"Category, see below, News by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["finviz.com/news.ashx","finviz.com/"]},"name":"News","maintainers":["nczitzk"],"url":"finviz.com/news.ashx","description":"| News | Blog |\n | ---- | ---- |\n | news | blog |","location":"news.ts"}} />
+
+| News | Blog |
+| ---- | ---- |
+| news | blog |
### US Stock News {#finviz-us-stock-news}
-<Route author="HenryQW" example="/finviz/news/AAPL" path="/finviz/news/:ticker" paramsDesc={['The stock ticker']} />
+<Route data={{"path":"/news/:ticker","categories":["finance"],"example":"/finviz/news/AAPL","parameters":{"ticker":"The stock ticker"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"US Stock News","maintainers":["HenryQW"],"location":"quote.ts"}} />
## Followin {#followin}
### Home {#followin-home}
-<Route author="TonyRL" example="/followin" path="/followin/:categoryId?/:lang?" paramsDesc={['Category ID, see table below, `1` by default', 'Language, see table below, `en` by default']} radar="1">
- Category ID
+<Route data={{"path":"/:categoryId?/:lang?","categories":["finance"],"example":"/followin","parameters":{"categoryId":"Category ID, see table below, `1` by default","lang":"Language, see table below, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Home","maintainers":["TonyRL"],"description":"Category ID\n\n | For You | Market | Meme | BRC20 | NFT | Thread | In-depth | Tutorials | Videos |\n | ------- | ------ | ---- | ----- | --- | ------ | -------- | --------- | ------ |\n | 1 | 9 | 13 | 14 | 3 | 5 | 6 | 8 | 11 |\n\n Language\n\n | English | 简体中文 | 繁體中文 | Tiếng Việt |\n | ------- | -------- | -------- | ---------- |\n | en | zh-Hans | zh-Hant | vi |","location":"index.ts"}} />
- | For You | Market | Meme | BRC20 | NFT | Thread | In-depth | Tutorials | Videos |
- | ------- | ------ | ---- | ----- | --- | ------ | -------- | --------- | ------ |
- | 1 | 9 | 13 | 14 | 3 | 5 | 6 | 8 | 11 |
+Category ID
- Language
+| For You | Market | Meme | BRC20 | NFT | Thread | In-depth | Tutorials | Videos |
+| ------- | ------ | ---- | ----- | --- | ------ | -------- | --------- | ------ |
+| 1 | 9 | 13 | 14 | 3 | 5 | 6 | 8 | 11 |
- | English | 简体中文 | 繁體中文 | Tiếng Việt |
- | ------- | -------- | -------- | ---------- |
- | en | zh-Hans | zh-Hant | vi |
-</Route>
-
-### News {#followin-news}
+Language
-<Route author="TonyRL" example="/followin/news" path="/followin/news/:lang?" paramsDesc={['Language, see table above, `en` by default']} radar="1" />
+| English | 简体中文 | 繁體中文 | Tiếng Việt |
+| ------- | -------- | -------- | ---------- |
+| en | zh-Hans | zh-Hant | vi |
### KOL {#followin-kol}
-<Route author="TonyRL" example="/followin/kol/4075592991" path="/followin/kol/:kolId/:lang?" paramsDesc={['KOL ID, can be found in URL', 'Language, see table above, `en` by default']} radar="1" />
+<Route data={{"path":"/kol/:kolId/:lang?","categories":["finance"],"example":"/followin/kol/4075592991","parameters":{"kolId":"KOL ID, can be found in URL","lang":"Language, see table above, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["followin.io/:lang/kol/:kolId","followin.io/kol/:kolId"]},"name":"KOL","maintainers":["TonyRL"],"location":"kol.ts"}} />
-### Topic {#followin-topic}
+### News {#followin-news}
-<Route author="TonyRL" example="/followin/topic/40" path="/followin/topic/:topicId/:lang?" paramsDesc={['Topic ID, can be found in URL', 'Language, see table above, `en` by default']} radar="1" />
+<Route data={{"path":"/news/:lang?","categories":["finance"],"example":"/followin/news","parameters":{"lang":"Language, see table above, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["followin.io/:lang?/news","followin.io/news"]},"name":"News","maintainers":["TonyRL"],"location":"news.ts"}} />
### Tag {#followin-tag}
-<Route author="TonyRL" example="/followin/tag/177008" path="/followin/tag/:tagId/:lang?" paramsDesc={['Tag ID, can be found in URL', 'Language, see table above, `en` by default']} radar="1" notOperational="1" />
-
-## Futubull 富途牛牛 {#futubull-fu-tu-niu-niu}
+<Route data={{"path":"/tag/:tagId/:lang?","categories":["finance"],"example":"/followin/tag/177008","parameters":{"tagId":"Tag ID, can be found in URL","lang":"Language, see table above, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["followin.io/:lang/tag/:tagId","followin.io/tag/:tagId"]},"name":"Tag","maintainers":["TonyRL"],"location":"tag.ts"}} />
-### Headlines {#futubull-fu-tu-niu-niu-headlines}
+### Topic {#followin-topic}
-<Route author="Wsine nczitzk" example="/futunn/main" path="/futunn/main" />
+<Route data={{"path":"/topic/:topicId/:lang?","categories":["finance"],"example":"/followin/topic/40","parameters":{"topicId":"Topic ID, can be found in URL","lang":"Language, see table above, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["followin.io/:lang/topic/:topicId","followin.io/topic/:topicId"]},"name":"Topic","maintainers":["TonyRL"],"location":"topic.ts"}} />
## FX Markets {#fx-markets}
### Channel {#fx-markets-channel}
-<Route author="mikkkee" example="/fx-markets/trading" path="/fx-markets/:channel" paramsDesc={['channel, can be found in the navi bar links at the home page']}>
- | Trading | Infrastructure | Tech and Data | Regulation |
- | ------- | -------------- | ------------- | ---------- |
- | trading | infrastructure | tech-and-data | regulation |
-</Route>
+<Route data={{"path":"/:channel","categories":["finance"],"example":"/fx-markets/trading","parameters":{"channel":"channel, can be found in the navi bar links at the home page"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Channel","maintainers":[],"description":"| Trading | Infrastructure | Tech and Data | Regulation |\n | ------- | -------------- | ------------- | ---------- |\n | trading | infrastructure | tech-and-data | regulation |","location":"channel.ts"}} />
+
+| Trading | Infrastructure | Tech and Data | Regulation |
+| ------- | -------------- | ------------- | ---------- |
+| trading | infrastructure | tech-and-data | regulation |
## Paradigm {#paradigm}
### Writing {#paradigm-writing}
-<Route author="Fatpandac" example="/paradigm/writing" path="/paradigm/writing" />
+<Route data={{"path":"/writing","categories":["finance"],"example":"/paradigm/writing","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["paradigm.xyz/writing"]},"name":"Writing","maintainers":["Fatpandac"],"url":"paradigm.xyz/writing","location":"writing.ts"}} />
## Seeking Alpha {#seeking-alpha}
### Summary {#seeking-alpha-summary}
-<Route author="TonyRL" example="/seekingalpha/TSM/transcripts" path="/seekingalpha/:symbol/:category?" paramsDesc={['Stock symbol', 'Category, see below, `news` by default']} radar="1" notOperational="1">
- | Analysis | News | Transcripts | Press Releases | Related Analysis |
- | -------- | ---- | ----------- | -------------- | ---------------- |
- | analysis | news | transcripts | press-releases | related-analysis |
-</Route>
+<Route data={{"path":"/:symbol/:category?","categories":["finance"],"example":"/seekingalpha/TSM/transcripts","parameters":{"symbol":"Stock symbol","category":"Category, see below, `news` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["seekingalpha.com/symbol/:symbol/:category","seekingalpha.com/symbol/:symbol/earnings/:category"],"target":"/:symbol/:category"},"name":"Summary","maintainers":["TonyRL"],"description":"| Analysis | News | Transcripts | Press Releases | Related Analysis |\n | -------- | ---- | ----------- | -------------- | ---------------- |\n | analysis | news | transcripts | press-releases | related-analysis |","location":"index.ts"}} />
+
+| Analysis | News | Transcripts | Press Releases | Related Analysis |
+| -------- | ---- | ----------- | -------------- | ---------------- |
+| analysis | news | transcripts | press-releases | related-analysis |
## Stock Edge {#stock-edge}
### Daily Updates News {#stock-edge-daily-updates-news}
-<Route author="Rjnishant530" example="/stockedge/daily-updates/news" path="/stockedge/daily-updates/news" radar="1" />
+<Route data={{"path":"/daily-updates/news","categories":["finance"],"example":"/stockedge/daily-updates/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["web.stockedge.com/daily-updates/news"]},"name":"Daily Updates News","maintainers":["Rjnishant530"],"url":"web.stockedge.com/daily-updates/news","location":"daily-news.ts"}} />
## TokenInsight {#tokeninsight}
@@ -281,732 +186,646 @@ TokenInsight also provides official RSS, you can take a look at [https://api.tok
### Blogs {#tokeninsight-blogs}
-<Route author="fuergaosi233" example="/tokeninsight/blog/en" path="/tokeninsight/blog/:lang?" paramsDesc={['Language, see below, Chinese by default']} />
+<Route data={{"path":"/blog/:lang?","categories":["finance"],"example":"/tokeninsight/blog/en","parameters":{"lang":"Language, see below, Chinese by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tokeninsight.com/:lang/blogs"],"target":"/blog/:lang"},"name":"Blogs","maintainers":["fuergaosi233"],"location":"blog.ts"}} />
### Latest {#tokeninsight-latest}
-<Route author="fuergaosi233" example="/tokeninsight/bulletin/en" path="/tokeninsight/bulletin/:lang?" paramsDesc={['Language, see below, Chinese by default']} />
+<Route data={{"path":"/bulletin/:lang?","categories":["finance"],"example":"/tokeninsight/bulletin/en","parameters":{"lang":"Language, see below, Chinese by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tokeninsight.com/:lang/latest"],"target":"/bulletin/:lang"},"name":"Latest","maintainers":[],"location":"bulletin.ts"}} />
### Research {#tokeninsight-research}
-<Route author="fuergaosi233" example="/tokeninsight/report/en" path="/tokeninsight/report/:lang?" paramsDesc={['Language, see below, Chinese by default']}>
- Language:
+<Route data={{"path":"/report/:lang?","categories":["finance"],"example":"/tokeninsight/report/en","parameters":{"lang":"Language, see below, Chinese by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tokeninsight.com/:lang/report"],"target":"/report/:lang"},"name":"Research","maintainers":[],"description":"Language:\n\n | Chinese | English |\n | ------- | ------- |\n | zh | en |","location":"report.ts"}} />
+
+Language:
- | Chinese | English |
- | ------- | ------- |
- | zh | en |
-</Route>
+| Chinese | English |
+| ------- | ------- |
+| zh | en |
## Unusual Whales {#unusual-whales}
### News Flow {#unusual-whales-news-flow}
-<Route author="TonyRL" example="/unusualwhales/news" path="/unusualwhales/news" radar="1" />
-
-## WEEX 华尔街见闻旗下全球投资线上品牌 {#weex-hua-er-jie-jian-wen-qi-xia-quan-qiu-tou-zi-xian-shang-pin-pai}
-
-### 资讯 {#weex-hua-er-jie-jian-wen-qi-xia-quan-qiu-tou-zi-xian-shang-pin-pai-zi-xun}
-
-<Route author="SChen1024" example="/weexcn/news/1" path="/weexcn/news/:typeid" paramsDesc={['栏目代码, 按照表列出']} />
-
-| 最新文章 | 市场要闻 | 交易策略 | 机构观点 | 投资学堂 | 行业观察 | 基金理财 | 分析师投稿 |
-| -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- |
-| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
+<Route data={{"path":"/news","categories":["finance"],"example":"/unusualwhales/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["unusualwhales.com/news","unusualwhales.com/"]},"name":"News Flow","maintainers":["TonyRL"],"url":"unusualwhales.com/news","location":"news.ts"}} />
## 巴伦周刊中文版 {#ba-lun-zhou-kan-zhong-wen-ban}
### 栏目 {#ba-lun-zhou-kan-zhong-wen-ban-lan-mu}
-<Route author="nczitzk" example="/barronschina" path="/barronschina/:id?" paramsDesc={['栏目 id,默认为快讯']}>
- :::tip
- 栏目 id 留空则返回快讯,在对应页地址栏 `columnId=` 后可以看到。
- :::
-</Route>
+<Route data={{"path":"/:id?","categories":["finance"],"example":"/barronschina","parameters":{"id":"栏目 id,默认为快讯"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["barronschina.com.cn/"],"target":"/:category?"},"name":"栏目","maintainers":["nczitzk"],"url":"barronschina.com.cn/","description":":::tip\n 栏目 id 留空则返回快讯,在对应页地址栏 `columnId=` 后可以看到。\n :::","location":"index.ts"}} />
-## 百度股市通 {#bai-du-gu-shi-tong}
+:::tip
+栏目 id 留空则返回快讯,在对应页地址栏 `columnId=` 后可以看到。
+:::
-### 首页指数 {#bai-du-gu-shi-tong-shou-ye-zhi-shu}
+## 百度 {#bai-du}
-<Route author="CaoMeiYouRen" example="/baidu/gushitong/index" path="/baidu/gushitong/index" />
+### 首页指数 {#bai-du-shou-ye-zhi-shu}
+
+<Route data={{"path":"/gushitong/index","categories":["finance"],"example":"/baidu/gushitong/index","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gushitong.baidu.com/"]},"name":"首页指数","maintainers":["CaoMeiYouRen"],"url":"gushitong.baidu.com/","location":"gushitong/index.ts"}} />
## 北京证券交易所 {#bei-jing-zheng-quan-jiao-yi-suo}
### 栏目 {#bei-jing-zheng-quan-jiao-yi-suo-lan-mu}
-<Route author="nczitzk" example="/bse" path="/bse/:category?/:keyword?" paramsDesc={['分类,见下表,默认为本所要闻', '关键字,默认为空']}>
- | 本所要闻 | 人才招聘 | 采购信息 | 业务通知 |
- | --------------- | -------- | -------- | ---------- |
- | important\_news | recruit | purchase | news\_list |
+<Route data={{"path":"/:category?/:keyword?","categories":["finance"],"example":"/bse","parameters":{"category":"分类,见下表,默认为本所要闻","keyword":"关键字,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bse.cn/"]},"name":"栏目","maintainers":["nczitzk"],"url":"bse.cn/","description":"| 本所要闻 | 人才招聘 | 采购信息 | 业务通知 |\n | --------------- | -------- | -------- | ---------- |\n | important_news | recruit | purchase | news_list |\n\n | 法律法规 | 公开征求意见 | 部门规章 | 发行融资 |\n | --------- | --------------- | ---------------- | ---------- |\n | law_list | public_opinion | regulation_list | fxrz_list |\n\n | 持续监管 | 交易管理 | 市场管理 | 上市委会议公告 |\n | ---------- | ---------- | ---------- | --------------- |\n | cxjg_list | jygl_list | scgl_list | meeting_notice |\n\n | 上市委会议结果公告 | 上市委会议变更公告 | 并购重组委会议公告 |\n | ------------------ | ------------------ | ------------------ |\n | meeting_result | meeting_change | bgcz_notice |\n\n | 并购重组委会议结果公告 | 并购重组委会议变更公告 | 终止审核 | 注册结果 |\n | ---------------------- | ---------------------- | ------------------ | ------------- |\n | bgcz_result | bgcz_change | termination_audit | audit_result |","location":"index.ts"}} />
+
+| 本所要闻 | 人才招聘 | 采购信息 | 业务通知 |
+| --------------- | -------- | -------- | ---------- |
+| important\_news | recruit | purchase | news\_list |
- | 法律法规 | 公开征求意见 | 部门规章 | 发行融资 |
- | --------- | --------------- | ---------------- | ---------- |
- | law\_list | public\_opinion | regulation\_list | fxrz\_list |
+| 法律法规 | 公开征求意见 | 部门规章 | 发行融资 |
+| --------- | --------------- | ---------------- | ---------- |
+| law\_list | public\_opinion | regulation\_list | fxrz\_list |
- | 持续监管 | 交易管理 | 市场管理 | 上市委会议公告 |
- | ---------- | ---------- | ---------- | --------------- |
- | cxjg\_list | jygl\_list | scgl\_list | meeting\_notice |
+| 持续监管 | 交易管理 | 市场管理 | 上市委会议公告 |
+| ---------- | ---------- | ---------- | --------------- |
+| cxjg\_list | jygl\_list | scgl\_list | meeting\_notice |
- | 上市委会议结果公告 | 上市委会议变更公告 | 并购重组委会议公告 |
- | ------------------ | ------------------ | ------------------ |
- | meeting\_result | meeting\_change | bgcz\_notice |
+| 上市委会议结果公告 | 上市委会议变更公告 | 并购重组委会议公告 |
+| ------------------ | ------------------ | ------------------ |
+| meeting\_result | meeting\_change | bgcz\_notice |
- | 并购重组委会议结果公告 | 并购重组委会议变更公告 | 终止审核 | 注册结果 |
- | ---------------------- | ---------------------- | ------------------ | ------------- |
- | bgcz\_result | bgcz\_change | termination\_audit | audit\_result |
-</Route>
+| 并购重组委会议结果公告 | 并购重组委会议变更公告 | 终止审核 | 注册结果 |
+| ---------------------- | ---------------------- | ------------------ | ------------- |
+| bgcz\_result | bgcz\_change | termination\_audit | audit\_result |
## 财经网 {#cai-jing-wang}
### 滚动新闻 {#cai-jing-wang-gun-dong-xin-wen}
-<Route author="TonyRL" example="/caijing/roll" path="/caijing/roll" rardr="1" />
+<Route data={{"path":"/roll","categories":["finance"],"example":"/caijing/roll","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["roll.caijing.com.cn/index1.html","roll.caijing.com.cn/"]},"name":"滚动新闻","maintainers":["TonyRL"],"url":"roll.caijing.com.cn/index1.html","location":"roll.ts"}} />
## 财联社 {#cai-lian-she}
### 电报 {#cai-lian-she-dian-bao}
-<Route author="nczitzk" example="/cls/telegraph" path="/cls/telegraph/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1">
- | 看盘 | 公司 | 解读 | 加红 | 推送 | 提醒 | 基金 | 港股 |
- | ----- | ------------ | ------- | ---- | ----- | ------ | ---- | ---- |
- | watch | announcement | explain | red | jpush | remind | fund | hk |
-</Route>
+<Route data={{"path":"/telegraph/:category?","categories":["finance"],"example":"/cls/telegraph","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cls.cn/telegraph","cls.cn/"],"target":"/telegraph"},"name":"电报","maintainers":["nczitzk"],"url":"cls.cn/telegraph","description":"| 看盘 | 公司 | 解读 | 加红 | 推送 | 提醒 | 基金 | 港股 |\n | ----- | ------------ | ------- | ---- | ----- | ------ | ---- | ---- |\n | watch | announcement | explain | red | jpush | remind | fund | hk |","location":"telegraph.ts"}} />
-### 深度 {#cai-lian-she-shen-du}
-
-<Route author="nczitzk" example="/cls/depth/1000" path="/cls/depth/:category?" paramsDesc={['分类代码,可在首页导航栏的目标网址 URL 中找到']} radar="1">
- | 头条 | 股市 | 港股 | 环球 | 公司 | 券商 | 基金 | 地产 | 金融 | 汽车 | 科创 | 创业版 | 品见 | 期货 | 投教 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- |
- | 1000 | 1003 | 1135 | 1007 | 1005 | 1118 | 1110 | 1006 | 1032 | 1119 | 1111 | 1127 | 1160 | 1124 | 1176 |
-</Route>
+| 看盘 | 公司 | 解读 | 加红 | 推送 | 提醒 | 基金 | 港股 |
+| ----- | ------------ | ------- | ---- | ----- | ------ | ---- | ---- |
+| watch | announcement | explain | red | jpush | remind | fund | hk |
### 热门文章排行榜 {#cai-lian-she-re-men-wen-zhang-pai-hang-bang}
-<Route author="5upernova-heng nczitzk" example="/cls/hot" path="/cls/hot" radar="1" anticrawler="1" />
+<Route data={{"path":"/hot","categories":["finance"],"example":"/cls/hot","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cls.cn/"]},"name":"热门文章排行榜","maintainers":["5upernova-heng","nczitzk"],"url":"cls.cn/","location":"hot.ts"}} />
-## 第一财经杂志 {#di-yi-cai-jing-za-zhi}
+### 深度 {#cai-lian-she-shen-du}
-### 首页 {#di-yi-cai-jing-za-zhi-shou-ye}
+<Route data={{"path":"/depth/:category?","categories":["finance"],"example":"/cls/depth/1000","parameters":{"category":"分类代码,可在首页导航栏的目标网址 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"深度","maintainers":["nczitzk"],"description":"| 头条 | 股市 | 港股 | 环球 | 公司 | 券商 | 基金 | 地产 | 金融 | 汽车 | 科创 | 创业版 | 品见 | 期货 | 投教 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- |\n | 1000 | 1003 | 1135 | 1007 | 1005 | 1118 | 1110 | 1006 | 1032 | 1119 | 1111 | 1127 | 1160 | 1124 | 1176 |","location":"depth.ts"}} />
-<Route author="nczitzk" example="/cbnweek" path="/cbnweek" />
+| 头条 | 股市 | 港股 | 环球 | 公司 | 券商 | 基金 | 地产 | 金融 | 汽车 | 科创 | 创业版 | 品见 | 期货 | 投教 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- |
+| 1000 | 1003 | 1135 | 1007 | 1005 | 1118 | 1110 | 1006 | 1032 | 1119 | 1111 | 1127 | 1160 | 1124 | 1176 |
## 东方财富 {#dong-fang-cai-fu}
-### 天天基金用户动态 {#dong-fang-cai-fu-tian-tian-ji-jin-yong-hu-dong-tai}
+### 搜索 {#dong-fang-cai-fu-sou-suo}
-<Route author="zidekuls" example="/eastmoney/ttjj/user/6551094298949188" path="/eastmoney/ttjj/user/:uid" paramsDesc={['用户id, 可以通过天天基金App分享用户主页到浏览器,在相应的URL中找到']} />
+<Route data={{"path":"/search/:keyword","categories":["finance"],"example":"/eastmoney/search/web3","parameters":{"keyword":"关键词,可以设置为自己需要检索的关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"搜索","maintainers":["drgnchan"],"location":"search/index.ts"}} />
-### 搜索 {#dong-fang-cai-fu-sou-suo}
+### 天天基金用户动态 {#dong-fang-cai-fu-tian-tian-ji-jin-yong-hu-dong-tai}
-<Route author="drgnchan" example="/eastmoney/search/web3" path="/eastmoney/search/:keyword" paramsDesc={['关键词,可以设置为自己需要检索的关键词']} radar="1" />
+<Route data={{"path":"/ttjj/user/:uid","categories":["finance"],"example":"/eastmoney/ttjj/user/6551094298949188","parameters":{"uid":"用户id, 可以通过天天基金App分享用户主页到浏览器,在相应的URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"天天基金用户动态","maintainers":["zidekuls"],"location":"ttjj/user.ts"}} />
### 研究报告 {#dong-fang-cai-fu-yan-jiu-bao-gao}
-<Route author="syzq" example="/eastmoney/report/strategyreport" path="/eastmoney/report/:category" paramsDesc={['研报类型']}>
- | 策略报告 | 宏观研究 | 券商晨报 | 行业研究 |
- | -------------- | ----------- | ------------ | -------- |
- | strategyreport | macresearch | brokerreport | industry |
-</Route>
+<Route data={{"path":"/report/:category","categories":["finance"],"example":"/eastmoney/report/strategyreport","parameters":{"category":"研报类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["data.eastmoney.com/report/:category"]},"name":"研究报告","maintainers":["syzq"],"description":"| 策略报告 | 宏观研究 | 券商晨报 | 行业研究 |\n | -------------- | ----------- | ------------ | -------- |\n | strategyreport | macresearch | brokerreport | industry |","location":"report/index.ts"}} />
+
+| 策略报告 | 宏观研究 | 券商晨报 | 行业研究 |
+| -------------- | ----------- | ------------ | -------- |
+| strategyreport | macresearch | brokerreport | industry |
## 法布财经 {#fa-bu-cai-jing}
+### 快讯 {#fa-bu-cai-jing-kuai-xun}
+
+<Route data={{"path":"/express-news","categories":["finance"],"example":"/fastbull/express-news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fastbull.cn/express-news","fastbull.cn/"]},"name":"快讯","maintainers":["nczitzk"],"url":"fastbull.cn/express-news","location":"express-news.ts"}} />
+
### 新闻 {#fa-bu-cai-jing-xin-wen}
-<Route author="nczitzk" example="/fastbull/news" path="/fastbull/news" />
+<Route data={{"path":["/news","/"],"categories":["finance"],"example":"/fastbull/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fastbull.cn/news","fastbull.cn/"]},"name":"新闻","maintainers":["nczitzk"],"url":"fastbull.cn/news","location":"news.ts"}} />
-### 快讯 {#fa-bu-cai-jing-kuai-xun}
+### 新闻 {#fa-bu-cai-jing-xin-wen}
-<Route author="nczitzk" example="/fastbull/express-news" path="/fastbull/express-news" />
+<Route data={{"path":["/news","/"],"categories":["finance"],"example":"/fastbull/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fastbull.cn/news","fastbull.cn/"]},"name":"新闻","maintainers":["nczitzk"],"url":"fastbull.cn/news","location":"news.ts"}} />
## 格隆汇 {#ge-long-hui}
-### 首页 {#ge-long-hui-shou-ye}
-
-<Route author="TonyRL" example="/gelonghui/home" path="/gelonghui/home/:tag?" paramsDesc={['分类标签,见下表,默认为 `web_home_page`']} radar="1">
- | 推荐 | 股票 | 基金 | 新股 | 研报 |
- | --------------- | ----- | ---- | ---------- | -------- |
- | web\_home\_page | stock | fund | new\_stock | research |
-</Route>
+### 实时快讯 {#ge-long-hui-shi-shi-kuai-xun}
-### 用户文章 {#ge-long-hui-yong-hu-wen-zhang}
+<Route data={{"path":"/live","categories":["finance"],"example":"/gelonghui/live","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gelonghui.com/live","gelonghui.com/"]},"name":"实时快讯","maintainers":[],"url":"gelonghui.com/live","location":"live.ts"}} />
-<Route author="nczitzk" example="/gelonghui/user/5273" path="/gelonghui/user/:id" paramsDesc={['用户编号,可在用户页 URL 中找到']} radar="1" />
+### 首页 {#ge-long-hui-shou-ye}
-### 主题文章 {#ge-long-hui-zhu-ti-wen-zhang}
+<Route data={{"path":"/home/:tag?","categories":["finance"],"example":"/gelonghui/home","parameters":{"tag":"分类标签,见下表,默认为 `web_home_page`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["TonyRL"],"description":"| 推荐 | 股票 | 基金 | 新股 | 研报 |\n | --------------- | ----- | ---- | ---------- | -------- |\n | web_home_page | stock | fund | new_stock | research |","location":"home.ts"}} />
-<Route author="nczitzk" example="/gelonghui/subject/4" path="/gelonghui/subject/:id" paramsDesc={['主题编号,可在主题页 URL 中找到']} radar="1" />
+| 推荐 | 股票 | 基金 | 新股 | 研报 |
+| --------------- | ----- | ---- | ---------- | -------- |
+| web\_home\_page | stock | fund | new\_stock | research |
### 搜索关键字 {#ge-long-hui-sou-suo-guan-jian-zi}
-<Route author="nczitzk" example="/gelonghui/keyword/早报" path="/gelonghui/keyword/:keyword" paramsDesc={['搜索关键字']} radar="1" />
+<Route data={{"path":"/keyword/:keyword","categories":["finance"],"example":"/gelonghui/keyword/早报","parameters":{"keyword":"搜索关键字"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"搜索关键字","maintainers":["nczitzk"],"location":"keyword.ts"}} />
-### 最热文章 {#ge-long-hui-zui-re-wen-zhang}
+### 用户文章 {#ge-long-hui-yong-hu-wen-zhang}
-<Route author="TonyRL" example="/gelonghui/hot-article" path="/gelonghui/hot-article/:type?" paramsDesc={['`day` 为日排行,`week` 为周排行,默认为 `day`']} radar="1" />
+<Route data={{"path":"/user/:id","categories":["finance"],"example":"/gelonghui/user/5273","parameters":{"id":"用户编号,可在用户页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gelonghui.com/user/:id"]},"name":"用户文章","maintainers":["nczitzk"],"location":"user.ts"}} />
-### 实时快讯 {#ge-long-hui-shi-shi-kuai-xun}
+### 主题文章 {#ge-long-hui-zhu-ti-wen-zhang}
+
+<Route data={{"path":"/subject/:id","categories":["finance"],"example":"/gelonghui/subject/4","parameters":{"id":"主题编号,可在主题页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gelonghui.com/subject/:id"]},"name":"主题文章","maintainers":["nczitzk"],"location":"subject.ts"}} />
+
+### 最热文章 {#ge-long-hui-zui-re-wen-zhang}
-<Route author="TonyRL" example="/gelonghui/live" path="/gelonghui/live" radar="1" />
+<Route data={{"path":"/hot-article/:type?","categories":["finance"],"example":"/gelonghui/hot-article","parameters":{"type":"`day` 为日排行,`week` 为周排行,默认为 `day`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gelonghui.com/"],"target":"/hot-article"},"name":"最热文章","maintainers":[],"url":"gelonghui.com/","location":"hot-article.ts"}} />
## 国家金融与发展实验室 {#guo-jia-jin-rong-yu-fa-zhan-shi-yan-shi}
### 研究 {#guo-jia-jin-rong-yu-fa-zhan-shi-yan-shi-yan-jiu}
-<Route author="Fatpandac" example="/nifd/research/3333d2af-91d6-429b-be83-28b92f31b6d7" path="/nifd/research/:categoryGuid?" paramsDesc={['资讯类型,默认为周报']}>
- 资讯类型可以从网址中获取,如:
+<Route data={{"path":"/research/:categoryGuid?","categories":["finance"],"example":"/nifd/research/3333d2af-91d6-429b-be83-28b92f31b6d7","parameters":{"categoryGuid":"资讯类型,默认为周报"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究","maintainers":["Fatpandac"],"description":"资讯类型可以从网址中获取,如:\n\n `http://www.nifd.cn/Research?categoryGuid=7a6a826d-b525-42aa-b550-4236e524227f` 对应 `/nifd/research/7a6a826d-b525-42aa-b550-4236e524227f`","location":"research.ts"}} />
+
+资讯类型可以从网址中获取,如:
- `http://www.nifd.cn/Research?categoryGuid=7a6a826d-b525-42aa-b550-4236e524227f` 对应 `/nifd/research/7a6a826d-b525-42aa-b550-4236e524227f`
-</Route>
+`http://www.nifd.cn/Research?categoryGuid=7a6a826d-b525-42aa-b550-4236e524227f` 对应 `/nifd/research/7a6a826d-b525-42aa-b550-4236e524227f`
## 华储网 {#hua-chu-wang}
### 通知 {#hua-chu-wang-tong-zhi}
-<Route author="TonyRL" example="/mrm" path="/mrm/:category?" paramDesc={['分类,见下表,默认为 `zonghezixun3`']} radar="1">
- | 交易通知 | 政策规定 | 业务通知 |
- | ------------ | -------------------- | ----------------- |
- | zonghezixun3 | zhengceguiding\_list | yewutongzhi\_list |
-</Route>
+<Route data={{"path":"/:category?","categories":["finance"],"example":"/mrm","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通知","maintainers":["TonyRL"],"description":"| 交易通知 | 政策规定 | 业务通知 |\n | ------------ | -------------------- | ----------------- |\n | zonghezixun3 | zhengceguiding_list | yewutongzhi_list |","location":"index.ts"}} />
+
+| 交易通知 | 政策规定 | 业务通知 |
+| ------------ | -------------------- | ----------------- |
+| zonghezixun3 | zhengceguiding\_list | yewutongzhi\_list |
## 汇通网 {#hui-tong-wang}
### 7x24 小时快讯 {#hui-tong-wang-7x24-xiao-shi-kuai-xun}
-<Route author="occupy5 dousha" example="/fx678/kx" path="/fx678/kx" radar="1" />
+<Route data={{"path":"/kx","categories":["finance"],"example":"/fx678/kx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fx678.com/kx"]},"name":"7x24 小时快讯","maintainers":["occupy5","dousha"],"url":"fx678.com/kx","location":"kx.ts"}} />
## 金色财经 {#jin-se-cai-jing}
-### 首页 {#jin-se-cai-jing-shou-ye}
+### 分类 {#jin-se-cai-jing-fen-lei}
-<Route author="nczitzk" example="/jinse/timeline" path="/jinse/timeline/:category?" paramsDesc={['分类,见下表,默认为头条']} radar="1">
- | 头条 | 独家 | 铭文 | 产业 | 项目 |
- | ------ | ---- | ------- | ---------- | ---- |
- | 政策 | AI | Web 3.0 | 以太坊 2.0 | DeFi |
- | Layer2 | NFT | DAO | 百科 | |
-</Route>
+<Route data={{"path":"/:category?","categories":["finance"],"example":"/jinse/zhengce","parameters":{"category":"分类,见下表,默认为政策"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 政策 | 行情 | DeFi | 矿业 | 以太坊 2.0 |\n | ------- | ------------ | ---- | ----- | ---------- |\n | zhengce | fenxishishuo | defi | kuang | 以太坊 2.0 |\n\n | 产业 | IPFS | 技术 | 百科 | 研报 |\n | -------- | ---- | ---- | ----- | ------------- |\n | industry | IPFS | tech | baike | capitalmarket |","location":"catalogue.ts"}} />
+
+| 政策 | 行情 | DeFi | 矿业 | 以太坊 2.0 |
+| ------- | ------------ | ---- | ----- | ---------- |
+| zhengce | fenxishishuo | defi | kuang | 以太坊 2.0 |
+
+| 产业 | IPFS | 技术 | 百科 | 研报 |
+| -------- | ---- | ---- | ----- | ------------- |
+| industry | IPFS | tech | baike | capitalmarket |
### 快讯 {#jin-se-cai-jing-kuai-xun}
-<Route author="nczitzk" example="/jinse/lives" path="/jinse/lives/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1">
- | 全部 | 精选 | 政策 | 数据 | NFT | 项目 |
- | ---- | ---- | ---- | ---- | --- | ---- |
- | 0 | 1 | 2 | 3 | 4 | 5 |
-</Route>
+<Route data={{"path":"/lives/:category?","categories":["finance"],"example":"/jinse/lives","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"快讯","maintainers":["nczitzk"],"description":"| 全部 | 精选 | 政策 | 数据 | NFT | 项目 |\n | ---- | ---- | ---- | ---- | --- | ---- |\n | 0 | 1 | 2 | 3 | 4 | 5 |","location":"lives.ts"}} />
-### 分类 {#jin-se-cai-jing-fen-lei}
+| 全部 | 精选 | 政策 | 数据 | NFT | 项目 |
+| ---- | ---- | ---- | ---- | --- | ---- |
+| 0 | 1 | 2 | 3 | 4 | 5 |
+
+### 首页 {#jin-se-cai-jing-shou-ye}
-<Route author="nczitzk" example="/jinse/zhengce" path="/jinse/:category?" paramsDesc={['分类,见下表,默认为政策']}>
- | 政策 | 行情 | DeFi | 矿业 | 以太坊 2.0 |
- | ------- | ------------ | ---- | ----- | ---------- |
- | zhengce | fenxishishuo | defi | kuang | 以太坊 2.0 |
+<Route data={{"path":"/timeline/:category?","categories":["finance"],"example":"/jinse/timeline","parameters":{"category":"分类,见下表,默认为头条"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["nczitzk"],"description":"| 头条 | 独家 | 铭文 | 产业 | 项目 |\n | ------ | ---- | ------- | ---------- | ---- |\n | 政策 | AI | Web 3.0 | 以太坊 2.0 | DeFi |\n | Layer2 | NFT | DAO | 百科 | |","location":"timeline.ts"}} />
- | 产业 | IPFS | 技术 | 百科 | 研报 |
- | -------- | ---- | ---- | ----- | ------------- |
- | industry | IPFS | tech | baike | capitalmarket |
-</Route>
+| 头条 | 独家 | 铭文 | 产业 | 项目 |
+| ------ | ---- | ------- | ---------- | ---- |
+| 政策 | AI | Web 3.0 | 以太坊 2.0 | DeFi |
+| Layer2 | NFT | DAO | 百科 | |
## 金十数据 {#jin-shi-shu-ju}
### 市场快讯 {#jin-shi-shu-ju-shi-chang-kuai-xun}
-<Route author="laampui" example="/jin10" path="/jin10/:important?" paramsDesc={['只看重要,任意值开启,留空关闭']} radar="1" />
+<Route data={{"path":"/:important?","categories":["finance"],"example":"/jin10","parameters":{"important":"只看重要,任意值开启,留空关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jin10.com/"],"target":""},"name":"市场快讯","maintainers":["laampui"],"url":"jin10.com/","location":"index.ts"}} />
### 主题文章 {#jin-shi-shu-ju-zhu-ti-wen-zhang}
-<Route author="miles170" example="/jin10/topic/396" path="/jin10/topic/:id" radar="1" />
+<Route data={{"path":"/topic/:id","categories":["finance"],"example":"/jin10/topic/396","parameters":{"id":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xnews.jin10.com/topic/:id"]},"name":"主题文章","maintainers":["miles170"],"url":"jin10.com/","location":"topic.ts"}} />
## 老虎社区 {#lao-hu-she-qu}
### 个人主页 {#lao-hu-she-qu-ge-ren-zhu-ye}
-<Route author="Fatpandac" example="/laohu8/personal/3527667596890271" path="/laohu8/personal/:id" paramsDesc={['用户 ID,见网址链接']} radar="1" />
+<Route data={{"path":"/personal/:id","categories":["finance"],"example":"/laohu8/personal/3527667596890271","parameters":{"id":"用户 ID,见网址链接"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["laohu8.com/personal/:id"]},"name":"个人主页","maintainers":["Fatpandac"],"location":"personal.ts"}} />
## 律动 {#lv-dong}
### 新闻快讯 {#lv-dong-xin-wen-kuai-xun}
-<Route author="Fatpandac jameshih" example="/theblockbeats/newsflash" path="/theblockbeats/:channel?" paramsDesc={['类型,见下表,默认为快讯']}>
- | 快讯 | 文章 |
- | :-------: | :-----: |
- | newsflash | article |
-</Route>
+<Route data={{"path":"/:channel?","categories":["finance"],"example":"/theblockbeats/newsflash","parameters":{"channel":"类型,见下表,默认为快讯"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻快讯","maintainers":["Fatpandac","jameshih"],"description":"| 快讯 | 文章 |\n | :-------: | :-----: |\n | newsflash | article |","location":"index.ts"}} />
+
+| 快讯 | 文章 |
+| :-------: | :-----: |
+| newsflash | article |
## 麦肯锡 {#mai-ken-xi}
### 洞见 {#mai-ken-xi-dong-jian}
-<Route author="laampui" example="/mckinsey/cn" path="/mckinsey/cn/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1">
- | 分类 | 分类名 |
- | ---- | ------------------ |
- | 25 | 全部洞见 |
- | 2 | 汽车 |
- | 3 | 金融服务 |
- | 4 | 消费者 |
- | 5 | 医药 |
- | 7 | 数字化 |
- | 8 | 制造业 |
- | 9 | 私募 |
- | 10 | 技术,媒体与通信 |
- | 12 | 城市化与可持续发展 |
- | 13 | 创新 |
- | 16 | 人才与领导力 |
- | 18 | 宏观经济 |
- | 19 | 麦肯锡全球研究院 |
- | 37 | 麦肯锡季刊 |
- | 41 | 资本项目和基础设施 |
- | 42 | 旅游、运输和物流 |
- | 45 | 全球基础材料 |
-</Route>
+<Route data={{"path":"/cn/:category?","categories":["finance"],"example":"/mckinsey/cn","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"洞见","maintainers":["laampui"],"description":"| 分类 | 分类名 |\n | ---- | ------------------ |\n | 25 | 全部洞见 |\n | 2 | 汽车 |\n | 3 | 金融服务 |\n | 4 | 消费者 |\n | 5 | 医药 |\n | 7 | 数字化 |\n | 8 | 制造业 |\n | 9 | 私募 |\n | 10 | 技术,媒体与通信 |\n | 12 | 城市化与可持续发展 |\n | 13 | 创新 |\n | 16 | 人才与领导力 |\n | 18 | 宏观经济 |\n | 19 | 麦肯锡全球研究院 |\n | 37 | 麦肯锡季刊 |\n | 41 | 资本项目和基础设施 |\n | 42 | 旅游、运输和物流 |\n | 45 | 全球基础材料 |","location":"cn/index.ts"}} />
+
+| 分类 | 分类名 |
+| ---- | ------------------ |
+| 25 | 全部洞见 |
+| 2 | 汽车 |
+| 3 | 金融服务 |
+| 4 | 消费者 |
+| 5 | 医药 |
+| 7 | 数字化 |
+| 8 | 制造业 |
+| 9 | 私募 |
+| 10 | 技术,媒体与通信 |
+| 12 | 城市化与可持续发展 |
+| 13 | 创新 |
+| 16 | 人才与领导力 |
+| 18 | 宏观经济 |
+| 19 | 麦肯锡全球研究院 |
+| 37 | 麦肯锡季刊 |
+| 41 | 资本项目和基础设施 |
+| 42 | 旅游、运输和物流 |
+| 45 | 全球基础材料 |
## 每经网 {#mei-jing-wang}
### 分类 {#mei-jing-wang-fen-lei}
-<Route author="nczitzk" example="/nbd" path="/nbd/:id?" paramsDesc={['分类 id,见下表,默认为要闻']}>
- | 头条 | 要闻 | 图片新闻 | 推荐 |
- | ---- | ---- | -------- | ---- |
- | 2 | 3 | 4 | 5 |
-</Route>
+<Route data={{"path":"/:id?","categories":["finance"],"example":"/nbd","parameters":{"id":"分类 id,见下表,默认为要闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nbd.com.cn/","nbd.com.cn/columns/:id?"]},"name":"分类","maintainers":["nczitzk"],"url":"nbd.com.cn/","description":"| 头条 | 要闻 | 图片新闻 | 推荐 |\n | ---- | ---- | -------- | ---- |\n | 2 | 3 | 4 | 5 |","location":"index.ts"}} />
+
+| 头条 | 要闻 | 图片新闻 | 推荐 |
+| ---- | ---- | -------- | ---- |
+| 2 | 3 | 4 | 5 |
### 重磅原创 {#mei-jing-wang-zhong-bang-yuan-chuang}
-<Route author="yuuow" example="/nbd/daily" path="/nbd/daily" />
+<Route data={{"path":"/daily","categories":["finance"],"example":"/nbd/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nbd.com.cn/","nbd.com.cn/columns/332"]},"name":"重磅原创","maintainers":["yuuow"],"url":"nbd.com.cn/","location":"daily.ts"}} />
## 前瞻网 {#qian-zhan-wang}
-### 文章列表 {#qian-zhan-wang-wen-zhang-lie-biao}
+### 排行榜 {#qian-zhan-wang-pai-hang-bang}
-<Route author="moke8" example="/qianzhan/analyst/column/all" path="/qianzhan/analyst/column/:type?" paramsDesc={['分类,见下表']}>
- | 全部 | 研究员专栏 | 规划师专栏 | 观察家专栏 |
- | ---- | ---------- | ---------- | ---------- |
- | all | 220 | 627 | 329 |
-</Route>
+<Route data={{"path":"/analyst/rank/:type?","categories":["finance"],"example":"/qianzhan/analyst/rank/week","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qianzhan.com/analyst","qianzhan.com/"],"target":"/analyst/rank"},"name":"排行榜","maintainers":["moke8"],"url":"qianzhan.com/analyst","description":"| 周排行 | 月排行 |\n | ------ | ------ |\n | week | month |","location":"rank.ts"}} />
-### 排行榜 {#qian-zhan-wang-pai-hang-bang}
+| 周排行 | 月排行 |
+| ------ | ------ |
+| week | month |
+
+### 文章列表 {#qian-zhan-wang-wen-zhang-lie-biao}
-<Route author="moke8" example="/qianzhan/analyst/rank/week" path="/qianzhan/analyst/rank/:type?" paramsDesc={['分类,见下表']}>
- | 周排行 | 月排行 |
- | ------ | ------ |
- | week | month |
-</Route>
+<Route data={{"path":"/analyst/column/:type?","categories":["finance"],"example":"/qianzhan/analyst/column/all","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章列表","maintainers":["moke8"],"description":"| 全部 | 研究员专栏 | 规划师专栏 | 观察家专栏 |\n | ---- | ---------- | ---------- | ---------- |\n | all | 220 | 627 | 329 |","location":"column.ts"}} />
+
+| 全部 | 研究员专栏 | 规划师专栏 | 观察家专栏 |
+| ---- | ---------- | ---------- | ---------- |
+| all | 220 | 627 | 329 |
## 上海证券交易所 {#shang-hai-zheng-quan-jiao-yi-suo}
### 本所业务指南与流程 {#shang-hai-zheng-quan-jiao-yi-suo-ben-suo-ye-wu-zhi-nan-yu-liu-cheng}
-<Route author="nczitzk" example="/sse/lawandrules" path="/sse/lawandrules/:slug?" paramsDesc={['见下文,默认为 `latest`']} radar="1" notOperational="1">
- 将目标栏目的网址拆解为 `https://www.sse.com.cn/lawandrules/guide/` 和后面的字段,把后面的字段中的 `/` 替换为 `-`,即为该路由的 slug
-
- 如:(最新指南与流程)`https://www.sse.com.cn/lawandrules/guide/latest` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `latest`,则对应的 slug 为 `latest`,对应的路由即为 `/sse/lawandrules/latest`
+<Route data={{"path":"/lawandrules/:slug?","categories":["finance"],"example":"/sse/lawandrules","parameters":{"slug":"见下文,默认为 `latest`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"本所业务指南与流程","maintainers":["nczitzk"],"description":"将目标栏目的网址拆解为 `https://www.sse.com.cn/lawandrules/guide/` 和后面的字段,把后面的字段中的 `/` 替换为 `-`,即为该路由的 slug\n\n 如:(最新指南与流程)`https://www.sse.com.cn/lawandrules/guide/latest` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `latest`,则对应的 slug 为 `latest`,对应的路由即为 `/sse/lawandrules/latest`\n\n 又如:(主板业务指南与流程 - 发行承销业务指南)`https://www.sse.com.cn/lawandrules/guide/zbywznylc/fxcxywzn` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `zbywznylc/fxcxywzn`,则对应的 slug 为 `zbywznylc-fxcxywzn`,对应的路由即为 `/sse/lawandrules/zbywznylc-fxcxywzn`","location":"lawandrules.ts"}} />
- 又如:(主板业务指南与流程 - 发行承销业务指南)`https://www.sse.com.cn/lawandrules/guide/zbywznylc/fxcxywzn` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `zbywznylc/fxcxywzn`,则对应的 slug 为 `zbywznylc-fxcxywzn`,对应的路由即为 `/sse/lawandrules/zbywznylc-fxcxywzn`
-</Route>
+将目标栏目的网址拆解为 `https://www.sse.com.cn/lawandrules/guide/` 和后面的字段,把后面的字段中的 `/` 替换为 `-`,即为该路由的 slug
-### 上市公司信息最新公告披露 {#shang-hai-zheng-quan-jiao-yi-suo-shang-shi-gong-si-xin-xi-zui-xin-gong-gao-pi-lu}
+如:(最新指南与流程)`https://www.sse.com.cn/lawandrules/guide/latest` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `latest`,则对应的 slug 为 `latest`,对应的路由即为 `/sse/lawandrules/latest`
-<Route author="harveyqiu" example="/sse/disclosure/beginDate=2018-08-18&endDate=2020-08-25&productId=600696" path="/sse/disclosure/:query?" paramsDesc={['筛选条件,见示例']} radar="1" />
+又如:(主板业务指南与流程 - 发行承销业务指南)`https://www.sse.com.cn/lawandrules/guide/zbywznylc/fxcxywzn` 的网址在 `https://www.sse.com.cn/lawandrules/guide/` 后的字段是 `zbywznylc/fxcxywzn`,则对应的 slug 为 `zbywznylc-fxcxywzn`,对应的路由即为 `/sse/lawandrules/zbywznylc-fxcxywzn`
-### 可转换公司债券公告 {#shang-hai-zheng-quan-jiao-yi-suo-ke-zhuan-huan-gong-si-zhai-quan-gong-gao}
+### 监管问询 {#shang-hai-zheng-quan-jiao-yi-suo-jian-guan-wen-xun}
-<Route author="kt286" example="/sse/convert/beginDate=2018-08-18&endDate=2019-08-18&companyCode=603283&title=股份" path="/sse/convert/:query?" paramsDesc={['筛选条件,见示例']} radar="1" />
+<Route data={{"path":"/inquire","categories":["finance"],"example":"/sse/inquire","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.sse.com.cn/disclosure/credibility/supervision/inquiries","www.sse.com.cn/"]},"name":"监管问询","maintainers":["Jeason0228"],"url":"www.sse.com.cn/disclosure/credibility/supervision/inquiries","location":"inquire.ts"}} />
### 科创板项目动态 {#shang-hai-zheng-quan-jiao-yi-suo-ke-chuang-ban-xiang-mu-dong-tai}
-<Route author="Jeason0228" example="/sse/renewal" path="/sse/renewal" radar="1" />
+<Route data={{"path":"/renewal","categories":["finance"],"example":"/sse/renewal","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kcb.sse.com.cn/home","kcb.sse.com.cn/"]},"name":"科创板项目动态","maintainers":["Jeason0228"],"url":"kcb.sse.com.cn/home","location":"renewal.ts"}} />
-### 监管问询 {#shang-hai-zheng-quan-jiao-yi-suo-jian-guan-wen-xun}
+### 可转换公司债券公告 {#shang-hai-zheng-quan-jiao-yi-suo-ke-zhuan-huan-gong-si-zhai-quan-gong-gao}
-<Route author="Jeason0228" example="/sse/inquire" path="/sse/inquire" radar="1" />
+<Route data={{"path":"/convert/:query?","categories":["finance"],"example":"/sse/convert/beginDate=2018-08-18&endDate=2019-08-18&companyCode=603283&title=股份","parameters":{"query":"筛选条件,见示例"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"可转换公司债券公告","maintainers":["kt286"],"location":"convert.ts"}} />
+
+### 上市公司信息最新公告披露 {#shang-hai-zheng-quan-jiao-yi-suo-shang-shi-gong-si-xin-xi-zui-xin-gong-gao-pi-lu}
+
+<Route data={{"path":"/disclosure/:query?","categories":["finance"],"example":"/sse/disclosure/beginDate=2018-08-18&endDate=2020-08-25&productId=600696","parameters":{"query":"筛选条件,见示例"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"上市公司信息最新公告披露","maintainers":["harveyqiu"],"location":"disclosure.ts"}} />
## 深潮 TechFlow {#shen-chao-techflow}
-### 首页 {#shen-chao-techflow-shou-ye}
+### 快讯 {#shen-chao-techflow-kuai-xun}
-<Route author="nczitzk" example="/techflowpost" path="/techflowpost" radar="1" />
+<Route data={{"path":["/express","/newsflash"],"categories":["finance"],"example":"/techflowpost/express","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["techflowpost.com/newsletter/index.html"]},"name":"快讯","maintainers":["nczitzk"],"url":"techflowpost.com/newsletter/index.html","location":"express.ts"}} />
### 快讯 {#shen-chao-techflow-kuai-xun}
-<Route author="nczitzk" example="/techflowpost/express" path="/techflowpost/express" radar="1" />
+<Route data={{"path":["/express","/newsflash"],"categories":["finance"],"example":"/techflowpost/express","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["techflowpost.com/newsletter/index.html"]},"name":"快讯","maintainers":["nczitzk"],"url":"techflowpost.com/newsletter/index.html","location":"express.ts"}} />
## 深圳证券交易所 {#shen-zhen-zheng-quan-jiao-yi-suo}
-### 上市公告 - 可转换债券 {#shen-zhen-zheng-quan-jiao-yi-suo-shang-shi-gong-gao-ke-zhuan-huan-zhai-quan}
+### 创业板项目动态 {#shen-zhen-zheng-quan-jiao-yi-suo-chuang-ye-ban-xiang-mu-dong-tai}
-<Route author="Jeason0228 nczitzk" example="/szse/notice" path="/szse/notice" />
+<Route data={{"path":"/projectdynamic/:type?/:stage?/:status?","categories":["finance"],"example":"/szse/projectdynamic","parameters":{"type":"类型,见下表,默认为IPO","stage":"阶段,见下表,默认为全部","status":"状态,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["listing.szse.cn/projectdynamic/1/index.html","listing.szse.cn/projectdynamic/2/index.html","listing.szse.cn/projectdynamic/3/index.html","listing.szse.cn/"]},"name":"创业板项目动态","maintainers":["nczitzk"],"url":"listing.szse.cn/projectdynamic/1/index.html","description":"类型\n\n | IPO | 再融资 | 重大资产重组 |\n | --- | ------ | ------------ |\n | 1 | 2 | 3 |\n\n 阶段\n\n | 全部 | 受理 | 问询 | 上市委会议 |\n | ---- | ---- | ---- | ---------- |\n | 0 | 10 | 20 | 30 |\n\n | 提交注册 | 注册结果 | 中止 | 终止 |\n | -------- | -------- | ---- | ---- |\n | 35 | 40 | 50 | 60 |\n\n 状态\n\n | 全部 | 新受理 | 已问询 | 通过 | 未通过 |\n | ---- | ------ | ------ | ---- | ------ |\n | 0 | 20 | 30 | 45 | 44 |\n\n | 暂缓审议 | 复审通过 | 复审不通过 | 提交注册 |\n | -------- | -------- | ---------- | -------- |\n | 46 | 56 | 54 | 60 |\n\n | 注册生效 | 不予注册 | 补充审核 | 终止注册 |\n | -------- | -------- | -------- | -------- |\n | 70 | 74 | 78 | 76 |\n\n | 中止 | 审核不通过 | 撤回 |\n | ---- | ---------- | ---- |\n | 80 | 90 | 95 |","location":"projectdynamic.ts"}} />
-### 问询函件 {#shen-zhen-zheng-quan-jiao-yi-suo-wen-xun-han-jian}
+类型
-<Route author="Jeason0228 nczitzk" example="/szse/inquire" path="/szse/inquire/:category?/:select?/:keyword?" paramsDesc={['类型,见下表,默认为 `0` 即 主板', '函件类别, 见下表,默认为全部函件类别', '公司代码或简称,默认为空']}>
- 类型
+| IPO | 再融资 | 重大资产重组 |
+| --- | ------ | ------------ |
+| 1 | 2 | 3 |
- | 主板 | 创业板 |
- | ---- | ------ |
- | 0 | 1 |
+阶段
- 函件类别
+| 全部 | 受理 | 问询 | 上市委会议 |
+| ---- | ---- | ---- | ---------- |
+| 0 | 10 | 20 | 30 |
- | 全部函件类别 | 非许可类重组问询函 | 问询函 | 违法违规线索分析报告 | 许可类重组问询函 | 监管函(会计师事务所模板) | 提请关注函(会计师事务所模板) | 年报问询函 | 向中介机构发函 | 半年报问询函 | 关注函 | 公司部函 | 三季报问询函 |
- | ------------ | ------------------ | ------ | -------------------- | ---------------- | -------------------------- | ------------------------------ | ---------- | -------------- | ------------ | ------ | -------- | ------------ |
-</Route>
+| 提交注册 | 注册结果 | 中止 | 终止 |
+| -------- | -------- | ---- | ---- |
+| 35 | 40 | 50 | 60 |
-### 最新规则 {#shen-zhen-zheng-quan-jiao-yi-suo-zui-xin-gui-ze}
+状态
-<Route author="nczitzk" example="/szse/rule" path="/szse/rule" />
+| 全部 | 新受理 | 已问询 | 通过 | 未通过 |
+| ---- | ------ | ------ | ---- | ------ |
+| 0 | 20 | 30 | 45 | 44 |
-### 创业板项目动态 {#shen-zhen-zheng-quan-jiao-yi-suo-chuang-ye-ban-xiang-mu-dong-tai}
+| 暂缓审议 | 复审通过 | 复审不通过 | 提交注册 |
+| -------- | -------- | ---------- | -------- |
+| 46 | 56 | 54 | 60 |
+
+| 注册生效 | 不予注册 | 补充审核 | 终止注册 |
+| -------- | -------- | -------- | -------- |
+| 70 | 74 | 78 | 76 |
-<Route author="nczitzk" example="/szse/projectdynamic" path="/szse/projectdynamic/:type?/:stage?/:status?" paramsDesc={['类型,见下表,默认为IPO', '阶段,见下表,默认为全部', '状态,见下表,默认为全部']}>
- 类型
+| 中止 | 审核不通过 | 撤回 |
+| ---- | ---------- | ---- |
+| 80 | 90 | 95 |
- | IPO | 再融资 | 重大资产重组 |
- | --- | ------ | ------------ |
- | 1 | 2 | 3 |
+### 上市公告 - 可转换债券 {#shen-zhen-zheng-quan-jiao-yi-suo-shang-shi-gong-gao-ke-zhuan-huan-zhai-quan}
- 阶段
+<Route data={{"path":"/notice","categories":["finance"],"example":"/szse/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["szse.cn/disclosure/notice/company/index.html","szse.cn/"]},"name":"上市公告 - 可转换债券","maintainers":["Jeason0228","nczitzk"],"url":"szse.cn/disclosure/notice/company/index.html","location":"notice.ts"}} />
- | 全部 | 受理 | 问询 | 上市委会议 |
- | ---- | ---- | ---- | ---------- |
- | 0 | 10 | 20 | 30 |
+### 问询函件 {#shen-zhen-zheng-quan-jiao-yi-suo-wen-xun-han-jian}
- | 提交注册 | 注册结果 | 中止 | 终止 |
- | -------- | -------- | ---- | ---- |
- | 35 | 40 | 50 | 60 |
+<Route data={{"path":"/inquire/:category?/:select?/:keyword?","categories":["finance"],"example":"/szse/inquire","parameters":{"category":"类型,见下表,默认为 `0` 即 主板","select":"函件类别, 见下表,默认为全部函件类别","keyword":"公司代码或简称,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["szse.cn/disclosure/supervision/inquire/index.html","szse.cn/"],"target":"/inquire"},"name":"问询函件","maintainers":["Jeason0228","nczitzk"],"url":"szse.cn/disclosure/supervision/inquire/index.html","description":"类型\n\n | 主板 | 创业板 |\n | ---- | ------ |\n | 0 | 1 |\n\n 函件类别\n\n | 全部函件类别 | 非许可类重组问询函 | 问询函 | 违法违规线索分析报告 | 许可类重组问询函 | 监管函(会计师事务所模板) | 提请关注函(会计师事务所模板) | 年报问询函 | 向中介机构发函 | 半年报问询函 | 关注函 | 公司部函 | 三季报问询函 |\n | ------------ | ------------------ | ------ | -------------------- | ---------------- | -------------------------- | ------------------------------ | ---------- | -------------- | ------------ | ------ | -------- | ------------ |","location":"inquire.ts"}} />
- 状态
+类型
- | 全部 | 新受理 | 已问询 | 通过 | 未通过 |
- | ---- | ------ | ------ | ---- | ------ |
- | 0 | 20 | 30 | 45 | 44 |
+| 主板 | 创业板 |
+| ---- | ------ |
+| 0 | 1 |
- | 暂缓审议 | 复审通过 | 复审不通过 | 提交注册 |
- | -------- | -------- | ---------- | -------- |
- | 46 | 56 | 54 | 60 |
+函件类别
- | 注册生效 | 不予注册 | 补充审核 | 终止注册 |
- | -------- | -------- | -------- | -------- |
- | 70 | 74 | 78 | 76 |
+| 全部函件类别 | 非许可类重组问询函 | 问询函 | 违法违规线索分析报告 | 许可类重组问询函 | 监管函(会计师事务所模板) | 提请关注函(会计师事务所模板) | 年报问询函 | 向中介机构发函 | 半年报问询函 | 关注函 | 公司部函 | 三季报问询函 |
+| ------------ | ------------------ | ------ | -------------------- | ---------------- | -------------------------- | ------------------------------ | ---------- | -------------- | ------------ | ------ | -------- | ------------ |
- | 中止 | 审核不通过 | 撤回 |
- | ---- | ---------- | ---- |
- | 80 | 90 | 95 |
-</Route>
+### 最新规则 {#shen-zhen-zheng-quan-jiao-yi-suo-zui-xin-gui-ze}
+
+<Route data={{"path":"/rule","categories":["finance"],"example":"/szse/rule","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["szse.cn/lawrules/rule/new","szse.cn/"]},"name":"最新规则","maintainers":["nczitzk"],"url":"szse.cn/lawrules/rule/new","location":"rule.ts"}} />
## 淘股吧 {#tao-gu-ba}
-### 淘股论坛 {#tao-gu-ba-tao-gu-lun-tan}
+### 用户博客 {#tao-gu-ba-yong-hu-bo-ke}
-<Route author="emdoe nczitzk" example="/taoguba" path="/taoguba/:category?" paramsDesc={['分类,见下表,默认为社区总版']} notOperational="1">
- | 淘股论坛 | 社区总版 | 精华加油 | 网友点赞 |
- | -------- | -------- | -------- | -------- |
- | bbs | zongban | jinghua | dianzan |
-</Route>
+<Route data={{"path":["/blog/:id","/user/:id"],"categories":["finance"],"example":"/taoguba/blog/252069","parameters":{"id":"博客 id,可在对应博客页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taoguba.com.cn/blog/:id","taoguba.com.cn/"]},"name":"用户博客","maintainers":["nczitzk"],"location":"blog.ts"}} />
### 用户博客 {#tao-gu-ba-yong-hu-bo-ke}
-<Route author="emdoe nczitzk" example="/taoguba/blog/252069" path="/taoguba/blog/:id" paramsDesc={['博客 id,可在对应博客页中找到']} />
+<Route data={{"path":["/blog/:id","/user/:id"],"categories":["finance"],"example":"/taoguba/blog/252069","parameters":{"id":"博客 id,可在对应博客页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taoguba.com.cn/blog/:id","taoguba.com.cn/"]},"name":"用户博客","maintainers":["nczitzk"],"location":"blog.ts"}} />
## 乌拉邦 {#wu-la-bang}
-### 最新研报 {#wu-la-bang-zui-xin-yan-bao}
+### 频道 {#wu-la-bang-pin-dao}
-<Route author="Fatpandac" example="/ulapia/research/latest" path="/ulapia/research/latest" />
+<Route data={{"path":"/reports/:category?","categories":["finance"],"example":"/ulapia/reports/stock_research","parameters":{"category":"频道类型,默认为券商晨报(今日晨报)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道","maintainers":["Fatpandac"],"description":"| 个股研报 | 行业研报 | 策略研报 | 宏观研报 | 新股研报 | 券商晨报(今日晨报) |\n | :-------------: | :----------------: | :----------------: | :-------------: | :-----------: | :------------------: |\n | stock_research | industry_research | strategy_research | macro_research | ipo_research | brokerage_news |","location":"index.ts"}} />
-### 频道 {#wu-la-bang-pin-dao}
+| 个股研报 | 行业研报 | 策略研报 | 宏观研报 | 新股研报 | 券商晨报(今日晨报) |
+| :-------------: | :----------------: | :----------------: | :-------------: | :-----------: | :------------------: |
+| stock\_research | industry\_research | strategy\_research | macro\_research | ipo\_research | brokerage\_news |
+
+### 最新研报 {#wu-la-bang-zui-xin-yan-bao}
-<Route author="Fatpandac" example="/ulapia/reports/stock_research" path="/ulapia/reports/:category?" paramsDesc={['频道类型,默认为券商晨报(今日晨报)']}>
- | 个股研报 | 行业研报 | 策略研报 | 宏观研报 | 新股研报 | 券商晨报(今日晨报) |
- | :-------------: | :----------------: | :----------------: | :-------------: | :-----------: | :------------------: |
- | stock\_research | industry\_research | strategy\_research | macro\_research | ipo\_research | brokerage\_news |
-</Route>
+<Route data={{"path":"/research/latest","categories":["finance"],"example":"/ulapia/research/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ulapia.com/"]},"name":"最新研报","maintainers":[],"url":"www.ulapia.com/","location":"research.ts"}} />
## 雪球 {#xue-qiu}
-### 今日话题 {#xue-qiu-jin-ri-hua-ti}
+### 蛋卷基金净值更新 {#xue-qiu-dan-juan-ji-jin-jing-zhi-geng-xin}
-<Route author="nczitzk" example="/xueqiu/today" path="/xueqiu/today" />
+<Route data={{"path":"/fund/:id","categories":["finance"],"example":"/xueqiu/fund/040008","parameters":{"id":"基金代码, 可在基金主页 URL 中找到. 此路由的数据为场外基金 (`F`开头)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"蛋卷基金净值更新","maintainers":["HenryQW","NathanDai"],"location":"fund.ts"}} />
-### 用户动态 {#xue-qiu-yong-hu-dong-tai}
+### 股票评论 {#xue-qiu-gu-piao-ping-lun}
-<Route author="imlonghao" example="/xueqiu/user/8152922548" path="/xueqiu/user/:id/:type?" paramsDesc={['用户 id, 可在用户主页 URL 中找到', '动态的类型, 不填则默认全部']}>
- | 原发布 | 长文 | 问答 | 热门 | 交易 |
- | ------ | ---- | ---- | ---- | ---- |
- | 0 | 2 | 4 | 9 | 11 |
-</Route>
+<Route data={{"path":"/stock_comments/:id","categories":["finance"],"example":"/xueqiu/stock_comments/SZ002626","parameters":{"id":"股票代码(需要带上交易所)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/S/:id"]},"name":"股票评论","maintainers":[],"location":"stock-comments.ts"}} />
-### 用户收藏动态 {#xue-qiu-yong-hu-shou-cang-dong-tai}
+### 股票信息 {#xue-qiu-gu-piao-xin-xi}
-<Route author="imlonghao" example="/xueqiu/favorite/8152922548" path="/xueqiu/favorite/:id" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} />
+<Route data={{"path":"/stock_info/:id/:type?","categories":["finance"],"example":"/xueqiu/stock_info/SZ000002","parameters":{"id":"股票代码(需要带上交易所)","type":"动态的类型, 不填则为股票公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/S/:id","xueqiu.com/s/:id"],"target":"/stock_info/:id"},"name":"股票信息","maintainers":["YuYang"],"description":"| 公告 | 新闻 | 研报 |\n | ------------ | ---- | -------- |\n | announcement | news | research |","location":"stock-info.ts"}} />
-### 用户自选动态 {#xue-qiu-yong-hu-zi-xuan-dong-tai}
+| 公告 | 新闻 | 研报 |
+| ------------ | ---- | -------- |
+| announcement | news | research |
-<Route author="hillerliao" example="/xueqiu/user_stock/1247347556" path="/xueqiu/user_stock/:id" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} />
+### 今日话题 {#xue-qiu-jin-ri-hua-ti}
-### 用户专栏 {#xue-qiu-yong-hu-zhuan-lan}
+<Route data={{"path":"/today","categories":["finance"],"example":"/xueqiu/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/today"]},"name":"今日话题","maintainers":["nczitzk"],"url":"xueqiu.com/today","location":"today.ts"}} />
-<Route author="TonyRL" example="/xueqiu/column/9962554712" path="/xueqiu/column/:id" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} radar="1" />
+### 热帖 {#xue-qiu-re-tie}
-### 蛋卷基金净值更新 {#xue-qiu-dan-juan-ji-jin-jing-zhi-geng-xin}
+<Route data={{"path":"/hots","categories":["finance"],"example":"/xueqiu/hots","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/"]},"name":"热帖","maintainers":["hillerliao"],"url":"xueqiu.com/","location":"hots.ts"}} />
-<Route author="HenryQW NathanDai" example="/xueqiu/fund/040008" path="/xueqiu/fund/:id" paramsDesc={['基金代码, 可在基金主页 URL 中找到. 此路由的数据为场外基金 (`F`开头)']} />
+### 用户动态 {#xue-qiu-yong-hu-dong-tai}
-### 组合最新调仓信息 {#xue-qiu-zu-he-zui-xin-tiao-cang-xin-xi}
+<Route data={{"path":"/user/:id/:type?","categories":["finance"],"example":"/xueqiu/user/8152922548","parameters":{"id":"用户 id, 可在用户主页 URL 中找到","type":"动态的类型, 不填则默认全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/u/:id"],"target":"/user/:id"},"name":"用户动态","maintainers":["imlonghao"],"description":"| 原发布 | 长文 | 问答 | 热门 | 交易 |\n | ------ | ---- | ---- | ---- | ---- |\n | 0 | 2 | 4 | 9 | 11 |","location":"user.ts"}} />
-<Route author="ZhishanZhang" example="/xueqiu/snb/ZH1288184" path="/xueqiu/snb/:id" paramsDesc={['组合代码, 可在组合主页 URL 中找到.']} />
+| 原发布 | 长文 | 问答 | 热门 | 交易 |
+| ------ | ---- | ---- | ---- | ---- |
+| 0 | 2 | 4 | 9 | 11 |
-### 股票信息 {#xue-qiu-gu-piao-xin-xi}
+### 用户收藏动态 {#xue-qiu-yong-hu-shou-cang-dong-tai}
-<Route author="YuYang" example="/xueqiu/stock_info/SZ000002" path="/xueqiu/stock_info/:id/:type?" paramsDesc={['股票代码(需要带上交易所)', '动态的类型, 不填则为股票公告']}>
- | 公告 | 新闻 | 研报 |
- | ------------ | ---- | -------- |
- | announcement | news | research |
-</Route>
+<Route data={{"path":"/favorite/:id","categories":["finance"],"example":"/xueqiu/favorite/8152922548","parameters":{"id":"用户 id, 可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/u/:id"]},"name":"用户收藏动态","maintainers":["imlonghao"],"location":"favorite.ts"}} />
-### 股票评论 {#xue-qiu-gu-piao-ping-lun}
+### 用户专栏 {#xue-qiu-yong-hu-zhuan-lan}
-<Route author="zytomorrow" example="/xueqiu/stock_comments/SZ002626" path="/xueqiu/stock_comments/:id" paramsDesc={['股票代码(需要带上交易所)']} />
+<Route data={{"path":"/column/:id","categories":["finance"],"example":"/xueqiu/column/9962554712","parameters":{"id":"用户 id, 可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/:id/column"]},"name":"用户专栏","maintainers":["TonyRL"],"location":"column.ts"}} />
-### 热帖 {#xue-qiu-re-tie}
+### 用户自选动态 {#xue-qiu-yong-hu-zi-xuan-dong-tai}
+
+<Route data={{"path":"/user_stock/:id","categories":["finance"],"example":"/xueqiu/user_stock/1247347556","parameters":{"id":"用户 id, 可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/u/:id"]},"name":"用户自选动态","maintainers":["hillerliao"],"location":"user-stock.ts"}} />
-<Route author="hillerliao" example="/xueqiu/hots" path="/xueqiu/hots" />
+### 组合最新调仓信息 {#xue-qiu-zu-he-zui-xin-tiao-cang-xin-xi}
+
+<Route data={{"path":"/snb/:id","categories":["finance"],"example":"/xueqiu/snb/ZH1288184","parameters":{"id":"组合代码, 可在组合主页 URL 中找到."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xueqiu.com/P/:id","xueqiu.com/p/:id"]},"name":"组合最新调仓信息","maintainers":["ZhishanZhang"],"location":"snb.ts"}} />
## 有知有行 {#you-zhi-you-xing}
### 有知文章 {#you-zhi-you-xing-you-zhi-wen-zhang}
-<Route author="broven Fatpandac nczitzk" example="/youzhiyouxing/materials" path="/youzhiyouxing/materials/:id?" paramsDesc={['分类,见下表,默认为全部']}>
- | 全部 | 知行小酒馆 | 知行黑板报 | 无人知晓 | 孟岩专栏 | 知行读书会 | 你好,同路人 |
- | :--: | :--------: | :--------: | :------: | :------: | :--------: | :----------: |
- | 0 | 4 | 2 | 10 | 1 | 3 | 11 |
-</Route>
+<Route data={{"path":"/materials/:id?","categories":["finance"],"example":"/youzhiyouxing/materials","parameters":{"id":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["youzhiyouxing.cn/materials"],"target":"/materials"},"name":"有知文章","maintainers":["broven","Fatpandac","nczitzk"],"url":"youzhiyouxing.cn/materials","description":"| 全部 | 知行小酒馆 | 知行黑板报 | 无人知晓 | 孟岩专栏 | 知行读书会 | 你好,同路人 |\n | :--: | :--------: | :--------: | :------: | :------: | :--------: | :----------: |\n | 0 | 4 | 2 | 10 | 1 | 3 | 11 |","location":"materials.ts"}} />
+
+| 全部 | 知行小酒馆 | 知行黑板报 | 无人知晓 | 孟岩专栏 | 知行读书会 | 你好,同路人 |
+| :--: | :--------: | :--------: | :------: | :------: | :--------: | :----------: |
+| 0 | 4 | 2 | 10 | 1 | 3 | 11 |
## 证券时报网 {#zheng-quan-shi-bao-wang}
### 栏目 {#zheng-quan-shi-bao-wang-lan-mu}
-<Route author="nczitzk" example="/stcn/yw" path="/stcn/:id?" paramsDesc={['栏目 id,见下表,默认为要闻']}>
- | 快讯 | 要闻 | 股市 | 公司 | 数据 |
- | ---- | ---- | ---- | ------- | ---- |
- | kx | yw | gs | company | data |
+<Route data={{"path":"/:id?","categories":["finance"],"example":"/stcn/yw","parameters":{"id":"栏目 id,见下表,默认为要闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["nczitzk"],"description":"| 快讯 | 要闻 | 股市 | 公司 | 数据 |\n | ---- | ---- | ---- | ------- | ---- |\n | kx | yw | gs | company | data |\n\n | 基金 | 金融 | 评论 | 产经 | 创投 |\n | ---- | ------- | ------- | ---- | ---- |\n | fund | finance | comment | cj | ct |\n\n | 科创板 | 新三板 | 投教 | ESG | 滚动 |\n | ------ | ------ | ---- | --- | ---- |\n | kcb | xsb | tj | zk | gd |\n\n | 股市一览 | 独家解读 |\n | -------- | -------- |\n | gsyl | djjd |\n\n | 公司新闻 | 公司动态 |\n | -------- | -------- |\n | gsxw | gsdt |\n\n | 独家数据 | 看点数据 | 资金流向 | 科创板 | 行情总貌 |\n | -------- | -------- | -------- | ------- | -------- |\n | djsj | kd | zj | sj_kcb | hq |\n\n | 专栏 | 作者 |\n | ---- | ------ |\n | zl | author |\n\n | 行业 | 汽车 |\n | ---- | ---- |\n | cjhy | cjqc |\n\n | 投教课堂 | 政策知识 | 投教动态 | 专题活动 |\n | -------- | -------- | -------- | -------- |\n | tjkt | zczs | tjdt | zthd |","location":"index.ts"}} />
- | 基金 | 金融 | 评论 | 产经 | 创投 |
- | ---- | ------- | ------- | ---- | ---- |
- | fund | finance | comment | cj | ct |
+| 快讯 | 要闻 | 股市 | 公司 | 数据 |
+| ---- | ---- | ---- | ------- | ---- |
+| kx | yw | gs | company | data |
- | 科创板 | 新三板 | 投教 | ESG | 滚动 |
- | ------ | ------ | ---- | --- | ---- |
- | kcb | xsb | tj | zk | gd |
+| 基金 | 金融 | 评论 | 产经 | 创投 |
+| ---- | ------- | ------- | ---- | ---- |
+| fund | finance | comment | cj | ct |
- | 股市一览 | 独家解读 |
- | -------- | -------- |
- | gsyl | djjd |
+| 科创板 | 新三板 | 投教 | ESG | 滚动 |
+| ------ | ------ | ---- | --- | ---- |
+| kcb | xsb | tj | zk | gd |
- | 公司新闻 | 公司动态 |
- | -------- | -------- |
- | gsxw | gsdt |
+| 股市一览 | 独家解读 |
+| -------- | -------- |
+| gsyl | djjd |
- | 独家数据 | 看点数据 | 资金流向 | 科创板 | 行情总貌 |
- | -------- | -------- | -------- | ------- | -------- |
- | djsj | kd | zj | sj\_kcb | hq |
+| 公司新闻 | 公司动态 |
+| -------- | -------- |
+| gsxw | gsdt |
- | 专栏 | 作者 |
- | ---- | ------ |
- | zl | author |
+| 独家数据 | 看点数据 | 资金流向 | 科创板 | 行情总貌 |
+| -------- | -------- | -------- | ------- | -------- |
+| djsj | kd | zj | sj\_kcb | hq |
- | 行业 | 汽车 |
- | ---- | ---- |
- | cjhy | cjqc |
+| 专栏 | 作者 |
+| ---- | ------ |
+| zl | author |
- | 投教课堂 | 政策知识 | 投教动态 | 专题活动 |
- | -------- | -------- | -------- | -------- |
- | tjkt | zczs | tjdt | zthd |
-</Route>
+| 行业 | 汽车 |
+| ---- | ---- |
+| cjhy | cjqc |
+
+| 投教课堂 | 政策知识 | 投教动态 | 专题活动 |
+| -------- | -------- | -------- | -------- |
+| tjkt | zczs | tjdt | zthd |
## 智通财经网 {#zhi-tong-cai-jing-wang}
### 推荐 {#zhi-tong-cai-jing-wang-tui-jian}
-<Route author="nczitzk" example="/zhitongcaijing" path="/zhitongcaijing/:id?/:category?" paramsDesc={['栏目 id,可在对应栏目页 URL 中找到,默认为 recommend,即推荐', '分类 id,可在对应栏目子分类页 URL 中找到,默认为全部']}>
- | id | 栏目 |
- | ------------ | ---- |
- | recommend | 推荐 |
- | hkstock | 港股 |
- | meigu | 美股 |
- | agu | 沪深 |
- | ct | 创投 |
- | esg | ESG |
- | aqs | 券商 |
- | ajj | 基金 |
- | focus | 要闻 |
- | announcement | 公告 |
- | research | 研究 |
- | shares | 新股 |
- | bazaar | 市场 |
- | company | 公司 |
-</Route>
+<Route data={{"path":"/:id?/:category?","categories":["finance"],"example":"/zhitongcaijing","parameters":{"id":"栏目 id,可在对应栏目页 URL 中找到,默认为 recommend,即推荐","category":"分类 id,可在对应栏目子分类页 URL 中找到,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"推荐","maintainers":["nczitzk"],"description":"| id | 栏目 |\n | ------------ | ---- |\n | recommend | 推荐 |\n | hkstock | 港股 |\n | meigu | 美股 |\n | agu | 沪深 |\n | ct | 创投 |\n | esg | ESG |\n | aqs | 券商 |\n | ajj | 基金 |\n | focus | 要闻 |\n | announcement | 公告 |\n | research | 研究 |\n | shares | 新股 |\n | bazaar | 市场 |\n | company | 公司 |","location":"index.ts"}} />
+
+| id | 栏目 |
+| ------------ | ---- |
+| recommend | 推荐 |
+| hkstock | 港股 |
+| meigu | 美股 |
+| agu | 沪深 |
+| ct | 创投 |
+| esg | ESG |
+| aqs | 券商 |
+| ajj | 基金 |
+| focus | 要闻 |
+| announcement | 公告 |
+| research | 研究 |
+| shares | 新股 |
+| bazaar | 市场 |
+| company | 公司 |
## 中国货币网 {#zhong-guo-huo-bi-wang}
### 公告 {#zhong-guo-huo-bi-wang-gong-gao}
-<Route author="TonyRL" example="/chinamoney" path="/chinamoney/:channelId?" paramsDesc={['分类,见下表,默认为 `2834`']}>
- <details>
- <summary>市场公告</summary>
+<Route data={{"path":"/:channelId?","categories":["finance"],"example":"/chinamoney","parameters":{"channelId":"分类,见下表,默认为 `2834`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公告","maintainers":["TonyRL"],"description":"<details>\n <summary>市场公告</summary>\n\n 外汇市场公告\n\n | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |\n | ---- | ------------ | ------------ | ------------ |\n | 2834 | 2835 | 2836 | 2837 |\n\n 本币市场公告\n\n | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |\n | -------------- | ------------ | ------------ | ------------ |\n | 2839,2840,2841 | 2839 | 2840 | 2841 |\n\n 央行业务公告\n\n | 最新 | 公开市场操作 | 中央国库现金管理 |\n | --------- | ------------ | ---------------- |\n | 2845,2846 | 2845 | 2846 |\n </details>\n\n <details>\n <summary>本币市场</summary>\n\n 贷款市场报价利率\n\n | LPR 市场公告 |\n | ------------ |\n | 3686 |\n </details>","location":"notice.ts"}} />
+
+<details>
+ <summary>市场公告</summary>
- 外汇市场公告
+ 外汇市场公告
- | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
- | ---- | ------------ | ------------ | ------------ |
- | 2834 | 2835 | 2836 | 2837 |
+ | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
+ | ---- | ------------ | ------------ | ------------ |
+ | 2834 | 2835 | 2836 | 2837 |
- 本币市场公告
+ 本币市场公告
- | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
- | -------------- | ------------ | ------------ | ------------ |
- | 2839,2840,2841 | 2839 | 2840 | 2841 |
+ | 最新 | 市场公告通知 | 中心会员公告 | 会员信息公告 |
+ | -------------- | ------------ | ------------ | ------------ |
+ | 2839,2840,2841 | 2839 | 2840 | 2841 |
- 央行业务公告
+ 央行业务公告
- | 最新 | 公开市场操作 | 中央国库现金管理 |
- | --------- | ------------ | ---------------- |
- | 2845,2846 | 2845 | 2846 |
- </details>
+ | 最新 | 公开市场操作 | 中央国库现金管理 |
+ | --------- | ------------ | ---------------- |
+ | 2845,2846 | 2845 | 2846 |
+</details>
- <details>
- <summary>本币市场</summary>
+<details>
+ <summary>本币市场</summary>
- 贷款市场报价利率
+ 贷款市场报价利率
- | LPR 市场公告 |
- | ------------ |
- | 3686 |
- </details>
-</Route>
+ | LPR 市场公告 |
+ | ------------ |
+ | 3686 |
+</details>
-## 中国期货市场监控中心 {#zhong-guo-qi-huo-shi-chang-jian-kong-zhong-xin}
+## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
-### 栏目 {#zhong-guo-qi-huo-shi-chang-jian-kong-zhong-xin-lan-mu}
+<details>
+ <summary>*业务咨询* 和 *投诉建议* 可用的站点参数</summary>
-<Route author="nczitzk" example="/cfmmc/main/noticeannouncement/cfmmcnotice" path="/cfmmc/:id?" paramsDesc={['栏目 id,见下表,默认为中国期货监控公告']} radar="1">
- #### 党的建设
+ | 上海市 | 北京市 | 天津市 | 河北省 |
+ | -------- | ------- | ------- | ------ |
+ | shanghai | beijing | tianjin | hebei |
- | 栏目 | id |
- | -------- | -------------------------------------- |
- | 党建动态 | main/partybuilding/partybuildingtrends |
- | 基层风采 | main/partybuilding/basestyle |
- | 学习园地 | main/partybuilding/learninggarden |
+ | 山西省 | 内蒙古自治区 | 辽宁省 | 吉林省 |
+ | ------ | ------------ | -------- | ------ |
+ | shanxi | neimenggu | liaoning | jilin |
- #### 通知公告
+ | 黑龙江省 | 江苏省 | 浙江省 | 安徽省 |
+ | ------------ | ------- | -------- | ------ |
+ | heilongjiang | jiangsu | zhejiang | anhui |
- | 栏目 | id |
- | ---------------- | ----------------------------------- |
- | 中国期货监控公告 | main/noticeannouncement/cfmmcnotice |
- | 证监会公告 | main/noticeannouncement/csrcnotice |
- | 上期所公告 | main/noticeannouncement/shfenotice |
- | 郑商所公告 | main/noticeannouncement/czcenotice |
- | 大商所公告 | main/noticeannouncement/dcenotice |
- | 中金所公告 | main/noticeannouncement/cffexnotice |
- | 广期所公告 | main/noticeannouncement/gfexnotice |
+ | 福建省 | 江西省 | 山东省 | 河南省 |
+ | ------ | ------- | -------- | ------ |
+ | fujian | jiangxi | shandong | henan |
- #### 焦点新闻
+ | 湖北省 | 湖南省 | 广东省 | 广西壮族自治区 |
+ | ------ | ------ | --------- | -------------- |
+ | hubei | hunan | guangdong | guangxi |
- | 栏目 | id |
- | -------- | -------------------------------- |
- | 财经要闻 | main/focusnews/financialnews |
- | 专题聚焦 | main/focusnews/thematicfocus |
- | 金融动态 | main/focusnews/financialdynamics |
+ | 海南省 | 重庆市 | 四川省 | 贵州省 |
+ | ------ | --------- | ------- | ------- |
+ | hainan | chongqing | sichuan | guizhou |
- #### 保障基金
+ | 云南省 | 西藏自治区 | 陕西省 | 甘肃省 |
+ | ------ | ---------- | ------- | ------ |
+ | yunnan | xizang | shaanxi | gansu |
- | 栏目 | id |
- | -------- | ------------------------------------- |
- | 基金概况 | main/securityfund/fundoverview |
- | 政策法规 | main/securityfund/policiesregulations |
- | 公告信息 | main/securityfund/noticeinformation |
+ | 青海省 | 宁夏回族自治区 | 新疆维吾尔自治区 | 大连市 |
+ | ------- | -------------- | ---------------- | ------ |
+ | qinghai | ningxia | xinjiang | dalian |
- #### 政策法规
+ | 宁波市 | 厦门市 | 青岛市 | 深圳市 |
+ | ------ | ------ | ------- | -------- |
+ | ningbo | xiamen | qingdao | shenzhen |
+</details>
- | 栏目 | id |
- | -------------------- | --------------------------------------------- |
- | 国家法律法规 | main/policiesregulations/lawsregulations |
- | 部门规章及规范性文件 | main/policiesregulations/regulationsnormative |
- | 行业法规政策 | main/policiesregulations/industrypolicies |
- | 中国期货监控相关规则 | main/policiesregulations/cfmmcrules |
-</Route>
+### 工作论文 {#zhong-guo-ren-min-yin-hang-gong-zuo-lun-wen}
-## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
+<Route data={{"path":"/pbc/gzlw","categories":["finance"],"example":"/gov/pbc/gzlw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pbc.gov.cn/redianzhuanti/118742/4122386/4122692/index.html"]},"name":"工作论文","maintainers":["Fatpandac"],"url":"pbc.gov.cn/redianzhuanti/118742/4122386/4122692/index.html","location":"pbc/gzlw.ts"}} />
### 沟通交流 {#zhong-guo-ren-min-yin-hang-gou-tong-jiao-liu}
-<Route author="nczitzk" example="/gov/pbc/goutongjiaoliu" path="/gov/pbc/goutongjiaoliu" puppeteer="1" notOperational="1" />
+<Route data={{"path":"/pbc/goutongjiaoliu","categories":["finance"],"example":"/gov/pbc/goutongjiaoliu","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pbc.gov.cn/goutongjiaoliu/113456/113469/index.html"]},"name":"沟通交流","maintainers":["nczitzk"],"url":"pbc.gov.cn/goutongjiaoliu/113456/113469/index.html","location":"pbc/goutongjiaoliu.ts"}} />
### 货币政策司公开市场交易公告 {#zhong-guo-ren-min-yin-hang-huo-bi-zheng-ce-si-gong-kai-shi-chang-jiao-yi-gong-gao}
-<Route author="nczitzk" example="/gov/pbc/tradeAnnouncement" path="/gov/pbc/tradeAnnouncement" puppeteer="1" notOperational="1" />
-
-### 政策研究 {#zhong-guo-ren-min-yin-hang-zheng-ce-yan-jiu}
-
-<Route author="Fatpandac" example="/gov/pbc/zcjl" path="/gov/pbc/zcjl" notOperational="1" />
-
-### 工作论文 {#zhong-guo-ren-min-yin-hang-gong-zuo-lun-wen}
-
-<Route author="Fatpandac" example="/gov/pbc/gzlw" path="/gov/pbc/gzlw" />
+<Route data={{"path":"/pbc/tradeAnnouncement","categories":["finance"],"example":"/gov/pbc/tradeAnnouncement","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"货币政策司公开市场交易公告","maintainers":["nczitzk"],"location":"pbc/trade-announcement.ts"}} />
## 中证网 {#zhong-zheng-wang}
-### 栏目 {#zhong-zheng-wang-lan-mu}
-
-<Route author="nczitzk" example="/cs" path="/cs/:category?" paramsDesc={['分类,见下表,默认为首页']} radar="1">
- | 要闻 | 公司 | 市场 | 基金 |
- | ---- | ---- | ---- | ---- |
- | xwzx | ssgs | gppd | tzjj |
-
- | 科创 | 产经 | 期货 | 海外 |
- | ---- | ------ | -------- | ------ |
- | 5g | cj2020 | zzqh2020 | hw2020 |
-
- <details>
- <summary>更多栏目</summary>
-
- #### 要闻
-
- | 财经要闻 | 观点评论 | 民生消费 |
- | -------- | -------- | --------- |
- | xwzx/hg | xwzx/jr | xwzx/msxf |
-
- #### 公司
-
- | 公司要闻 | 公司深度 | 公司巡礼 |
- | --------- | --------- | --------- |
- | ssgs/gsxw | ssgs/gssd | ssgs/gsxl |
-
- #### 市场
-
- | A 股市场 | 港股资讯 | 债市研究 | 海外报道 | 期货报道 |
- | --------- | --------- | --------- | --------- | --------- |
- | gppd/gsyj | gppd/ggzx | gppd/zqxw | gppd/hwbd | gppd/qhbd |
-
- #### 基金
-
- | 基金动态 | 基金视点 | 基金持仓 | 私募基金 | 基民学苑 |
- | --------- | --------- | --------- | --------- | --------- |
- | tzjj/jjdt | tzjj/jjks | tzjj/jjcs | tzjj/smjj | tzjj/tjdh |
-
- #### 机构
-
- | 券商 | 银行 | 保险 |
- | ---- | ---- | ---- |
- | qs | yh | bx |
-
- #### 其他
-
- | 中证快讯 7x24 | IPO 鉴真 | 公司能见度 |
- | ------------- | -------- | ---------- |
- | sylm/jsbd | yc/ipojz | yc/gsnjd |
- </details>
-</Route>
-
-### 中证视频 {#zhong-zheng-wang-zhong-zheng-shi-pin}
+### Unknown {#zhong-zheng-wang-unknown}
-<Route author="nczitzk" example="/cs/video/今日聚焦" path="/cs/video/:category?" paramsDesc={['分类,见下表,默认为今日聚焦']} radar="1">
- | 今日聚焦 | 传闻求证 | 高端访谈 | 投教课堂 | 直播汇 |
- | -------- | -------- | -------- | -------- | ------ |
-</Route>
+<Route data={{"path":"/video/:category?","categories":["finance"],"example":"/cs/video/今日聚焦","parameters":{"category":"分类,见下表,默认为今日聚焦"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["nczitzk"],"location":"video.ts"}} />
diff --git a/website/docs/routes/forecast.mdx b/website/docs/routes/forecast.mdx
index b3bd703fd854e7..ea572c0551ce7b 100644
--- a/website/docs/routes/forecast.mdx
+++ b/website/docs/routes/forecast.mdx
@@ -1,321 +1,225 @@
-# ❗️ Forecast and alerts
+# forecast
## BADAN METEOROLOGI, KLIMATOLOGI, DAN GEOFISIKA(Indonesian) {#badan-meteorologi-klimatologi-dan-geofisika-indonesian}
-### Recent Earthquakes {#badan-meteorologi-klimatologi-dan-geofisika-indonesian-recent-earthquakes}
+### News {#badan-meteorologi-klimatologi-dan-geofisika-indonesian-news}
-<Route author="Shinanory" example="/bmkg/earthquake" path="/bmkg/earthquake" />
+<Route data={{"path":"/news","categories":["forecast"],"example":"/bmkg/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bmkg.go.id/","bmkg.go.id/berita"]},"name":"News","maintainers":["Shinanory"],"url":"bmkg.go.id/","location":"news.ts"}} />
-### News {#badan-meteorologi-klimatologi-dan-geofisika-indonesian-news}
+### Recent Earthquakes {#badan-meteorologi-klimatologi-dan-geofisika-indonesian-recent-earthquakes}
-<Route author="Shinanory" example="/bmkg/news" path="/bmkg/news" />
+<Route data={{"path":"/earthquake","categories":["forecast"],"example":"/bmkg/earthquake","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bmkg.go.id/","bmkg.go.id/gempabumi-terkini.html"]},"name":"Recent Earthquakes","maintainers":["Shinanory"],"url":"bmkg.go.id/","location":"earthquake.ts"}} />
## Outage.Report {#outage-report}
### Report {#outage-report-report}
-<Route author="cxumol nczitzk" example="/outagereport/ubisoft/5" path="/outagereport/:name/:count?" paramsDesc={['Service name, spelling format must be consistent with URL', 'Counting threshold, will only be written in RSS if the number of people who report to stop serving is not less than this number']} notOperational="1">
- Please skip the local service area code for `name`, for example `https://outage.report/us/verizon-wireless` to `verizon-wireless`.
-</Route>
+<Route data={{"path":"/:name/:count?","categories":["forecast"],"example":"/outagereport/ubisoft/5","parameters":{"name":"Service name, spelling format must be consistent with URL","count":"Counting threshold, will only be written in RSS if the number of people who report to stop serving is not less than this number"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Report","maintainers":["cxumol","nczitzk"],"description":"Please skip the local service area code for `name`, for example `https://outage.report/us/verizon-wireless` to `verizon-wireless`.","location":"index.ts"}} />
+
+Please skip the local service area code for `name`, for example `https://outage.report/us/verizon-wireless` to `verizon-wireless`.
## Uptime Robot {#uptime-robot}
### RSS {#uptime-robot-rss}
-<Route author="Rongronggg9" example="/uptimerobot/rss/u358785-e4323652448755805d668f1a66506f2f" path="/uptimerobot/rss/:id/:routeParams?" paramsDesc={['the last part of your RSS URL (e.g. `u358785-e4323652448755805d668f1a66506f2f` for `https://rss.uptimerobot.com/u358785-e4323652448755805d668f1a66506f2f`)', 'extra parameters, see the table below']}>
- | Key | Description | Accepts | Defaults to |
- | ------ | ------------------------------------------------------------------------ | -------------- | ----------- |
- | showID | Show monitor ID (disabling it will also disable link for each RSS entry) | 0/1/true/false | true |
-</Route>
+<Route data={{"path":"/rss/:id/:routeParams?","categories":["forecast"],"example":"/uptimerobot/rss/u358785-e4323652448755805d668f1a66506f2f","parameters":{"id":"the last part of your RSS URL (e.g. `u358785-e4323652448755805d668f1a66506f2f` for `https://rss.uptimerobot.com/u358785-e4323652448755805d668f1a66506f2f`)","routeParams":"extra parameters, see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rss.uptimerobot.com/:id"],"target":"/rss/:id"},"name":"RSS","maintainers":["Rongronggg9"],"description":"| Key | Description | Accepts | Defaults to |\n | ------ | ------------------------------------------------------------------------ | -------------- | ----------- |\n | showID | Show monitor ID (disabling it will also disable link for each RSS entry) | 0/1/true/false | true |","location":"rss.ts"}} />
+
+| Key | Description | Accepts | Defaults to |
+| ------ | ------------------------------------------------------------------------ | -------------- | ----------- |
+| showID | Show monitor ID (disabling it will also disable link for each RSS entry) | 0/1/true/false | true |
## 重庆燃气 {#chong-qing-ran-qi}
### 停气检修通知 {#chong-qing-ran-qi-ting-qi-jian-xiu-tong-zhi}
-<Route author="Mai19930513" example="/cqgas/tqtz" path="/cqgas/tqtz" radar="1" />
+<Route data={{"path":"/tqtz","categories":["forecast"],"example":"/cqgas/tqtz","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cqgas.cn/"]},"name":"停气检修通知","maintainers":["Mai19930513"],"url":"cqgas.cn/","location":"tqtz.ts"}} />
## 地震速报 {#di-zhen-su-bao}
### 中国地震局 {#di-zhen-su-bao-zhong-guo-di-zhen-ju}
-<Route author="LogicJake" example="/earthquake" path="/earthquake/:region?" paramsDesc={['区域,0全部,1国内(默认),2国外']} anticrawler="1">
- 可通过全局过滤参数订阅您感兴趣的地区.
-</Route>
+<Route data={{"path":"/:region?","categories":["forecast"],"example":"/earthquake","parameters":{"region":"区域,0全部,1国内(默认),2国外"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cea.gov.cn/cea/xwzx/zqsd/index.html","www.cea.gov.cn/"],"target":""},"name":"中国地震局","maintainers":["LogicJake"],"url":"www.cea.gov.cn/cea/xwzx/zqsd/index.html","description":"可通过全局过滤参数订阅您感兴趣的地区.","location":"index.ts"}} />
+
+可通过全局过滤参数订阅您感兴趣的地区.
### 中国地震台 {#di-zhen-su-bao-zhong-guo-di-zhen-tai}
-<Route author="SettingDust" example="/earthquake/ceic/1" path="/earthquake/ceic/:type?" paramsDesc={['类型,见下表']}>
- | 参数 | 类型 |
- | ---- | --------------------------- |
- | 1 | 最近 24 小时地震信息 |
- | 2 | 最近 48 小时地震信息 |
- | 5 | 最近一年 3.0 级以上地震信息 |
- | 7 | 最近一年 3.0 级以下地震 |
- | 8 | 最近一年 4.0 级以上地震信息 |
- | 9 | 最近一年 5.0 级以上地震信息 |
- | 0 | 最近一年 6.0 级以上地震信息 |
-
- 可通过全局过滤参数订阅您感兴趣的地区.
-</Route>
-
-## 广州天气 {#guang-zhou-tian-qi}
-
-### 突发性天气提示 {#guang-zhou-tian-qi-tu-fa-xing-tian-qi-ti-shi}
-
-<Route author="Fatpandac" example="/gov/guangdong/tqyb/tfxtq" path="/gov/guangdong/tqyb/tfxtq" />
-
-### 广东省内城市预警信号 {#guang-zhou-tian-qi-guang-dong-sheng-nei-cheng-shi-yu-jing-xin-hao}
-
-<Route author="Fatpandac" example="/gov/guangdong/tqyb/sncsyjxh" path="/gov/guangdong/tqyb/sncsyjxh" />
-
-## 国家气候中心 {#guo-jia-qi-hou-zhong-xin}
-
-### 最新监测 {#guo-jia-qi-hou-zhong-xin-zui-xin-jian-ce}
-
-<Route author="nczitzk" example="/ncc-cma/cmdp/image" path="/ncc-cma/cmdp/image" paramsDesc={['分类 id,见下表,默认为全部']} radar="1" supportBT="1">
- :::tip
- 若订阅全部最新监测信息,此时路由为 [`/ncc-cma/cmdp/image`](https://rsshub.app/ncc-cma/cmdp/image)。
-
- 若订阅中国气温 **日平均气温距平** 的最新监测信息,此时路由为 [`/ncc-cma/cmdp/image/RPJQWQYZ`](https://rsshub.app/ncc-cma/cmdp/image/RPJQWQYZ)。
-
- 若订阅全球降水 **降水量(最近 10 天)** / **降水量(最近 10 天)** / **降水量(最近 10 天)** 的最新监测信息,此时路由为 [`/ncc-cma/cmdp/image/glbrain10_/glbrain20_/glbrain30_`](https://rsshub.app/ncc-cma/cmdp/image/glbrain10_/glbrain20_/glbrain30_)。
- :::
-
- #### [中国气温](http://cmdp.ncc-cma.net/cn/index.htm)
-
- | 分类 | ID |
- | -------------------- | ---------- |
- | 日平均气温距平 | RPJQWQYZ |
- | 近 5 天平均气温距平 | ZJ5TPJQWJP |
- | 近 10 天平均气温距平 | ZJ10TQWJP |
- | 近 20 天平均气温距平 | ZJ20TQWJP |
- | 近 30 天平均气温距平 | ZJ30TQWJP |
- | 本月以来气温距平 | BYYLQWJP |
- | 本季以来气温距平 | BJYLQWJP |
- | 本年以来气温距平 | BNYLQWJP |
-
- #### [中国降水](http://cmdp.ncc-cma.net/cn/index.htm)
-
- | 分类 | ID |
- | ------------------------ | -------------- |
- | 日降水量分布 | QGRJSLFBT0808S |
- | 近 5 天降水量 | ZJ5TJSLFBT |
- | 近 10 天降水量 | ZJ10TJSL |
- | 近 20 天降水量 | ZJ20TJSL |
- | 近 30 天降水量 | ZJ30TJSL |
- | 本月以来降水量 | BYYLJSL |
- | 本季以来降水量 | BJYLJSL |
- | 近 10 天降水量距平百分率 | ZJ10TJSLJP |
- | 近 20 天降水量距平百分率 | ZJ20TJSLJP |
- | 近 30 天降水量距平百分率 | ZJ30TJSLJP |
- | 本月以来降水量距平百分率 | BYYLJSLJPZYQHZ |
- | 本季以来降水量距平百分率 | BJYLJSLJPZJQHZ |
- | 本年以来降水量距平百分率 | BNYLJSLJP |
-
- #### [全球气温](http://cmdp.ncc-cma.net/cn/index.htm)
-
- | 分类 | ID |
- | -------------------------- | ------------- |
- | 气温距平(最近 10 天) | glbtmeana10\_ |
- | 气温距平(最近 20 天) | glbtmeana20\_ |
- | 气温距平(最近 30 天) | glbtmeana30\_ |
- | 气温距平(最近 90 天) | glbtmeana90\_ |
- | 最低气温距平(最近 30 天) | glbtmina30\_ |
- | 最低气温距平(最近 90 天) | glbtmina90\_ |
- | 最高气温距平(最近 30 天) | glbtmaxa30\_ |
- | 最高气温距平(最近 90 天) | glbtmaxa90\_ |
-
- #### [全球降水](http://cmdp.ncc-cma.net/cn/index.htm)
-
- | 分类 | ID |
- | ---------------------------- | ------------ |
- | 降水量(最近 10 天) | glbrain10\_ |
- | 降水量(最近 20 天) | glbrain20\_ |
- | 降水量(最近 30 天) | glbrain30\_ |
- | 降水量(最近 90 天) | glbrain90\_ |
- | 降水距平百分率(最近 10 天) | glbraina10\_ |
- | 降水距平百分率(最近 20 天) | glbraina20\_ |
- | 降水距平百分率(最近 30 天) | glbraina30\_ |
- | 降水距平百分率(最近 90 天) | glbraina90\_ |
-</Route>
-
-## 国家突发事件预警信息发布网 {#guo-jia-tu-fa-shi-jian-yu-jing-xin-xi-fa-bu-wang}
-
-### 当前生效预警 {#guo-jia-tu-fa-shi-jian-yu-jing-xin-xi-fa-bu-wang-dang-qian-sheng-xiao-yu-jing}
-
-<Route author="nczitzk" example="/12379" path="/12379/index" />
+<Route data={{"path":"/ceic/:type?","categories":["forecast"],"example":"/earthquake/ceic/1","parameters":{"type":"类型,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cea.gov.cn/cea/xwzx/zqsd/index.html","www.cea.gov.cn/"],"target":""},"name":"中国地震台","maintainers":["SettingDust"],"url":"www.cea.gov.cn/cea/xwzx/zqsd/index.html","description":"| 参数 | 类型 |\n | ---- | --------------------------- |\n | 1 | 最近 24 小时地震信息 |\n | 2 | 最近 48 小时地震信息 |\n | 5 | 最近一年 3.0 级以上地震信息 |\n | 7 | 最近一年 3.0 级以下地震 |\n | 8 | 最近一年 4.0 级以上地震信息 |\n | 9 | 最近一年 5.0 级以上地震信息 |\n | 0 | 最近一年 6.0 级以上地震信息 |\n\n 可通过全局过滤参数订阅您感兴趣的地区.","location":"ceic.ts"}} />
+
+| 参数 | 类型 |
+| ---- | --------------------------- |
+| 1 | 最近 24 小时地震信息 |
+| 2 | 最近 48 小时地震信息 |
+| 5 | 最近一年 3.0 级以上地震信息 |
+| 7 | 最近一年 3.0 级以下地震 |
+| 8 | 最近一年 4.0 级以上地震信息 |
+| 9 | 最近一年 5.0 级以上地震信息 |
+| 0 | 最近一年 6.0 级以上地震信息 |
+
+可通过全局过滤参数订阅您感兴趣的地区.
## 和风天气 {#he-feng-tian-qi}
### 近三天天气 {#he-feng-tian-qi-jin-san-tian-tian-qi}
-<Route author="Rein-Ou" example="/qweather/3days/广州" path="/qweather/3days/:location" configRequired="1">
- 需自行注册获取 api 的 key,并在环境变量 HEFENG\_KEY 中进行配置,获取订阅近三天天气预报
-</Route>
+<Route data={{"path":"/3days/:location","categories":["forecast"],"example":"/qweather/3days/广州","parameters":{"location":"N"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"近三天天气","maintainers":["Rein-Ou","la3rence"],"description":"需自行注册获取 api 的 key,并在环境变量 HEFENG_KEY 中进行配置,获取订阅近三天天气预报","location":"3days.ts"}} />
-### 实时天气 {#he-feng-tian-qi-shi-shi-tian-qi}
+需自行注册获取 api 的 key,并在环境变量 HEFENG\_KEY 中进行配置,获取订阅近三天天气预报
-<Route author="Rein-Ou" example="/qweather/广州" path="/qweather/now/:location" configRequired="1">
- 需自行注册获取 api 的 key,每小时更新一次数据
-</Route>
+### 实时天气 {#he-feng-tian-qi-shi-shi-tian-qi}
-## 上海市生态环境局 {#shang-hai-shi-sheng-tai-huan-jing-ju}
+<Route data={{"path":"/now/:location","categories":["forecast"],"example":"/qweather/广州","parameters":{"location":"N"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"实时天气","maintainers":["Rein-Ou"],"description":"需自行注册获取 api 的 key,每小时更新一次数据","location":"now.ts"}} />
-### 空气质量 {#shang-hai-shi-sheng-tai-huan-jing-ju-kong-qi-zhi-liang}
+需自行注册获取 api 的 key,每小时更新一次数据
-<Route author="nczitzk" example="/gov/shanghai/sthj" path="/gov/shanghai/sthj" />
+## 停水通知 {#ting-shui-tong-zhi}
-## 停电通知 {#ting-dian-tong-zhi}
+配合 [IFTTT](https://ifttt.com/) Applets [邮件通知](https://ifttt.com/applets/SEvmDVKY-) 使用实现自动通知效果.
-### 95598 停电查询网 {#ting-dian-tong-zhi-95598-ting-dian-cha-xun-wang}
+### 大连市 {#ting-shui-tong-zhi-da-lian-shi}
-<Route author="mjysci" example="/tingdiantz/95598/hb1/wh/wc/" path="/tingdiantz/95598/:province/:city/:district?" paramsDesc={['省,2~3位拼音缩写,详情见http://www.sttcq.com/td/', '市,同上', '区,同上']} />
+<Route data={{"path":"/dalian","categories":["forecast"],"example":"/tingshuitz/dalian","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swj.dl.gov.cn/col/col4296/index.html","swj.dl.gov.cn/"]},"name":"大连市","maintainers":["DIYgod"],"url":"swj.dl.gov.cn/col/col4296/index.html","location":"dalian.ts"}} />
-### 南京市 {#ting-dian-tong-zhi-nan-jing-shi}
+### 东莞市 {#ting-shui-tong-zhi-dong-guan-shi}
-<Route author="ocleo1" example="/tingdiantz/nanjing" path="/tingdiantz/nanjing" />
+<Route data={{"path":"/dongguan","categories":["forecast"],"example":"/tingshuitz/dongguan","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"东莞市","maintainers":["victoriqueko"],"location":"dongguan.ts"}} />
-## 停水通知 {#ting-shui-tong-zhi}
+### 广州市 {#ting-shui-tong-zhi-guang-zhou-shi}
-配合 [IFTTT](https://ifttt.com/) Applets [邮件通知](https://ifttt.com/applets/SEvmDVKY-) 使用实现自动通知效果.
+<Route data={{"path":"/guangzhou","categories":["forecast"],"example":"/tingshuitz/guangzhou","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"广州市","maintainers":["xyqfer"],"location":"guangzhou.ts"}} />
### 杭州市 {#ting-shui-tong-zhi-hang-zhou-shi}
-<Route author="znhocn" example="/tingshuitz/hangzhou" path="/tingshuitz/hangzhou" notOperational="1" />
-
-### 萧山区 {#ting-shui-tong-zhi-xiao-shan-qu}
+<Route data={{"path":"/hangzhou","categories":["forecast"],"example":"/tingshuitz/hangzhou","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.hzwgc.com/public/stop_the_water","www.hzwgc.com/"]},"name":"杭州市","maintainers":["znhocn"],"url":"www.hzwgc.com/public/stop_the_water","location":"hangzhou.ts"}} />
-<Route author="znhocn" example="/tingshuitz/xiaoshan" path="/tingshuitz/xiaoshan" />
+### 南京市 {#ting-shui-tong-zhi-nan-jing-shi}
-### 大连市 {#ting-shui-tong-zhi-da-lian-shi}
+<Route data={{"path":"/nanjing","categories":["forecast"],"example":"/tingshuitz/nanjing","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jlwater.com/portal/10000013","jlwater.com/"]},"name":"南京市","maintainers":["ocleo1"],"url":"jlwater.com/portal/10000013","location":"nanjing.ts"}} />
-<Route author="DIYgod" example="/tingshuitz/dalian" path="/tingshuitz/dalian" />
+### 深圳市 {#ting-shui-tong-zhi-shen-zhen-shi}
-### 广州市 {#ting-shui-tong-zhi-guang-zhou-shi}
+<Route data={{"path":"/shenzhen","categories":["forecast"],"example":"/tingshuitz/shenzhen","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sz-water.com.cn/*"]},"name":"深圳市","maintainers":["lilPiper"],"url":"sz-water.com.cn/*","description":"可能仅限中国大陆服务器访问,以实际情况为准。","location":"shenzhen.ts"}} />
-<Route author="xyqfer" example="/tingshuitz/guangzhou" path="/tingshuitz/guangzhou" />
+可能仅限中国大陆服务器访问,以实际情况为准。
-### 东莞市 {#ting-shui-tong-zhi-dong-guan-shi}
+### 西安市 {#ting-shui-tong-zhi-xi-an-shi}
-<Route author="victoriqueko" example="/tingshuitz/dongguan" path="/tingshuitz/dongguan" notOperational="1" />
+<Route data={{"path":"/xian","categories":["forecast"],"example":"/tingshuitz/xian","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"西安市","maintainers":["ciaranchen"],"location":"xian.ts"}} />
-### 西安市 {#ting-shui-tong-zhi-xi-an-shi}
+### 萧山区 {#ting-shui-tong-zhi-xiao-shan-qu}
-<Route author="ciaranchen" example="/tingshuitz/xian" path="/tingshuitz/xian" notOperational="1" />
+<Route data={{"path":"/xiaoshan","categories":["forecast"],"example":"/tingshuitz/xiaoshan","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.xswater.com/gongshui/channels/227.html","www.xswater.com/"]},"name":"萧山区","maintainers":["znhocn"],"url":"www.xswater.com/gongshui/channels/227.html","location":"xiaoshan.ts"}} />
### 阳江市 {#ting-shui-tong-zhi-yang-jiang-shi}
-<Route author="ciaranchen" example="/tingshuitz/yangjiang" path="/tingshuitz/yangjiang" notOperational="1" />
+<Route data={{"path":"/yangjiang","categories":["forecast"],"example":"/tingshuitz/yangjiang","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yjsswjt.com/zxdt_list.jsp","yjsswjt.com/"]},"name":"阳江市","maintainers":["ciaranchen"],"url":"yjsswjt.com/zxdt_list.jsp","location":"yangjiang.ts"}} />
-### 南京市 {#ting-shui-tong-zhi-nan-jing-shi}
+### 长沙市 {#ting-shui-tong-zhi-chang-sha-shi}
-<Route author="ocleo1" example="/tingshuitz/nanjing" path="/tingshuitz/nanjing" />
+<Route data={{"path":"/changsha/:channelId?","categories":["forecast"],"example":"/tingshuitz/changsha/78","parameters":{"channelId":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"长沙市","maintainers":["shansing"],"description":"可能仅限于中国大陆服务器访问,以实际情况为准。\n\n | channelId | 分类 |\n | --------- | -------- |\n | 78 | 计划停水 |\n | 157 | 抢修停水 |","location":"changsha.ts"}} />
-### 武汉市 {#ting-shui-tong-zhi-wu-han-shi}
+可能仅限于中国大陆服务器访问,以实际情况为准。
-<Route author="MoonBegonia" example="/tingshuitz/wuhan" path="/tingshuitz/wuhan/:channelId" notOperational="1">
- | channelId | 分类 |
- | --------- | ---------- |
- | 68 | 计划性停水 |
- | 69 | 突发性停水 |
-</Route>
+| channelId | 分类 |
+| --------- | -------- |
+| 78 | 计划停水 |
+| 157 | 抢修停水 |
-### 长沙市 {#ting-shui-tong-zhi-chang-sha-shi}
+## 中国国家应急广播 {#zhong-guo-guo-jia-ying-ji-guang-bo}
-<Route author="shansing" example="/tingshuitz/changsha/78" path="/tingshuitz/changsha/:channelId?" notOperational="1">
- 可能仅限于中国大陆服务器访问,以实际情况为准。
+### 应急新闻 {#zhong-guo-guo-jia-ying-ji-guang-bo-ying-ji-xin-wen}
- | channelId | 分类 |
- | --------- | -------- |
- | 78 | 计划停水 |
- | 157 | 抢修停水 |
-</Route>
+<Route data={{"path":"/yjxw/:category?","categories":["forecast"],"example":"/cneb/yjxw","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cneb.gov.cn/yjxw/:category?","cneb.gov.cn/"]},"name":"应急新闻","maintainers":["nczitzk"],"description":"| 全部 | 国内新闻 | 国际新闻 |\n | ---- | -------- | -------- |\n | | gnxw | gjxw |","location":"yjxw.ts"}} />
-### 深圳市 {#ting-shui-tong-zhi-shen-zhen-shi}
+| 全部 | 国内新闻 | 国际新闻 |
+| ---- | -------- | -------- |
+| | gnxw | gjxw |
-<Route author="lilPiper" example="/tingshuitz/shenzhen" path="/tingshuitz/shenzhen" notOperational="1">
- 可能仅限中国大陆服务器访问,以实际情况为准。
-</Route>
+## 中国气象局 {#zhong-guo-qi-xiang-ju}
-## 香港天文台 {#xiang-gang-tian-wen-tai}
+### 天气预报频道 {#zhong-guo-qi-xiang-ju-tian-qi-yu-bao-pin-dao}
-### Current Weather Report {#xiang-gang-tian-wen-tai-current-weather-report}
+<Route data={{"path":"/channel/:id?","categories":["forecast"],"example":"/cma/channel/380","parameters":{"id":"分类,见下表,可在对应频道页 URL 中找到,默认为 380,即每日天气提示"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"天气预报频道","maintainers":["nczitzk"],"description":"#### 天气实况\n\n | 频道名称 | 频道 id |\n | -------- | -------------------------------- |\n | 卫星云图 | d3236549863e453aab0ccc4027105bad |\n | 单站雷达 | 103 |\n | 降水量 | 18 |\n | 气温 | 32 |\n | 土壤水分 | 45 |\n\n #### 气象公报\n\n | 频道名称 | 频道 id |\n | -------------- | -------------------------------- |\n | 每日天气提示 | 380 |\n | 重要天气提示 | da5d55817ad5430fb9796a0780178533 |\n | 天气公报 | 3780 |\n | 强对流天气预报 | 383 |\n | 交通气象预报 | 423 |\n | 森林火险预报 | 424 |\n | 海洋天气公报 | 452 |\n | 环境气象公报 | 467 |\n\n :::tip\n 订阅更多细分频道,请前往对应上级频道页,使用下拉菜单选择项目后跳转到目标频道页,查看其 URL 找到对应频道 id\n :::","location":"channel.ts"}} />
-<Route author="calpa" example="/hko/weather" path="/hko/weather" />
+#### 天气实况 {#zhong-guo-qi-xiang-ju-tian-qi-yu-bao-pin-dao-tian-qi-shi-kuang}
-## 中国国家应急广播 {#zhong-guo-guo-jia-ying-ji-guang-bo}
+| 频道名称 | 频道 id |
+| -------- | -------------------------------- |
+| 卫星云图 | d3236549863e453aab0ccc4027105bad |
+| 单站雷达 | 103 |
+| 降水量 | 18 |
+| 气温 | 32 |
+| 土壤水分 | 45 |
-### 预警信息 {#zhong-guo-guo-jia-ying-ji-guang-bo-yu-jing-xin-xi}
+#### 气象公报 {#zhong-guo-qi-xiang-ju-tian-qi-yu-bao-pin-dao-qi-xiang-gong-bao}
-<Route author="muzea nczitzk" example="/cneb/yjxx" path="/cneb/yjxx/:level?/:province?/:city?" paramsDesc={['灾害级别,见下表,默认为全部', '省份,默认为空,即全国', '城市,默认为空,即全省']}>
- 灾害级别
+| 频道名称 | 频道 id |
+| -------------- | -------------------------------- |
+| 每日天气提示 | 380 |
+| 重要天气提示 | da5d55817ad5430fb9796a0780178533 |
+| 天气公报 | 3780 |
+| 强对流天气预报 | 383 |
+| 交通气象预报 | 423 |
+| 森林火险预报 | 424 |
+| 海洋天气公报 | 452 |
+| 环境气象公报 | 467 |
- | 全部 | 红色 | 橙色 | 黄色 | 蓝色 |
- | ---- | ---- | ---- | ---- | ---- |
- | | 红色 | 橙色 | 黄色 | 蓝色 |
+:::tip
+订阅更多细分频道,请前往对应上级频道页,使用下拉菜单选择项目后跳转到目标频道页,查看其 URL 找到对应频道 id
+:::
- :::tip
- 若订阅全国的全部预警信息,此时路由为 [`/cneb/yjxx`](https://rsshub.app/cneb/yjxx)。
+## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
- 若订阅全国的 **红色** 预警信息,此时路由为 [`/cneb/yjxx/红色`](https://rsshub.app/cneb/yjxx/红色)。
+<details>
+ <summary>*业务咨询* 和 *投诉建议* 可用的站点参数</summary>
- 若订阅 **北京市** 的全部预警信息,此时路由为 [`/cneb/yjxx/北京市`](https://rsshub.app/cneb/yjxx/北京市)。
+ | 上海市 | 北京市 | 天津市 | 河北省 |
+ | -------- | ------- | ------- | ------ |
+ | shanghai | beijing | tianjin | hebei |
- 若订阅 **北京市** 的 **蓝色** 预警信息,此时路由为 [`/cneb/yjxx/北京市/蓝色`](https://rsshub.app/cneb/yjxx/北京市/蓝色)。
+ | 山西省 | 内蒙古自治区 | 辽宁省 | 吉林省 |
+ | ------ | ------------ | -------- | ------ |
+ | shanxi | neimenggu | liaoning | jilin |
- 若订阅 **广东省** 的 **橙色** 预警信息,此时路由为 [`/cneb/yjxx/广东省/橙色`](https://rsshub.app/cneb/yjxx/广东省/橙色)。
+ | 黑龙江省 | 江苏省 | 浙江省 | 安徽省 |
+ | ------------ | ------- | -------- | ------ |
+ | heilongjiang | jiangsu | zhejiang | anhui |
- 若订阅 **广东省广州市** 的全部预警信息,此时路由为 [`/cneb/yjxx/广东省/广州市`](https://rsshub.app/cneb/yjxx/广东省/广州市)。
+ | 福建省 | 江西省 | 山东省 | 河南省 |
+ | ------ | ------- | -------- | ------ |
+ | fujian | jiangxi | shandong | henan |
- 若订阅 **广东省广州市** 的 **黄色** 预警信息,此时路由为 [`/cneb/yjxx/广东省/广州市/黄色`](https://rsshub.app/cneb/yjxx/广东省/广州市/黄色)。
- :::
-</Route>
+ | 湖北省 | 湖南省 | 广东省 | 广西壮族自治区 |
+ | ------ | ------ | --------- | -------------- |
+ | hubei | hunan | guangdong | guangxi |
-### 应急新闻 {#zhong-guo-guo-jia-ying-ji-guang-bo-ying-ji-xin-wen}
+ | 海南省 | 重庆市 | 四川省 | 贵州省 |
+ | ------ | --------- | ------- | ------- |
+ | hainan | chongqing | sichuan | guizhou |
-<Route author="nczitzk" example="/cneb/yjxw" path="/cneb/yjxw/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- | 全部 | 国内新闻 | 国际新闻 |
- | ---- | -------- | -------- |
- | | gnxw | gjxw |
-</Route>
+ | 云南省 | 西藏自治区 | 陕西省 | 甘肃省 |
+ | ------ | ---------- | ------- | ------ |
+ | yunnan | xizang | shaanxi | gansu |
-## 中国气象局 {#zhong-guo-qi-xiang-ju}
+ | 青海省 | 宁夏回族自治区 | 新疆维吾尔自治区 | 大连市 |
+ | ------- | -------------- | ---------------- | ------ |
+ | qinghai | ningxia | xinjiang | dalian |
-### 天气预报频道 {#zhong-guo-qi-xiang-ju-tian-qi-yu-bao-pin-dao}
+ | 宁波市 | 厦门市 | 青岛市 | 深圳市 |
+ | ------ | ------ | ------- | -------- |
+ | ningbo | xiamen | qingdao | shenzhen |
+</details>
+
+### 广东省内城市预警信号 {#zhong-guo-ren-min-yin-hang-guang-dong-sheng-nei-cheng-shi-yu-jing-xin-hao}
+
+<Route data={{"path":"/guangdong/tqyb/sncsyjxh","categories":["forecast"],"example":"/gov/guangdong/tqyb/sncsyjxh","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.tqyb.com.cn/gz/weatherAlarm/otherCity/"]},"name":"广东省内城市预警信号","maintainers":["Fatpandac"],"url":"www.tqyb.com.cn/gz/weatherAlarm/otherCity/","location":"guangdong/tqyb/sncsyjxh.ts"}} />
+
+### 突发性天气提示 {#zhong-guo-ren-min-yin-hang-tu-fa-xing-tian-qi-ti-shi}
-<Route author="nczitzk" example="/cma/channel/380" path="/cma/channel/:id?" paramsDesc={['分类,见下表,可在对应频道页 URL 中找到,默认为 380,即每日天气提示']} radar="1">
- #### 天气实况
-
- | 频道名称 | 频道 id |
- | -------- | -------------------------------- |
- | 卫星云图 | d3236549863e453aab0ccc4027105bad |
- | 单站雷达 | 103 |
- | 降水量 | 18 |
- | 气温 | 32 |
- | 土壤水分 | 45 |
-
- #### 气象公报
-
- | 频道名称 | 频道 id |
- | -------------- | -------------------------------- |
- | 每日天气提示 | 380 |
- | 重要天气提示 | da5d55817ad5430fb9796a0780178533 |
- | 天气公报 | 3780 |
- | 强对流天气预报 | 383 |
- | 交通气象预报 | 423 |
- | 森林火险预报 | 424 |
- | 海洋天气公报 | 452 |
- | 环境气象公报 | 467 |
-
- :::tip
- 订阅更多细分频道,请前往对应上级频道页,使用下拉菜单选择项目后跳转到目标频道页,查看其 URL 找到对应频道 id
- :::
-</Route>
+<Route data={{"path":"/guangdong/tqyb/tfxtq","categories":["forecast"],"example":"/gov/guangdong/tqyb/tfxtq","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.tqyb.com.cn/gz/weatherAlarm/suddenWeather/"]},"name":"突发性天气提示","maintainers":["Fatpandac"],"url":"www.tqyb.com.cn/gz/weatherAlarm/suddenWeather/","location":"guangdong/tqyb/tfxtq.ts"}} />
## 中央气象台 {#zhong-yang-qi-xiang-tai}
-### 全国气象预警 {#zhong-yang-qi-xiang-tai-quan-guo-qi-xiang-yu-jing}
+### Unknown {#zhong-yang-qi-xiang-tai-unknown}
-<Route author="ylc395" example="/nmc/weatheralarm/广东省" path="/nmc/weatheralarm/:province?" paramsDesc={['省份']}>
- 可通过全局过滤参数订阅您感兴趣的地区.
-</Route>
+<Route data={{"path":"/weatheralarm/:province?","categories":["forecast"],"example":"/nmc/weatheralarm/广东省","parameters":{"province":"省份"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nmc.cn/publish/alarm.html","nmc.cn/"],"target":"/weatheralarm"},"name":"Unknown","maintainers":["ylc395"],"url":"nmc.cn/publish/alarm.html","location":"weatheralarm.ts"}} />
diff --git a/website/docs/routes/game.mdx b/website/docs/routes/game.mdx
index 0f10463ae880eb..4ffb5751670225 100644
--- a/website/docs/routes/game.mdx
+++ b/website/docs/routes/game.mdx
@@ -1,407 +1,316 @@
-# 🎮 Gaming
+# game
## 3DMGame {#3dmgame}
### 新闻中心 {#3dmgame-xin-wen-zhong-xin}
-<Route author="zhboner" example="/3dmgame/news" path="/3dmgame/news/:category?" paramsDesc={['分类名或 ID,见下表,默认为新闻推荐,ID 可从分类 URL 中找到,如 Steam 为 `22221`']} radar="1">
- | 新闻推荐 | 游戏新闻 | 动漫影视 | 智能数码 | 时事焦点 |
- | -------- | -------- | -------- | -------- | ----------- |
- | | game | acg | next | news\_36\_1 |
-</Route>
+<Route data={{"path":"/news/:category?","categories":["game"],"example":"/3dmgame/news","parameters":{"category":"分类名或 ID,见下表,默认为新闻推荐,ID 可从分类 URL 中找到,如 Steam 为 `22221`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["3dmgame.com/news/:category?","3dmgame.com/news"]},"name":"新闻中心","maintainers":["zhboner"],"description":"| 新闻推荐 | 游戏新闻 | 动漫影视 | 智能数码 | 时事焦点 |\n | -------- | -------- | -------- | -------- | ----------- |\n | | game | acg | next | news_36_1 |","location":"news-center.ts"}} />
-### 游戏资讯 {#3dmgame-you-xi-zi-xun}
-
-<Route author="sinchang jacky2001114 HenryQW" example="/3dmgame/detroitbecomehuman/news" path="/3dm/:name/:type?" paramsDesc={['游戏名字,可以在专题页的 url 中找到', '资讯类型,见下表,默认为 `news`']} radar="1">
- | 新闻 | 攻略 | 资源 |
- | ---- | ---- | -------- |
- | news | gl | resource |
-</Route>
+| 新闻推荐 | 游戏新闻 | 动漫影视 | 智能数码 | 时事焦点 |
+| -------- | -------- | -------- | -------- | ----------- |
+| | game | acg | next | news\_36\_1 |
## 4Gamers {#4gamers}
-### 最新消息 {#4gamers-zui-xin-xiao-xi}
-
-<Route author="TonyRL" example="/4gamers" path="/4gamers" radar="1" />
-
-### 分类 {#4gamers-fen-lei}
-
-<Route author="hoilc" example="/4gamers/category/352" path="/4gamers/category/:category" paramsDesc={['分类 ID,可从分类 URL 中找到']} radar="1" />
-
### 标签 {#4gamers-biao-qian}
-<Route author="hoilc" example="/4gamers/tag/限時免費" path="/4gamers/tag/:tag" paramsDesc={['标签名,可在标签 URL 中找到']} radar="1" />
+<Route data={{"path":"/tag/:tag","categories":["game"],"example":"/4gamers/tag/限時免費","parameters":{"tag":"标签名,可在标签 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.4gamers.com.tw/news/tag/:tag"]},"name":"标签","maintainers":["hoilc"],"url":"www.4gamers.com.tw/news","location":"tag.ts"}} />
### 主題 {#4gamers-zhu-ti}
-<Route author="bestpika" example="/4gamers/topic/gentlemen-topic" path="/4gamers/topic/:topic" paramsDesc={['主题,可在首页上方页面内找到']} radar="1" />
+<Route data={{"path":"/topic/:topic","categories":["game"],"example":"/4gamers/topic/gentlemen-topic","parameters":{"topic":"主题,可在首页上方页面内找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.4gamers.com.tw/news/option-cfg/:topic"]},"name":"主題","maintainers":["bestpika"],"url":"www.4gamers.com.tw/news","location":"topic.ts"}} />
## 5EPLAY {#5eplay}
### 新闻列表 {#5eplay-xin-wen-lie-biao}
-<Route author="Dlouxgit" example="/5eplay/article" path="/5eplay/article" notOperational="1" />
-
-## A9VG 电玩部落 {#a9vg-dian-wan-bu-luo}
-
-### 游戏新闻 {#a9vg-dian-wan-bu-luo-you-xi-xin-wen}
-
-<Route author="monnerHenster" example="/a9vg" path="/a9vg" radar="1" />
+<Route data={{"path":"/article","categories":["game"],"example":"/5eplay/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["csgo.5eplay.com/","csgo.5eplay.com/article"]},"name":"新闻列表","maintainers":["Dlouxgit"],"url":"csgo.5eplay.com/","location":"index.ts"}} />
## Blizzard {#blizzard}
### News {#blizzard-news}
-<Route author="nczitzk" example="/blizzard/news" path="/blizzard/news/:language?/:category?" paramsDesc={['Language code, see below, en-US by default', 'Category, see below, All News by default']}>
- Categories
-
- | Category | Slug |
- | ---------------------- | ------------------- |
- | All News | |
- | Diablo II: Resurrected | diablo2 |
- | Diablo III | diablo3 |
- | Diablo IV | diablo4 |
- | Diablo: Immortal | diablo-immortal |
- | Hearthstone | hearthstone |
- | Heroes of the Storm | heroes-of-the-storm |
- | Overwatch 2 | overwatch |
- | StarCraft: Remastered | starcraft |
- | StarCraft II | starcraft2 |
- | World of Warcraft | world-of-warcraft |
- | Warcraft III: Reforged | warcraft3 |
- | Battle.net | battlenet |
- | BlizzCon | blizzcon |
- | Inside Blizzard | blizzard |
-
- Language codes
-
- | Language | Code |
- | ------------------ | ----- |
- | Deutsch | de-de |
- | English (US) | en-us |
- | English (EU) | en-gb |
- | Español (EU) | es-es |
- | Español (Latino) | es-mx |
- | Français | fr-fr |
- | Italiano | it-it |
- | Português (Brasil) | pt-br |
- | Polski | pl-pl |
- | Русский | ru-ru |
- | 한국어 | ko-kr |
- | ภาษาไทย | th-th |
- | 日本語 | ja-jp |
- | 繁體中文 | zh-tw |
-</Route>
-
-## dekudeals {#dekudeals}
-
-### Category {#dekudeals-category}
-
-<Route author="LogicJake" example="/dekudeals/most-wanted" path="/dekudeals/:type" paramsDesc={['Category name']} />
+<Route data={{"path":"/news/:language?/:category?","categories":["game"],"example":"/blizzard/news","parameters":{"language":"Language code, see below, en-US by default","category":"Category, see below, All News by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["nczitzk"],"description":"Categories\n\n | Category | Slug |\n | ---------------------- | ------------------- |\n | All News | |\n | Diablo II: Resurrected | diablo2 |\n | Diablo III | diablo3 |\n | Diablo IV | diablo4 |\n | Diablo: Immortal | diablo-immortal |\n | Hearthstone | hearthstone |\n | Heroes of the Storm | heroes-of-the-storm |\n | Overwatch 2 | overwatch |\n | StarCraft: Remastered | starcraft |\n | StarCraft II | starcraft2 |\n | World of Warcraft | world-of-warcraft |\n | Warcraft III: Reforged | warcraft3 |\n | Battle.net | battlenet |\n | BlizzCon | blizzcon |\n | Inside Blizzard | blizzard |\n\n Language codes\n\n | Language | Code |\n | ------------------ | ----- |\n | Deutsch | de-de |\n | English (US) | en-us |\n | English (EU) | en-gb |\n | Español (EU) | es-es |\n | Español (Latino) | es-mx |\n | Français | fr-fr |\n | Italiano | it-it |\n | Português (Brasil) | pt-br |\n | Polski | pl-pl |\n | Русский | ru-ru |\n | 한국어 | ko-kr |\n | ภาษาไทย | th-th |\n | 日本語 | ja-jp |\n | 繁體中文 | zh-tw |","location":"news.ts"}} />
+
+Categories
+
+| Category | Slug |
+| ---------------------- | ------------------- |
+| All News | |
+| Diablo II: Resurrected | diablo2 |
+| Diablo III | diablo3 |
+| Diablo IV | diablo4 |
+| Diablo: Immortal | diablo-immortal |
+| Hearthstone | hearthstone |
+| Heroes of the Storm | heroes-of-the-storm |
+| Overwatch 2 | overwatch |
+| StarCraft: Remastered | starcraft |
+| StarCraft II | starcraft2 |
+| World of Warcraft | world-of-warcraft |
+| Warcraft III: Reforged | warcraft3 |
+| Battle.net | battlenet |
+| BlizzCon | blizzcon |
+| Inside Blizzard | blizzard |
+
+Language codes
+
+| Language | Code |
+| ------------------ | ----- |
+| Deutsch | de-de |
+| English (US) | en-us |
+| English (EU) | en-gb |
+| Español (EU) | es-es |
+| Español (Latino) | es-mx |
+| Français | fr-fr |
+| Italiano | it-it |
+| Português (Brasil) | pt-br |
+| Polski | pl-pl |
+| Русский | ru-ru |
+| 한국어 | ko-kr |
+| ภาษาไทย | th-th |
+| 日本語 | ja-jp |
+| 繁體中文 | zh-tw |
## Dorohedoro {#dorohedoro}
### News {#dorohedoro-news}
-<Route author="nczitzk" example="/dorohedoro/news" path="/dorohedoro/news" />
+<Route data={{"path":"/news","categories":["game"],"example":"/dorohedoro/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dorohedoro.net/news","dorohedoro.net/"]},"name":"News","maintainers":["nczitzk"],"url":"dorohedoro.net/news","location":"news.ts"}} />
## Epic Games Store {#epic-games-store}
### Free games {#epic-games-store-free-games}
-<Route author="Zyx-A nczitzk KotaHv" example="/epicgames/freegames" path="/epicgames/freegames/:locale?/:country?" paramsDesc={['Locale, en_US by default', 'Country, US by default']} />
-
-## Fate Grand Order {#fate-grand-order}
-
-### News {#fate-grand-order-news}
-
-<Route author="nczitzk" example="/fgo/news" path="/fgo/news" />
+<Route data={{"path":"/freegames/:locale?/:country?","categories":["game"],"example":"/epicgames/freegames","parameters":{"locale":"Locale, en_US by default","country":"Country, US by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["store.epicgames.com/:locale/free-games"],"target":"/freegames/:locale"},"name":"Free games","maintainers":["DIYgod","NeverBehave","Zyx-A","junfengP","nczitzk","KotaHv"],"location":"index.ts"}} />
## FINAL FANTASY XIV 最终幻想 14 {#final-fantasy-xiv-zui-zhong-huan-xiang-14}
-### 最终幻想 14 国服 {#final-fantasy-xiv-zui-zhong-huan-xiang-14-zui-zhong-huan-xiang-14-guo-fu}
-
-<Route author="Kiotlin" example="/ff14/zh/news" path="/ff14/zh/:type?" paramsDesc={['分类名,预设为 `all`']}>
- | 新闻 | 公告 | 活动 | 广告 | 所有 |
- | ---- | -------- | ------ | --------- | ---- |
- | news | announce | events | advertise | all |
-</Route>
-
### FINAL FANTASY XIV (The Lodestone) {#final-fantasy-xiv-zui-zhong-huan-xiang-14-final-fantasy-xiv-the-lodestone}
-<Route author="chengyuhui" example="/ff14/global/na/all" path="/ff14/global/:lang/:type?" paramsDesc={['Region', 'Category, `all` by default']}>
- Region
-
- | North Ameria | Europe | France | Germany | Japan |
- | ------------ | ------ | ------ | ------- | ----- |
- | na | eu | fr | de | jp |
+<Route data={{"path":["/global/:lang/:type?","/ff14_global/:lang/:type?"],"categories":["game"],"example":"/ff14/global/na/all","parameters":{"lang":"Region","type":"Category, `all` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"FINAL FANTASY XIV (The Lodestone)","maintainers":["chengyuhui"],"description":"Region\n\n | North Ameria | Europe | France | Germany | Japan |\n | ------------ | ------ | ------ | ------- | ----- |\n | na | eu | fr | de | jp |\n\n Category\n\n | all | topics | notices | maintenance | updates | status | developers |\n | --- | ------ | ------- | ----------- | ------- | ------ | ---------- |","location":"ff14-global.ts"}} />
- Category
+Region
- | all | topics | notices | maintenance | updates | status | developers |
- | --- | ------ | ------- | ----------- | ------- | ------ | ---------- |
-</Route>
+| North Ameria | Europe | France | Germany | Japan |
+| ------------ | ------ | ------ | ------- | ----- |
+| na | eu | fr | de | jp |
-## Fortnite {#fortnite}
-
-### News {#fortnite-news}
+Category
-<Route author="lyqluis" example="/fortnite/news" path="/fortnite/news/:options?" paramsDesc={['Params']} radar="1" puppeteer="1">
- - `options.lang`, optional, language, eg. `/fortnite/news/lang=en-US`, common languages are listed below, more languages are available one the [official website](https://www.fortnite.com/news)
+| all | topics | notices | maintenance | updates | status | developers |
+| --- | ------ | ------- | ----------- | ------- | ------ | ---------- |
- | English (default) | Spanish | Japanese | French | Korean | Polish |
- | ----------------- | ------- | -------- | ------ | ------ | ------ |
- | en-US | es-ES | ja | fr | ko | pl |
-</Route>
-
-## GameApps.hk 香港手机游戏网 {#gameapps-hk-xiang-gang-shou-ji-you-xi-wang}
-
-### 最新消息 {#gameapps-hk-xiang-gang-shou-ji-you-xi-wang-zui-xin-xiao-xi}
-
-<Route author="TonyRL" example="/gameapps" path="/gameapps" />
-
-## Gamer Secret {#gamer-secret}
-
-### Latest News {#gamer-secret-latest-news}
+### FINAL FANTASY XIV (The Lodestone) {#final-fantasy-xiv-zui-zhong-huan-xiang-14-final-fantasy-xiv-the-lodestone}
-<Route author="nczitzk" example="/gamersecret" path="/gamersecret" notOperational="1" />
+<Route data={{"path":["/global/:lang/:type?","/ff14_global/:lang/:type?"],"categories":["game"],"example":"/ff14/global/na/all","parameters":{"lang":"Region","type":"Category, `all` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"FINAL FANTASY XIV (The Lodestone)","maintainers":["chengyuhui"],"description":"Region\n\n | North Ameria | Europe | France | Germany | Japan |\n | ------------ | ------ | ------ | ------- | ----- |\n | na | eu | fr | de | jp |\n\n Category\n\n | all | topics | notices | maintenance | updates | status | developers |\n | --- | ------ | ------- | ----------- | ------- | ------ | ---------- |","location":"ff14-global.ts"}} />
-### Category {#gamer-secret-category}
+Region
-<Route author="nczitzk" example="/gamersecret" path="/gamersecret/:type?/:category?" paramsDesc={['Type, see below, Latest News by default', 'Category, see below']} notOperational="1">
- | Latest News | PC | Playstation | Nintendo | Xbox | Moblie |
- | ----------- | -- | ----------- | -------- | ---- | ------ |
- | latest-news | pc | playstation | nintendo | xbox | moblie |
+| North Ameria | Europe | France | Germany | Japan |
+| ------------ | ------ | ------ | ------- | ----- |
+| na | eu | fr | de | jp |
- Or
+Category
- | GENERAL | GENERAL EN | MOBILE | MOBILE EN |
- | ---------------- | ------------------ | --------------- | ----------------- |
- | category/general | category/generalen | category/mobile | category/mobileen |
+| all | topics | notices | maintenance | updates | status | developers |
+| --- | ------ | ------- | ----------- | ------- | ------ | ---------- |
- | NINTENDO | NINTENDO EN | PC | PC EN |
- | ----------------- | ------------------- | ----------- | ------------- |
- | category/nintendo | category/nintendoen | category/pc | category/pcen |
+### 最终幻想 14 国服 {#final-fantasy-xiv-zui-zhong-huan-xiang-14-zui-zhong-huan-xiang-14-guo-fu}
- | PLAYSTATION | PLAYSTATION EN | REVIEWS |
- | -------------------- | ---------------------- | ---------------- |
- | category/playstation | category/playstationen | category/reviews |
+<Route data={{"path":["/zh/:type?","/ff14_zh/:type?"],"categories":["game"],"example":"/ff14/zh/news","parameters":{"type":"分类名,预设为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ff.web.sdo.com/web8/index.html"],"target":"/zh"},"name":"最终幻想 14 国服","maintainers":["Kiotlin","ZeroClad","15x15G"],"url":"ff.web.sdo.com/web8/index.html","description":"| 新闻 | 公告 | 活动 | 广告 | 所有 |\n | ---- | -------- | ------ | --------- | ---- |\n | news | announce | events | advertise | all |","location":"ff14-zh.ts"}} />
- | XBOX | XBOX EN |
- | ------------- | --------------- |
- | category/xbox | category/xboxen |
-</Route>
+| 新闻 | 公告 | 活动 | 广告 | 所有 |
+| ---- | -------- | ------ | --------- | ---- |
+| news | announce | events | advertise | all |
-## GameRes 游资网 {#gameres-you-zi-wang}
+### 最终幻想 14 国服 {#final-fantasy-xiv-zui-zhong-huan-xiang-14-zui-zhong-huan-xiang-14-guo-fu}
-### 热点推荐 {#gameres-you-zi-wang-re-dian-tui-jian}
+<Route data={{"path":["/zh/:type?","/ff14_zh/:type?"],"categories":["game"],"example":"/ff14/zh/news","parameters":{"type":"分类名,预设为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ff.web.sdo.com/web8/index.html"],"target":"/zh"},"name":"最终幻想 14 国服","maintainers":["Kiotlin","ZeroClad","15x15G"],"url":"ff.web.sdo.com/web8/index.html","description":"| 新闻 | 公告 | 活动 | 广告 | 所有 |\n | ---- | -------- | ------ | --------- | ---- |\n | news | announce | events | advertise | all |","location":"ff14-zh.ts"}} />
-<Route author="nczitzk" example="/gameres/hot" path="/gameres/hot" />
+| 新闻 | 公告 | 活动 | 广告 | 所有 |
+| ---- | -------- | ------ | --------- | ---- |
+| news | announce | events | advertise | all |
-### 列表 {#gameres-you-zi-wang-lie-biao}
+## Fortnite {#fortnite}
-<Route author="nczitzk" example="/gameres/list/26" path="/gameres/list/:id" paramsDesc={['列表 id']}>
- 产业
+### News {#fortnite-news}
- | 厂商・专访 | 观察・投资 | 产品 | 政策 | 电子竞技 | 直播 | 区块链 |
- | ---------- | ---------- | ---- | ---- | -------- | ---- | ------ |
- | 1 | 11 | 6 | 45 | 14 | 42 | 41 |
+<Route data={{"path":"/news/:options?","categories":["game"],"example":"/fortnite/news","parameters":{"options":"Params"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["lyqluis"],"description":"- `options.lang`, optional, language, eg. `/fortnite/news/lang=en-US`, common languages are listed below, more languages are available one the [official website](https://www.fortnite.com/news)\n\n | English (default) | Spanish | Japanese | French | Korean | Polish |\n | ----------------- | ------- | -------- | ------ | ------ | ------ |\n | en-US | es-ES | ja | fr | ko | pl |","location":"news.ts"}} />
- 平台
+- `options.lang`, optional, language, eg. `/fortnite/news/lang=en-US`, common languages are listed below, more languages are available one the [official website](https://www.fortnite.com/news)
- | 手游 | 页游・H5 | 端游・PC | 主机 | 虚拟・VR・AR | 云游戏 |
- | ---- | -------- | -------- | ---- | ------------ | ------ |
- | 5 | 17 | 18 | 21 | 16 | 48 |
+| English (default) | Spanish | Japanese | French | Korean | Polish |
+| ----------------- | ------- | -------- | ------ | ------ | ------ |
+| en-US | es-ES | ja | fr | ko | pl |
- 研发
+## Gamer Secret {#gamer-secret}
- | 拆解分析 | 策划 | 程序・引擎 | 美术 | 音乐 | 测试 |
- | -------- | ---- | ---------- | ---- | ---- | ---- |
- | 24 | 25 | 26 | 27 | 28 | 29 |
+### Category {#gamer-secret-category}
- 市场
+<Route data={{"path":"/:type?/:category?","categories":["game"],"example":"/gamersecret","parameters":{"type":"Type, see below, Latest News by default","category":"Category, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gamersecret.com/:type","gamersecret.com/:type/:category","gamersecret.com/"]},"name":"Category","maintainers":["nczitzk"],"description":"| Latest News | PC | Playstation | Nintendo | Xbox | Moblie |\n | ----------- | -- | ----------- | -------- | ---- | ------ |\n | latest-news | pc | playstation | nintendo | xbox | moblie |\n\n Or\n\n | GENERAL | GENERAL EN | MOBILE | MOBILE EN |\n | ---------------- | ------------------ | --------------- | ----------------- |\n | category/general | category/generalen | category/mobile | category/mobileen |\n\n | NINTENDO | NINTENDO EN | PC | PC EN |\n | ----------------- | ------------------- | ----------- | ------------- |\n | category/nintendo | category/nintendoen | category/pc | category/pcen |\n\n | PLAYSTATION | PLAYSTATION EN | REVIEWS |\n | -------------------- | ---------------------- | ---------------- |\n | category/playstation | category/playstationen | category/reviews |\n\n | XBOX | XBOX EN |\n | ------------- | --------------- |\n | category/xbox | category/xboxen |","location":"index.ts"}} />
- | 职场・创业 | 运营・渠道 | 海外 | 数据・报告 | App Store | Steam |
- | ---------- | ---------- | ---- | ---------- | --------- | ----- |
- | 38 | 34 | 47 | 33 | 46 | 40 |
+| Latest News | PC | Playstation | Nintendo | Xbox | Moblie |
+| ----------- | -- | ----------- | -------- | ---- | ------ |
+| latest-news | pc | playstation | nintendo | xbox | moblie |
- 其他
+Or
- | 原创 | 硬件・周边 | 八卦 | 活动 | 综合 |
- | ---- | ---------- | ---- | ---- | ---- |
- | 43 | 44 | 15 | 22 | 39 |
-</Route>
+| GENERAL | GENERAL EN | MOBILE | MOBILE EN |
+| ---------------- | ------------------ | --------------- | ----------------- |
+| category/general | category/generalen | category/mobile | category/mobileen |
-## GNN.tw 游戏新闻 {#gnn-tw-you-xi-xin-wen}
+| NINTENDO | NINTENDO EN | PC | PC EN |
+| ----------------- | ------------------- | ----------- | ------------- |
+| category/nintendo | category/nintendoen | category/pc | category/pcen |
-### GNN.tw 游戏新闻 {#gnn-tw-you-xi-xin-wen-gnn-tw-you-xi-xin-wen}
+| PLAYSTATION | PLAYSTATION EN | REVIEWS |
+| -------------------- | ---------------------- | ---------------- |
+| category/playstation | category/playstationen | category/reviews |
-<Route author="monnerHenster" example="/gnn/gnn" path="/gnn/gnn" />
+| XBOX | XBOX EN |
+| ------------- | --------------- |
+| category/xbox | category/xboxen |
## HoYoLAB {#hoyolab}
### Official Announcement {#hoyolab-official-announcement}
-<Route author="ZenoTian" example="/hoyolab/news/zh-cn/2/2" path="/hoyolab/news/:language/:gids/:type" paramsDesc={['Language', 'Game ID', 'Announcement type']} radar="1">
- | Language | Code |
- | ---------------- | ----- |
- | 简体中文 | zh-cn |
- | 繁體中文 | zh-tw |
- | 日本語 | ja-jp |
- | 한국어 | ko-kr |
- | English (US) | en-us |
- | Español (EU) | es-es |
- | Français | fr-fr |
- | Deutsch | de-de |
- | Русский | ru-ru |
- | Português | pt-pt |
- | Español (Latino) | es-mx |
- | Indonesia | id-id |
- | Tiếng Việt | vi-vn |
- | ภาษาไทย | th-th |
-
- | Honkai Impact 3rd | Genshin Impact | Tears of Themis | HoYoLAB | Honkai: Star Rail | Zenless Zone Zero |
- | ----------------- | -------------- | --------------- | ------- | ----------------- | ----------------- |
- | 1 | 2 | 4 | 5 | 6 | 8 |
-
- | Notices | Events | Info |
- | ------- | ------ | ---- |
- | 1 | 2 | 3 |
-</Route>
+<Route data={{"path":"/news/:language/:gids/:type","categories":["game"],"example":"/hoyolab/news/zh-cn/2/2","parameters":{"language":"Language","gids":"Game ID","type":"Announcement type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Official Announcement","maintainers":["ZenoTian"],"description":"| Language | Code |\n | ---------------- | ----- |\n | 简体中文 | zh-cn |\n | 繁體中文 | zh-tw |\n | 日本語 | ja-jp |\n | 한국어 | ko-kr |\n | English (US) | en-us |\n | Español (EU) | es-es |\n | Français | fr-fr |\n | Deutsch | de-de |\n | Русский | ru-ru |\n | Português | pt-pt |\n | Español (Latino) | es-mx |\n | Indonesia | id-id |\n | Tiếng Việt | vi-vn |\n | ภาษาไทย | th-th |\n\n | Honkai Impact 3rd | Genshin Impact | Tears of Themis | HoYoLAB | Honkai: Star Rail | Zenless Zone Zero |\n | ----------------- | -------------- | --------------- | ------- | ----------------- | ----------------- |\n | 1 | 2 | 4 | 5 | 6 | 8 |\n\n | Notices | Events | Info |\n | ------- | ------ | ---- |\n | 1 | 2 | 3 |","location":"news.ts"}} />
+
+| Language | Code |
+| ---------------- | ----- |
+| 简体中文 | zh-cn |
+| 繁體中文 | zh-tw |
+| 日本語 | ja-jp |
+| 한국어 | ko-kr |
+| English (US) | en-us |
+| Español (EU) | es-es |
+| Français | fr-fr |
+| Deutsch | de-de |
+| Русский | ru-ru |
+| Português | pt-pt |
+| Español (Latino) | es-mx |
+| Indonesia | id-id |
+| Tiếng Việt | vi-vn |
+| ภาษาไทย | th-th |
+
+| Honkai Impact 3rd | Genshin Impact | Tears of Themis | HoYoLAB | Honkai: Star Rail | Zenless Zone Zero |
+| ----------------- | -------------- | --------------- | ------- | ----------------- | ----------------- |
+| 1 | 2 | 4 | 5 | 6 | 8 |
+
+| Notices | Events | Info |
+| ------- | ------ | ---- |
+| 1 | 2 | 3 |
## indienova 独立游戏 {#indienova-du-li-you-xi}
-### 文章 {#indienova-du-li-you-xi-wen-zhang}
+### Unknown {#indienova-du-li-you-xi-unknown}
-<Route author="GensouSakuya kt286" example="/indienova/article" path="indienova/:type" paramsDesc={['类型: `article` 文章,`development` 开发']} radar="1" />
-
-### 专题 {#indienova-du-li-you-xi-zhuan-ti}
+<Route data={{"path":"/:type","categories":["game"],"example":"/indienova/article","parameters":{"type":"类型: `article` 文章,`development` 开发"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["GensouSakuya","kt286"],"location":"article.ts"}} />
-<Route author="TonyRL" example="/indienova/column/52" path="/indienova/column/:columnId" paramsDesc={['专题 ID,可在 URL中找到']} radar="1">
- <details>
- <summary>专题 ID</summary>
+### 会员开发游戏库 {#indienova-du-li-you-xi-hui-yuan-kai-fa-you-xi-ku}
- 游戏推荐
+<Route data={{"path":"/usergames","categories":["game"],"example":"/indienova/usergames","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["indienova.com/usergames","indienova.com/"]},"name":"会员开发游戏库","maintainers":["TonyRL"],"url":"indienova.com/usergames","location":"usergames.ts"}} />
- | itch 一周游戏汇 | 一周值得关注的发售作品 | 诺娃速递 | 周末游戏视频集锦 | 每月媒体评分 | 年度最佳游戏 | Indie Focus 近期新游 | indienova Picks 精选 |
- | --------------- | ---------------------- | -------- | ---------------- | ------------ | ------------ | -------------------- | -------------------- |
- | 52 | 29 | 41 | 43 | 45 | 39 | 1 | 8 |
+### 专题 {#indienova-du-li-you-xi-zhuan-ti}
- 游戏评论
+<Route data={{"path":"/column/:columnId","categories":["game"],"example":"/indienova/column/52","parameters":{"columnId":"专题 ID,可在 URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["indienova.com/column/:columnId"]},"name":"专题","maintainers":["TonyRL"],"description":"<details>\n <summary>专题 ID</summary>\n\n 游戏推荐\n\n | itch 一周游戏汇 | 一周值得关注的发售作品 | 诺娃速递 | 周末游戏视频集锦 | 每月媒体评分 | 年度最佳游戏 | Indie Focus 近期新游 | indienova Picks 精选 |\n | --------------- | ---------------------- | -------- | ---------------- | ------------ | ------------ | -------------------- | -------------------- |\n | 52 | 29 | 41 | 43 | 45 | 39 | 1 | 8 |\n\n 游戏评论\n\n | 游必有方 Podcast | 独立游戏潮(RED) |\n | ---------------- | ----------------- |\n | 6 | 3 |\n\n 游戏开发\n\n | 游戏设计模式 | Roguelike 开发 | GMS 中文教程 |\n | ------------ | -------------- | ------------ |\n | 15 | 14 | 7 |\n\n 游戏设计\n\n | 游戏与所有 | 让人眼前一亮的游戏设计 | 游戏音乐分析 | 游戏情感设计 | 游戏相关书籍 | 游戏设计课程笔记 | 游戏设计工具 | 游戏设计灵感 | 设计师谈设计 | 游戏研究方法 | 功能游戏 | 游戏设计专业院校 | 像素课堂 |\n | ---------- | ---------------------- | ------------ | ------------ | ------------ | ---------------- | ------------ | ------------ | ------------ | ------------ | -------- | ---------------- | -------- |\n | 10 | 33 | 17 | 4 | 22 | 11 | 24 | 26 | 27 | 28 | 38 | 9 | 19 |\n\n 游戏文化\n\n | NOVA 海外独立游戏见闻 | 工作室访谈 | indie Figure 游戏人 | 游戏艺术家 | 独立游戏音乐欣赏 | 游戏瑰宝 | 电脑 RPG 游戏史 | ALT. CTRL. GAMING |\n | --------------------- | ---------- | ------------------- | ---------- | ---------------- | -------- | --------------- | ----------------- |\n | 53 | 23 | 5 | 44 | 18 | 21 | 16 | 2 |\n\n Game Jam\n\n | Ludum Dare | Global Game Jam |\n | ---------- | --------------- |\n | 31 | 13 |\n </details>","location":"column.ts"}} />
- | 游必有方 Podcast | 独立游戏潮(RED) |
- | ---------------- | ----------------- |
- | 6 | 3 |
+<details>
+ <summary>专题 ID</summary>
- 游戏开发
+ 游戏推荐
- | 游戏设计模式 | Roguelike 开发 | GMS 中文教程 |
- | ------------ | -------------- | ------------ |
- | 15 | 14 | 7 |
+ | itch 一周游戏汇 | 一周值得关注的发售作品 | 诺娃速递 | 周末游戏视频集锦 | 每月媒体评分 | 年度最佳游戏 | Indie Focus 近期新游 | indienova Picks 精选 |
+ | --------------- | ---------------------- | -------- | ---------------- | ------------ | ------------ | -------------------- | -------------------- |
+ | 52 | 29 | 41 | 43 | 45 | 39 | 1 | 8 |
- 游戏设计
+ 游戏评论
- | 游戏与所有 | 让人眼前一亮的游戏设计 | 游戏音乐分析 | 游戏情感设计 | 游戏相关书籍 | 游戏设计课程笔记 | 游戏设计工具 | 游戏设计灵感 | 设计师谈设计 | 游戏研究方法 | 功能游戏 | 游戏设计专业院校 | 像素课堂 |
- | ---------- | ---------------------- | ------------ | ------------ | ------------ | ---------------- | ------------ | ------------ | ------------ | ------------ | -------- | ---------------- | -------- |
- | 10 | 33 | 17 | 4 | 22 | 11 | 24 | 26 | 27 | 28 | 38 | 9 | 19 |
+ | 游必有方 Podcast | 独立游戏潮(RED) |
+ | ---------------- | ----------------- |
+ | 6 | 3 |
- 游戏文化
+ 游戏开发
- | NOVA 海外独立游戏见闻 | 工作室访谈 | indie Figure 游戏人 | 游戏艺术家 | 独立游戏音乐欣赏 | 游戏瑰宝 | 电脑 RPG 游戏史 | ALT. CTRL. GAMING |
- | --------------------- | ---------- | ------------------- | ---------- | ---------------- | -------- | --------------- | ----------------- |
- | 53 | 23 | 5 | 44 | 18 | 21 | 16 | 2 |
+ | 游戏设计模式 | Roguelike 开发 | GMS 中文教程 |
+ | ------------ | -------------- | ------------ |
+ | 15 | 14 | 7 |
- Game Jam
+ 游戏设计
- | Ludum Dare | Global Game Jam |
- | ---------- | --------------- |
- | 31 | 13 |
- </details>
-</Route>
+ | 游戏与所有 | 让人眼前一亮的游戏设计 | 游戏音乐分析 | 游戏情感设计 | 游戏相关书籍 | 游戏设计课程笔记 | 游戏设计工具 | 游戏设计灵感 | 设计师谈设计 | 游戏研究方法 | 功能游戏 | 游戏设计专业院校 | 像素课堂 |
+ | ---------- | ---------------------- | ------------ | ------------ | ------------ | ---------------- | ------------ | ------------ | ------------ | ------------ | -------- | ---------------- | -------- |
+ | 10 | 33 | 17 | 4 | 22 | 11 | 24 | 26 | 27 | 28 | 38 | 9 | 19 |
-### GameDB 游戏库 {#indienova-du-li-you-xi-gamedb-you-xi-ku}
+ 游戏文化
-<Route author="TonyRL" example="/indienova/gamedb/recent" path="/indienova/gamedb/recent/:platform?" paramsDesc={['平台,见下表,留空为 `all`']} radar="1">
- | 全部 | PS4 | XBOX One | Nintendo Switch |
- | ---- | --- | -------- | --------------- |
- | all | ps4 | xboxone | nintendo-switch |
-</Route>
+ | NOVA 海外独立游戏见闻 | 工作室访谈 | indie Figure 游戏人 | 游戏艺术家 | 独立游戏音乐欣赏 | 游戏瑰宝 | 电脑 RPG 游戏史 | ALT. CTRL. GAMING |
+ | --------------------- | ---------- | ------------------- | ---------- | ---------------- | -------- | --------------- | ----------------- |
+ | 53 | 23 | 5 | 44 | 18 | 21 | 16 | 2 |
-### 会员开发游戏库 {#indienova-du-li-you-xi-hui-yuan-kai-fa-you-xi-ku}
+ Game Jam
-<Route author="TonyRL" example="/indienova/usergames" path="/indienova/usergames" radar="1" />
+ | Ludum Dare | Global Game Jam |
+ | ---------- | --------------- |
+ | 31 | 13 |
+</details>
## itch.io {#itch-io}
-### Browse {#itch-io-browse}
-
-<Route author="nczitzk" example="/itch/games/new-and-popular/featured" path="/itch/:params?" paramsDesc={['Params']}>
- `params` is the field after `itch.io` in the URL of the corresponding page, e.g. the URL of [Top Rated Games tagged Singleplayer](https://itch.io/games/top-rated/tag-singleplayer) is `https://itch.io/games/top-rated/tag-singleplayer`, where the field after `itch.io` is `/games/top-rated/tag-singleplayer`.
-
- So the route is [`/itch/games/top-rated/tag-singleplayer`](https://rsshub.app/itch/games/top-rated/tag-singleplayer).
-
- :::tip
- You can browse all the tags at [here](https://itch.io/tags).
- :::
-</Route>
-
### Developer Logs {#itch-io-developer-logs}
-<Route author="nczitzk" example="/itch/devlog/teamterrible/the-baby-in-yellow" path="/itch/devlog/:user/:id" paramsDesc={['User id, can be found in URL', 'Item id, can be found in URL']}>
- `User id` is the field before `.itch.io` in the URL of the corresponding page, e.g. the URL of [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field before `.itch.io` is `teamterrible`.
+<Route data={{"path":"/devlog/:user/:id","categories":["game"],"example":"/itch/devlog/teamterrible/the-baby-in-yellow","parameters":{"user":"User id, can be found in URL","id":"Item id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Developer Logs","maintainers":["nczitzk"],"description":"`User id` is the field before `.itch.io` in the URL of the corresponding page, e.g. the URL of [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field before `.itch.io` is `teamterrible`.\n\n `Item id` is the field between `itch.io` and `/devlog` in the URL of the corresponding page, e.g. the URL for [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field between `itch.io` and `/devlog` is `the-baby-in-yellow`.\n\n So the route is [`/itch/devlogs/teamterrible/the-baby-in-yellow`](https://rsshub.app/itch/devlogs/teamterrible/the-baby-in-yellow).","location":"devlog.ts"}} />
+
+`User id` is the field before `.itch.io` in the URL of the corresponding page, e.g. the URL of [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field before `.itch.io` is `teamterrible`.
- `Item id` is the field between `itch.io` and `/devlog` in the URL of the corresponding page, e.g. the URL for [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field between `itch.io` and `/devlog` is `the-baby-in-yellow`.
+`Item id` is the field between `itch.io` and `/devlog` in the URL of the corresponding page, e.g. the URL for [The Baby In Yellow Devlog](https://teamterrible.itch.io/the-baby-in-yellow/devlog) is `https://teamterrible.itch.io/the-baby-in-yellow/devlog`, where the field between `itch.io` and `/devlog` is `the-baby-in-yellow`.
- So the route is [`/itch/devlogs/teamterrible/the-baby-in-yellow`](https://rsshub.app/itch/devlogs/teamterrible/the-baby-in-yellow).
-</Route>
+So the route is [`/itch/devlogs/teamterrible/the-baby-in-yellow`](https://rsshub.app/itch/devlogs/teamterrible/the-baby-in-yellow).
### Posts {#itch-io-posts}
-<Route author="nczitzk" example="/itch/posts/9539/introduce-yourself" path="/itch/posts/:topic/:id" paramsDesc={['Topic id, can be found in URL', 'Topic name, can be found in URL']} />
+<Route data={{"path":"/posts/:topic/:id","categories":["game"],"example":"/itch/posts/9539/introduce-yourself","parameters":{"topic":"Topic id, can be found in URL","id":"Topic name, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["itch.io/t/:topic/:id"]},"name":"Posts","maintainers":["nczitzk"],"location":"posts.ts"}} />
## JUMP {#jump}
### 游戏折扣 {#jump-you-xi-zhe-kou}
-<Route author="zytomorrow" path="/jump/discount/:platform/:filter?/:countries?" example="/jump/discount/ps5/all" paramsDesc={['平台:switch,ps4,ps5,xbox,steam,epic', '过滤参数,all-全部,jx-精选,sd-史低,dl-独立,vip-会员', '地区,具体支持较多,可自信查看地区简写']}>
- | switch | ps4 | ps5 | xbox | steam | epic |
- | ------ | ---- | ---- | ------ | ----- | ------ |
- | 可用 | 可用 | 可用 | 不可用 | 可用 | 不可用 |
+<Route data={{"path":"/discount/:platform/:filter?/:countries?","categories":["game"],"example":"/jump/discount/ps5/all","parameters":{"platform":"平台:switch,ps4,ps5,xbox,steam,epic","filter":"过滤参数,all-全部,jx-精选,sd-史低,dl-独立,vip-会员","countries":"地区,具体支持较多,可自信查看地区简写"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"游戏折扣","maintainers":["zytomorrow"],"description":"| switch | ps4 | ps5 | xbox | steam | epic |\n | ------ | ---- | ---- | ------ | ----- | ------ |\n | 可用 | 可用 | 可用 | 不可用 | 可用 | 不可用 |\n\n | filter | switch | ps4 | ps5 | steam |\n | ------ | ------ | --- | --- | ----- |\n | all | ✔ | ✔ | ✔ | ✔ |\n | jx | ✔ | ✔ | ❌ | ✔ |\n | sd | ✔ | ✔ | ✔ | ✔ |\n | dl | ❌ | ✔ | ❌ | ✔ |\n | vip | ❌ | ❌ | ✔ | ❌ |\n\n | 北美 | 欧洲(英语) | 法国 | 德国 | 日本 |\n | ---- | ------------ | ---- | ---- | ---- |\n | na | eu | fr | de | jp |","location":"discount.ts"}} />
+
+| switch | ps4 | ps5 | xbox | steam | epic |
+| ------ | ---- | ---- | ------ | ----- | ------ |
+| 可用 | 可用 | 可用 | 不可用 | 可用 | 不可用 |
- | filter | switch | ps4 | ps5 | steam |
- | ------ | ------ | --- | --- | ----- |
- | all | ✔ | ✔ | ✔ | ✔ |
- | jx | ✔ | ✔ | ❌ | ✔ |
- | sd | ✔ | ✔ | ✔ | ✔ |
- | dl | ❌ | ✔ | ❌ | ✔ |
- | vip | ❌ | ❌ | ✔ | ❌ |
+| filter | switch | ps4 | ps5 | steam |
+| ------ | ------ | --- | --- | ----- |
+| all | ✔ | ✔ | ✔ | ✔ |
+| jx | ✔ | ✔ | ❌ | ✔ |
+| sd | ✔ | ✔ | ✔ | ✔ |
+| dl | ❌ | ✔ | ❌ | ✔ |
+| vip | ❌ | ❌ | ✔ | ❌ |
- | 北美 | 欧洲(英语) | 法国 | 德国 | 日本 |
- | ---- | ------------ | ---- | ---- | ---- |
- | na | eu | fr | de | jp |
-</Route>
+| 北美 | 欧洲(英语) | 法国 | 德国 | 日本 |
+| ---- | ------------ | ---- | ---- | ---- |
+| na | eu | fr | de | jp |
## Liquipedia {#liquipedia}
### Dota2 战队最近比赛结果 {#liquipedia-dota2-zhan-dui-zui-jin-bi-sai-jie-guo}
-<Route author="wzekin" example="/liquipedia/dota2/matches/Team_Aster" path="/liquipedia/dota2/matches/:id" paramsDesc={['战队名称,可在url中找到。例如:https://liquipedia.net/dota2/Team_Aster']} />
-
-### Counter Strike Match Results {#liquipedia-counter-strike-match-results}
-
-<Route author="CookiePieWw" example="/liquipedia/counterstrike/matches/G2_Esports" path="/liquipedia/counterstrike/matches/:id" paramsDesc={['战队名称,可在url中找到。例如:https://liquipedia.net/counterstrike/G2_Esports']} />
+<Route data={{"path":"/dota2/matches/:id","categories":["game"],"example":"/liquipedia/dota2/matches/Team_Aster","parameters":{"id":"战队名称,可在url中找到。例如:https://liquipedia.net/dota2/Team_Aster"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["liquipedia.net/dota2/:id"]},"name":"Dota2 战队最近比赛结果","maintainers":["wzekin"],"location":"dota2-matches.ts"}} />
## Minecraft {#minecraft}
### Java Game Update {#minecraft-java-game-update}
-<Route author="TheresaQWQ" example="/minecraft/version" path="/minecraft/version" />
+<Route data={{"path":"/version","categories":["game"],"example":"/minecraft/version","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["minecraft.net/"]},"name":"Java Game Update","maintainers":["TheresaQWQ"],"url":"minecraft.net/","location":"version.ts"}} />
## Modrinth {#modrinth}
### Project versions {#modrinth-project-versions}
-<Route author="SettingDust" example="/modrinth/project/sodium/versions" path="/modrinth/project/:id/versions/:routeParams?" paramsDesc={['Id or slug of the Modrinth project','Extra route params. See the table below for options']} radar="1" />
+<Route data={{"path":"/models","categories":["game"],"example":"/modrinth/project/sodium/versions","parameters":{"id":"Id or slug of the Modrinth project","routeParams":"Extra route params. See the table below for options"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["modrinth.com/mod/:id/*","modrinth.com/plugin/:id/*","modrinth.com/datapack/:id/*","modrinth.com/shader/:id/*","modrinth.com/resourcepack/:id/*","modrinth.com/modpack/:id/*","modrinth.com/mod/:id","modrinth.com/plugin/:id","modrinth.com/datapack/:id","modrinth.com/shader/:id","modrinth.com/resourcepack/:id","modrinth.com/modpack/:id"],"target":"/project/:id/versions"},"description":"| Name | Example |\n| -------------- | -------------------------------------------- |\n| loaders | loaders=fabric&loaders=quilt&loaders=forge |\n| game_versions | game_versions=1.20.1&game_versions=1.20.2 |\n| featured | featured=true |","name":"Project versions","maintainers":["SettingDust"],"location":"versions.ts"}} />
| Name | Example |
| -------------- | -------------------------------------------- |
@@ -411,679 +320,389 @@
## Nintendo {#nintendo}
-### eShop New Game Releases {#nintendo-eshop-new-game-releases}
-
-<Route author="HFO4" example="/nintendo/eshop/hk" path="/nintendo/eshop/:region" paramsDesc={['Region, currently supports `hk`(Hong Kong), `jp`(Japan) and `us`(USA)']} notOperational="1" />
-
-### News(Hong Kong only) {#nintendo-news-hong-kong-only}
+### Nintendo Direct {#nintendo-nintendo-direct}
-<Route author="HFO4" example="/nintendo/news" path="/nintendo/news" notOperational="1" />
+<Route data={{"path":"/direct","categories":["game"],"example":"/nintendo/direct","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nintendo.com/nintendo-direct/archive","nintendo.com/"]},"name":"Nintendo Direct","maintainers":["HFO4"],"url":"nintendo.com/nintendo-direct/archive","location":"direct.ts"}} />
### 首页资讯(中国) {#nintendo-shou-ye-zi-xun-zhong-guo}
-<Route author="NeverBehave" example="/nintendo/news/china" path="/nintendo/news/china" />
+<Route data={{"path":"/news/china","categories":["game"],"example":"/nintendo/news/china","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nintendoswitch.com.cn/"]},"name":"首页资讯(中国)","maintainers":["NeverBehave"],"url":"nintendoswitch.com.cn/","location":"news-china.ts"}} />
-### Nintendo Direct {#nintendo-nintendo-direct}
+### News(Hong Kong only) {#nintendo-news-hong-kong-only}
-<Route author="HFO4" example="/nintendo/direct" path="/nintendo/direct" />
+<Route data={{"path":"/news","categories":["game"],"example":"/nintendo/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nintendo.com.hk/topics","nintendo.com.hk/"]},"name":"News(Hong Kong only)","maintainers":["HFO4"],"url":"nintendo.com.hk/topics","location":"news.ts"}} />
### Switch System Update(Japan) {#nintendo-switch-system-update-japan}
-<Route author="hoilc" example="/nintendo/system-update" path="/nintendo/system-update" />
+<Route data={{"path":"/system-update","categories":["game"],"example":"/nintendo/system-update","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nintendo.co.jp/support/switch/system_update/index.html","nintendo.co.jp/"]},"name":"Switch System Update(Japan)","maintainers":["hoilc"],"url":"nintendo.co.jp/support/switch/system_update/index.html","location":"system-update.ts"}} />
## osu! {#osu}
### Beatmap Packs {#osu-beatmap-packs}
-<Route author="JimenezLi" example="/osu/packs" path="/osu/packs/:type?" paramsDesc={['pack type, default to `standard`, can choose from `featured`, `tournament`, `loved`, `chart`, `theme` and `artist`']} radar="1" />
+<Route data={{"path":"/packs/:type?","categories":["game"],"example":"/osu/packs","parameters":{"type":"pack type, default to `standard`, can choose from `featured`, `tournament`, `loved`, `chart`, `theme` and `artist`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Beatmap Packs","maintainers":["JimenezLi"],"location":"beatmaps/packs.ts"}} />
## PlayStation Store {#playstation-store}
-### PlayStation Network user trophy {#playstation-store-playstation-network-user-trophy}
+### PlayStation Monthly Games {#playstation-store-playstation-monthly-games}
-<Route author="DIYgod" example="/ps/trophy/DIYgod_" path="/ps/trophy/:id" paramsDesc={['User ID']} radar="1" anticrawler="1" />
+<Route data={{"path":"/monthly-games","categories":["game"],"example":"/ps/monthly-games","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.playstation.com/en-sg/ps-plus/whats-new"]},"name":"PlayStation Monthly Games","maintainers":["justjustCC"],"url":"www.playstation.com/en-sg/ps-plus/whats-new","location":"monthly-games.ts"}} />
-### PlayStation Monthly Games {#playstation-store-playstation-monthly-games}
+### PlayStation Network user trophy {#playstation-store-playstation-network-user-trophy}
-<Route author="justjustCC" example="/ps/monthly-games" path="/ps/monthly-games" />
+<Route data={{"path":"/trophy/:id","categories":["game"],"example":"/ps/trophy/DIYgod_","parameters":{"id":"User ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"PlayStation Network user trophy","maintainers":["DIYgod"],"location":"trophy.ts"}} />
## PRINCESS CONNECT! Re Dive プリンセスコネクト!Re Dive {#princess-connect-re-dive-%E3%83%97%E3%83%AA%E3%83%B3%E3%82%BB%E3%82%B9%E3%82%B3%E3%83%8D%E3%82%AF%E3%83%88%EF%BC%81re-dive}
### 日服公告 {#princess-connect-re-dive-%E3%83%97%E3%83%AA%E3%83%B3%E3%82%BB%E3%82%B9%E3%82%B3%E3%83%8D%E3%82%AF%E3%83%88%EF%BC%81re-dive-ri-fu-gong-gao}
-<Route author="SayaSS" example="/priconne-redive/news" path="/priconne-redive/news" radar="1" />
-
-### 台服公告 {#princess-connect-re-dive-%E3%83%97%E3%83%AA%E3%83%B3%E3%82%BB%E3%82%B9%E3%82%B3%E3%83%8D%E3%82%AF%E3%83%88%EF%BC%81re-dive-tai-fu-gong-gao}
-
-<Route author="hoilc" example="/pcr/news-tw" path="/pcr/news-tw" />
-
-### 国服公告 {#princess-connect-re-dive-%E3%83%97%E3%83%AA%E3%83%B3%E3%82%BB%E3%82%B9%E3%82%B3%E3%83%8D%E3%82%AF%E3%83%88%EF%BC%81re-dive-guo-fu-gong-gao}
-
-<Route author="KotoriK" example="/pcr/news-cn" path="/pcr/news-cn" />
-
-## PSN 中文站 {#psn-zhong-wen-zhan}
-
-### 首页 - 白金攻略 / 游戏开箱 {#psn-zhong-wen-zhan-shou-ye-bai-jin-gong-lve-you-xi-kai-xiang}
-
-<Route author="LightStrawberry" example="/psnine/index" path="/psnine/index" />
-
-### 节点 {#psn-zhong-wen-zhan-jie-dian}
-
-<Route author="nczitzk" example="/psnine/node/news" path="/psnine/node/:id?/:order?" paramsDesc={['节点 id,见下表,默认为 news', '排序,可选 `date` 即最新,默认为 `obdate` 即综合排序']}>
- | 站务 | 活动 | 旅记 | 折扣 | 会免 |
- | ---- | ----- | ------ | ---- | ---- |
- | p9 | event | travel | off | plus |
-
- | 新闻 | 攻略 | 测评 | 心得 | 开箱 |
- | ---- | ----- | ------ | ---- | ------- |
- | news | guide | review | exp | openbox |
-
- | 游列 | 游计 | Ps4 | Ps5 |
- | -------- | -------- | --- | --- |
- | gamelist | planlist | ps4 | ps5 |
-
- | 发米通 | Ign | Ucg |
- | ------- | --- | --- |
- | famitsu | ign | ucg |
-</Route>
-
-### 数折 - 折扣信息推送 {#psn-zhong-wen-zhan-shu-zhe-zhe-kou-xin-xi-tui-song}
-
-<Route author="LightStrawberry" example="/psnine/shuzhe" path="/psnine/shuzhe" />
-
-### 闲游 - 二手盘信息 {#psn-zhong-wen-zhan-xian-you-er-shou-pan-xin-xi}
-
-<Route author="LightStrawberry" example="/psnine/trade" path="/psnine/trade" />
-
-### 游戏 - 新游戏奖杯信息 {#psn-zhong-wen-zhan-you-xi-xin-you-xi-jiang-bei-xin-xi}
-
-<Route author="LightStrawberry" example="/psnine/game" path="/psnine/game" />
-
-## Rockstar Games Social Club {#rockstar-games-social-club}
-
-### 在线活动 {#rockstar-games-social-club-zai-xian-huo-dong}
-
-<Route author="kookxiang" example="/socialclub/events/GTAV" path="/socialclub/events/:game?" paramsDesc={['游戏代码(默认所有)']}>
- | 游戏代码 | 游戏名称 |
- | -------- | ------------ |
- | GTAV | 侠盗猎车手 5 |
- | RDR2 | 荒野大镖客 2 |
-</Route>
+<Route data={{"path":"/news","categories":["game"],"example":"/priconne-redive/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["priconne-redive.jp/news"]},"name":"日服公告","maintainers":["SayaSS"],"url":"priconne-redive.jp/news","location":"news.ts"}} />
## SEGA {#sega}
### 世界计划 多彩舞台 | ProjectSekai | プロセカ {#sega-shi-jie-ji-hua-duo-cai-wu-tai-projectsekai-%E3%83%97%E3%83%AD%E3%82%BB%E3%82%AB}
-<Route author="15x15G" example="/sega/pjsekai/news" path="/sega/pjsekai/news" />
-
-## Steam {#steam}
-
-### Steam search {#steam-steam-search}
+<Route data={{"path":"/pjsekai/news","categories":["game"],"example":"/sega/pjsekai/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pjsekai.sega.jp/news/index.html"]},"name":"世界计划 多彩舞台 | ProjectSekai | プロセカ","maintainers":["15x15G"],"url":"pjsekai.sega.jp/news/index.html","location":"pjsekai.ts"}} />
-<Route author="maple3142" example="/steam/search/specials=1" path="/steam/search/:params" paramsDesc={['search parameters']} radar="1">
- Get serach parameters from the URL.
-
- For instance, in `https://store.steampowered.com/search/?specials=1&term=atelier`, the parameters are `specials=1&term=atelier`.
-</Route>
-
-## SteamGifts {#steamgifts}
-
-### Discussions {#steamgifts-discussions}
-
-<Route author="whtsky" example="/steamgifts/discussions" path="/steamgifts/discussions/:category?" paramsDesc={['category name, default to All']} />
-
-## TapTap International {#taptap-international}
+## TapTap 中国 {#taptap-zhong-guo}
:::warning
-Due to the regional restrictions, an RSSHub deployment in China Mainland may not work on accessing the TapTap International Website.
+由于区域限制,需要在有国内 IP 的机器上自建才能正常获取 RSS。而对于《TapTap 国际版》则需要部署在具有海外出口的 IP 上才可正常获取 RSS。
:::
-### Game's Changelog {#taptap-international-game-s-changelog}
-
-<Route author="hoilc ETiV" example="/taptap/intl/changelog/191001/zh_TW" path="/taptap/intl/changelog/:id/:lang?" paramsDesc={['Game\'s App ID, you may find it from the URL of the Game', 'Language, checkout the table below for possible values, default is `en_US`']} notOperational="1">
- Language Code
-
- | English (US) | 繁體中文 | 한국어 | 日本語 |
- | ------------ | -------- | ------ | ------ |
- | en\_US | zh\_TW | ko\_KR | ja\_JP |
-</Route>
+### 游戏更新 {#taptap-zhong-guo-you-xi-geng-xin}
-### Ratings & Reviews {#taptap-international-ratings-reviews}
+<Route data={{"path":["/changelog/:id/:lang?","/intl/changelog/:id/:lang?"],"categories":["game"],"example":"/taptap/changelog/60809/en_US","parameters":{"id":"游戏 ID,游戏主页 URL 中获取","lang":"语言,默认使用 `zh_CN`,亦可使用 `en_US`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taptap.com/app/:id"],"target":"/changelog/:id"},"name":"游戏更新","maintainers":["hoilc","ETiV"],"description":"#### 语言代码\n\n | English (US) | 繁體中文 | 한국어 | 日本語 |\n | ------------ | -------- | ------ | ------ |\n | en_US | zh_TW | ko_KR | ja_JP |","location":"changelog.ts"}} />
-<Route author="hoilc TonyRL ETiV" example="/taptap/intl/review/82354/new/zh_TW" path="/taptap/intl/review/:id/:order?/:lang?" paramsDesc={['Game\'s App ID, you may find it from the URL of the Game', 'Sort Method, you may use `new` as the **Most Recent**, use `default` or leave it empty for the **Most Relevant**', 'Language, checkout the table below for possible values, default is `en_US`']}>
- Sort Method
+#### 语言代码 {#taptap-zhong-guo-you-xi-geng-xin-yu-yan-dai-ma}
- | Most Relevant | Most Recent |
- | ------------- | ----------- |
- | default | new |
+| English (US) | 繁體中文 | 한국어 | 日本語 |
+| ------------ | -------- | ------ | ------ |
+| en\_US | zh\_TW | ko\_KR | ja\_JP |
- Language Code
+### 游戏更新 {#taptap-zhong-guo-you-xi-geng-xin}
- | English (US) | 繁體中文 | 한국어 | 日本語 |
- | ------------ | -------- | ------ | ------ |
- | en\_US | zh\_TW | ko\_KR | ja\_JP |
-</Route>
+<Route data={{"path":["/changelog/:id/:lang?","/intl/changelog/:id/:lang?"],"categories":["game"],"example":"/taptap/changelog/60809/en_US","parameters":{"id":"游戏 ID,游戏主页 URL 中获取","lang":"语言,默认使用 `zh_CN`,亦可使用 `en_US`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taptap.com/app/:id"],"target":"/changelog/:id"},"name":"游戏更新","maintainers":["hoilc","ETiV"],"description":"#### 语言代码\n\n | English (US) | 繁體中文 | 한국어 | 日本語 |\n | ------------ | -------- | ------ | ------ |\n | en_US | zh_TW | ko_KR | ja_JP |","location":"changelog.ts"}} />
-## TapTap 中国 {#taptap-zhong-guo}
+#### 语言代码 {#taptap-zhong-guo-you-xi-geng-xin-yu-yan-dai-ma}
-:::warning
-由于区域限制,需要在有国内 IP 的机器上自建才能正常获取 RSS。\
-而对于《TapTap 国际版》则需要部署在具有海外出口的 IP 上才可正常获取 RSS。
-:::
+| English (US) | 繁體中文 | 한국어 | 日本語 |
+| ------------ | -------- | ------ | ------ |
+| en\_US | zh\_TW | ko\_KR | ja\_JP |
### 游戏论坛 {#taptap-zhong-guo-you-xi-lun-tan}
-<Route author="hoilc TonyRL" example="/taptap/topic/142793/official" path="/taptap/topic/:id/:type?/:sort?/:lang?" paramsDesc={['游戏 ID,游戏主页 URL 中获取', '论坛版块,默认显示所有帖子,论坛版块 URL 中 `type` 参数,见下表,默认为 `feed`', '排序,见下表,默认为 `created`', '语言,`zh-CN`或`zh-TW`,默认为`zh-CN`']} notOperational="1">
- | 全部 | 精华 | 官方 | 影片 |
- | ---- | ----- | -------- | ----- |
- | feed | elite | official | video |
-
- | 发布时间 | 回复时间 |
- | -------- | --------- |
- | created | commented |
-</Route>
-
-### 游戏更新 {#taptap-zhong-guo-you-xi-geng-xin}
-
-<Route author="hoilc ETiV" example="/taptap/changelog/60809/en_US" path="/taptap/changelog/:id/:lang?" paramsDesc={['游戏 ID,游戏主页 URL 中获取', '语言,默认使用 `zh_CN`,亦可使用 `en_US`']} notOperational="1" />
+<Route data={{"path":"/topic/:id/:type?/:sort?/:lang?","categories":["game"],"example":"/taptap/topic/142793/official","parameters":{"id":"游戏 ID,游戏主页 URL 中获取","type":"论坛版块,默认显示所有帖子,论坛版块 URL 中 `type` 参数,见下表,默认为 `feed`","sort":"排序,见下表,默认为 `created`","lang":"语言,`zh-CN`或`zh-TW`,默认为`zh-CN`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taptap.com/app/:id/topic","taptap.com/app/:id"],"target":"/topic/:id"},"name":"游戏论坛","maintainers":["hoilc","TonyRL"],"description":"| 全部 | 精华 | 官方 | 影片 |\n | ---- | ----- | -------- | ----- |\n | feed | elite | official | video |\n\n | 发布时间 | 回复时间 |\n | -------- | --------- |\n | created | commented |","location":"topic.ts"}} />
-### 游戏更新 - 国际版 {#taptap-zhong-guo-you-xi-geng-xin-guo-ji-ban}
+| 全部 | 精华 | 官方 | 影片 |
+| ---- | ----- | -------- | ----- |
+| feed | elite | official | video |
-<Route author="hoilc ETiV" example="/taptap/intl/changelog/191001/zh_TW" path="/taptap/intl/changelog/:id/:lang?" paramsDesc={['游戏 ID,游戏主页 URL 中获取', '语言代码,默认使用 `en_US`,可选项目见下表']} notOperational="1">
- #### 语言代码
-
- | English (US) | 繁體中文 | 한국어 | 日本語 |
- | ------------ | -------- | ------ | ------ |
- | en\_US | zh\_TW | ko\_KR | ja\_JP |
-</Route>
+| 发布时间 | 回复时间 |
+| -------- | --------- |
+| created | commented |
### 游戏评价 {#taptap-zhong-guo-you-xi-ping-jia}
-<Route author="hoilc TonyRL" example="/taptap/review/142793/hot" path="/taptap/review/:id/:order?/:lang?" paramsDesc={['游戏 ID,游戏主页 URL 中获取', '排序方式,空为默认排序,可选如下', '语言,`zh-CN`或`zh-TW`,默认为`zh-CN`']} notOperational="1">
- | 最新 | 最热 | 游戏时长 | 默认排序 |
- | ------ | ---- | -------- | -------- |
- | update | hot | spent | default |
-</Route>
-
-### 游戏评价 - 国际版 {#taptap-zhong-guo-you-xi-ping-jia-guo-ji-ban}
+<Route data={{"path":["/review/:id/:order?/:lang?","/intl/review/:id/:order?/:lang?"],"categories":["game"],"example":"/taptap/review/142793/hot","parameters":{"id":"游戏 ID,游戏主页 URL 中获取","order":"排序方式,空为默认排序,可选如下","lang":"语言,`zh-CN`或`zh-TW`,默认为`zh-CN`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taptap.com/app/:id/review","taptap.com/app/:id"],"target":"/review/:id"},"name":"游戏评价","maintainers":["hoilc","TonyRL"],"description":"| 最新 | 最热 | 游戏时长 | 默认排序 |\n | ------ | ---- | -------- | -------- |\n | update | hot | spent | default |","location":"review.ts"}} />
-<Route author="hoilc TonyRL ETiV" example="/taptap/intl/review/82354/new" path="/taptap/intl/review/:id/:order?/:lang?" paramsDesc={['游戏 ID,游戏主页 URL 中获取', '排序方式,空为默认排序,可选如下', '语言代码,默认使用 `en_US`,可选项目见下表']}>
- #### 排序方式
+| 最新 | 最热 | 游戏时长 | 默认排序 |
+| ------ | ---- | -------- | -------- |
+| update | hot | spent | default |
- | 最相关 | 最新 |
- | ------- | ---- |
- | default | new |
+### 游戏评价 {#taptap-zhong-guo-you-xi-ping-jia}
- #### 语言代码
+<Route data={{"path":["/review/:id/:order?/:lang?","/intl/review/:id/:order?/:lang?"],"categories":["game"],"example":"/taptap/review/142793/hot","parameters":{"id":"游戏 ID,游戏主页 URL 中获取","order":"排序方式,空为默认排序,可选如下","lang":"语言,`zh-CN`或`zh-TW`,默认为`zh-CN`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taptap.com/app/:id/review","taptap.com/app/:id"],"target":"/review/:id"},"name":"游戏评价","maintainers":["hoilc","TonyRL"],"description":"| 最新 | 最热 | 游戏时长 | 默认排序 |\n | ------ | ---- | -------- | -------- |\n | update | hot | spent | default |","location":"review.ts"}} />
- | English (US) | 繁體中文 | 한국어 | 日本語 |
- | ------------ | -------- | ------ | ------ |
- | en\_US | zh\_TW | ko\_KR | ja\_JP |
-</Route>
+| 最新 | 最热 | 游戏时长 | 默认排序 |
+| ------ | ---- | -------- | -------- |
+| update | hot | spent | default |
## War Thunder {#war-thunder}
### News {#war-thunder-news}
-<Route author="axojhf" example="/warthunder/news" path="/warthunder/news">
- News data from [https://warthunder.com/en/news/](https://warthunder.com/en/news/)
- The year, month and day provided under UTC time zone are the same as the official website, so please ignore the specific time!!!
-</Route>
+<Route data={{"path":"/news","categories":["game"],"example":"/warthunder/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["warthunder.com/en/news","warthunder.com/"]},"name":"News","maintainers":["axojhf"],"url":"warthunder.com/en/news","description":"News data from [https://warthunder.com/en/news/](https://warthunder.com/en/news/)\n The year, month and day provided under UTC time zone are the same as the official website, so please ignore the specific time!!!","location":"news.ts"}} />
-## 触乐 {#chu-le}
-
-### 栏目 {#chu-le-lan-mu}
-
-<Route author="laampui" example="/chuapp/index/daily" path="/chuapp/index/:category?" paramsDesc={['默认为 night']}>
- | 每日聚焦 | 最好玩 | 触乐夜话 | 动态资讯 |
- | -------- | ------ | -------- | -------- |
- | daily | pcz | night | news |
-</Route>
+News data from [https://warthunder.com/en/news/](https://warthunder.com/en/news/)
+The year, month and day provided under UTC time zone are the same as the official website, so please ignore the specific time!!!
## 二柄 APP {#er-bing-app}
### 新闻 {#er-bing-app-xin-wen}
-<Route author="wushijishan" example="/diershoubing/news" path="/diershoubing/news" />
-
-## 怪物猎人世界 {#guai-wu-lie-ren-shi-jie}
-
-### 更新情报 {#guai-wu-lie-ren-shi-jie-geng-xin-qing-bao}
-
-<Route author="DIYgod" example="/mhw/update" path="/mhw/update" radar="1" />
-
-### 最新消息 {#guai-wu-lie-ren-shi-jie-zui-xin-xiao-xi}
-
-<Route author="DIYgod" example="/mhw/news" path="/mhw/news" radar="1" />
+<Route data={{"path":"/news","categories":["game"],"example":"/diershoubing/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["diershoubing.com/"]},"name":"新闻","maintainers":["wushijishan"],"url":"diershoubing.com/","location":"news.ts"}} />
## 盒心光环 {#he-xin-guang-huan}
### 资讯 {#he-xin-guang-huan-zi-xun}
-<Route author="XXY233" example="/xboxfan/news" path="/xboxfan/news" radar="1" />
-
-## 剑网 3 {#jian-wang-3}
-
-### 新闻资讯 {#jian-wang-3-xin-wen-zi-xun}
-
-<Route author="nczitzk" example="/jx3" path="/jx3/:caty?" paramsDesc={['分类,见下表,默认为最新']}>
- | 最新 | 新闻 | 活动 | 公告 |
- | ------- | ----- | ---- | -------- |
- | allnews | press | hd | announce |
-</Route>
+<Route data={{"path":"/news","categories":["game"],"example":"/xboxfan/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xboxfan.com/"]},"name":"资讯","maintainers":["XXY233"],"url":"xboxfan.com/","location":"news.ts"}} />
## 旅法师营地 {#lv-fa-shi-ying-di}
### 首页 {#lv-fa-shi-ying-di-shou-ye}
-<Route author="auto-bot-ty" example="/lfsyd/home" path="/lfsyd/home" radar="1" />
+<Route data={{"path":"/home","categories":["game"],"example":"/lfsyd/home","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.iyingdi.com/"]},"name":"首页","maintainers":["auto-bot-ty"],"url":"www.iyingdi.com/","location":"home.ts"}} />
### 首页(旧版) {#lv-fa-shi-ying-di-shou-ye-jiu-ban}
-<Route author="auto-bot-ty" example="/lfsyd/old_home" path="/lfsyd/old_home" radar="1" />
-
-### 分区 {#lv-fa-shi-ying-di-fen-qu}
+<Route data={{"path":"/old_home","categories":["game"],"example":"/lfsyd/old_home","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.iyingdi.com/"]},"name":"首页(旧版)","maintainers":["auto-bot-ty"],"url":"www.iyingdi.com/","location":"old-home.ts"}} />
-<Route author="auto-bot-ty" example="/lfsyd/tag/17" path="/lfsyd/tag/:tagId" paramsDesc={['订阅分区类型']} radar="1">
- | 炉石传说 | 万智牌 | 游戏王 | 昆特牌 | 影之诗 | 符文之地传奇 | 阴阳师百闻牌 |
- | :------: | :----: | :----: | :----: | :----: | :----------: | :----------: |
- | 17 | 18 | 16 | 19 | 20 | 329 | 221 |
+## 米哈游 {#mi-ha-you}
- | 英雄联盟 | 电子游戏 | 桌面游戏 | 卡牌游戏 | 玩家杂谈 | 二次元 |
- | :------: | :------: | :------: | :------: | :------: | :----: |
- | 112 | 389 | 24 | 102 | 23 | 117 |
-</Route>
+### 崩坏:星穹铁道 {#mi-ha-you-beng-huai-xing-qiong-tie-dao}
-### 用户的帖子 {#lv-fa-shi-ying-di-yong-hu-de-tie-zi}
+<Route data={{"path":"/sr/:location?/:category?","categories":["game"],"example":"/mihoyo/sr","parameters":{"location":"区域,可选 `zh-cn`(国服,简中)或 `zh-tw`(国际服,繁中)","category":"分类,见下表,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sr.mihoyo.com/news"],"target":"/sr"},"name":"崩坏:星穹铁道","maintainers":["shinanory"],"url":"sr.mihoyo.com/news","description":"#### 新闻 {#mi-ha-you-beng-huai-xing-qiong-tie-dao-xin-wen}\n\n | 最新 | 新闻 | 公告 | 活动 |\n | -------- | ---- | ------ | -------- |\n | news-all | news | notice | activity |","location":"sr/news.ts"}} />
-<Route author="auto-bot-ty" example="/lfsyd/user/55547" path="/lfsyd/user/:id" paramsDesc={['用户 id']} radar="1" />
+#### 新闻 {#mi-ha-you-beng-huai-xing-qiong-tie-dao-xin-wen}
-可以在用户主页的 URL 中找到
+| 最新 | 新闻 | 公告 | 活动 |
+| -------- | ---- | ------ | -------- |
+| news-all | news | notice | activity |
-Example:`https://www.iyingdi.com/tz/people/55547` ,id 是 `55547`
+### 米游社 - 官方公告 {#mi-ha-you-mi-you-she-guan-fang-gong-gao}
-## 米哈游 {#mi-ha-you}
+<Route data={{"path":"/bbs/official/:gids/:type?/:page_size?/:last_id?","categories":["game"],"example":"/mihoyo/bbs/official/2/3/20/","parameters":{"gids":"游戏id","type":"公告类型,默认为 2(即 活动)","page_size":"分页大小,默认为 20 ","last_id":"跳过的公告数,例如指定为 40 就是从第 40 条公告开始,可用于分页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"米游社 - 官方公告","maintainers":["CaoMeiYouRen"],"description":"游戏 id\n\n | 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 绝区零 |\n | ------ | ---- | ------ | ---------- | -------- | ------ |\n | 1 | 2 | 3 | 4 | 6 | 8 |\n\n 公告类型\n\n | 公告 | 活动 | 资讯 |\n | ---- | ---- | ---- |\n | 1 | 2 | 3 |","location":"bbs/official.ts"}} />
-### 崩坏 2 - 游戏公告 {#mi-ha-you-beng-huai-2-you-xi-gong-gao}
+游戏 id
-<Route author="deepred5" example="/mihoyo/bh2/gach" path="/mihoyo/bh2/:type" paramsDesc={['公告种类']} notOperational="1">
- | 最新公告 | 版本信息 | 祈愿信息 | 活动介绍 |
- | -------- | -------- | -------- | -------- |
- | new | version | gach | event |
-</Route>
+| 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 绝区零 |
+| ------ | ---- | ------ | ---------- | -------- | ------ |
+| 1 | 2 | 3 | 4 | 6 | 8 |
-### 崩坏 3 - 游戏公告 {#mi-ha-you-beng-huai-3-you-xi-gong-gao}
+公告类型
-<Route author="deepred5 nczitzk" example="/mihoyo/bh3/latest" path="/mihoyo/bh3/:type" paramsDesc={['公告种类']}>
- | 最新 | 动态 | 公告 | 活动 | 补给 |
- | ------ | ---- | ------ | -------- | -------- |
- | latest | news | notice | activity | strategy |
-</Route>
+| 公告 | 活动 | 资讯 |
+| ---- | ---- | ---- |
+| 1 | 2 | 3 |
### 米游社 - 同人榜 {#mi-ha-you-mi-you-she-tong-ren-bang}
-<Route author="CaoMeiYouRen" example="/mihoyo/bbs/img-ranking/ys/forumType=tongren&cateType=illustration&rankingType=daily" path="/mihoyo/bbs/img-ranking/:game/:routeParams?" paramsDesc={['游戏缩写','额外参数;请参阅以下说明和表格']} radar="1">
- | 键 | 含义 | 接受的值 | 默认值 |
- | ----------- | ------------------------------------- | -------------------------------------------------------------------- | ------------ |
- | forumType | 主榜类型(仅原神、大别野有 cos 主榜) | tongren/cos | tongren |
- | cateType | 子榜类型(仅崩坏三、原神有子榜) | 崩坏三:illustration/comic/cos;原神:illustration/comic/qute/manual | illustration |
- | rankingType | 排行榜类型(崩坏二没有日榜) | daily/weekly/monthly | daily |
- | lastId | 当前页 id(用于分页) | 数字 | 1 |
+<Route data={{"path":"/bbs/img-ranking/:game/:routeParams?","categories":["game"],"example":"/mihoyo/bbs/img-ranking/ys/forumType=tongren&cateType=illustration&rankingType=daily","parameters":{"game":"游戏缩写","routeParams":"额外参数;请参阅以下说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["miyoushe.com/:game/imgRanking/:forum_id/:ranking_id/:cate_id"],"target":"/bbs/img-ranking/:game"},"name":"米游社 - 同人榜","maintainers":["CaoMeiYouRen"],"description":"| 键 | 含义 | 接受的值 | 默认值 |\n | ----------- | ------------------------------------- | -------------------------------------------------------------------- | ------------ |\n | forumType | 主榜类型(仅原神、大别野有 cos 主榜) | tongren/cos | tongren |\n | cateType | 子榜类型(仅崩坏三、原神有子榜) | 崩坏三:illustration/comic/cos;原神:illustration/comic/qute/manual | illustration |\n | rankingType | 排行榜类型(崩坏二没有日榜) | daily/weekly/monthly | daily |\n | lastId | 当前页 id(用于分页) | 数字 | 1 |\n\n 游戏缩写(目前绝区零还没有同人榜\n\n | 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 大别野 |\n | ------ | ---- | ------ | ---------- | -------- | ------ |\n | bh3 | ys | bh2 | wd | sr | dby |\n\n 主榜类型\n\n | 同人榜 | COS 榜 |\n | ------- | ------ |\n | tongren | cos |\n\n 子榜类型\n\n 崩坏三 子榜\n\n | 插画 | 漫画 | COS |\n | ------------ | ----- | --- |\n | illustration | comic | cos |\n\n 原神 子榜\n\n | 插画 | 漫画 | Q 版 | 手工 |\n | ------------ | ----- | ---- | ------ |\n | illustration | comic | qute | manual |\n\n 排行榜类型\n\n | 日榜 | 周榜 | 月榜 |\n | ----- | ------ | ------- |\n | daily | weekly | monthly |","location":"bbs/img-ranking.ts"}} />
- 游戏缩写(目前绝区零还没有同人榜
+| 键 | 含义 | 接受的值 | 默认值 |
+| ----------- | ------------------------------------- | -------------------------------------------------------------------- | ------------ |
+| forumType | 主榜类型(仅原神、大别野有 cos 主榜) | tongren/cos | tongren |
+| cateType | 子榜类型(仅崩坏三、原神有子榜) | 崩坏三:illustration/comic/cos;原神:illustration/comic/qute/manual | illustration |
+| rankingType | 排行榜类型(崩坏二没有日榜) | daily/weekly/monthly | daily |
+| lastId | 当前页 id(用于分页) | 数字 | 1 |
- | 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 大别野 |
- | ------ | ---- | ------ | ---------- | -------- | ------ |
- | bh3 | ys | bh2 | wd | sr | dby |
+游戏缩写(目前绝区零还没有同人榜
- 主榜类型
+| 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 大别野 |
+| ------ | ---- | ------ | ---------- | -------- | ------ |
+| bh3 | ys | bh2 | wd | sr | dby |
- | 同人榜 | COS 榜 |
- | ------- | ------ |
- | tongren | cos |
+主榜类型
- 子榜类型
+| 同人榜 | COS 榜 |
+| ------- | ------ |
+| tongren | cos |
- 崩坏三 子榜
+子榜类型
- | 插画 | 漫画 | COS |
- | ------------ | ----- | --- |
- | illustration | comic | cos |
+崩坏三 子榜
- 原神 子榜
+| 插画 | 漫画 | COS |
+| ------------ | ----- | --- |
+| illustration | comic | cos |
- | 插画 | 漫画 | Q 版 | 手工 |
- | ------------ | ----- | ---- | ------ |
- | illustration | comic | qute | manual |
+原神 子榜
- 排行榜类型
+| 插画 | 漫画 | Q 版 | 手工 |
+| ------------ | ----- | ---- | ------ |
+| illustration | comic | qute | manual |
- | 日榜 | 周榜 | 月榜 |
- | ----- | ------ | ------- |
- | daily | weekly | monthly |
-</Route>
+排行榜类型
-### 米游社 - 官方公告 {#mi-ha-you-mi-you-she-guan-fang-gong-gao}
+| 日榜 | 周榜 | 月榜 |
+| ----- | ------ | ------- |
+| daily | weekly | monthly |
-<Route author="CaoMeiYouRen" example="/mihoyo/bbs/official/2/3/20/" path="/mihoyo/bbs/official/:gids/:type?/:page_size?/:last_id?" paramsDesc={['游戏id','公告类型,默认为 2(即 活动)','分页大小,默认为 20 ','跳过的公告数,例如指定为 40 就是从第 40 条公告开始,可用于分页']} radar="1">
- 游戏 id
+### 米游社 - 用户关注 {#mi-ha-you-mi-you-she-yong-hu-guan-zhu}
- | 崩坏三 | 原神 | 崩坏二 | 未定事件簿 | 星穹铁道 | 绝区零 |
- | ------ | ---- | ------ | ---------- | -------- | ------ |
- | 1 | 2 | 3 | 4 | 6 | 8 |
+<Route data={{"path":"/bbs/follow-list/:uid","categories":["game"],"example":"/mihoyo/bbs/follow-list/77005350","parameters":{"uid":"用户uid"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"米游社 - 用户关注","maintainers":["CaoMeiYouRen"],"location":"bbs/follow-list.ts"}} />
- 公告类型
+### 米游社 - 用户关注动态 {#mi-ha-you-mi-you-she-yong-hu-guan-zhu-dong-tai}
- | 公告 | 活动 | 资讯 |
- | ---- | ---- | ---- |
- | 1 | 2 | 3 |
-</Route>
+<Route data={{"path":"/bbs/timeline","categories":["game"],"example":"/mihoyo/bbs/timeline","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["miyoushe.com/:game/timeline"]},"name":"米游社 - 用户关注动态","maintainers":["CaoMeiYouRen"],"description":":::warning\n 用户关注动态需要米游社登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"bbs/timeline.ts"}} />
-### 米游社 - 用户关注 {#mi-ha-you-mi-you-she-yong-hu-guan-zhu}
-
-<Route author="CaoMeiYouRen" example="/mihoyo/bbs/follow-list/77005350" path="/mihoyo/bbs/follow-list/:uid" paramsDesc={['用户uid']} radar="1" />
+:::warning
+用户关注动态需要米游社登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
### 米游社 - 用户帖子 {#mi-ha-you-mi-you-she-yong-hu-tie-zi}
-<Route author="CaoMeiYouRen" example="/mihoyo/bbs/user-post/77005350" path="/mihoyo/bbs/user-post/:uid" paramsDesc={['用户uid']} radar="1" />
-
-### 米游社 - 用户关注动态 {#mi-ha-you-mi-you-she-yong-hu-guan-zhu-dong-tai}
-
-<Route author="CaoMeiYouRen" example="/mihoyo/bbs/timeline" path="/mihoyo/bbs/timeline" radar="1" configRequired="1">
- :::warning
- 用户关注动态需要米游社登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/bbs/user-post/:uid","categories":["game"],"example":"/mihoyo/bbs/user-post/77005350","parameters":{"uid":"用户uid"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"米游社 - 用户帖子","maintainers":["CaoMeiYouRen"],"location":"bbs/user-post.ts"}} />
### 原神 {#mi-ha-you-yuan-shen}
-#### 新闻 {#mi-ha-you-yuan-shen-xin-wen}
-
-<Route author="nczitzk" example="/mihoyo/ys" path="/mihoyo/ys/:location?/:category?" paramsDesc={['区域,可选 `main`(简中)或 `zh-tw`(繁中)', '分类,见下表,默认为最新']}>
- | 最新 | 新闻 | 公告 | 活动 |
- | ------ | ---- | ------ | -------- |
- | latest | news | notice | activity |
-</Route>
+<Route data={{"path":"/ys/:location?/:category?","categories":["game"],"example":"/mihoyo/ys","parameters":{"location":"区域,可选 `main`(简中)或 `zh-tw`(繁中)","category":"分类,见下表,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["genshin.hoyoverse.com/:location/news"],"target":"/ys/:location"},"name":"原神","maintainers":["nczitzk"],"description":"#### 新闻 {#mi-ha-you-yuan-shen-xin-wen}\n\n | 最新 | 新闻 | 公告 | 活动 |\n | ------ | ---- | ------ | -------- |\n | latest | news | notice | activity |","location":"ys/news.ts"}} />
-### 崩坏:星穹铁道 {#mi-ha-you-beng-huai-xing-qiong-tie-dao}
-
-#### 新闻 {#mi-ha-you-beng-huai-xing-qiong-tie-dao-xin-wen}
+#### 新闻 {#mi-ha-you-yuan-shen-xin-wen}
-<Route author="shinanory" example="/mihoyo/sr" path="/mihoyo/sr/:location?/:category?" paramsDesc={['区域,可选 `zh-cn`(国服,简中)或 `zh-tw`(国际服,繁中)','分类,见下表,默认为最新']}>
- | 最新 | 新闻 | 公告 | 活动 |
- | -------- | ---- | ------ | -------- |
- | news-all | news | notice | activity |
-</Route>
+| 最新 | 新闻 | 公告 | 活动 |
+| ------ | ---- | ------ | -------- |
+| latest | news | notice | activity |
## 明日方舟 {#ming-ri-fang-zhou}
### 游戏公告与新闻 {#ming-ri-fang-zhou-you-xi-gong-gao-yu-xin-wen}
-<Route author="Astrian" example="/arknights/news" path="/arknights/news" />
+<Route data={{"path":"/news","categories":["game"],"example":"/arknights/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ak-conf.hypergryph.com/*"]},"name":"游戏公告与新闻","maintainers":["Astrian"],"url":"ak-conf.hypergryph.com/*","location":"news.ts"}} />
### 游戏内公告 {#ming-ri-fang-zhou-you-xi-nei-gong-gao}
-<Route author="swwind" example="/arknights/announce" path="/arknights/announce/:platform?/:group?" paramsDesc={['平台,默认为 Android','分组,默认为 ALL']}>
- 平台
-
- | 安卓服 | iOS 服 | B 服 |
- | :-----: | :----: | :------: |
- | Android | IOS | Bilibili |
-
- 分组
+<Route data={{"path":"/announce/:platform?/:group?","categories":["game"],"example":"/arknights/announce","parameters":{"platform":"平台,默认为 Android","group":"分组,默认为 ALL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"游戏内公告","maintainers":["swwind"],"description":"平台\n\n | 安卓服 | iOS 服 | B 服 |\n | :-----: | :----: | :------: |\n | Android | IOS | Bilibili |\n\n 分组\n\n | 全部 | 系统公告 | 活动公告 |\n | :--: | :------: | :------: |\n | ALL | SYSTEM | ACTIVITY |","location":"announce.ts"}} />
- | 全部 | 系统公告 | 活动公告 |
- | :--: | :------: | :------: |
- | ALL | SYSTEM | ACTIVITY |
-</Route>
-
-### アークナイツ (日服新闻) {#ming-ri-fang-zhou-%E3%82%A2%E3%83%BC%E3%82%AF%E3%83%8A%E3%82%A4%E3%83%84-ri-fu-xin-wen}
+平台
-<Route author="ofyark" example="/arknights/japan" path="/arknights/japan" />
+| 安卓服 | iOS 服 | B 服 |
+| :-----: | :----: | :------: |
+| Android | IOS | Bilibili |
-### 塞壬唱片 {#ming-ri-fang-zhou-sai-ren-chang-pian}
+分组
-<Route author="rikkablue" example="/siren/news" path="/siren/news" />
+| 全部 | 系统公告 | 活动公告 |
+| :--: | :------: | :------: |
+| ALL | SYSTEM | ACTIVITY |
-## 奶牛关 {#nai-niu-guan}
-
-### 元素文章 {#nai-niu-guan-yuan-su-wen-zhang}
-
-<Route author="hoilc" example="/cowlevel/element/1370" path="/cowlevel/element/:id" paramsDesc={['元素 ID, 可在 URL 中找到']} radar="1" />
-
-## 其乐 {#qi-le}
-
-### 论坛 {#qi-le-lun-tan}
-
-<Route author="nczitzk" example="/keylol" path="/keylol/:path+" paramsDesc={['路径,默认为热点聚焦']} notOperational="1">
- :::tip
- 若订阅 [热点聚焦](https://keylol.com/f161-1),网址为 `https://keylol.com/f161-1`。截取 `https://keylol.com/` 到末尾的部分 `f161-1` 作为参数,此时路由为 [`/keylol/f161-1`](https://rsshub.app/keylol/f161-1)。
+### アークナイツ (日服新闻) {#ming-ri-fang-zhou-%E3%82%A2%E3%83%BC%E3%82%AF%E3%83%8A%E3%82%A4%E3%83%84-ri-fu-xin-wen}
- 若订阅子分类 [试玩免费 - 热点聚焦](https://keylol.com/forum.php?mod=forumdisplay\&fid=161\&filter=typeid\&typeid=459),网址为 `https://keylol.com/forum.php?mod=forumdisplay&fid=161&filter=typeid&typeid=459`。截取 `https://keylol.com/forum.php?mod=forumdisplay&` 到末尾的部分 `fid=161&filter=typeid&typeid=459` 作为参数,此时路由为 [`/keylol/fid=161&filter=typeid&typeid=459`](https://rsshub.app/keylol/fid=161\&filter=typeid\&typeid=459)。
- :::
-</Route>
+<Route data={{"path":"/japan","categories":["game"],"example":"/arknights/japan","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ak.arknights.jp/news","ak.arknights.jp/"]},"name":"アークナイツ (日服新闻)","maintainers":["ofyark"],"url":"ak.arknights.jp/news","location":"japan.ts"}} />
## 少女前线 {#shao-nv-qian-xian}
### 情报局 {#shao-nv-qian-xian-qing-bao-ju}
-<Route author="nczitzk" example="/gf-cn/news" path="/gf-cn/news/:category?" paramsDesc={['分类,见下表,默认为新闻']}>
- | 新闻 | 公告 |
- | ---- | ---- |
- | 1 | 3 |
-</Route>
+<Route data={{"path":"/news/:category?","categories":["game"],"example":"/gf-cn/news","parameters":{"category":"分类,见下表,默认为新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sunborngame.com/:category","sunborngame.com/"]},"name":"情报局","maintainers":["nczitzk"],"description":"| 新闻 | 公告 |\n | ---- | ---- |\n | 1 | 3 |","location":"news.ts"}} />
+
+| 新闻 | 公告 |
+| ---- | ---- |
+| 1 | 3 |
## 完美世界电竞 {#wan-mei-shi-jie-dian-jing}
### 资讯列表 {#wan-mei-shi-jie-dian-jing-zi-xun-lie-biao}
-<Route author="tssujt" example="/wmpvp/news/1" path="/wmpvp/news/:type" paramsDesc={['资讯分类,见下表']}>
- | DOTA2 | CS2 |
- | ----- | --- |
- | 1 | 2 |
-</Route>
+<Route data={{"path":"/news/:type","categories":["game"],"example":"/wmpvp/news/1","parameters":{"type":"资讯分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"资讯列表","maintainers":["tssujt"],"description":"| DOTA2 | CS2 |\n | ----- | --- |\n | 1 | 2 |","location":"index.ts"}} />
+
+| DOTA2 | CS2 |
+| ----- | --- |
+| 1 | 2 |
## 王者荣耀 {#wang-zhe-rong-yao}
### 新闻中心 {#wang-zhe-rong-yao-xin-wen-zhong-xin}
-<Route author="Jeason0228 HenryQW" example="/tencent/pvp/newsindex/all" path="/tencent/pvp/newsindex/:type" paramsDesc={['栏目分类,见下表']}>
- | 全部 | 热门 | 新闻 | 公告 | 活动 | 赛事 | 优化 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | all | rm | xw | gg | hd | ss | yh |
-</Route>
-
-## 网易大神 {#wang-yi-da-shen}
-
-### 用户发帖 {#wang-yi-da-shen-yong-hu-fa-tie}
-
-<Route author="luyuhuang" example="/163/ds/63dfbaf4117741daaf73404601165843" path="/163/ds/:id" paramsDesc={['用户ID']} />
+<Route data={{"path":"/pvp/newsindex/:type","categories":["game"],"example":"/tencent/pvp/newsindex/all","parameters":{"type":"栏目分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻中心","maintainers":["Jeason0228","HenryQW"],"description":"| 全部 | 热门 | 新闻 | 公告 | 活动 | 赛事 | 优化 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | all | rm | xw | gg | hd | ss | yh |","location":"pvp/newsindex.ts"}} />
-## 小黑盒 {#xiao-hei-he}
+| 全部 | 热门 | 新闻 | 公告 | 活动 | 赛事 | 优化 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| all | rm | xw | gg | hd | ss | yh |
-### 用户动态 {#xiao-hei-he-yong-hu-dong-tai}
+## 网易公开课 {#wang-yi-gong-kai-ke}
-<Route author="auto-bot-ty" example="/xiaoheihe/user/7775687" path="xiaoheihe/user/:id" paramsDesc={['用户 id']} />
-
-### 游戏新闻 {#xiao-hei-he-you-xi-xin-wen}
-
-<Route author="MyFaith" example="/xiaoheihe/news" path="xiaoheihe/news" notOperational="1" />
+:::tip
+部分歌单及听歌排行信息为登陆后可见,自建时将环境变量`NCM_COOKIES`设为登陆后的 Cookie 值,即可正常获取。
+:::
-### 游戏折扣信息 {#xiao-hei-he-you-xi-zhe-kou-xin-xi}
+### 用户发帖 {#wang-yi-gong-kai-ke-yong-hu-fa-tie}
-<Route author="MyFaith" example="/xiaoheihe/discount/pc" path="xiaoheihe/discount/:platform?" paramsDesc={['平台,默认为 Steam']}>
- | Steam | PlatStation4 | Switch |
- | ----- | ------------ | ------ |
- | pc | ps4 | switch |
-</Route>
+<Route data={{"path":"/ds/:id","categories":["game"],"example":"/163/ds/63dfbaf4117741daaf73404601165843","parameters":{"id":"用户ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ds.163.com/user/:id"]},"name":"用户发帖","maintainers":["luyuhuang"],"location":"ds.ts"}} />
## 英雄联盟 {#ying-xiong-lian-meng}
-### 国服新闻 {#ying-xiong-lian-meng-guo-fu-xin-wen}
-
-<Route author="Jeason0228" example="/lol/newsindex/all" path="/lol/newsindex/:type" paramsDesc={['栏目分类,见下表']}>
- | 全部 | 综合 | 公告 | 赛事 | 攻略 | 社区 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
- | all | zh | gg | ss | gl | sq |
-</Route>
-
### 台服新闻 {#ying-xiong-lian-meng-tai-fu-xin-wen}
-<Route author="hoilc" example="/loltw/news" path="/loltw/news/:category?" paramsDesc={['新闻分类,置空为全部新闻']} radar="1" notOperational="1">
- | 活动 | 资讯 | 系统 | 电竞 | 版本资讯 | 战棋资讯 |
- | ----- | ---- | ------ | ------ | -------- | -------- |
- | event | info | system | esport | patch | TFTpatch |
-</Route>
-
-## 游民星空 {#you-min-xing-kong}
+<Route data={{"path":"/news/:category?","categories":["game"],"example":"/loltw/news","parameters":{"category":"新闻分类,置空为全部新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"台服新闻","maintainers":["hoilc"],"description":"| 活动 | 资讯 | 系统 | 电竞 | 版本资讯 | 战棋资讯 |\n | ----- | ---- | ------ | ------ | -------- | -------- |\n | event | info | system | esport | patch | TFTpatch |","location":"news.ts"}} />
-### 游民星空今日推荐 {#you-min-xing-kong-you-min-xing-kong-jin-ri-tui-jian}
-
-<Route author="LightStrawberry" example="/gamersky/news" path="/gamersky/news" />
-
-### 游民娱乐 {#you-min-xing-kong-you-min-yu-le}
-
-<Route author="LogicJake" example="/gamersky/ent/ymfl" path="/gamersky/ent/:category" paramsDesc={['分类类型']}>
- | 趣囧时间 | 游民影院 | 游观天下 | 壁纸图库 | 游民盘点 | 游民福利 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | qysj | ymyy | ygtx | bztk | ympd | ymfl |
-</Route>
+| 活动 | 资讯 | 系统 | 电竞 | 版本资讯 | 战棋资讯 |
+| ----- | ---- | ------ | ------ | -------- | -------- |
+| event | info | system | esport | patch | TFTpatch |
## 游戏打折情报 {#you-xi-da-zhe-qing-bao}
### 游戏折扣 {#you-xi-da-zhe-qing-bao-you-xi-zhe-kou}
-<Route author="LogicJake nczitzk" example="/yxdzqb/popular_cn" path="/yxdzqb/:type" paramsDesc={['折扣类型']}>
- | Steam 最新折扣 | Steam 热门游戏折扣 | Steam 热门中文游戏折扣 | Steam 历史低价 | Steam 中文游戏历史低价 |
- | -------------- | ------------------ | ---------------------- | -------------- | ---------------------- |
- | discount | popular | popular\_cn | low | low\_cn |
-</Route>
-
-## 游戏动力 {#you-xi-dong-li}
-
-### 游戏资讯 {#you-xi-dong-li-you-xi-zi-xun}
+<Route data={{"path":"/:type","categories":["game"],"example":"/yxdzqb/popular_cn","parameters":{"type":"折扣类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yxdzqb.com/"]},"name":"游戏折扣","maintainers":["LogicJake","nczitzk"],"url":"yxdzqb.com/","description":"| Steam 最新折扣 | Steam 热门游戏折扣 | Steam 热门中文游戏折扣 | Steam 历史低价 | Steam 中文游戏历史低价 |\n | -------------- | ------------------ | ---------------------- | -------------- | ---------------------- |\n | discount | popular | popular_cn | low | low_cn |","location":"index.ts"}} />
-<Route author="wy916787036" example="/vgn" path="/vgn/:platform?" paramsDesc={['平台,见下表,默认为全部']}>
- | Switch | PS4 | PC | Xbox |
- | ------ | --- | -- | ---- |
- | 1 | 2 | 3 | 4 |
-</Route>
+| Steam 最新折扣 | Steam 热门游戏折扣 | Steam 热门中文游戏折扣 | Steam 历史低价 | Steam 中文游戏历史低价 |
+| -------------- | ------------------ | ---------------------- | -------------- | ---------------------- |
+| discount | popular | popular\_cn | low | low\_cn |
## 游戏基因 {#you-xi-ji-yin}
### 资讯 {#you-xi-ji-yin-zi-xun}
-<Route author="lone1y-51" example="/gamegene/news" path="/gamegene/news" />
-
-## 游戏年轮 {#you-xi-nian-lun}
-
-### 分类 {#you-xi-nian-lun-fen-lei}
-
-<Route author="nczitzk" example="/bibgame/sgame" path="/bibgame/:category?/:type?" paramsDesc={['分类,见下表,默认为 PC 游戏', '类型,可在各分类页中导航栏中找到']}>
- | PC 游戏 | PS4 游戏 | Switch 游戏 | NS 其他板块 | galgame | VR 游戏 | 3DS 游戏 | psv 游戏 | xbox360 游戏 | ps3 游戏 | 其他掌机 |
- | ------- | -------- | ----------- | ----------- | ------- | ------- | -------- | -------- | ------------ | -------- | -------- |
- | pcgame | ps4 | sgame | nsaita | ps | bt | 3ds | psv | jiaocheng | ps3yx | zhangji |
-</Route>
+<Route data={{"path":"/news","categories":["game"],"example":"/gamegene/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.gamegene.cn/news"]},"name":"资讯","maintainers":["lone1y-51"],"url":"news.gamegene.cn/news","location":"news.ts"}} />
## 游戏日报 {#you-xi-ri-bao}
### 分类 {#you-xi-ri-bao-fen-lei}
-<Route author="TonyRL" example="/yxrb/info" path="/yxrb/:category?" paramsDesc={['分类,见下表,预设为 `info`']} radar="1">
- | 资讯 | 访谈 | 服务 | 游理游据 |
- | ---- | ------- | ------- | -------- |
- | info | talking | service | comments |
-</Route>
-
-## 游戏时光 {#you-xi-shi-guang}
-
-### 游戏时光新闻 {#you-xi-shi-guang-you-xi-shi-guang-xin-wen}
-
-<Route author="MyFaith" example="/vgtime/news" path="/vgtime/news" radar="1" />
+<Route data={{"path":"/:category?","categories":["game"],"example":"/yxrb/info","parameters":{"category":"分类,见下表,预设为 `info`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.yxrb.net/:category","news.yxrb.net/"],"target":"/:category"},"name":"分类","maintainers":["TonyRL"],"description":"| 资讯 | 访谈 | 服务 | 游理游据 |\n | ---- | ------- | ------- | -------- |\n | info | talking | service | comments |","location":"home.ts"}} />
-### 游戏时光游戏发售表 {#you-xi-shi-guang-you-xi-shi-guang-you-xi-fa-shou-biao}
+| 资讯 | 访谈 | 服务 | 游理游据 |
+| ---- | ------- | ------- | -------- |
+| info | talking | service | comments |
-<Route author="MyFaith" example="/vgtime/release" path="/vgtime/release" radar="1" />
+## 游讯网 {#you-xun-wang}
-### 关键词资讯 {#you-xi-shi-guang-guan-jian-ci-zi-xun}
+### 精彩推荐 {#you-xun-wang-jing-cai-tui-jian}
-<Route author="DIYgod" example="/vgtime/keyword/怪物猎人" path="/vgtime/keyword/:keyword" radar="1" />
-
-## 游讯网 {#you-xun-wang}
+<Route data={{"path":"/recommend","categories":["game"],"example":"/yxdown/recommend","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yxdown.com/"]},"name":"精彩推荐","maintainers":["nczitzk"],"url":"yxdown.com/","location":"recommend.ts"}} />
### 资讯 {#you-xun-wang-zi-xun}
-<Route author="nczitzk" example="/yxdown/news" path="/yxdown/news/:category?" paramsDesc={['分类,见下表,默认为资讯首页']}>
- | 资讯首页 | 业界动态 | 视频预告 | 新作发布 | 游戏资讯 | 游戏评测 | 网络游戏 | 手机游戏 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | | dongtai | yugao | xinzuo | zixun | pingce | wangluo | shouyou |
-</Route>
-
-### 精彩推荐 {#you-xun-wang-jing-cai-tui-jian}
+<Route data={{"path":"/news/:category?","categories":["game"],"example":"/yxdown/news","parameters":{"category":"分类,见下表,默认为资讯首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"资讯","maintainers":["nczitzk"],"description":"| 资讯首页 | 业界动态 | 视频预告 | 新作发布 | 游戏资讯 | 游戏评测 | 网络游戏 | 手机游戏 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | | dongtai | yugao | xinzuo | zixun | pingce | wangluo | shouyou |","location":"news.ts"}} />
-<Route author="nczitzk" example="/yxdown/recommend" path="/yxdown/recommend" />
+| 资讯首页 | 业界动态 | 视频预告 | 新作发布 | 游戏资讯 | 游戏评测 | 网络游戏 | 手机游戏 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| | dongtai | yugao | xinzuo | zixun | pingce | wangluo | shouyou |
## 游研社 {#you-yan-she}
### 游研社 - 分类文章 {#you-yan-she-you-yan-she-fen-lei-wen-zhang}
-<Route author="LightStrawberry" example="/yystv/category/recommend" path="/yystv/category/:category" paramsDesc={['专栏类型']}>
- | 推游 | 游戏史 | 大事件 | 文化 | 趣闻 | 经典回顾 |
- | --------- | ------- | ------ | ------- | ---- | -------- |
- | recommend | history | big | culture | news | retro |
-</Route>
+<Route data={{"path":"/category/:category","categories":["game"],"example":"/yystv/category/recommend","parameters":{"category":"专栏类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"游研社 - 分类文章","maintainers":["LightStrawberry"],"description":"| 推游 | 游戏史 | 大事件 | 文化 | 趣闻 | 经典回顾 |\n | --------- | ------- | ------ | ------- | ---- | -------- |\n | recommend | history | big | culture | news | retro |","location":"category.ts"}} />
+
+| 推游 | 游戏史 | 大事件 | 文化 | 趣闻 | 经典回顾 |
+| --------- | ------- | ------ | ------- | ---- | -------- |
+| recommend | history | big | culture | news | retro |
### 游研社 - 全部文章 {#you-yan-she-you-yan-she-quan-bu-wen-zhang}
-<Route author="HaitianLiu" example="/yystv/docs" path="/yystv/docs" />
+<Route data={{"path":"/docs","categories":["game"],"example":"/yystv/docs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yystv.cn/docs"]},"name":"游研社 - 全部文章","maintainers":["HaitianLiu"],"url":"yystv.cn/docs","location":"docs.ts"}} />
## 遊戲基地 Gamebase {#you-xi-ji-di-gamebase}
### 新聞 {#you-xi-ji-di-gamebase-xin-wen}
-<Route author="nczitzk" example="/gamebase/news" path="/gamebase/news/:type?/:category?" paramsDesc={['类型,见下表,默认为 newslist', '分类,可在对应分类页 URL 中找到,默认为 `all` 即全部']}>
- 类型
-
- | newslist | r18list |
- | -------- | ------- |
-</Route>
-
-## 掌上英雄联盟 {#zhang-shang-ying-xiong-lian-meng}
-
-### 推荐 {#zhang-shang-ying-xiong-lian-meng-tui-jian}
-
-<Route author="alizeegod" example="/lolapp/recommend" path="/lolapp/recommend" notOperational="1" />
+<Route data={{"path":"/news/:type?/:category?","categories":["game"],"example":"/gamebase/news","parameters":{"type":"类型,见下表,默认为 newslist","category":"分类,可在对应分类页 URL 中找到,默认为 `all` 即全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新聞","maintainers":["nczitzk"],"description":"类型\n\n | newslist | r18list |\n | -------- | ------- |","location":"news.ts"}} />
-### 用户文章 {#zhang-shang-ying-xiong-lian-meng-yong-hu-wen-zhang}
+类型
-<Route author="ztmzzz" example="/lolapp/article/ee97e19c-4a64-4637-b916-b9ee23744d1f" path="/lolapp/article/:uuid" paramsDesc={['用户UUID,可在文章html中获取']} />
+| newslist | r18list |
+| -------- | ------- |
## 掌游宝 {#zhang-you-bao}
### 推荐 {#zhang-you-bao-tui-jian}
-<Route author="ztmzzz" example="/zhangyoubao/lol" path="/zhangyoubao/:category" paramsDesc={['分类,见下表']} notOperational="1">
- | 英雄联盟 | 炉石传说 | DNF | 守望先锋 | 王者荣耀 | 单机综合 | 手游综合 | 云顶之弈 | 部落冲突 | 皇室战争 | DNF 手游 | 荒野乱斗 |
- | -------- | -------- | --- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- |
- | lol | lscs | dnf | swxf | yxzj | steam | mobile | lolchess | blzz | hszz | dnfm | brawlstars |
-</Route>
+<Route data={{"path":"/:category","categories":["game"],"example":"/zhangyoubao/lol","parameters":{"category":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mobile.zhangyoubao.com/:category/"]},"name":"推荐","maintainers":["ztmzzz"],"description":"| 英雄联盟 | 炉石传说 | DNF | 守望先锋 | 王者荣耀 | 单机综合 | 手游综合 | 云顶之弈 | 部落冲突 | 皇室战争 | DNF 手游 | 荒野乱斗 |\n | -------- | -------- | --- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- |\n | lol | lscs | dnf | swxf | yxzj | steam | mobile | lolchess | blzz | hszz | dnfm | brawlstars |","location":"index.ts"}} />
+
+| 英雄联盟 | 炉石传说 | DNF | 守望先锋 | 王者荣耀 | 单机综合 | 手游综合 | 云顶之弈 | 部落冲突 | 皇室战争 | DNF 手游 | 荒野乱斗 |
+| -------- | -------- | --- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- |
+| lol | lscs | dnf | swxf | yxzj | steam | mobile | lolchess | blzz | hszz | dnfm | brawlstars |
## ファミ通 {#%E3%83%95%E3%82%A1%E3%83%9F-tong}
### Category {#%E3%83%95%E3%82%A1%E3%83%9F-tong-category}
-<Route author="TonyRL" example="/famitsu/category/new-article" path="/famitsu/category/:category?" paramsDesc={['Category, see table below, `new-article` by default']} radar="1">
- | 新着 | PS5 | Switch | PS4 | ニュース | ゲームニュース | PR TIMES | 動画 | 特集・企画記事 | インタビュー | 取材・リポート | レビュー | インディーゲーム |
- | ----------- | --- | ------ | --- | -------- | -------------- | -------- | ------ | --------------- | ------------ | -------------- | -------- | ---------------- |
- | new-article | ps5 | switch | ps4 | news | news-game | prtimes | videos | special-article | interview | event-report | review | indie-game |
-</Route>
-
-## マギアレコード(Magia Record, 魔法纪录) {#%E3%83%9E%E3%82%AE%E3%82%A2%E3%83%AC%E3%82%B3%E3%83%BC%E3%83%89-magia-record-mo-fa-ji-lu}
-
-### 游戏公告 {#%E3%83%9E%E3%82%AE%E3%82%A2%E3%83%AC%E3%82%B3%E3%83%BC%E3%83%89-magia-record-mo-fa-ji-lu-you-xi-gong-gao}
-
-<Route author="y2361547758" example="/magireco/announcements" path="/magireco/announcements" />
-
-### 游戏横幅 {#%E3%83%9E%E3%82%AE%E3%82%A2%E3%83%AC%E3%82%B3%E3%83%BC%E3%83%89-magia-record-mo-fa-ji-lu-you-xi-heng-fu}
+<Route data={{"path":"/category/:category?","categories":["game"],"example":"/famitsu/category/new-article","parameters":{"category":"Category, see table below, `new-article` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["TonyRL"],"description":"| 新着 | PS5 | Switch | PS4 | ニュース | ゲームニュース | PR TIMES | 動画 | 特集・企画記事 | インタビュー | 取材・リポート | レビュー | インディーゲーム |\n | ----------- | --- | ------ | --- | -------- | -------------- | -------- | ------ | --------------- | ------------ | -------------- | -------- | ---------------- |\n | new-article | ps5 | switch | ps4 | news | news-game | prtimes | videos | special-article | interview | event-report | review | indie-game |","location":"category.ts"}} />
-<Route author="y2361547758" example="/magireco/event_banner" path="/magireco/event_banner" />
+| 新着 | PS5 | Switch | PS4 | ニュース | ゲームニュース | PR TIMES | 動画 | 特集・企画記事 | インタビュー | 取材・リポート | レビュー | インディーゲーム |
+| ----------- | --- | ------ | --- | -------- | -------------- | -------- | ------ | --------------- | ------------ | -------------- | -------- | ---------------- |
+| new-article | ps5 | switch | ps4 | news | news-game | prtimes | videos | special-article | interview | event-report | review | indie-game |
diff --git a/website/docs/routes/government.mdx b/website/docs/routes/government.mdx
index 161ce0fc7ef1d4..368147fed50403 100644
--- a/website/docs/routes/government.mdx
+++ b/website/docs/routes/government.mdx
@@ -1,654 +1,242 @@
-# 📢 Government
-
-## Australia Department of Home Affairs {#australia-department-of-home-affairs}
-
-### Immigration and Citizenship - News {#australia-department-of-home-affairs-immigration-and-citizenship-news}
-
-<Route author="liu233w" example="/gov/immiau/news" path="/gov/immiau/news" />
-
-## Central Intelligence Agency CIA {#central-intelligence-agency-cia}
-
-### Annual FOIA Reports {#central-intelligence-agency-cia-annual-foia-reports}
-
-<Route author="nczitzk" example="/cia/foia-annual-report" path="/cia/foia-annual-report" notOperational="1" />
+# government
## Constitutional Court of Baden-Württemberg (Germany) {#constitutional-court-of-baden-w%C3%BCrttemberg-germany}
### Press releases {#constitutional-court-of-baden-w%C3%BCrttemberg-germany-press-releases}
-<Route author="quinn-dev" example="/verfghbw/press" path="/verfghbw/press/:keyword?" paramsDesc={['Keyword']} notOperational="1" />
-
-## Hong Kong Centre for Health Protection {#hong-kong-centre-for-health-protection}
-
-### Category {#hong-kong-centre-for-health-protection-category}
-
-<Route author="nczitzk" example="/chp" path="/chp/:category?/:language?" paramsDesc={['Category, see below, Important Topics by default', 'Language, see below, zh_tw by default']} notOperational="1">
- Category
-
- | Important Topics | Press Releases | Response Level | Periodicals & Publications | Health Notice |
- | ---------------- | ------------------ | -------------- | -------------------------- | ------------- |
- | important\_ft | press\_data\_index | ResponseLevel | publication | HealthAlert |
-
- Language
-
- | English | 中文简体 | 中文繁體 |
- | ------- | -------- | -------- |
- | en | zh\_cn | zh\_tw |
-</Route>
+<Route data={{"path":"/press/:keyword?","categories":["government"],"example":"/verfghbw/press","parameters":{"keyword":"Keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["verfgh.baden-wuerttemberg.de/de/presse-und-service/pressemitteilungen/"],"target":"/press"},"name":"Press releases","maintainers":["quinn-dev"],"url":"verfgh.baden-wuerttemberg.de/de/presse-und-service/pressemitteilungen/","location":"press.ts"}} />
## Hong Kong Department of Health 香港卫生署 {#hong-kong-department-of-health-xiang-gang-wei-sheng-shu}
### Press Release {#hong-kong-department-of-health-xiang-gang-wei-sheng-shu-press-release}
-<Route author="nczitzk" example="/hongkong/dh" path="/hongkong/dh/:language?" paramsDesc={['Language, see below, tc_chi by default']}>
- Language
+<Route data={{"path":"/dh/:language?","categories":["government"],"example":"/hongkong/dh","parameters":{"language":"Language, see below, tc_chi by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dh.gov.hk/"]},"name":"Press Release","maintainers":["nczitzk"],"url":"dh.gov.hk/","description":"Language\n\n | English | 中文简体 | 中文繁體 |\n | ------- | -------- | -------- |\n | english | chs | tc_chi |","location":"dh.ts"}} />
+
+Language
- | English | 中文简体 | 中文繁體 |
- | ------- | -------- | -------- |
- | english | chs | tc\_chi |
-</Route>
+| English | 中文简体 | 中文繁體 |
+| ------- | -------- | -------- |
+| english | chs | tc\_chi |
## Hong Kong Independent Commission Against Corruption 香港廉政公署 {#hong-kong-independent-commission-against-corruption-xiang-gang-lian-zheng-gong-shu}
### Press Releases {#hong-kong-independent-commission-against-corruption-xiang-gang-lian-zheng-gong-shu-press-releases}
-<Route author="linbuxiao" example="/icac/news/sc" path="/icac/news/:lang?" paramsDesc={['Language, default to `sc`. Supprot `en`(English), `sc`(Simplified Chinese) and `tc`(Traditional Chinese)']} />
+<Route data={{"path":"/news/:lang?","categories":["government"],"example":"/icac/news/sc","parameters":{"lang":"Language, default to `sc`. Supprot `en`(English), `sc`(Simplified Chinese) and `tc`(Traditional Chinese)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["icac.org.hk/:lang/press/index.html"],"target":"/news/:lang"},"name":"Press Releases","maintainers":["linbuxiao, TonyRL"],"location":"news.ts"}} />
## Macau Independent Commission Against Corruption 澳门廉政公署 {#macau-independent-commission-against-corruption-ao-men-lian-zheng-gong-shu}
### Latest News {#macau-independent-commission-against-corruption-ao-men-lian-zheng-gong-shu-latest-news}
-<Route 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
-
- | All | Detected Cases | Investigation Reports or Recommendations | Annual Reports | CCAC's Updates |
- | --- | -------------- | ---------------------------------------- | -------------- | -------------- |
- | all | case | Persuasion | AnnualReport | PCANews |
-</Route>
+<Route data={{"path":"/news/:type/:lang?","categories":["government"],"example":"/ccac/news/all","parameters":{"type":"Category","lang":"Language, default to `sc`. Supprot `en`(English), `sc`(Simplified Chinese), `tc`(Traditional Chinese) and `pt`(Portuguese)"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Latest News","maintainers":["linbuxiao"],"description":"Category\n\n | All | Detected Cases | Investigation Reports or Recommendations | Annual Reports | CCAC's Updates |\n | --- | -------------- | ---------------------------------------- | -------------- | -------------- |\n | all | case | Persuasion | AnnualReport | PCANews |","location":"news.ts"}} />
-## Ministry of Foreign Affairs of Japan 日本国外務省 {#ministry-of-foreign-affairs-of-japan-ri-ben-guo-wai-wu-sheng}
+Category
-### Press conference {#ministry-of-foreign-affairs-of-japan-ri-ben-guo-wai-wu-sheng-press-conference}
-
-<Route author="sgqy" example="/go.jp/mofa" path="/go.jp/mofa" />
-
-## Supreme Court of the United States {#supreme-court-of-the-united-states}
-
-### Arguments Audios {#supreme-court-of-the-united-states-arguments-audios}
-
-<Route author="nczitzk" example="/us/supremecourt/argument_audio" path="/us/supremecourt/argument_audio/:year?" paramsDesc={['Year, current year by default']} notOperational="1" />
+| All | Detected Cases | Investigation Reports or Recommendations | Annual Reports | CCAC's Updates |
+| --- | -------------- | ---------------------------------------- | -------------- | -------------- |
+| all | case | Persuasion | AnnualReport | PCANews |
## Thailand Department of Lands {#thailand-department-of-lands}
### e-LandsAnnouncement {#thailand-department-of-lands-e-landsannouncement}
-<Route author="itpcc" example="/dol/announce" path="/dol/announce/:owner?/:province?/:office?" paramsDesc={['Requester/former land owner', 'Province which the land is belongs to', 'DOL office name which the land is belongs to (สำนักงานที่ดิน(กรุงเทพมหานคร|จังหวัด*) [สาขา*])']} />
+<Route data={{"path":"/announce/:owner?/:province?/:office?","categories":["government"],"example":"/dol/announce","parameters":{"owner":"Requester/former land owner","province":"Province which the land is belongs to","office":"DOL office name which the land is belongs to (สำนักงานที่ดิน(กรุงเทพมหานคร|จังหวัด*) [สาขา*])"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"e-LandsAnnouncement","maintainers":["itpcc"],"location":"announce.ts"}} />
## Thailand Parliament {#thailand-parliament}
### Thailand Parliament Draft of Law's public hearing system {#thailand-parliament-thailand-parliament-draft-of-law-s-public-hearing-system}
-<Route author="itpcc" example="/parliament/section77" path="/parliament/section77/:type?" paramsDesc={['Type of hearing status, see below']} radar="1">
- | Presented by MP \* | Presented by People \* | Hearing Ongoing | Hearing ended | Hearing result reported | Waiting for PM approval | Assigned into the session | Processed | PM Rejected |
- | ------------------------ | ---------------------- | ------------------- | --------------- | ------------------------ | ----------------------- | ------------------------- | ---------- | ------------- |
- | presentbymp | presentbyperson | openwsu | closewsu | reportwsu | substatus1 | substatus2 | substatus3 | closewsubypm |
- | เสนอโดยสมาชิกสภาผู้แทนราษฏร | เสนอโดยประชาชน | กำลังเปิดรับฟังความคิดเห็น | ปิดรับฟังความคิดเห็น | รายงานผลการรับฟังความคิดเห็น | รอคำรับรองจากนายกรัฐมนตรี | บรรจุเข้าระเบียบวาระ | พิจารณาแล้ว | นายกฯ ไม่รับรอง |
+<Route data={{"path":"/section77/:type?","categories":["government"],"example":"/parliament/section77","parameters":{"type":"Type of hearing status, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Thailand Parliament Draft of Law's public hearing system","maintainers":["itpcc"],"description":"| Presented by MP * | Presented by People * | Hearing Ongoing | Hearing ended | Hearing result reported | Waiting for PM approval | Assigned into the session | Processed | PM Rejected |\n | ------------------------ | ---------------------- | ------------------- | --------------- | ------------------------ | ----------------------- | ------------------------- | ---------- | ------------- |\n | presentbymp | presentbyperson | openwsu | closewsu | reportwsu | substatus1 | substatus2 | substatus3 | closewsubypm |\n | เสนอโดยสมาชิกสภาผู้แทนราษฏร | เสนอโดยประชาชน | กำลังเปิดรับฟังความคิดเห็น | ปิดรับฟังความคิดเห็น | รายงานผลการรับฟังความคิดเห็น | รอคำรับรองจากนายกรัฐมนตรี | บรรจุเข้าระเบียบวาระ | พิจารณาแล้ว | นายกฯ ไม่รับรอง |\n\n *Note:* For `presentbymp` and `presentbyperson`, it can also add:\n\n - `-m` for the draft which Speaker of Parliament considered as a monetary draft (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า เป็นร่างการเงิน), or\n - `-nm` for non-monetary one (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า ไม่เป็นร่างการเงิน).","location":"section77.ts"}} />
- *Note:* For `presentbymp` and `presentbyperson`, it can also add:
+| Presented by MP \* | Presented by People \* | Hearing Ongoing | Hearing ended | Hearing result reported | Waiting for PM approval | Assigned into the session | Processed | PM Rejected |
+| ------------------------ | ---------------------- | ------------------- | --------------- | ------------------------ | ----------------------- | ------------------------- | ---------- | ------------- |
+| presentbymp | presentbyperson | openwsu | closewsu | reportwsu | substatus1 | substatus2 | substatus3 | closewsubypm |
+| เสนอโดยสมาชิกสภาผู้แทนราษฏร | เสนอโดยประชาชน | กำลังเปิดรับฟังความคิดเห็น | ปิดรับฟังความคิดเห็น | รายงานผลการรับฟังความคิดเห็น | รอคำรับรองจากนายกรัฐมนตรี | บรรจุเข้าระเบียบวาระ | พิจารณาแล้ว | นายกฯ ไม่รับรอง |
- - `-m` for the draft which Speaker of Parliament considered as a monetary draft (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า เป็นร่างการเงิน), or
- - `-nm` for non-monetary one (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า ไม่เป็นร่างการเงิน).
-</Route>
+*Note:* For `presentbymp` and `presentbyperson`, it can also add:
-## The United States Trade Representative {#the-united-states-trade-representative}
-
-### Press Releases {#the-united-states-trade-representative-press-releases}
-
-<Route author="nczitzk" example="/ustr/press-releases" path="/ustr/press-releases/:year?/:month?" paramsDesc={['Year, current year by default', 'Month, empty by default, show contents in all year']}>
- :::tip
- Fill in the English expression for the month in the Month field, eg `December` for the 12th Month。
- :::
-</Route>
+- `-m` for the draft which Speaker of Parliament considered as a monetary draft (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า เป็นร่างการเงิน), or
+- `-nm` for non-monetary one (ประธานสภาผู้แทนราษฎรวินิจฉัยว่า ไม่เป็นร่างการเงิน).
## The White House {#the-white-house}
### Briefing Room {#the-white-house-briefing-room}
-<Route author="nczitzk" example="/whitehouse/briefing-room" path="/whitehouse/briefing-room/:category?" paramsDesc={['Category, see below, all by default']}>
- | All | Blog | Legislation | Presidential Actions | Press Briefings | Speeches and Remarks | Statements and Releases |
- | --- | ---- | ----------- | -------------------- | --------------- | -------------------- | ----------------------- |
- | | blog | legislation | presidential-actions | press-briefings | speeches-remarks | statements-releases |
-</Route>
-
-### Office of Science and Technology Policy {#the-white-house-office-of-science-and-technology-policy}
-
-<Route author="LyleLee" example="/whitehouse/ostp" path="/whitehouse/ostp" />
-
-## U.S. Department of the Treasury {#u-s-department-of-the-treasury}
-
-### Press Releases {#u-s-department-of-the-treasury-press-releases}
-
-<Route author="nczitzk" example="/treasury/press-releases" path="/treasury/press-releases/:category?/:title?" paramsDesc={['Category, see below, all by default', 'Title keywords, empty by default']}>
- Category
-
- | Press Releases | Statements & Remarks | Readouts | Testimonies |
- | -------------- | -------------------- | -------- | ----------- |
- | all | statements-remarks | readouts | testimonies |
-</Route>
-
-## U.S. Food and Drug Administration {#u-s-food-and-drug-administration}
+<Route data={{"path":"/briefing-room/:category?","categories":["government"],"example":"/whitehouse/briefing-room","parameters":{"category":"Category, see below, all by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["whitehouse.gov/briefing-room/:category","whitehouse.gov/"],"target":"/briefing-room/:category"},"name":"Briefing Room","maintainers":["nczitzk"],"description":"| All | Blog | Legislation | Presidential Actions | Press Briefings | Speeches and Remarks | Statements and Releases |\n | --- | ---- | ----------- | -------------------- | --------------- | -------------------- | ----------------------- |\n | | blog | legislation | presidential-actions | press-briefings | speeches-remarks | statements-releases |","location":"briefing-room.ts"}} />
-### CDRHNew {#u-s-food-and-drug-administration-cdrhnew}
+| All | Blog | Legislation | Presidential Actions | Press Briefings | Speeches and Remarks | Statements and Releases |
+| --- | ---- | ----------- | -------------------- | --------------- | -------------------- | ----------------------- |
+| | blog | legislation | presidential-actions | press-briefings | speeches-remarks | statements-releases |
-<Route author="nczitzk" example="/fda/cdrh" path="/fda/cdrh" />
-
-## United Nations {#united-nations}
-
-### Security Council Vetoed a Resolution {#united-nations-security-council-vetoed-a-resolution}
+### Office of Science and Technology Policy {#the-white-house-office-of-science-and-technology-policy}
-<Route author="HenryQW" example="/un/scveto" path="/un/scveto" />
+<Route data={{"path":"/ostp","categories":["government"],"example":"/whitehouse/ostp","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["whitehouse.gov/ostp","whitehouse.gov/"]},"name":"Office of Science and Technology Policy","maintainers":["LyleLee"],"url":"whitehouse.gov/ostp","location":"ostp.ts"}} />
## World Health Organization | WHO {#world-health-organization-who}
### News {#world-health-organization-who-news}
-<Route author="nczitzk" example="/who/news" path="/who/news/:language?" paramsDesc={['Language, see below, English by default']}>
- Language
-
- | English | العربية | 中文 | Français | Русский | Español | Português |
- | ------- | ------- | ---- | -------- | ------- | ------- | --------- |
- | en | ar | zh | fr | ru | es | pt |
-</Route>
-
-### Newsroom {#world-health-organization-who-newsroom}
-
-<Route author="LogicJake nczitzk" example="/who/news-room/feature-stories" path="/who/news-room/:category?/:language?" paramsDesc={['Category, see below, Feature stories by default', 'Language, see below, English by default']}>
- Category
+<Route data={{"path":"/news/:language?","categories":["government"],"example":"/who/news","parameters":{"language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["who.int/news"],"target":"/news"},"name":"News","maintainers":["nczitzk"],"url":"who.int/news","description":"Language\n\n | English | العربية | 中文 | Français | Русский | Español | Português |\n | ------- | ------- | ---- | -------- | ------- | ------- | --------- |\n | en | ar | zh | fr | ru | es | pt |","location":"news.ts"}} />
- | Feature stories | Commentaries |
- | --------------- | ------------ |
- | feature-stories | commentaries |
+Language
- Language
+| English | العربية | 中文 | Français | Русский | Español | Português |
+| ------- | ------- | ---- | -------- | ------- | ------- | --------- |
+| en | ar | zh | fr | ru | es | pt |
- | English | العربية | 中文 | Français | Русский | Español | Português |
- | ------- | ------- | ---- | -------- | ------- | ------- | --------- |
- | en | ar | zh | fr | ru | es | pt |
-</Route>
-
-### Speeches {#world-health-organization-who-speeches}
+### Newsroom {#world-health-organization-who-newsroom}
-<Route author="nczitzk" example="/who/speeches" path="/who/speeches/:language?" paramsDesc={['Language, see below, English by default']}>
- Language
+<Route data={{"path":"/news-room/:category?/:language?","categories":["government"],"example":"/who/news-room/feature-stories","parameters":{"category":"Category, see below, Feature stories by default","language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["who.int/news-room/:type"],"target":"/news-room/:type"},"name":"Newsroom","maintainers":["LogicJake","nczitzk"],"url":"who.int/news","description":"Category\n\n | Feature stories | Commentaries |\n | --------------- | ------------ |\n | feature-stories | commentaries |\n\n Language\n\n | English | العربية | 中文 | Français | Русский | Español | Português |\n | ------- | ------- | ---- | -------- | ------- | ------- | --------- |\n | en | ar | zh | fr | ru | es | pt |","location":"news-room.ts"}} />
- | English | العربية | 中文 | Français | Русский | Español | Português |
- | ------- | ------- | ---- | -------- | ------- | ------- | --------- |
- | en | ar | zh | fr | ru | es | pt |
-</Route>
+Category
-## World Trade Organization {#world-trade-organization}
+| Feature stories | Commentaries |
+| --------------- | ------------ |
+| feature-stories | commentaries |
-### Dispute settlement news {#world-trade-organization-dispute-settlement-news}
+Language
-<Route author="nczitzk" example="/wto/dispute-settlement" path="/wto/dispute-settlement/:year?" paramsDesc={['Year, current year by default']} />
+| English | العربية | 中文 | Français | Русский | Español | Português |
+| ------- | ------- | ---- | -------- | ------- | ------- | --------- |
+| en | ar | zh | fr | ru | es | pt |
-## 安徽省科技厅 {#an-hui-sheng-ke-ji-ting}
+### Speeches {#world-health-organization-who-speeches}
-### 科技资讯 & 科技资源 {#an-hui-sheng-ke-ji-ting-ke-ji-zi-xun-ke-ji-zi-yuan}
+<Route data={{"path":"/speeches/:language?","categories":["government"],"example":"/who/speeches","parameters":{"language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["who.int/director-general/speeches"],"target":"/speeches"},"name":"Speeches","maintainers":["nczitzk"],"url":"who.int/director-general/speeches","description":"Language\n\n | English | العربية | 中文 | Français | Русский | Español | Português |\n | ------- | ------- | ---- | -------- | ------- | ------- | --------- |\n | en | ar | zh | fr | ru | es | pt |","location":"speeches.ts"}} />
-<Route author="nczitzk" example="/gov/anhui/kjt/kjzx/tzgg" path="/gov/anhui/kjt/:path?" paramsDesc={['路径,默认为通知公告']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中 `http://kjt.ah.gov.cn/` 和 `/index.html` 之间的字段。下面是一个例子。
+Language
- 若订阅 [通知公告](http://kjt.ah.gov.cn/kjzx/tzgg/index.html) 则将对应页面 URL `http://kjt.ah.gov.cn/kjzx/tzgg/index.html` 中 `http://kjt.ah.gov.cn/` 和 `/index.html` 之间的字段 `kjzx/tzgg` 作为路径填入。此时路由为 [`/gov/anhui/kjt/kjzx/tzgg`](https://rsshub.app/gov/anhui/kjt/kjzx/tzgg)
- :::
-</Route>
+| English | العربية | 中文 | Français | Русский | Español | Português |
+| ------- | ------- | ---- | -------- | ------- | ------- | --------- |
+| en | ar | zh | fr | ru | es | pt |
## 澳门卫生局 {#ao-men-wei-sheng-ju}
### 最新消息 {#ao-men-wei-sheng-ju-zui-xin-xiao-xi}
-<Route author="Fatpandac" example="/ssm/news" path="/ssm/news" notOperational="1" />
+<Route data={{"path":"/news","categories":["government"],"example":"/ssm/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ssm.gov.mo/","www.ssm.gov.mo/portal"]},"name":"最新消息","maintainers":["Fatpandac"],"url":"www.ssm.gov.mo/","location":"news.ts"}} />
## 北京社科网 {#bei-jing-she-ke-wang}
-### 通用 {#bei-jing-she-ke-wang-tong-yong}
-
-<Route author="TonyRL" example="/bjsk/newslist-1394-1474-0" path="/bjsk/:path?" paramsDesc={['路径,默认为 `newslist-1486-0-0`']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段。下面是一个例子。
-
- 若订阅 [社科资讯 > 社科要闻](https://www.bjsk.org.cn/newslist-1394-1474-0.html) 则将对应页面 URL `https://www.bjsk.org.cn/newslist-1394-1474-0.html` 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段 `newslist-1394-1474-0` 作为路径填入。此时路由为 [`/bjsk/newslist-1394-1474-0`](https://rsshub.app/bjsk/newslist-1394-1474-0)
- :::
-</Route>
-
### 基金项目管理平台 {#bei-jing-she-ke-wang-ji-jin-xiang-mu-guan-li-ping-tai}
-<Route author="nczitzk" example="/bjsk/keti" path="/bjsk/keti/:id?" paramsDesc={['分类 id,见下表,默认为通知公告']}>
- | 通知公告 | 资料下载 |
- | -------------------------------- | -------------------------------- |
- | 402881027cbb8c6f017cbb8e17710002 | 2c908aee818e04f401818e08645c0002 |
-</Route>
-
-## 北京市保障房中心有限公司 {#bei-jing-shi-bao-zhang-fang-zhong-xin-you-xian-gong-si}
-
-### 北京市共有产权住房租赁服务平台 {#bei-jing-shi-bao-zhang-fang-zhong-xin-you-xian-gong-si-bei-jing-shi-gong-you-chan-quan-zhu-fang-zu-lin-fu-wu-ping-tai}
-
-<Route author="bigfei" example="/gov/beijing/bphc/announcement" path="/gov/beijing/bphc/:cat" paramsDesc={['类别']} notOperational="1">
- | 通知公告 | 项目介绍 |
- | :----------: | :------: |
- | announcement | project |
-</Route>
-
-## 北京市教育科学规划网 {#bei-jing-shi-jiao-yu-ke-xue-gui-hua-wang}
-
-### 通用 {#bei-jing-shi-jiao-yu-ke-xue-gui-hua-wang-tong-yong}
-
-<Route author="TonyRL" example="/gov/beijing/bjedu/gh" path="/gov/beijing/bjedu/gh/:urlPath?" paramsDesc={['路径,默认为 `zxtzgg`']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段。下面是一个例子。
-
- 若订阅 [通知公告](https://gh.bjedu.cn/ghsite/zxtzgg/index.html) 则将对应页面 URL `https://gh.bjedu.cn/ghsite/zxtzgg/index.html` 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段 `zxtzgg` 作为路径填入。此时路由为 [`/gov/beijing/bjedu/gh/zxtzgg`](https://rsshub.app/gov/beijing/bjedu/gh/zxtzgg)
- :::
-</Route>
-
-## 北京市教育委员会 {#bei-jing-shi-jiao-yu-wei-yuan-hui}
-
-### 通知公告 {#bei-jing-shi-jiao-yu-wei-yuan-hui-tong-zhi-gong-gao}
-
-<Route author="nczitzk" example="/gov/beijing/jw/tzgg" path="/gov/beijing/jw/tzgg" />
-
-## 北京市科学技术委员会、中关村科技园区管理委员会 {#bei-jing-shi-ke-xue-ji-shu-wei-yuan-hui-zhong-guan-cun-ke-ji-yuan-qu-guan-li-wei-yuan-hui}
-
-### 频道 {#bei-jing-shi-ke-xue-ji-shu-wei-yuan-hui-zhong-guan-cun-ke-ji-yuan-qu-guan-li-wei-yuan-hui-pin-dao}
-
-<Route author="Fatpandac" example="/kwbeijing/col736" path="/kwbeijing/:channel" paramsDesc={['频道']} notOperational="1">
- 频道参数可在官网获取,如:
+<Route data={{"path":"/keti/:id?","categories":["government"],"example":"/bjsk/keti","parameters":{"id":"分类 id,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["keti.bjsk.org.cn/indexAction!to_index.action","keti.bjsk.org.cn/"],"target":"/keti/:id"},"name":"基金项目管理平台","maintainers":["nczitzk"],"url":"keti.bjsk.org.cn/indexAction!to_index.action","description":"| 通知公告 | 资料下载 |\n | -------------------------------- | -------------------------------- |\n | 402881027cbb8c6f017cbb8e17710002 | 2c908aee818e04f401818e08645c0002 |","location":"keti.ts"}} />
- `http://kw.beijing.gov.cn/col/col736/index.html` 对应 `/kwbeijing/col736`
-</Route>
+| 通知公告 | 资料下载 |
+| -------------------------------- | -------------------------------- |
+| 402881027cbb8c6f017cbb8e17710002 | 2c908aee818e04f401818e08645c0002 |
-## 北京市人民政府 {#bei-jing-shi-ren-min-zheng-fu}
-
-### 北京教育考试院 {#bei-jing-shi-ren-min-zheng-fu-bei-jing-jiao-yu-kao-shi-yuan}
-
-<Route author="gavin-k" example="/gov/beijing/bjeea/bjeeagg" path="/gov/beijing/bjeea/:type" paramsDesc={['分类名']}>
- | 通知公告 | 招考政策 | 自考快递 |
- | :------: | :------: | :------: |
- | bjeeagg | zkzc | zkkd |
-</Route>
+### 通用 {#bei-jing-she-ke-wang-tong-yong}
-## 北京市卫生健康委员会 {#bei-jing-shi-wei-sheng-jian-kang-wei-yuan-hui}
+<Route data={{"path":"/:path?","categories":["government"],"example":"/bjsk/newslist-1394-1474-0","parameters":{"path":"路径,默认为 `newslist-1486-0-0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通用","maintainers":["TonyRL"],"description":":::tip\n 路径处填写对应页面 URL 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段。下面是一个例子。\n\n 若订阅 [社科资讯 > 社科要闻](https://www.bjsk.org.cn/newslist-1394-1474-0.html) 则将对应页面 URL `https://www.bjsk.org.cn/newslist-1394-1474-0.html` 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段 `newslist-1394-1474-0` 作为路径填入。此时路由为 [`/bjsk/newslist-1394-1474-0`](https://rsshub.app/bjsk/newslist-1394-1474-0)\n :::","location":"index.ts"}} />
-### 新闻中心 {#bei-jing-shi-wei-sheng-jian-kang-wei-yuan-hui-xin-wen-zhong-xin}
+:::tip
+路径处填写对应页面 URL 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段。下面是一个例子。
-<Route author="luyuhuang" example="/gov/beijing/mhc/wnxw" path="/gov/beijing/mhc/:caty" paramsDesc={['类别']}>
- | 委内新闻 | 基层动态 | 媒体聚焦 | 热点新闻 |
- | :------: | :------: | :------: | :------: |
- | wnxw | jcdt | mtjj | rdxws |
-</Route>
+若订阅 [社科资讯 > 社科要闻](https://www.bjsk.org.cn/newslist-1394-1474-0.html) 则将对应页面 URL `https://www.bjsk.org.cn/newslist-1394-1474-0.html` 中 `https://www.bjsk.org.cn/` 和 `.html` 之间的字段 `newslist-1394-1474-0` 作为路径填入。此时路由为 [`/bjsk/newslist-1394-1474-0`](https://rsshub.app/bjsk/newslist-1394-1474-0)
+:::
## 北京无线电协会 {#bei-jing-wu-xian-dian-xie-hui}
### 最新资讯 {#bei-jing-wu-xian-dian-xie-hui-zui-xin-zi-xun}
-<Route author="Misaka13514" example="/bjwxdxh/114" path="/bjwxdxh/:type?" paramsDesc={['类型,见下表,默认为全部']} radar="1">
- | 协会活动 | 公告通知 | 会议情况 | 简报 | 政策法规 | 学习园地 | 业余无线电服务中心 | 经验交流 | 新技术推介 | 活动通知 | 爱好者园地 | 结果查询 | 资料下载 | 会员之家 | 会员简介 | 会员风采 | 活动报道 |
- | -------- | -------- | -------- | ---- | -------- | -------- | ------------------ | -------- | ---------- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 86 | 99 | 102 | 103 | 106 | 107 | 108 | 111 | 112 | 114 | 115 | 116 | 118 | 119 | 120 | 121 | 122 |
-</Route>
-
-## 重庆市人民政府 {#chong-qing-shi-ren-min-zheng-fu}
-
-### 国有资产监督管理委员会 {#chong-qing-shi-ren-min-zheng-fu-guo-you-zi-chan-jian-du-guan-li-wei-yuan-hui}
-
-<Route author="nczitzk" example="/gov/chongqing/gzw" path="/gov/chongqing/gzw/:category?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 国企资讯 | 国企简介 | 国企招聘 |
- | --------- | -------- | -------- | -------- |
- | tzgg\_191 | gqdj | gqjj | gqzp |
-</Route>
-
-### 两江新区信息公开网 {#chong-qing-shi-ren-min-zheng-fu-liang-jiang-xin-qu-xin-xi-gong-kai-wang}
+<Route data={{"path":"/:type?","categories":["government"],"example":"/bjwxdxh/114","parameters":{"type":"类型,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新资讯","maintainers":["Misaka13514"],"description":"| 协会活动 | 公告通知 | 会议情况 | 简报 | 政策法规 | 学习园地 | 业余无线电服务中心 | 经验交流 | 新技术推介 | 活动通知 | 爱好者园地 | 结果查询 | 资料下载 | 会员之家 | 会员简介 | 会员风采 | 活动报道 |\n | -------- | -------- | -------- | ---- | -------- | -------- | ------------------ | -------- | ---------- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 86 | 99 | 102 | 103 | 106 | 107 | 108 | 111 | 112 | 114 | 115 | 116 | 118 | 119 | 120 | 121 | 122 |","location":"index.ts"}} />
-#### 党务公开 {#chong-qing-shi-ren-min-zheng-fu-liang-jiang-xin-qu-xin-xi-gong-kai-wang-dang-wu-gong-kai}
+| 协会活动 | 公告通知 | 会议情况 | 简报 | 政策法规 | 学习园地 | 业余无线电服务中心 | 经验交流 | 新技术推介 | 活动通知 | 爱好者园地 | 结果查询 | 资料下载 | 会员之家 | 会员简介 | 会员风采 | 活动报道 |
+| -------- | -------- | -------- | ---- | -------- | -------- | ------------------ | -------- | ---------- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 86 | 99 | 102 | 103 | 106 | 107 | 108 | 111 | 112 | 114 | 115 | 116 | 118 | 119 | 120 | 121 | 122 |
-<Route author="nczitzk" example="/gov/chongqing/ljxq/dwgk" path="/gov/chongqing/ljxq/dwgk" />
-
-#### 政务公开 {#chong-qing-shi-ren-min-zheng-fu-liang-jiang-xin-qu-xin-xi-gong-kai-wang-zheng-wu-gong-kai}
-
-<Route author="nczitzk" example="/gov/chongqing/ljxq/zwgk/lzyj" path="/gov/chongqing/ljxq/zwgk/:caty" paramsDesc={['分类名']} notOperational="1">
- | 履职依据 | 公示公告 |
- | -------- | -------- |
- | lzyj | gsgg |
-</Route>
-
-### 人力社保局 {#chong-qing-shi-ren-min-zheng-fu-ren-li-she-bao-ju}
-
-#### 人事考试通知 {#chong-qing-shi-ren-min-zheng-fu-ren-li-she-bao-ju-ren-shi-kao-shi-tong-zhi}
-
-<Route author="Mai19930513" example="/gov/chongqing/rsks" path="/gov/chongqing/rsks" radar="1" />
-
-#### 事业单位公开招聘 {#chong-qing-shi-ren-min-zheng-fu-ren-li-she-bao-ju-shi-ye-dan-wei-gong-kai-zhao-pin}
+## 国家药品审评网站 {#guo-jia-yao-pin-shen-ping-wang-zhan}
-<Route author="MajexH" example="/gov/chongqing/sydwgkzp" path="/gov/chongqing/sydwgkzp" radar="1" />
+### 首页 {#guo-jia-yao-pin-shen-ping-wang-zhan-shou-ye}
-## 德阳市人民政府 {#de-yang-shi-ren-min-zheng-fu}
+<Route data={{"path":"/:channel/:category","categories":["government"],"example":"/cde/news/gzdt","parameters":{"channel":"频道","category":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["Fatpandac"],"description":"- 频道\n\n | 新闻中心 | 政策法规 |\n | :------: | :------: |\n | news | policy |\n\n - 类别\n\n | 新闻中心 | 政务新闻 | 要闻导读 | 图片新闻 | 工作动态 |\n | :------: | :------: | :------: | :------: | :------: |\n | | zwxw | ywdd | tpxw | gzdt |\n\n | 政策法规 | 法律法规 | 中心规章 |\n | :------: | :------: | :------: |\n | | flfg | zxgz |","location":"index.ts"}} />
-### 政府公开信息 {#de-yang-shi-ren-min-zheng-fu-zheng-fu-gong-kai-xin-xi}
+- 频道
-<Route author="zytomorrow" example="/gov/sichuan/deyang/govpublicinfo/绵竹市" path="/gov/sichuan/deyang/govpublicinfo/:countyName/:infoType?" paramsDesc={['区县名(**其他区县整改中,暂时只支持`绵竹市`**)。德阳市、绵竹市、广汉市、什邡市、中江县、罗江区、旌阳区、高新区', '信息类型。默认值:fdzdnr-“法定主动内容”']}>
- | 法定主动内容 | 公示公告 |
- | :----------: | :------: |
- | fdzdnr | gsgg |
-</Route>
+| 新闻中心 | 政策法规 |
+| :------: | :------: |
+| news | policy |
-### 今日绵竹 {#de-yang-shi-ren-min-zheng-fu-jin-ri-mian-zhu}
+- 类别
-<Route author="zytomorrow" example="/gov/sichuan/deyang/mztoday/zx" path="/gov/sichuan/deyang/mztoday/:infoType?" paramsDesc={['信息栏目名称。默认最新(zx)']} notOperational="1">
- | 最新 | 推荐 | 时政 | 教育 | 民生 | 文旅 | 经济 | 文明创建 | 部门 | 镇(街道) | 健康绵竹 | 南轩讲堂 | 视频 | 文明实践 | 领航中国 | 绵竹年画 | 绵竹历史 | 绵竹旅游 | 外媒看绵竹 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | -------- | ---- | ---------- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- | ---------- |
- | zx | tj | sz | jy | ms | wl | jj | wmcj | bm | zj | jkmz | nxjt | sp | wmsj | lhzg | mznh | mzls | mzly | wmkmz |
-</Route>
+| 新闻中心 | 政务新闻 | 要闻导读 | 图片新闻 | 工作动态 |
+| :------: | :------: | :------: | :------: | :------: |
+| | zwxw | ywdd | tpxw | gzdt |
-## 广东省人民政府 {#guang-dong-sheng-ren-min-zheng-fu}
+| 政策法规 | 法律法规 | 中心规章 |
+| :------: | :------: | :------: |
+| | flfg | zxgz |
-### 省教育厅 {#guang-dong-sheng-ren-min-zheng-fu-sheng-jiao-yu-ting}
+### 信息公开 {#guo-jia-yao-pin-shen-ping-wang-zhan-xin-xi-gong-kai}
-<Route author="nczitzk" example="/gov/guangdong/edu/tzgg" path="/gov/guangdong/edu/:caty" paramsDesc={['资讯类别']} notOperational="1">
- | 通知公告 | 本厅信息 | 新闻发布 | 媒体聚焦 | 广东教育 | 教育动态 | 图片新闻 | 政声传递 |
- | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :------: |
- | tzgg | btxx | xwfb | mtjj | gdjy | jydt | tpxw | zscd |
-</Route>
+<Route data={{"path":"/xxgk/:category","categories":["government"],"example":"/cde/xxgk/priorityApproval","parameters":{"category":"类别,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"信息公开","maintainers":["TonyRL"],"description":"| 优先审评公示 | 突破性治疗公示 | 临床试验默示许可 |\n | :--------------: | :--------------: | :--------------: |\n | priorityApproval | breakthroughCure | cliniCal |","location":"xxgk.ts"}} />
-### 省教育考试院 {#guang-dong-sheng-ren-min-zheng-fu-sheng-jiao-yu-kao-shi-yuan}
+| 优先审评公示 | 突破性治疗公示 | 临床试验默示许可 |
+| :--------------: | :--------------: | :--------------: |
+| priorityApproval | breakthroughCure | cliniCal |
-<Route author="icealtria" example="/gov/guangdong/eea/kszs" path="/gov/guangdong/eea/:caty" paramsDesc={['资讯类别']}>
- | 考试招生 | 社会考试 | 招考公示 | 报考指南 | 要闻动态 | 公开专栏 | 政策文件 | 政策解读 |
- | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :------: |
- | kszs | shks | zkgs | bkzn | news | gkzl | zcwj | zcjd |
-</Route>
+### 指导原则专栏 {#guo-jia-yao-pin-shen-ping-wang-zhan-zhi-dao-yuan-ze-zhuan-lan}
-### 深圳市人民政府 {#guang-dong-sheng-ren-min-zheng-fu-shen-zhen-shi-ren-min-zheng-fu}
+<Route data={{"path":"/zdyz/:category","categories":["government"],"example":"/cde/zdyz/domesticGuide","parameters":{"category":"类别,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"指导原则专栏","maintainers":["TonyRL"],"description":"| 发布通告 | 征求意见 |\n | :-----------: | :---------: |\n | domesticGuide | opinionList |","location":"zdyz.ts"}} />
-<Route author="laoxua" example="/gov/shenzhen/xxgk/zfxxgj/tzgg" path="/gov/shenzhen/xxgk/zfxxgj/:caty" paramsDesc={['信息类别']}>
- | 通知公告 | 政府采购 | 资金信息 | 重大项目 |
- | :------: | :------: | :------: | :------: |
- | tzgg | zfcg | zjxx | zdxm |
-</Route>
+| 发布通告 | 征求意见 |
+| :-----------: | :---------: |
+| domesticGuide | opinionList |
-### 深圳市委组织部 {#guang-dong-sheng-ren-min-zheng-fu-shen-zhen-shi-wei-zu-zhi-bu}
+## 南京鼓楼医院 {#nan-jing-gu-lou-yi-yuan}
-<Route author="zlasd" example="/gov/shenzhen/zzb/tzgg" path="/gov/shenzhen/zzb/:caty/:page?" paramsDesc={['信息类别', '页码']}>
- | 通知公告 | 任前公示 | 政策法规 | 工作动态 | 部门预算决算公开 | 业务表格下载 |
- | :------: | :------: | :------: | :------: | :--------------: | :----------: |
- | tzgg | rqgs | zcfg | gzdt | xcbd | bgxz |
-</Route>
+### 员工版教育培训 {#nan-jing-gu-lou-yi-yuan-yuan-gong-ban-jiao-yu-pei-xun}
-### 深圳市考试院 {#guang-dong-sheng-ren-min-zheng-fu-shen-zhen-shi-kao-shi-yuan}
+<Route data={{"path":"/ygbjypx","categories":["government"],"example":"/njglyy/ygbjypx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["njglyy.com/ygb/jypx/jypx.aspx","njglyy.com/"]},"name":"员工版教育培训","maintainers":["real-jiakai"],"url":"njglyy.com/ygb/jypx/jypx.aspx","location":"ygbjypx.ts"}} />
-<Route author="zlasd" example="/gov/shenzhen/hrss/szksy/bmxx/2" path="/gov/shenzhen/hrss/szksy/:caty/:page?" paramsDesc={['信息类别', '页码']}>
- | 通知公告 | 报名信息 | 成绩信息 | 合格标准 | 合格人员公示 | 证书发放信息 |
- | :------: | :------: | :------: | :------: | :----------: | :----------: |
- | tzgg | bmxx | cjxx | hgbz | hgrygs | zsff |
-</Route>
+## 台湾行政院消费者保护会 {#tai-wan-xing-zheng-yuan-xiao-fei-zhe-bao-hu-hui}
-### 深圳市住房和建设局 {#guang-dong-sheng-ren-min-zheng-fu-shen-zhen-shi-zhu-fang-he-jian-she-ju}
+### 消费资讯 {#tai-wan-xing-zheng-yuan-xiao-fei-zhe-bao-hu-hui-xiao-fei-zi-xun}
-<Route author="lonn" example="/gov/shenzhen/zjj/xxgk/tzgg" path="/gov/shenzhen/zjj/xxgk/:caty" paramsDesc={['信息类别']}>
- | 通知公告 |
- | :------: |
- | tzgg |
-</Route>
+<Route data={{"path":"/:type?","categories":["government"],"example":"/cpcey/xwg","parameters":{"type":"默认为 `xwg`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"消费资讯","maintainers":["Fatpandac"],"description":"| 新闻稿 | 消费资讯 |\n | :----: | :------: |\n | xwg | xfzx |","location":"index.ts"}} />
-### 惠州市人民政府 {#guang-dong-sheng-ren-min-zheng-fu-hui-zhou-shi-ren-min-zheng-fu}
+| 新闻稿 | 消费资讯 |
+| :----: | :------: |
+| xwg | xfzx |
-#### 政务公开 {#guang-dong-sheng-ren-min-zheng-fu-hui-zhou-shi-ren-min-zheng-fu-zheng-wu-gong-kai}
+## 台灣衛生福利部 {#tai-wan-wei-sheng-fu-li-bu}
-<Route author="Fatpandac" example="/gov/huizhou/zwgk/jgdt" path="/gov/huizhou/zwgk/:category?" paramsDesc={['资讯类别,可以从网址中得到,默认为政务要闻']} notOperational="1" />
+### 即時新聞澄清 {#tai-wan-wei-sheng-fu-li-bu-ji-shi-xin-wen-cheng-qing}
-## 广州市人民政府 {#guang-zhou-shi-ren-min-zheng-fu}
+<Route data={{"path":"/clarification","categories":["government"],"example":"/mohw/clarification","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mohw.gov.tw/"]},"name":"即時新聞澄清","maintainers":["nczitzk"],"url":"mohw.gov.tw/","location":"clarification.ts"}} />
-### 新闻 {#guang-zhou-shi-ren-min-zheng-fu-xin-wen}
+## 中国科学技术协会 {#zhong-guo-ke-xue-ji-shu-xie-hui}
-<Route author="drgnchan" example="/gov/gz/xw/gzyw" path="/gov/gz/xw/:category" paramsDesc={['新闻分类']}>
- | 广州要闻 | 今日头条 | 通知公告 |
- | -------- | -------- | -------- |
- | gzyw | jrtt | tzgg |
-</Route>
+### 通用 {#zhong-guo-ke-xue-ji-shu-xie-hui-tong-yong}
-### 政务公开 {#guang-zhou-shi-ren-min-zheng-fu-zheng-wu-gong-kai}
+<Route data={{"path":"/:column/:subColumn/:category?","categories":["government"],"example":"/cast/xw/tzgg/ZH","parameters":{"column":"栏目编号,见下表","subColumn":"二级栏目编号","category":"分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通用","maintainers":["KarasuShin","TonyRL"],"description":":::tip\n 在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`10`\n :::\n\n | 分类 | 编码 |\n | -------- | ---- |\n | 全景科协 | qjkx |\n | 智库 | zk |\n | 学术 | xs |\n | 科普 | kp |\n | 党建 | dj |\n | 数据 | sj |\n | 新闻 | xw |","location":"index.ts"}} />
-<Route author="drgnchan" example="/gov/gz/zwgk/zcjd" path="/gov/gz/zwgk/:category" paramsDesc={['政务话你知']}>
- | 文字解读 |
- | -------- |
- | zcjd |
-</Route>
+:::tip
+在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`10`
+:::
-## 国家广播电视总局 {#guo-jia-guang-bo-dian-shi-zong-ju}
+| 分类 | 编码 |
+| -------- | ---- |
+| 全景科协 | qjkx |
+| 智库 | zk |
+| 学术 | xs |
+| 科普 | kp |
+| 党建 | dj |
+| 数据 | sj |
+| 新闻 | xw |
-### 分类 {#guo-jia-guang-bo-dian-shi-zong-ju-fen-lei}
+## 中国科学学与科技政策研究会 {#zhong-guo-ke-xue-xue-yu-ke-ji-zheng-ce-yan-jiu-hui}
-<Route author="yuxinliu-alex" example="/gov/nrta/news" path="/gov/nrta/news/:category?" paramsDesc={['资讯类别,可从地址中获取,默认为总局要闻']} anticrawler="1">
- | 总局要闻 | 公告公示 | 工作动态 | 其他 |
- | -------- | -------- | -------- | ---- |
- | 112 | 113 | 114 | |
-</Route>
+### 研究会动态 {#zhong-guo-ke-xue-xue-yu-ke-ji-zheng-ce-yan-jiu-hui-yan-jiu-hui-dong-tai}
-### 电视剧政务平台 {#guo-jia-guang-bo-dian-shi-zong-ju-dian-shi-ju-zheng-wu-ping-tai}
+<Route data={{"path":"/news/:category?","categories":["government"],"example":"/casssp/news/3","parameters":{"category":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究会动态","maintainers":["nczitzk"],"description":"| 通知公告 | 新闻动态 | 信息公开 | 时政要闻 |\n | -------- | -------- | -------- | -------- |\n | 3 | 2 | 92 | 93 |","location":"news.ts"}} />
-<Route author="nczitzk" example="/gov/nrta/dsj" path="/gov/nrta/dsj/:category?" paramsDesc={['分类,见下表,默认为备案公示']} anticrawler="1">
- | 备案公示 | 发行许可通告 | 重大题材立项 | 重大题材摄制 | 变更通报 |
- | -------- | ------------ | ---------------- | --------------- | -------- |
- | note | announce | importantLixiang | importantShezhi | changing |
-</Route>
+| 通知公告 | 新闻动态 | 信息公开 | 时政要闻 |
+| -------- | -------- | -------- | -------- |
+| 3 | 2 | 92 | 93 |
-## 国家矿山安全监察局 {#guo-jia-kuang-shan-an-quan-jian-cha-ju}
-
-### 新闻 {#guo-jia-kuang-shan-an-quan-jian-cha-ju-xin-wen}
-
-<Route author="nczitzk" example="/gov/chinamine-safety/xw" path="/gov/chinamine-safety/xw/:category?" paramsDesc={['分类,见下表,默认为应急管理部要闻']} radar="1">
- | 分类 | id |
- | ------------------ | -------- |
- | 应急管理部要闻 | yjglbyw |
- | 国家矿山安监局要闻 | mkaqjcxw |
- | 地方信息 | dfdt |
- | 党建专栏 | djzl |
- | 经验交流 | jyjl |
- | 新闻发布会 | xwfbh |
-</Route>
-
-### 政府信息公开 {#guo-jia-kuang-shan-an-quan-jian-cha-ju-zheng-fu-xin-xi-gong-kai}
-
-<Route author="nczitzk" example="/gov/chinamine-safety/zfxxgk" path="/gov/chinamine-safety/zfxxgk/:category?" paramsDesc={['分类,见下表,默认为法定主动公开内容 > 通知公告']} radar="1">
- | 政府信息公开指南 | 政府信息公开制度 |
- | ---------------- | ---------------- |
- | zfxxgkzn | zfxxgkzd |
-
- <details>
- <summary>更多分类</summary>
-
- #### 法定主动公开内容
-
- | 分类 | id |
- | ------------ | --------------------- |
- | 通知公告 | fdzdgknr/tzgg |
- | 征求意见 | fdzdgknr/zqyj\_01 |
- | 政策法规 | fdzdgknr/zcfg |
- | 规划计划 | fdzdgknr/ghjh |
- | 政策解读 | fdzdgknr/zcjd |
- | 安全许可 | fdzdgknr/anqxk |
- | 事故查处 | fdzdgknr/sgcc |
- | 人事信息 | fdzdgknr/rsxx |
- | 财务信息 | fdzdgknr/cwxx |
- | 建议提案办理 | fdzdgknr/jytabl\_4823 |
-
- #### 法定主动公开内容 > 政策法规
-
- | 分类 | id |
- | ---------------- | ---------------------------- |
- | 法律 | fdzdgknr/zcfg/fl\_01 |
- | 行政法规 | fdzdgknr/zcfg/xzfg |
- | 部门规章 | fdzdgknr/zcfg/bmgz\_01 |
- | 部门规章煤矿安监 | fdzdgknr/zcfg/bmgz\_01/mkanj |
- | 部门规章非煤矿山 | fdzdgknr/zcfg/bmgz\_01/fmks |
- | 行业标准 | fdzdgknr/zcfg/hybz\_01 |
- | 行业标准煤矿安监 | fdzdgknr/zcfg/hybz\_01/mkanj |
- | 行业标准非煤矿山 | fdzdgknr/zcfg/hybz\_01/fmks |
-
- #### 法定主动公开内容 > 事故查处
-
- | 分类 | id |
- | -------------- | -------------------- |
- | 事故通报 | fdzdgknr/sgcc/sgtb |
- | 事故督办 | fdzdgknr/sgcc/sgdb |
- | 事故调查报告 | fdzdgknr/sgcc/sgbg |
- | 事故案例 | fdzdgknr/sgcc/sgalks |
- | 事故警示教育片 | fdzdgknr/sgcc/sgjsjy |
- </details>
-</Route>
-
-## 国家林业和草原局 {#guo-jia-lin-ye-he-cao-yuan-ju}
-
-### 国家林草科技大讲堂 {#guo-jia-lin-ye-he-cao-yuan-ju-guo-jia-lin-cao-ke-ji-da-jiang-tang}
-
-<Route author="nczitzk" example="/gov/forestry/gjlckjdjt" path="/gov/forestry/gjlckjdjt/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1" anticrawler="1">
- | 分类 | id |
- | -------- | ---- |
- | 经济林 | jjl |
- | 林木良种 | lmlz |
- | 林下经济 | lxjj |
- | 生态修复 | stxf |
- | 用材林 | ycl |
- | 其他 | qt |
-</Route>
-
-## 国家能源局 {#guo-jia-neng-yuan-ju}
-
-### 发展规划司 {#guo-jia-neng-yuan-ju-fa-zhan-gui-hua-si}
-
-<Route author="nczitzk" example="/gov/nea/sjzz/ghs" path="/gov/nea/sjzz/ghs" radar="1" />
-
-## 国家市场监督管理总局 {#guo-jia-shi-chang-jian-du-guan-li-zong-ju}
-
-### 留言咨询 {#guo-jia-shi-chang-jian-du-guan-li-zong-ju-liu-yan-zi-xun}
-
-<Route author="nczitzk" example="/gov/samr/xgzlyhd" path="/gov/samr/xgzlyhd/:category?/:department?" paramsDesc={['留言类型,见下表,默认为全部', '回复部门,见下表,默认为全部']} radar="1">
- #### 留言类型
-
- | 类型 | 类型 id |
- | ------------------------------------------ | -------------------------------- |
- | 反腐倡廉 | 14101a4192df48b592b5cfd77a26c0cf |
- | 规划统计 | b807cf9cdf434635ae908d48757e0f39 |
- | 行政执法和复议 | 8af2530e77154d7b939428667b7413f6 |
- | 假冒仿冒行为 | 75374a34b95341829e08e54d4a0d8c04 |
- | 走私贩私 | 84c728530e1e478e94fe3f0030171c53 |
- | 登记注册 | 07fff64612dc41aca871c06587abf71d |
- | 个体工商户登记 | ca8f91ba9a2347a0acd57ea5fd12a5c8 |
- | 信用信息公示系统 | 1698886c3cdb495998d5ea9285a487f5 |
- | 市场主体垄断 | 77bfe965843844449c47d29f2feb7999 |
- | 反不正当竞争 | 2c919b1dc39440d8850c4f6c405869f8 |
- | 商业贿赂 | b494e6535af149c5a51fd4197993f061 |
- | 打击传销与规范直销 | 407a1404844e48558da46139f16d6232 |
- | 消费环境建设 | 94c2003331dd4c5fa19b0cf88d720676 |
- | 网络交易监管 | 6302aac5b87140598da53f85c1ccb8fa |
- | 动产抵押登记 | 3856de5835444229943b18cac7781e9f |
- | 广告监管 | d0e38171042048c2bf31b05c5e57aa68 |
- | 三包 | c4dbd85692604a428b1ea7613e67beb8 |
- | 缺陷产品召回 | f93c9a6b81e941d09a547406370e1c0c |
- | 工业生产许可 | 2b41afaabaa24325b53a5bd7deba895b |
- | 产品质量监督抽查 | 4388504cb0c04e988e2cf0c90d4a3f14 |
- | 食品安全协调 | 3127b9f409c24d0eaa60b13c25f819fa |
- | 食品生产监管 | beaa5555d1364e5bb2a0f0a7cc9720e5 |
- | 食品销售、餐饮服务、食用农产品销售监管 | 3b6c49c6ce934e1b9505601a3b881a6a |
- | 保健、特殊医学用途配方和婴幼儿配方乳粉监管 | 13b43888f8554e078b1dfa475e2aaab0 |
- | 食品监督抽检、召回 | 0eb6c75581bf41ecaedc629370cb425c |
- | 食品安全标准 | 399cfd9abfa34c22a5cb3bb971a43819 |
- | 特种设备人员、机构管理 | e5d0e51cc7d0412790efac605008bf20 |
- | 特种设备检验 | 03f22fb3d4cd4f09b632079359e9dd7d |
- | 计量器具 | 90b25e22861446d5822e07c7c1f5169a |
- | 计量机构和人员管理 | 76202742f06c459da7482160e0ce17ad |
- | 国家标准 | 299b9672e1c246e69485a5b695f42c5b |
- | 行业、地方、团体、企业标准 | cbdc804c9b2c4e259a159c32eccf4ca9 |
- | 认证监督管理 | 41259262a42e4de49b5c0b7362ac3796 |
- | 认可与检验检测 | cb3c9d1e3d364f2a8b1cd70efa69d1cb |
- | 新闻宣传 | e3e553e4019c46ccbdc06136900138e9 |
- | 科技财务 | 47367b9704964355ba52899a4c5abbb0 |
- | 干部人事 | 6b978e3c127c489ea8e2d693b768887e |
- | 国际合作 | dd5ce768e33e435ab4bfb769ab6e079a |
- | 党群工作 | aa71052978af4304937eb382f24f9902 |
- | 退休干部 | 44505fc58c81428eb5cef15706007b5e |
- | 虚假宣传 | 5bb2b83ecadb4bf89a779cee414a81dd |
- | 滥用行政权力 | 1215206156dc48029b98da825f26fcbc |
- | 公平竞争 | 9880a23dcbb04deba2cc7b4404e13ff6 |
- | 滥用市场支配地位 | fea04f0acd84486e84cf71d9c13005b0 |
- | 数字经济领域反垄断执法 | 4bea424a6e4c4e2aac19fe3c73f9be23 |
- | 并购行为 | 90e315647acd415ca68f97fc1b42053d |
- | 经营者集中案件 | d6571d2cd5624bc18191b342a2e8defb |
- | 数字经济领域反垄断审查 | 03501ef176ef44fba1c7c70da44ba8a0 |
- | 综合执法 | cfbb1b5dade446299670ca38844b265e |
- | 信用监管 | a9d76ea04a3a4433946bc02b0bdb77eb |
- | 3C 认证 | 111decc7b14a4fdbae86fb4a3ba5c0c1 |
- | 食用农产品 | 3159db51f8ca4f23a9340d87d5572d40 |
- | 食品添加 | 4e4b0e0152334cbb9c62fd1b80138305 |
-
- #### 回复部门
-
- | 部门 | 部门 id |
- | ---------------------------- | -------------------------------- |
- | 办公厅 | 6ed539b270634667afc4d466b67a53f7 |
- | 法规司 | 8625ec7ff8d744ad80a1d1a2bf19cf19 |
- | 执法稽查局 | 313a8cb1c09042dea52be52cb392c557 |
- | 登记注册局 | e4553350549f45f38da5602147cf8639 |
- | 信用监督管理司 | 6af98157255a4a858eac5f94ba8d98f4 |
- | 竞争政策协调司 | 8d2266be4791483297822e1aa5fc0a96 |
- | 综合规划司 | 958e1619159c45a7b76663a59d9052ea |
- | 反垄断执法一司 | f9fb3f6225964c71ab82224a91f21b2c |
- | 反垄断执法二司 | 7986c79e4f16403493d5b480aec30be4 |
- | 价格监督检查和反不正当竞争局 | c5d2b1b273b545cfbc6f874f670654ab |
- | 网络交易监督管理司 | 6ac05b4dbd4e41c69f4529262540459b |
- | 广告监督管理司 | 96457dfe16c54840885b79b4e6e17523 |
- | 质量发展局 | cb8d2b16fbb540dca296aa33a43fc573 |
- | 质量监督司 | af2c4e0a54c04f76b512c29ddd075d40 |
- | 食品安全协调司 | cc29962c74e84ef2b21e44336da6c6c5 |
- | 食品生产安全监督管理司 | b334db85a253458285db70b30ee26b0a |
- | 食品经营安全监督管理司 | 4315f0261a5d49f7bdcc5a7524e19ce3 |
- | 特殊食品安全监督管理司 | 62d14f386317486ca94bc53ca7f88891 |
- | 食品安全抽检监测司 | abfc910832cc460a81876ad418618159 |
- | 特种设备安全监察局 | ea79f90bec5840ef9b0881c83682225a |
- | 计量司 | b0556236fbcf4f45b6fdec8004dac3e4 |
- | 标准技术管理司 | a558d07a51f4454fa59290e0d6e93c26 |
- | 标准创新管理司 | ffb3a80984b344ed8d168f4af6508af0 |
- | 认证监督管理司 | ca4987393d514debb4d1e2126f576987 |
- | 认可与检验检测监督管理司 | 796bfab21b15498e88c9032fe3e3c9f1 |
- | 新闻宣传司 | 884fc0ea6c184ad58dda10e2170a1eda |
- | 科技和财务司 | 117355eea94c426199e2e519fd98ce07 |
- | 人事司 | a341e8b7929e44769b9424b7cf69d32a |
- | 国际司 | f784499ef24541f5b20de4c24cfc61e7 |
- | 机关党委 | a49119c6f40045dd994f3910500cedfa |
- | 离退办 | 6bf265ffd1c94fa4a3f1687b03fa908b |
-</Route>
-
-## 国家税务总局 {#guo-jia-shui-wu-zong-ju}
-
-### 最新文件 {#guo-jia-shui-wu-zong-ju-zui-xin-wen-jian}
-
-<Route author="nczitzk" example="/gov/chinatax/latest" path="/gov/chinatax/latest" notOperational="1" />
-
-## 国家统计局 {#guo-jia-tong-ji-ju}
-
-### 通用 {#guo-jia-tong-ji-ju-tong-yong}
-
-<Route author="bigfei nczitzk" example="/gov/stats/sj/zxfb" path="/gov/stats/:path+" paramsDesc={['路径,默认为数据最新发布']}>
- :::tip
- 路径处填写对应页面 URL 中 `http://www.stats.gov.cn/` 后的字段。下面是一个例子。
-
- 若订阅 [数据 > 数据解读](http://www.stats.gov.cn/sj/sjjd/) 则将对应页面 URL `http://www.stats.gov.cn/sj/sjjd/` 中 `http://www.stats.gov.cn/` 后的字段 `sj/sjjd` 作为路径填入。此时路由为 [`/gov/stats/sj/sjjd`](https://rsshub.app/gov/stats/sj/sjjd)
-
- 若订阅 [新闻 > 时政要闻 > 中央精神](http://www.stats.gov.cn/xw/szyw/zyjs/) 则将对应页面 URL `http://www.stats.gov.cn/xw/szyw/zyjs/` 中 `http://www.stats.gov.cn/` 后的字段 `xw/szyw/zyjs` 作为路径填入。此时路由为 [`/gov/stats/xw/szyw/zyjs`](https://rsshub.app/gov/stats/xw/szyw/zyjs)
- :::
-</Route>
-
-## 国家外汇管理局 {#guo-jia-wai-hui-guan-li-ju}
+## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
<details>
<summary>*业务咨询* 和 *投诉建议* 可用的站点参数</summary>
@@ -690,1491 +278,531 @@
| ningbo | xiamen | qingdao | shenzhen |
</details>
-### 业务咨询 {#guo-jia-wai-hui-guan-li-ju-ye-wu-zi-xun}
+### Immigration and Citizenship - News {#zhong-guo-ren-min-yin-hang-immigration-and-citizenship-news}
-<Route author="nczitzk" example="/gov/safe/business/beijing" path="/gov/safe/business/:site?" paramsDesc={['站点,见上表,默认为 beijing']} radar="1" />
+<Route data={{"path":"/immiau/news","categories":["government"],"example":"/gov/immiau/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Immigration and Citizenship - News","maintainers":["liu233w"],"location":"immiau/news.ts"}} />
-### 投诉建议 {#guo-jia-wai-hui-guan-li-ju-tou-su-jian-yi}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-<Route author="nczitzk" example="/gov/safe/complaint/beijing" path="/gov/safe/complaint/:site?" paramsDesc={['站点,见上表,默认为 beijing']} radar="1" />
+<Route data={{"path":"/chongqing/rsks","categories":["government"],"example":"/gov/chongqing/rsks","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rlsbj.cq.gov.cn/"]},"name":"Unknown","maintainers":["Mai19930513"],"url":"rlsbj.cq.gov.cn/","location":"chongqing/rsks.ts"}} />
-## 国家新闻出版广电总局(弃用) {#guo-jia-xin-wen-chu-ban-guang-dian-zong-ju-qi-yong}
+### 财政厅 {#zhong-guo-ren-min-yin-hang-cai-zheng-ting}
-### 游戏审批结果 {#guo-jia-xin-wen-chu-ban-guang-dian-zong-ju-qi-yong-you-xi-shen-pi-jie-guo}
+<Route data={{"path":"/hebei/czt/xwdt/:category?","categories":["government"],"example":"/gov/hebei/czt/xwdt","parameters":{"category":"分类,见下表,默认为财政动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"财政厅","maintainers":["nczitzk"],"description":"| 财政动态 | 综合新闻 | 通知公告 |\n | -------- | -------- | -------- |\n | gzdt | zhxw | tzgg |","location":"hebei/czt.ts"}} />
-<Route author="y2361547758" example="/gov/sapprft/approval/domesticnetgame/2020年1月" path="/gov/sapprft/approval/:channel/:detail?" paramsDesc={['栏目名', '标题关键字']}>
- | 栏目 | channel |
- | :------------------: | :---------------: |
- | 进口网络游戏审批信息 | importednetgame |
- | 进口电子游戏审批信息 | importedvideogame |
- | 国产网络游戏审批信息 | domesticnetgame |
- | 游戏审批变更信息 | gamechange |
+| 财政动态 | 综合新闻 | 通知公告 |
+| -------- | -------- | -------- |
+| gzdt | zhxw | tzgg |
- | 描述 | detail |
- | :------------------------------------: | :--------------: |
- | 留空,返回栏目所有文章 | |
- | new,返回栏目第一篇文章内容 | new |
- | 某个文章标题的一部分,返回这篇文章内容 | 例:2020 年 1 月 |
-</Route>
+### 电视剧政务平台 {#zhong-guo-ren-min-yin-hang-dian-shi-ju-zheng-wu-ping-tai}
-## 国家新闻出版署 {#guo-jia-xin-wen-chu-ban-shu}
+<Route data={{"path":"/nrta/dsj/:category?","categories":["government"],"example":"/gov/nrta/dsj","parameters":{"category":"分类,见下表,默认为备案公示"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"电视剧政务平台","maintainers":["nczitzk"],"description":"| 备案公示 | 发行许可通告 | 重大题材立项 | 重大题材摄制 | 变更通报 |\n | -------- | ------------ | ---------------- | --------------- | -------- |\n | note | announce | importantLixiang | importantShezhi | changing |","location":"nrta/dsj.ts"}} />
-### 列表 {#guo-jia-xin-wen-chu-ban-shu-lie-biao}
+| 备案公示 | 发行许可通告 | 重大题材立项 | 重大题材摄制 | 变更通报 |
+| -------- | ------------ | ---------------- | --------------- | -------- |
+| note | announce | importantLixiang | importantShezhi | changing |
-<Route author="y2361547758" example="/gov/nppa/317" path="/gov/nppa/:channel" paramsDesc={['栏目名 id']} radar="1" notOperational="1" />
+### 发展规划司 {#zhong-guo-ren-min-yin-hang-fa-zhan-gui-hua-si}
-### 详情 {#guo-jia-xin-wen-chu-ban-shu-xiang-qing}
+<Route data={{"path":"/nea/sjzz/ghs","categories":["government"],"example":"/gov/nea/sjzz/ghs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nea.gov.cn/sjzz/ghs/"]},"name":"发展规划司","maintainers":["nczitzk"],"url":"nea.gov.cn/sjzz/ghs/","location":"nea/ghs.ts"}} />
-<Route author="y2361547758" example="/gov/nppa/318/45948" path="/gov/nppa/:channel/:content" paramsDesc={['栏目名 id', '文章 id']} radar="1" notOperational="1" />
+### 飞行任务 {#zhong-guo-ren-min-yin-hang-fei-xing-ren-wu}
-## 国家药品监督管理局 {#guo-jia-yao-pin-jian-du-guan-li-ju}
+<Route data={{"path":"/cmse/fxrw","categories":["government"],"example":"/gov/cmse/fxrw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cmse.gov.cn/fxrw"]},"name":"飞行任务","maintainers":["nczitzk"],"url":"www.cmse.gov.cn/fxrw","location":"cmse/fxrw.ts"}} />
-### 通用 {#guo-jia-yao-pin-jian-du-guan-li-ju-tong-yong}
+### 分类 {#zhong-guo-ren-min-yin-hang-fen-lei}
-<Route author="TonyRL" example="/gov/nmpa/xxgk/ggtg" path="/gov/nmpa/:path+" paramsDesc={['路径,默认为公告通告']} radar="1" notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://www.nmpa.gov.cn/` 与 `/index.html` 之间的字段,下面是一个例子。
+<Route data={{"path":"/nrta/news/:category?","categories":["government"],"example":"/gov/nrta/news","parameters":{"category":"资讯类别,可从地址中获取,默认为总局要闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["yuxinliu-alex"],"description":"| 总局要闻 | 公告公示 | 工作动态 | 其他 |\n | -------- | -------- | -------- | ---- |\n | 112 | 113 | 114 | |","location":"nrta/news.ts"}} />
- 若订阅 [公告通告](https://www.nmpa.gov.cn/xxgk/ggtg/index.html) 则将对应页面 URL `https://www.nmpa.gov.cn/xxgk/ggtg/index.html` 中 `https://www.nmpa.gov.cn/` 和 `/index.html` 之间的字段 `xxgk/ggtg` 作为路径填入。此时路由为 [`/gov/nmpa/xxgk/ggtg`](https://rsshub.app/gov/nmpa/xxgk/ggtg)
- :::
-</Route>
+| 总局要闻 | 公告公示 | 工作动态 | 其他 |
+| -------- | -------- | -------- | ---- |
+| 112 | 113 | 114 | |
-## 国家药品监督管理局医疗器械标准管理中心 {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-biao-zhun-guan-li-zhong-xin}
+### 公众留言 {#zhong-guo-ren-min-yin-hang-gong-zhong-liu-yan}
-### 通用 {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-biao-zhun-guan-li-zhong-xin-tong-yong}
+<Route data={{"path":"/caac/cjwt/:category?","categories":["government"],"example":"/gov/caac/cjwt","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caac.gov.cn/HDJL/"],"target":"/caac/cjwt"},"name":"公众留言","maintainers":["nczitzk"],"url":"caac.gov.cn/HDJL/","description":"| 机票 | 托运 | 无人机 | 体检 | 行政审批 | 投诉 |\n | ---- | ---- | ------ | ---- | -------- | ---- |","location":"caac/cjwt.ts"}} />
-<Route author="nczitzk" example="/gov/nifdc/bshff/ylqxbzhgl/qxggtzh" path="/gov/nifdc/:path?" paramsDesc={['路径,默认为公告通告']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://www.nifdc.gov.cn/nifdc/` 与 `/index.html` 之间的字段,下面是一个例子。
+| 机票 | 托运 | 无人机 | 体检 | 行政审批 | 投诉 |
+| ---- | ---- | ------ | ---- | -------- | ---- |
- 若订阅 [公告通告](https://www.nifdc.org.cn/nifdc/bshff/ylqxbzhgl/qxggtzh/index.html) 则将对应页面 URL `https://www.nifdc.org.cn/nifdc/bshff/ylqxbzhgl/qxggtzh/index.html` 中 `https://www.nifdc.org.cn/nifdc/` 和 `/index.html` 之间的字段 `bshff/ylqxbzhgl/qxggtzh` 作为路径填入。此时路由为 [`/gov/nifdc/bshff/ylqxbzhgl/qxggtzh`](https://rsshub.app/gov/nifdc/bshff/ylqxbzhgl/qxggtzh)
- :::
-</Route>
+### 国家林草科技大讲堂 {#zhong-guo-ren-min-yin-hang-guo-jia-lin-cao-ke-ji-da-jiang-tang}
-## 国家药品监督管理局医疗器械技术审评中心 {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-ji-shu-shen-ping-zhong-xin}
+<Route data={{"path":"/forestry/gjlckjdjt/:category?","categories":["government"],"example":"/gov/forestry/gjlckjdjt","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"国家林草科技大讲堂","maintainers":["nczitzk"],"description":"| 分类 | id |\n | -------- | ---- |\n | 经济林 | jjl |\n | 林木良种 | lmlz |\n | 林下经济 | lxjj |\n | 生态修复 | stxf |\n | 用材林 | ycl |\n | 其他 | qt |","location":"forestry/gjlckjdjt.ts"}} />
-### 通用 {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-ji-shu-shen-ping-zhong-xin-tong-yong}
+| 分类 | id |
+| -------- | ---- |
+| 经济林 | jjl |
+| 林木良种 | lmlz |
+| 林下经济 | lxjj |
+| 生态修复 | stxf |
+| 用材林 | ycl |
+| 其他 | qt |
-<Route author="run-ze" example="/cmde/xwdt/zxyw" path="/cmde/:cate*" paramsDesc={['路径,默认为最新要闻']} radar="1" puppeteer="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://www.cmde.org.cn/` 与 `/index.html` 之间的字段,下面是一个例子。
+### 国务院政策文件库 {#zhong-guo-ren-min-yin-hang-guo-wu-yuan-zheng-ce-wen-jian-ku}
- 若订阅 [最新要闻](https://www.cmde.org.cn/xwdt/zxyw/index.html) 则将对应页面 URL `https://www.cmde.org.cn/xwdt/zxyw/index.html` 中 `https://www.cmde.org.cn/` 和 `/index.html` 之间的字段 `xwdt/zxyw` 作为路径填入。此时路由为 [`/cmde/xwdt/zxyw`](https://rsshub.app//cmde/xwdt/zxyw)
- :::
-</Route>
+<Route data={{"path":"/zhengce/zhengceku/:department","categories":["government"],"example":"/gov/zhengce/zhengceku/bmwj","parameters":{"department":"库名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"国务院政策文件库","maintainers":["zxx-457"],"location":"zhengce/zhengceku.ts"}} />
-## 国家药品审评网站 {#guo-jia-yao-pin-shen-ping-wang-zhan}
+### 惠州市人民政府 {#zhong-guo-ren-min-yin-hang-hui-zhou-shi-ren-min-zheng-fu}
-### 首页 {#guo-jia-yao-pin-shen-ping-wang-zhan-shou-ye}
-
-<Route author="Fatpandac" example="/cde/news/gzdt" path="/cde/:channel/:category" paramsDesc={['频道', '类别']} notOperational="1">
- - 频道
-
- | 新闻中心 | 政策法规 |
- | :------: | :------: |
- | news | policy |
-
- - 类别
-
- | 新闻中心 | 政务新闻 | 要闻导读 | 图片新闻 | 工作动态 |
- | :------: | :------: | :------: | :------: | :------: |
- | | zwxw | ywdd | tpxw | gzdt |
-
- | 政策法规 | 法律法规 | 中心规章 |
- | :------: | :------: | :------: |
- | | flfg | zxgz |
-</Route>
-
-### 信息公开 {#guo-jia-yao-pin-shen-ping-wang-zhan-xin-xi-gong-kai}
-
-<Route author="TonyRL" example="/cde/xxgk/priorityApproval" path="/cde/xxgk/:category" paramsDesc={['类别,见下表']} radar="1" notOperational="1">
- | 优先审评公示 | 突破性治疗公示 | 临床试验默示许可 |
- | :--------------: | :--------------: | :--------------: |
- | priorityApproval | breakthroughCure | cliniCal |
-</Route>
-
-### 指导原则专栏 {#guo-jia-yao-pin-shen-ping-wang-zhan-zhi-dao-yuan-ze-zhuan-lan}
+<Route data={{"path":"/huizhou/zwgk/:category?","categories":["government"],"example":"/gov/huizhou/zwgk/jgdt","parameters":{"category":"资讯类别,可以从网址中得到,默认为政务要闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"惠州市人民政府","maintainers":["Fatpandac"],"description":"#### 政务公开 {#guang-dong-sheng-ren-min-zheng-fu-hui-zhou-shi-ren-min-zheng-fu-zheng-wu-gong-kai}","location":"huizhou/zwgk/index.ts"}} />
-<Route author="TonyRL" example="/cde/zdyz/domesticGuide" path="/cde/zdyz/:category" paramsDesc={['类别,见下表']} radar="1" notOperational="1">
- | 发布通告 | 征求意见 |
- | :-----------: | :---------: |
- | domesticGuide | opinionList |
-</Route>
+#### 政务公开 {#zhong-guo-ren-min-yin-hang-hui-zhou-shi-ren-min-zheng-fu-zheng-wu-gong-kai}
-## 国家自然科学基金委员会 {#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui}
+### 获取国家医师资格考试通知 {#zhong-guo-ren-min-yin-hang-huo-qu-guo-jia-yi-shi-zi-ge-kao-shi-tong-zhi}
-### 通用 {#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui-tong-yong}
+<Route data={{"path":"/jinan/healthcommission/medical_exam_notice","categories":["government"],"example":"/gov/jinan/healthcommission/medical_exam_notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jnmhc.jinan.gov.cn/*"]},"name":"获取国家医师资格考试通知","maintainers":["tzjyxb"],"url":"jnmhc.jinan.gov.cn/*","location":"jinan/healthcommission/medical-exam-notice.ts"}} />
-<Route author="Derekmini nczitzk" example="/gov/nsfc" path="/gov/nsfc/path+" paramsDesc={['路径,默认为基金要闻']} radar="1" anticrawler="1">
- :::tip
- 若订阅 [基金要闻 - 通知公告](https://www.nsfc.gov.cn/publish/portal0/tab442),网址为 `https://www.nsfc.gov.cn/publish/portal0/tab442`。截取 `https://www.nsfc.gov.cn` 到末尾的部分 `/publish/portal0/tab442` 作为参数,此时路由为 [`/gov/nsfc/publish/portal0/tab442`](https://rsshub.app/gov/nsfc/publish/portal0/tab442)。
+### 价格监测中心 {#zhong-guo-ren-min-yin-hang-jia-ge-jian-ce-zhong-xin}
- 当然,也可以填入路径在下表中对应的快捷方式。其中 [基金要闻 - 通知公告](https://www.nsfc.gov.cn/publish/portal0/tab442) 的快捷方式为 `tzgg`,此时路由为 [`/gov/nsfc/tzgg`](https://rsshub.app/gov/nsfc/tzgg)。
+<Route data={{"path":"/jgjcndrc/:id?","categories":["government"],"example":"/gov/jgjcndrc","parameters":{"id":"栏目 id,见下表,默认为 692,即通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"价格监测中心","maintainers":["nczitzk"],"description":"| 通知公告 | 中心工作动态 | 地方工作动态 | 监测信息 | 分析预测 | 调查报告 |\n | -------- | ------------ | ------------ | -------- | -------- | -------- |\n | 692 | 693 | 694 | 695 | 696 | 697 |\n\n | 价格指数 | 地方价格监测 | 价格监测报告制度 | 监测法规 | 媒体聚焦 |\n | -------- | ------------ | ---------------- | -------- | -------- |\n | 698 | 699 | 700 | 701 | 753 |\n\n #### 监测信息\n\n | 国内外市场价格监测情况周报 | 主要粮油副食品日报 | 生猪出厂价与玉米价格周报 | 国际市场石油价格每日 动态 |\n | -------------------------- | ------------------ | ------------------------ | ------------------------- |\n | 749 | 703 | 704 | 705 |\n\n | 非学科类培训服务价格 | 监测周期价格动态 | 月度监测行情表 | 猪料、鸡料、蛋料比价 |\n | -------------------- | ---------------- | -------------- | -------------------- |\n | 821 | 706 | 707 | 708 |","location":"jgjcndrc/index.ts"}} />
- 若订阅 [管理科学部 - 通知公告](https://www.nsfc.gov.cn/publish/portal0/tab1212),网址为 `https://www.nsfc.gov.cn/publish/portal0/tab1212`。截取 `https://www.nsfc.gov.cn` 到末尾的部分 `/publish/portal0/tab1212` 作为参数,此时路由为 [`/gov/nsfc/publish/portal0/tab1212`](https://rsshub.app/gov/nsfc/publish/portal0/tab1212)。
+| 通知公告 | 中心工作动态 | 地方工作动态 | 监测信息 | 分析预测 | 调查报告 |
+| -------- | ------------ | ------------ | -------- | -------- | -------- |
+| 692 | 693 | 694 | 695 | 696 | 697 |
- 同理,也可以填入路径在下表中对应的快捷方式。其中 [管理科学部 - 通知公告](https://www.nsfc.gov.cn/publish/portal0/tab1212) 的快捷方式为 `glkxb-tzgg`,此时路由为 [`/gov/nsfc/glkxb-tzgg`](https://rsshub.app/gov/nsfc/glkxb-tzgg)。
- :::
+| 价格指数 | 地方价格监测 | 价格监测报告制度 | 监测法规 | 媒体聚焦 |
+| -------- | ------------ | ---------------- | -------- | -------- |
+| 698 | 699 | 700 | 701 | 753 |
- 基金要闻
+#### 监测信息 {#zhong-guo-ren-min-yin-hang-jia-ge-jian-ce-zhong-xin-jian-ce-xin-xi}
- | 基金要闻 | 通知公告 | 部门动态 | 科普快讯 | 资助成果 |
- | -------- | -------- | -------- | -------- | -------- |
- | jjyw | tzgg | bmdt | kpkx | zzcg |
+| 国内外市场价格监测情况周报 | 主要粮油副食品日报 | 生猪出厂价与玉米价格周报 | 国际市场石油价格每日 动态 |
+| -------------------------- | ------------------ | ------------------------ | ------------------------- |
+| 749 | 703 | 704 | 705 |
- 政策法规
+| 非学科类培训服务价格 | 监测周期价格动态 | 月度监测行情表 | 猪料、鸡料、蛋料比价 |
+| -------------------- | ---------------- | -------------- | -------------------- |
+| 821 | 706 | 707 | 708 |
+
+### 今日绵竹 {#zhong-guo-ren-min-yin-hang-jin-ri-mian-zhu}
+
+<Route data={{"path":"/sichuan/deyang/mztoday/:infoType?","categories":["government"],"example":"/gov/sichuan/deyang/mztoday/zx","parameters":{"infoType":"信息栏目名称。默认最新(zx)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mztoday.gov.cn/*"],"target":"/sichuan/deyang/mztoday"},"name":"今日绵竹","maintainers":["zytomorrow"],"url":"www.mztoday.gov.cn/*","description":"| 最新 | 推荐 | 时政 | 教育 | 民生 | 文旅 | 经济 | 文明创建 | 部门 | 镇(街道) | 健康绵竹 | 南轩讲堂 | 视频 | 文明实践 | 领航中国 | 绵竹年画 | 绵竹历史 | 绵竹旅游 | 外媒看绵竹 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | -------- | ---- | ---------- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- | ---------- |\n | zx | tj | sz | jy | ms | wl | jj | wmcj | bm | zj | jkmz | nxjt | sp | wmsj | lhzg | mznh | mzls | mzly | wmkmz |","location":"sichuan/deyang/mztoday.ts"}} />
+
+| 最新 | 推荐 | 时政 | 教育 | 民生 | 文旅 | 经济 | 文明创建 | 部门 | 镇(街道) | 健康绵竹 | 南轩讲堂 | 视频 | 文明实践 | 领航中国 | 绵竹年画 | 绵竹历史 | 绵竹旅游 | 外媒看绵竹 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | -------- | ---- | ---------- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- | ---------- |
+| zx | tj | sz | jy | ms | wl | jj | wmcj | bm | zj | jkmz | nxjt | sp | wmsj | lhzg | mznh | mzls | mzly | wmkmz |
+
+### 立法意见征集 {#zhong-guo-ren-min-yin-hang-li-fa-yi-jian-zheng-ji}
+
+<Route data={{"path":"/moj/lfyjzj","categories":["government"],"example":"/gov/moj/lfyjzj","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.moj.gov.cn/lfyjzj/lflfyjzj/*","www.moj.gov.cn/pub/sfbgw/lfyjzj/lflfyjzj/*"]},"name":"立法意见征集","maintainers":["la3rence"],"url":"www.moj.gov.cn/lfyjzj/lflfyjzj/*","location":"moj/lfyjzj.ts"}} />
+
+### 留言咨询 {#zhong-guo-ren-min-yin-hang-liu-yan-zi-xun}
+
+<Route data={{"path":"/samr/xgzlyhd/:category?/:department?","categories":["government"],"example":"/gov/samr/xgzlyhd","parameters":{"category":"留言类型,见下表,默认为全部","department":"回复部门,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xgzlyhd.samr.gov.cn/gjjly/index"]},"name":"留言咨询","maintainers":["nczitzk"],"url":"xgzlyhd.samr.gov.cn/gjjly/index","description":"#### 留言类型\n\n | 类型 | 类型 id |\n | ------------------------------------------ | -------------------------------- |\n | 反腐倡廉 | 14101a4192df48b592b5cfd77a26c0cf |\n | 规划统计 | b807cf9cdf434635ae908d48757e0f39 |\n | 行政执法和复议 | 8af2530e77154d7b939428667b7413f6 |\n | 假冒仿冒行为 | 75374a34b95341829e08e54d4a0d8c04 |\n | 走私贩私 | 84c728530e1e478e94fe3f0030171c53 |\n | 登记注册 | 07fff64612dc41aca871c06587abf71d |\n | 个体工商户登记 | ca8f91ba9a2347a0acd57ea5fd12a5c8 |\n | 信用信息公示系统 | 1698886c3cdb495998d5ea9285a487f5 |\n | 市场主体垄断 | 77bfe965843844449c47d29f2feb7999 |\n | 反不正当竞争 | 2c919b1dc39440d8850c4f6c405869f8 |\n | 商业贿赂 | b494e6535af149c5a51fd4197993f061 |\n | 打击传销与规范直销 | 407a1404844e48558da46139f16d6232 |\n | 消费环境建设 | 94c2003331dd4c5fa19b0cf88d720676 |\n | 网络交易监管 | 6302aac5b87140598da53f85c1ccb8fa |\n | 动产抵押登记 | 3856de5835444229943b18cac7781e9f |\n | 广告监管 | d0e38171042048c2bf31b05c5e57aa68 |\n | 三包 | c4dbd85692604a428b1ea7613e67beb8 |\n | 缺陷产品召回 | f93c9a6b81e941d09a547406370e1c0c |\n | 工业生产许可 | 2b41afaabaa24325b53a5bd7deba895b |\n | 产品质量监督抽查 | 4388504cb0c04e988e2cf0c90d4a3f14 |\n | 食品安全协调 | 3127b9f409c24d0eaa60b13c25f819fa |\n | 食品生产监管 | beaa5555d1364e5bb2a0f0a7cc9720e5 |\n | 食品销售、餐饮服务、食用农产品销售监管 | 3b6c49c6ce934e1b9505601a3b881a6a |\n | 保健、特殊医学用途配方和婴幼儿配方乳粉监管 | 13b43888f8554e078b1dfa475e2aaab0 |\n | 食品监督抽检、召回 | 0eb6c75581bf41ecaedc629370cb425c |\n | 食品安全标准 | 399cfd9abfa34c22a5cb3bb971a43819 |\n | 特种设备人员、机构管理 | e5d0e51cc7d0412790efac605008bf20 |\n | 特种设备检验 | 03f22fb3d4cd4f09b632079359e9dd7d |\n | 计量器具 | 90b25e22861446d5822e07c7c1f5169a |\n | 计量机构和人员管理 | 76202742f06c459da7482160e0ce17ad |\n | 国家标准 | 299b9672e1c246e69485a5b695f42c5b |\n | 行业、地方、团体、企业标准 | cbdc804c9b2c4e259a159c32eccf4ca9 |\n | 认证监督管理 | 41259262a42e4de49b5c0b7362ac3796 |\n | 认可与检验检测 | cb3c9d1e3d364f2a8b1cd70efa69d1cb |\n | 新闻宣传 | e3e553e4019c46ccbdc06136900138e9 |\n | 科技财务 | 47367b9704964355ba52899a4c5abbb0 |\n | 干部人事 | 6b978e3c127c489ea8e2d693b768887e |\n | 国际合作 | dd5ce768e33e435ab4bfb769ab6e079a |\n | 党群工作 | aa71052978af4304937eb382f24f9902 |\n | 退休干部 | 44505fc58c81428eb5cef15706007b5e |\n | 虚假宣传 | 5bb2b83ecadb4bf89a779cee414a81dd |\n | 滥用行政权力 | 1215206156dc48029b98da825f26fcbc |\n | 公平竞争 | 9880a23dcbb04deba2cc7b4404e13ff6 |\n | 滥用市场支配地位 | fea04f0acd84486e84cf71d9c13005b0 |\n | 数字经济领域反垄断执法 | 4bea424a6e4c4e2aac19fe3c73f9be23 |\n | 并购行为 | 90e315647acd415ca68f97fc1b42053d |\n | 经营者集中案件 | d6571d2cd5624bc18191b342a2e8defb |\n | 数字经济领域反垄断审查 | 03501ef176ef44fba1c7c70da44ba8a0 |\n | 综合执法 | cfbb1b5dade446299670ca38844b265e |\n | 信用监管 | a9d76ea04a3a4433946bc02b0bdb77eb |\n | 3C 认证 | 111decc7b14a4fdbae86fb4a3ba5c0c1 |\n | 食用农产品 | 3159db51f8ca4f23a9340d87d5572d40 |\n | 食品添加 | 4e4b0e0152334cbb9c62fd1b80138305 |\n\n #### 回复部门\n\n | 部门 | 部门 id |\n | ---------------------------- | -------------------------------- |\n | 办公厅 | 6ed539b270634667afc4d466b67a53f7 |\n | 法规司 | 8625ec7ff8d744ad80a1d1a2bf19cf19 |\n | 执法稽查局 | 313a8cb1c09042dea52be52cb392c557 |\n | 登记注册局 | e4553350549f45f38da5602147cf8639 |\n | 信用监督管理司 | 6af98157255a4a858eac5f94ba8d98f4 |\n | 竞争政策协调司 | 8d2266be4791483297822e1aa5fc0a96 |\n | 综合规划司 | 958e1619159c45a7b76663a59d9052ea |\n | 反垄断执法一司 | f9fb3f6225964c71ab82224a91f21b2c |\n | 反垄断执法二司 | 7986c79e4f16403493d5b480aec30be4 |\n | 价格监督检查和反不正当竞争局 | c5d2b1b273b545cfbc6f874f670654ab |\n | 网络交易监督管理司 | 6ac05b4dbd4e41c69f4529262540459b |\n | 广告监督管理司 | 96457dfe16c54840885b79b4e6e17523 |\n | 质量发展局 | cb8d2b16fbb540dca296aa33a43fc573 |\n | 质量监督司 | af2c4e0a54c04f76b512c29ddd075d40 |\n | 食品安全协调司 | cc29962c74e84ef2b21e44336da6c6c5 |\n | 食品生产安全监督管理司 | b334db85a253458285db70b30ee26b0a |\n | 食品经营安全监督管理司 | 4315f0261a5d49f7bdcc5a7524e19ce3 |\n | 特殊食品安全监督管理司 | 62d14f386317486ca94bc53ca7f88891 |\n | 食品安全抽检监测司 | abfc910832cc460a81876ad418618159 |\n | 特种设备安全监察局 | ea79f90bec5840ef9b0881c83682225a |\n | 计量司 | b0556236fbcf4f45b6fdec8004dac3e4 |\n | 标准技术管理司 | a558d07a51f4454fa59290e0d6e93c26 |\n | 标准创新管理司 | ffb3a80984b344ed8d168f4af6508af0 |\n | 认证监督管理司 | ca4987393d514debb4d1e2126f576987 |\n | 认可与检验检测监督管理司 | 796bfab21b15498e88c9032fe3e3c9f1 |\n | 新闻宣传司 | 884fc0ea6c184ad58dda10e2170a1eda |\n | 科技和财务司 | 117355eea94c426199e2e519fd98ce07 |\n | 人事司 | a341e8b7929e44769b9424b7cf69d32a |\n | 国际司 | f784499ef24541f5b20de4c24cfc61e7 |\n | 机关党委 | a49119c6f40045dd994f3910500cedfa |\n | 离退办 | 6bf265ffd1c94fa4a3f1687b03fa908b |","location":"samr/xgzlyhd.ts"}} />
+
+#### 留言类型 {#zhong-guo-ren-min-yin-hang-liu-yan-zi-xun-liu-yan-lei-xing}
+
+| 类型 | 类型 id |
+| ------------------------------------------ | -------------------------------- |
+| 反腐倡廉 | 14101a4192df48b592b5cfd77a26c0cf |
+| 规划统计 | b807cf9cdf434635ae908d48757e0f39 |
+| 行政执法和复议 | 8af2530e77154d7b939428667b7413f6 |
+| 假冒仿冒行为 | 75374a34b95341829e08e54d4a0d8c04 |
+| 走私贩私 | 84c728530e1e478e94fe3f0030171c53 |
+| 登记注册 | 07fff64612dc41aca871c06587abf71d |
+| 个体工商户登记 | ca8f91ba9a2347a0acd57ea5fd12a5c8 |
+| 信用信息公示系统 | 1698886c3cdb495998d5ea9285a487f5 |
+| 市场主体垄断 | 77bfe965843844449c47d29f2feb7999 |
+| 反不正当竞争 | 2c919b1dc39440d8850c4f6c405869f8 |
+| 商业贿赂 | b494e6535af149c5a51fd4197993f061 |
+| 打击传销与规范直销 | 407a1404844e48558da46139f16d6232 |
+| 消费环境建设 | 94c2003331dd4c5fa19b0cf88d720676 |
+| 网络交易监管 | 6302aac5b87140598da53f85c1ccb8fa |
+| 动产抵押登记 | 3856de5835444229943b18cac7781e9f |
+| 广告监管 | d0e38171042048c2bf31b05c5e57aa68 |
+| 三包 | c4dbd85692604a428b1ea7613e67beb8 |
+| 缺陷产品召回 | f93c9a6b81e941d09a547406370e1c0c |
+| 工业生产许可 | 2b41afaabaa24325b53a5bd7deba895b |
+| 产品质量监督抽查 | 4388504cb0c04e988e2cf0c90d4a3f14 |
+| 食品安全协调 | 3127b9f409c24d0eaa60b13c25f819fa |
+| 食品生产监管 | beaa5555d1364e5bb2a0f0a7cc9720e5 |
+| 食品销售、餐饮服务、食用农产品销售监管 | 3b6c49c6ce934e1b9505601a3b881a6a |
+| 保健、特殊医学用途配方和婴幼儿配方乳粉监管 | 13b43888f8554e078b1dfa475e2aaab0 |
+| 食品监督抽检、召回 | 0eb6c75581bf41ecaedc629370cb425c |
+| 食品安全标准 | 399cfd9abfa34c22a5cb3bb971a43819 |
+| 特种设备人员、机构管理 | e5d0e51cc7d0412790efac605008bf20 |
+| 特种设备检验 | 03f22fb3d4cd4f09b632079359e9dd7d |
+| 计量器具 | 90b25e22861446d5822e07c7c1f5169a |
+| 计量机构和人员管理 | 76202742f06c459da7482160e0ce17ad |
+| 国家标准 | 299b9672e1c246e69485a5b695f42c5b |
+| 行业、地方、团体、企业标准 | cbdc804c9b2c4e259a159c32eccf4ca9 |
+| 认证监督管理 | 41259262a42e4de49b5c0b7362ac3796 |
+| 认可与检验检测 | cb3c9d1e3d364f2a8b1cd70efa69d1cb |
+| 新闻宣传 | e3e553e4019c46ccbdc06136900138e9 |
+| 科技财务 | 47367b9704964355ba52899a4c5abbb0 |
+| 干部人事 | 6b978e3c127c489ea8e2d693b768887e |
+| 国际合作 | dd5ce768e33e435ab4bfb769ab6e079a |
+| 党群工作 | aa71052978af4304937eb382f24f9902 |
+| 退休干部 | 44505fc58c81428eb5cef15706007b5e |
+| 虚假宣传 | 5bb2b83ecadb4bf89a779cee414a81dd |
+| 滥用行政权力 | 1215206156dc48029b98da825f26fcbc |
+| 公平竞争 | 9880a23dcbb04deba2cc7b4404e13ff6 |
+| 滥用市场支配地位 | fea04f0acd84486e84cf71d9c13005b0 |
+| 数字经济领域反垄断执法 | 4bea424a6e4c4e2aac19fe3c73f9be23 |
+| 并购行为 | 90e315647acd415ca68f97fc1b42053d |
+| 经营者集中案件 | d6571d2cd5624bc18191b342a2e8defb |
+| 数字经济领域反垄断审查 | 03501ef176ef44fba1c7c70da44ba8a0 |
+| 综合执法 | cfbb1b5dade446299670ca38844b265e |
+| 信用监管 | a9d76ea04a3a4433946bc02b0bdb77eb |
+| 3C 认证 | 111decc7b14a4fdbae86fb4a3ba5c0c1 |
+| 食用农产品 | 3159db51f8ca4f23a9340d87d5572d40 |
+| 食品添加 | 4e4b0e0152334cbb9c62fd1b80138305 |
+
+#### 回复部门 {#zhong-guo-ren-min-yin-hang-liu-yan-zi-xun-hui-fu-bu-men}
+
+| 部门 | 部门 id |
+| ---------------------------- | -------------------------------- |
+| 办公厅 | 6ed539b270634667afc4d466b67a53f7 |
+| 法规司 | 8625ec7ff8d744ad80a1d1a2bf19cf19 |
+| 执法稽查局 | 313a8cb1c09042dea52be52cb392c557 |
+| 登记注册局 | e4553350549f45f38da5602147cf8639 |
+| 信用监督管理司 | 6af98157255a4a858eac5f94ba8d98f4 |
+| 竞争政策协调司 | 8d2266be4791483297822e1aa5fc0a96 |
+| 综合规划司 | 958e1619159c45a7b76663a59d9052ea |
+| 反垄断执法一司 | f9fb3f6225964c71ab82224a91f21b2c |
+| 反垄断执法二司 | 7986c79e4f16403493d5b480aec30be4 |
+| 价格监督检查和反不正当竞争局 | c5d2b1b273b545cfbc6f874f670654ab |
+| 网络交易监督管理司 | 6ac05b4dbd4e41c69f4529262540459b |
+| 广告监督管理司 | 96457dfe16c54840885b79b4e6e17523 |
+| 质量发展局 | cb8d2b16fbb540dca296aa33a43fc573 |
+| 质量监督司 | af2c4e0a54c04f76b512c29ddd075d40 |
+| 食品安全协调司 | cc29962c74e84ef2b21e44336da6c6c5 |
+| 食品生产安全监督管理司 | b334db85a253458285db70b30ee26b0a |
+| 食品经营安全监督管理司 | 4315f0261a5d49f7bdcc5a7524e19ce3 |
+| 特殊食品安全监督管理司 | 62d14f386317486ca94bc53ca7f88891 |
+| 食品安全抽检监测司 | abfc910832cc460a81876ad418618159 |
+| 特种设备安全监察局 | ea79f90bec5840ef9b0881c83682225a |
+| 计量司 | b0556236fbcf4f45b6fdec8004dac3e4 |
+| 标准技术管理司 | a558d07a51f4454fa59290e0d6e93c26 |
+| 标准创新管理司 | ffb3a80984b344ed8d168f4af6508af0 |
+| 认证监督管理司 | ca4987393d514debb4d1e2126f576987 |
+| 认可与检验检测监督管理司 | 796bfab21b15498e88c9032fe3e3c9f1 |
+| 新闻宣传司 | 884fc0ea6c184ad58dda10e2170a1eda |
+| 科技和财务司 | 117355eea94c426199e2e519fd98ce07 |
+| 人事司 | a341e8b7929e44769b9424b7cf69d32a |
+| 国际司 | f784499ef24541f5b20de4c24cfc61e7 |
+| 机关党委 | a49119c6f40045dd994f3910500cedfa |
+| 离退办 | 6bf265ffd1c94fa4a3f1687b03fa908b |
+
+### 茂名市茂南区人民政府 {#zhong-guo-ren-min-yin-hang-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu}
+
+<Route data={{"path":"/maonan/:category","categories":["government"],"example":"/gov/maonan/zwgk","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"茂名市茂南区人民政府","maintainers":["ShuiHuo"],"description":"| 政务公开 | 政务新闻 | 茂南动态 | 重大会议 | 公告公示 | 招录信息 | 政策解读 |\n | :------: | :------: | :------: | :------: | :------: | :------: | :------: |\n | zwgk | zwxw | mndt | zdhy | tzgg | zlxx | zcjd |","location":"maonan/maonan.ts"}} />
+
+| 政务公开 | 政务新闻 | 茂南动态 | 重大会议 | 公告公示 | 招录信息 | 政策解读 |
+| :------: | :------: | :------: | :------: | :------: | :------: | :------: |
+| zwgk | zwxw | mndt | zdhy | tzgg | zlxx | zcjd |
+
+### 拍卖信息 / 海关法规 {#zhong-guo-ren-min-yin-hang-pai-mai-xin-xi-hai-guan-fa-gui}
+
+<Route data={{"path":"/customs/list/:gchannel?","categories":["government"],"example":"/gov/customs/list/paimai","parameters":{"gchannel":"支持 `paimai` 及 `fagui` 2个频道,默认为 `paimai`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.customs.gov.cn/"],"target":"/customs/list"},"name":"拍卖信息 / 海关法规","maintainers":["Jeason0228","TonyRL","he1q"],"url":"www.customs.gov.cn/","description":":::warning\n 由于区域限制,建议在国内 IP 的机器上自建\n :::","location":"customs/list.ts"}} />
+
+:::warning
+由于区域限制,建议在国内 IP 的机器上自建
+:::
- | 国家自然科学基金条例 | 国家自然科学基金发展规划 | 国家自然科学基金规章制度 | 国家科学技术相关法律法规 |
- | -------------------- | ------------------------ | ------------------------ | ------------------------ |
- | zcfg-jjtl | zcfg-fzgh | zcfg-gzzd | zcfg-flfg |
+### 人力社保局 {#zhong-guo-ren-min-yin-hang-ren-li-she-bao-ju}
- 管理科学部
+<Route data={{"path":"/chongqing/sydwgkzp","categories":["government"],"example":"/gov/chongqing/sydwgkzp","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rlsbj.cq.gov.cn/"]},"name":"人力社保局","maintainers":["MajexH"],"url":"rlsbj.cq.gov.cn/","description":"#### 人事考试通知 {#chong-qing-shi-ren-min-zheng-fu-ren-li-she-bao-ju-ren-shi-kao-shi-tong-zhi}\n\n\n#### 事业单位公开招聘 {#chong-qing-shi-ren-min-zheng-fu-ren-li-she-bao-ju-shi-ye-dan-wei-gong-kai-zhao-pin}","location":"chongqing/sydwgkzp.ts"}} />
- | 工作动态 | 通知公告 | 资助成果 |
- | ---------- | ---------- | ---------- |
- | glkxb-gzdt | glkxb-tzgg | glkxb-zzcg |
+#### 人事考试通知 {#zhong-guo-ren-min-yin-hang-ren-li-she-bao-ju-ren-shi-kao-shi-tong-zhi}
- 国际合作局
+#### 事业单位公开招聘 {#zhong-guo-ren-min-yin-hang-ren-li-she-bao-ju-shi-ye-dan-wei-gong-kai-zhao-pin}
- | 项目指南 | 初审结果 | 批准通知 | 进程简表 | 信息公开 |
- | ---------- | ---------- | ---------- | ---------- | ---------- |
- | gjhzj-xmzn | gjhzj-csjg | gjhzj-pztz | gjhzj-jcjb | gjhzj-xxgk |
-</Route>
+### 上海市文旅局审批公告 {#zhong-guo-ren-min-yin-hang-shang-hai-shi-wen-lv-ju-shen-pi-gong-gao}
-## 国务院国有资产监督管理委员会 {#guo-wu-yuan-guo-you-zi-chan-jian-du-guan-li-wei-yuan-hui}
+<Route data={{"path":"/shanghai/wgj/:page?","categories":["government"],"example":"/gov/shanghai/wgj","parameters":{"page":"页数,默认第 1 页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wsbs.wgj.sh.gov.cn/"],"target":"/shanghai/wgj"},"name":"上海市文旅局审批公告","maintainers":["gideonsenku"],"url":"wsbs.wgj.sh.gov.cn/","location":"shanghai/wgj/wgj.ts"}} />
-### 通用 {#guo-wu-yuan-guo-you-zi-chan-jian-du-guan-li-wei-yuan-hui-tong-yong}
+### 上海市职业能力考试院 考试项目 {#zhong-guo-ren-min-yin-hang-shang-hai-shi-zhi-ye-neng-li-kao-shi-yuan-kao-shi-xiang-mu}
-<Route author="TonyRL" example="/gov/sasac/n2588030/n16436141" path="/gov/sasac/:path+" paramsDesc={['路径,可在 URL 找到']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `http://www.sasac.gov.cn/` 与 `/index.html` 之间的字段,下面是一个例子。
+<Route data={{"path":"/shanghai/rsj/ksxm","categories":["government"],"example":"/gov/shanghai/rsj/ksxm","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rsj.sh.gov.cn/"]},"name":"上海市职业能力考试院 考试项目","maintainers":["Fatpandac"],"url":"rsj.sh.gov.cn/","location":"shanghai/rsj/ksxm.ts"}} />
- 若订阅 [其他](http://www.sasac.gov.cn/n2588030/n16436141/index.html) 则将对应页面 URL `http://www.sasac.gov.cn/n2588030/n16436141/index.html` 中 `http://www.sasac.gov.cn/` 和 `/index.html` 之间的字段 `n2588030/n16436141` 作为路径填入。此时路由为 [`/gov/sasac/n2588030/n16436141`](https://rsshub.app/gov/nmpa/n2588030/n16436141)
- :::
-</Route>
+### 上海卫健委 疫情通报 {#zhong-guo-ren-min-yin-hang-shang-hai-wei-jian-wei-yi-qing-tong-bao}
-## 哈尔滨市科技局 {#ha-er-bin-shi-ke-ji-ju}
+<Route data={{"path":"/shanghai/wsjkw/yqtb","categories":["government"],"example":"/gov/shanghai/wsjkw/yqtb","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wsjkw.sh.gov.cn/"]},"name":"上海卫健委 疫情通报","maintainers":["zcf0508"],"url":"wsjkw.sh.gov.cn/","location":"shanghai/wsjkw/yqtb/index.ts"}} />
-### 政务公开 {#ha-er-bin-shi-ke-ji-ju-zheng-wu-gong-kai}
+### 申请事项进度 {#zhong-guo-ren-min-yin-hang-shen-qing-shi-xiang-jin-du}
-<Route author="XYenon" example="/gov/harbin/kjj" path="/gov/harbin/kjj" notOperational="1" />
+<Route data={{"path":"/csrc/auditstatus/:apply_id","categories":["government"],"example":"/gov/csrc/auditstatus/9ce91cf2d750ee62de27fbbcb05fa483","parameters":{"apply_id":"事项类别id,`https://neris.csrc.gov.cn/alappl/home/xkDetail` 列表中各地址的 appMatrCde 参数"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"申请事项进度","maintainers":["hillerliao"],"location":"csrc/auditstatus.ts"}} />
-## 河北省人民政府 {#he-bei-sheng-ren-min-zheng-fu}
+### 深圳市考试院 {#zhong-guo-ren-min-yin-hang-shen-zhen-shi-kao-shi-yuan}
-### 财政厅 {#he-bei-sheng-ren-min-zheng-fu-cai-zheng-ting}
+<Route data={{"path":"/shenzhen/hrss/szksy/:caty/:page?","categories":["government"],"example":"/gov/shenzhen/hrss/szksy/bmxx/2","parameters":{"caty":"信息类别","page":"页码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xxgk.sz.gov.cn/cn/xxgk/zfxxgj/:caty"]},"name":"深圳市考试院","maintainers":["zlasd"],"url":"hrss.sz.gov.cn/*","description":"| 通知公告 | 报名信息 | 成绩信息 | 合格标准 | 合格人员公示 | 证书发放信息 |\n | :------: | :------: | :------: | :------: | :----------: | :----------: |\n | tzgg | bmxx | cjxx | hgbz | hgrygs | zsff |","location":"shenzhen/hrss/szksy/index.ts"}} />
-<Route author="nczitzk" example="/gov/hebei/czt/xwdt" path="/gov/hebei/czt/xwdt/:category?" paramsDesc={['分类,见下表,默认为财政动态']} notOperational="1">
- | 财政动态 | 综合新闻 | 通知公告 |
- | -------- | -------- | -------- |
- | gzdt | zhxw | tzgg |
-</Route>
+| 通知公告 | 报名信息 | 成绩信息 | 合格标准 | 合格人员公示 | 证书发放信息 |
+| :------: | :------: | :------: | :------: | :----------: | :----------: |
+| tzgg | bmxx | cjxx | hgbz | hgrygs | zsff |
-### 退役军人事务厅 {#he-bei-sheng-ren-min-zheng-fu-tui-yi-jun-ren-shi-wu-ting}
+### 深圳市人民政府 {#zhong-guo-ren-min-yin-hang-shen-zhen-shi-ren-min-zheng-fu}
-<Route author="SunShinenny" example="/gov/veterans/hebei/sxxx" path="/gov/veterans/hebei/:type" paramsDesc={['分类名']}>
- | 省内信息 | 厅内信息 | 市县信息 |
- | :------: | :------: | :------: |
- | ywgz | tnxx | sxxx |
-</Route>
+<Route data={{"path":"/shenzhen/xxgk/zfxxgj/:caty","categories":["government"],"example":"/gov/shenzhen/xxgk/zfxxgj/tzgg","parameters":{"caty":"信息类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"深圳市人民政府","maintainers":["laoxua"],"description":"| 通知公告 | 政府采购 | 资金信息 | 重大项目 |\n | :------: | :------: | :------: | :------: |\n | tzgg | zfcg | zjxx | zdxm |","location":"shenzhen/xxgk/zfxxgj.ts"}} />
-### 软件行业协会 - 新闻中心 {#he-bei-sheng-ren-min-zheng-fu-ruan-jian-hang-ye-xie-hui-xin-wen-zhong-xin}
+| 通知公告 | 政府采购 | 资金信息 | 重大项目 |
+| :------: | :------: | :------: | :------: |
+| tzgg | zfcg | zjxx | zdxm |
-<Route author="tudou027" example="/gov/hubei/hbsia/zxzx" path="/gov/hubei/hbsia/:caty" paramsDesc={['类别']} notOperational="1">
- | 具体栏目 | 参数 |
- | :------: | :--: |
- | 最新资讯 | zxzx |
- | 活动通知 | hdtz |
- | 活动报道 | hdbd |
- | 公示公告 | gsgg |
-</Route>
+### 深圳市委组织部 {#zhong-guo-ren-min-yin-hang-shen-zhen-shi-wei-zu-zhi-bu}
-## 湖南省人民政府 {#hu-nan-sheng-ren-min-zheng-fu}
+<Route data={{"path":"/shenzhen/zzb/:caty/:page?","categories":["government"],"example":"/gov/shenzhen/zzb/tzgg","parameters":{"caty":"信息类别","page":"页码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zzb.sz.gov.cn/*"]},"name":"深圳市委组织部","maintainers":["zlasd"],"url":"zzb.sz.gov.cn/*","description":"| 通知公告 | 任前公示 | 政策法规 | 工作动态 | 部门预算决算公开 | 业务表格下载 |\n | :------: | :------: | :------: | :------: | :--------------: | :----------: |\n | tzgg | rqgs | zcfg | gzdt | xcbd | bgxz |","location":"shenzhen/zzb/index.ts"}} />
-### 长沙市人民政府 {#hu-nan-sheng-ren-min-zheng-fu-chang-sha-shi-ren-min-zheng-fu}
+| 通知公告 | 任前公示 | 政策法规 | 工作动态 | 部门预算决算公开 | 业务表格下载 |
+| :------: | :------: | :------: | :------: | :--------------: | :----------: |
+| tzgg | rqgs | zcfg | gzdt | xcbd | bgxz |
-#### 市长信箱 {#hu-nan-sheng-ren-min-zheng-fu-chang-sha-shi-ren-min-zheng-fu-shi-zhang-xin-xiang}
-
-<Route author="shansing" example="/gov/hunan/changsha/major-email" path="/gov/hunan/changsha/major-email" notOperational="1" />
-
-可能仅限中国大陆服务器访问,以实际情况为准。
+### 深圳市住房和建设局 {#zhong-guo-ren-min-yin-hang-shen-zhen-shi-zhu-fang-he-jian-she-ju}
-## 湖南省政府采购网 {#hu-nan-sheng-zheng-fu-cai-gou-wang}
+<Route data={{"path":"/shenzhen/zjj/xxgk/:caty","categories":["government"],"example":"/gov/shenzhen/zjj/xxgk/tzgg","parameters":{"caty":"信息类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zjj.sz.gov.cn/xxgk/:caty"]},"name":"深圳市住房和建设局","maintainers":["lonn"],"description":"| 通知公告 |\n | :------: |\n | tzgg |","location":"shenzhen/zjj/index.ts"}} />
-### 公告 {#hu-nan-sheng-zheng-fu-cai-gou-wang-gong-gao}
+| 通知公告 |
+| :------: |
+| tzgg |
-<Route author="Jeason0228" example="/gov/hunan/notice/all" path="/gov/hunan/notice/:type" paramsDesc={['all=全部,cg=采购公告,zb=中标公告,fb=废标公告,ht=合同公告,gz=更正公告,zz=终止公告,qt=其他公告']} />
+### 省科学技术厅 {#zhong-guo-ren-min-yin-hang-sheng-ke-xue-ji-shu-ting}
-## 济南市卫生健康委员会 {#ji-nan-shi-wei-sheng-jian-kang-wei-yuan-hui}
+<Route data={{"path":"/shaanxi/kjt/:id?","categories":["government"],"example":"/gov/shaanxi/kjt","parameters":{"id":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"省科学技术厅","maintainers":["nczitzk"],"description":"| 科技头条 | 工作动态 | 基层科技 | 科技博览 | 媒体聚焦 | 通知公告 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 1061 | 24 | 27 | 25 | 28 | 221 |","location":"shaanxi/kjt.ts"}} />
-### 获取国家医师资格考试通知 {#ji-nan-shi-wei-sheng-jian-kang-wei-yuan-hui-huo-qu-guo-jia-yi-shi-zi-ge-kao-shi-tong-zhi}
+| 科技头条 | 工作动态 | 基层科技 | 科技博览 | 媒体聚焦 | 通知公告 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 1061 | 24 | 27 | 25 | 28 | 221 |
-<Route author="tzjyxb" example="/gov/jinan/healthcommission/medical_exam_notice" path="/gov/jinan/healthcommission/medical_exam_notice" radar="1" />
+### 事故及灾害查处 {#zhong-guo-ren-min-yin-hang-shi-gu-ji-zai-hai-cha-chu}
-## 江苏省人民政府 {#jiang-su-sheng-ren-min-zheng-fu}
+<Route data={{"path":"/mem/gk/sgcc/:category?","categories":["government"],"example":"/gov/mem/gk/sgcc/tbzdsgdcbg","parameters":{"category":"分类,见下表,默认为挂牌督办"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mem.gov.cn/gk/sgcc/:category"],"target":"/mem/gk/sgcc/:category"},"name":"事故及灾害查处","maintainers":["nczitzk"],"description":"| 挂牌督办 | 调查报告 |\n | -------- | ---------- |\n | sggpdbqk | tbzdsgdcbg |","location":"mem/sgcc.ts"}} />
-### 动态 {#jiang-su-sheng-ren-min-zheng-fu-dong-tai}
+| 挂牌督办 | 调查报告 |
+| -------- | ---------- |
+| sggpdbqk | tbzdsgdcbg |
-<Route author="ocleo1" example="/gov/province/jiangsu/important-news" path="/gov/province/jiangsu/:category" paramsDesc={['分类名']}>
- | 省政府常务会议 | 要闻关注 | 部门资讯 | 市县动态 | 政策解读 |
- | :---------------: | :------------: | :--------: | :---------: | :-------------------: |
- | executive-meeting | important-news | department | city-county | policy-interpretation |
+### 司局通知 {#zhong-guo-ren-min-yin-hang-si-ju-tong-zhi}
- | 政府信息公开年度报告 | 政府信息公开制度 | 省政府及办公厅文件 | 规范性文件 |
- | :------------------: | :-------------------: | :----------------: | :----------------: |
- | annual-report | information-publicity | documentation | normative-document |
+<Route data={{"path":"/moe/s78/:column","categories":["government"],"example":"/gov/moe/s78/A13","parameters":{"column":"司局 ID,可在 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["moe.gov.cn/s78/:column/tongzhi","moe.gov.cn/s78/:column"]},"name":"司局通知","maintainers":["TonyRL"],"location":"moe/s78.ts"}} />
- | 立法意见征集 | 意见征集 |
- | :----------------------------: | :----------------: |
- | legislative-opinion-collection | opinion-collection |
-</Route>
+### 太原市人力资源和社会保障局政府公开信息 {#zhong-guo-ren-min-yin-hang-tai-yuan-shi-ren-li-zi-yuan-he-she-hui-bao-zhang-ju-zheng-fu-gong-kai-xin-xi}
-### 省教育考试院 - 新闻中心 {#jiang-su-sheng-ren-min-zheng-fu-sheng-jiao-yu-kao-shi-yuan-xin-wen-zhong-xin}
+<Route data={{"path":"/taiyuan/rsj/:caty/:page?","categories":["government"],"example":"/gov/taiyuan/rsj/gggs","parameters":{"caty":"信息类别","page":"页码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rsj.taiyuan.gov.cn/*"]},"name":"太原市人力资源和社会保障局政府公开信息","maintainers":["2PoL"],"url":"rsj.taiyuan.gov.cn/*","description":"| 工作动态 | 太原新闻 | 通知公告 | 县区动态 | 国内动态 | 图片新闻 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | gzdt | tyxw | gggs | xqdt | gndt | tpxw |","location":"taiyuan/rsj.ts"}} />
-<Route author="schen1024" example="/jseea/news/zkyw" path="/gov/jiangsu/eea/:type?" paramsDesc={['分类,默认为 `zkyw`,具体参数见下表']} radar="1">
- | 招考要闻 | 教育动态 | 招考信息 | 政策文件 | 院校动态 |
- | :------: | :------: | :------: | :------: | :------: |
- | zkyw | jydt | zkxx | zcwj | yxdt |
-</Route>
+| 工作动态 | 太原新闻 | 通知公告 | 县区动态 | 国内动态 | 图片新闻 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| gzdt | tyxw | gggs | xqdt | gndt | tpxw |
-## 茂名市人民政府 {#mao-ming-shi-ren-min-zheng-fu}
+### 通用 {#zhong-guo-ren-min-yin-hang-tong-yong}
-### 茂名市人民政府门户网站 {#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-ren-min-zheng-fu-men-hu-wang-zhan}
+<Route data={{"path":"/beijing/bjedu/gh/:urlPath?","categories":["government"],"example":"/gov/beijing/bjedu/gh","parameters":{"urlPath":"路径,默认为 `zxtzgg`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gh.bjedu.gov.cn/ghsite/:urlPath/index.html","gh.bjedu.gov.cn/ghsite/:urlPath"],"target":"/beijing/bjedu/gh/:urlPath"},"name":"通用","maintainers":["TonyRL"],"description":":::tip\n 路径处填写对应页面 URL 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段。下面是一个例子。\n\n 若订阅 [通知公告](https://gh.bjedu.cn/ghsite/zxtzgg/index.html) 则将对应页面 URL `https://gh.bjedu.cn/ghsite/zxtzgg/index.html` 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段 `zxtzgg` 作为路径填入。此时路由为 [`/gov/beijing/bjedu/gh/zxtzgg`](https://rsshub.app/gov/beijing/bjedu/gh/zxtzgg)\n :::","location":"beijing/bjedu/gh.ts"}} />
-<Route author="ShuiHuo" example="/gov/maoming/www/zwgk/zcjd/jd" path="/gov/maoming/:path+" paramsDesc={['路径']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中茂名有关政府网站的域名最前面的部分和域名后的字段。下面是一个例子。
+:::tip
+路径处填写对应页面 URL 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段。下面是一个例子。
- 若订阅 [茂名市人民政府门户网站 > 政务公开 > 政策解读](http://www.maoming.gov.cn/zwgk/zcjd/jd/) 则将对应页面 URL `http://www.maoming.gov.cn/zwgk/zcjd/jd/` 中 `http://www.maoming.gov.cn/` 的字段 `www` 和 `/zwgk/zcjd/jd/` 作为路径填入。此时路由为 [`/gov/maoming/www/zwgk/zcjd/jd/`](https://rsshub.app/gov/maoming/www/zwgk/zcjd/jd/)
+若订阅 [通知公告](https://gh.bjedu.cn/ghsite/zxtzgg/index.html) 则将对应页面 URL `https://gh.bjedu.cn/ghsite/zxtzgg/index.html` 中 `https://gh.bjedu.cn/ghsite/` 和 `/index.html` 之间的字段 `zxtzgg` 作为路径填入。此时路由为 [`/gov/beijing/bjedu/gh/zxtzgg`](https://rsshub.app/gov/beijing/bjedu/gh/zxtzgg)
+:::
- 若订阅 [茂名市农业农村局网站 > 政务区 > 政务公开 > 通知公告](http://mmny.maoming.gov.cn/zwq/zwgk/tzgg/) 则将对应页面 URL `http://mmny.maoming.gov.cn/zwq/zwgk/tzgg/` 中 `http://mmny.maoming.gov.cn/` 的字段 `mmny` 和 `/zwq/zwgk/tzgg/` 作为路径填入。此时路由为 [`/gov/maoming/mmny/zwq/zwgk/tzgg/`](https://rsshub.app/gov/maoming/mmny/zwq/zwgk/tzgg/)
- :::
-</Route>
+### 通用 {#zhong-guo-ren-min-yin-hang-tong-yong}
-### 茂名市茂南区人民政府 {#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-mao-nan-qu-ren-min-zheng-fu}
+<Route data={{"path":"/npc/:caty","categories":["government"],"example":"/gov/npc/c183","parameters":{"caty":"分类名,支持形如 `http://www.npc.gov.cn/npc/c2/*/` 的网站,传入 npc 之后的参数"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["npc.gov.cn/npc/c2/:caty"]},"name":"通用","maintainers":["233yeee"],"description":"| 立法 | 监督 | 代表 | 理论 | 权威发布 | 滚动新闻 |\n | ---- | ---- | ---- | ---- | -------- | -------- |\n | c183 | c184 | c185 | c189 | c12435 | c10134 |","location":"npc/index.ts"}} />
-<Route author="ShuiHuo" example="/gov/maonan/zwgk" path="/gov/maonan/:category" paramsDesc={['分类名']} notOperational="1">
- | 政务公开 | 政务新闻 | 茂南动态 | 重大会议 | 公告公示 | 招录信息 | 政策解读 |
- | :------: | :------: | :------: | :------: | :------: | :------: | :------: |
- | zwgk | zwxw | mndt | zdhy | tzgg | zlxx | zcjd |
-</Route>
+| 立法 | 监督 | 代表 | 理论 | 权威发布 | 滚动新闻 |
+| ---- | ---- | ---- | ---- | -------- | -------- |
+| c183 | c184 | c185 | c189 | c12435 | c10134 |
-### 茂名市电白区人民政府 {#mao-ming-shi-ren-min-zheng-fu-mao-ming-shi-dian-bai-qu-ren-min-zheng-fu}
+### 通知 {#zhong-guo-ren-min-yin-hang-tong-zhi}
-<Route author="ShuiHuo" example="/gov/dianbai/www/zwgk/zcjd" path="/gov/dianbai/:path+" paramsDesc={['路径,只填写 `www` 默认为 政务公开 > 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
+<Route data={{"path":"/zhejiang/gwy/:category?/:column?","categories":["government"],"example":"/gov/zhejiang/gwy/1","parameters":{"category":"分类,见下表,默认为全部","column":"地市专栏,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zjks.gov.cn/zjgwy/website/init.htm","zjks.gov.cn/zjgwy/website/queryDetail.htm","zjks.gov.cn/zjgwy/website/queryMore.htm"],"target":"/zhejiang/gwy"},"name":"通知","maintainers":["nczitzk"],"url":"zjks.gov.cn/zjgwy/website/init.htm","description":"| 分类 | id |\n | ------------ | -- |\n | 重要通知 | 1 |\n | 招考公告 | 2 |\n | 招考政策 | 3 |\n | 面试体检考察 | 4 |\n | 录用公示专栏 | 5 |\n\n | 地市 | id |\n | ------------ | ----- |\n | 浙江省 | 133 |\n | 浙江省杭州市 | 13301 |\n | 浙江省宁波市 | 13302 |\n | 浙江省温州市 | 13303 |\n | 浙江省嘉兴市 | 13304 |\n | 浙江省湖州市 | 13305 |\n | 浙江省绍兴市 | 13306 |\n | 浙江省金华市 | 13307 |\n | 浙江省衢州市 | 13308 |\n | 浙江省舟山市 | 13309 |\n | 浙江省台州市 | 13310 |\n | 浙江省丽水市 | 13311 |\n | 省级单位 | 13317 |","location":"zhejiang/gwy.ts"}} />
- 若订阅 [政务公开 > 政策解读](http://www.dianbai.gov.cn/zwgk/zcjd/) 则将对应页面 URL `http://www.dianbai.gov.cn/zwgk/zcjd/` 中 `http://www.dianbai.gov.cn/` 的字段`www` 和 `zwgk/zcjd/` 作为路径填入。此时路由为 [`/gov/dianbai/www/zwgk/zcjd/`](https://rsshub.app/gov/dianbai/www/zwgk/zcjd/)
- :::
-</Route>
+| 分类 | id |
+| ------------ | -- |
+| 重要通知 | 1 |
+| 招考公告 | 2 |
+| 招考政策 | 3 |
+| 面试体检考察 | 4 |
+| 录用公示专栏 | 5 |
-### 信宜市人民政府 {#mao-ming-shi-ren-min-zheng-fu-xin-yi-shi-ren-min-zheng-fu}
+| 地市 | id |
+| ------------ | ----- |
+| 浙江省 | 133 |
+| 浙江省杭州市 | 13301 |
+| 浙江省宁波市 | 13302 |
+| 浙江省温州市 | 13303 |
+| 浙江省嘉兴市 | 13304 |
+| 浙江省湖州市 | 13305 |
+| 浙江省绍兴市 | 13306 |
+| 浙江省金华市 | 13307 |
+| 浙江省衢州市 | 13308 |
+| 浙江省舟山市 | 13309 |
+| 浙江省台州市 | 13310 |
+| 浙江省丽水市 | 13311 |
+| 省级单位 | 13317 |
-<Route author="ShuiHuo" example="/gov/xinyi/www/zwgk/zcjd" path="/gov/xinyi/:path+" paramsDesc={['路径,只填写 `www` 默认为 政务公开 > 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
+### 通知公告 {#zhong-guo-ren-min-yin-hang-tong-zhi-gong-gao}
- 若订阅 [政务公开 > 政策解读](http://www.xinyi.gov.cn/zwgk/zcjd/) 则将对应页面 URL `http://www.xinyi.gov.cn/zwgk/zcjd/` 中 `http://www.xinyi.gov.cn/` 的字段 `www` 和 `zwgk/zcjd/` 作为路径填入。此时路由为 [`/gov/xinyi/www/zwgk/zcjd/`](https://rsshub.app/gov/xinyi/www/zwgk/zcjd/)
- :::
-</Route>
+<Route data={{"path":"/beijing/jw/tzgg","categories":["government"],"example":"/gov/beijing/jw/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jw.beijing.gov.cn/tzgg"]},"name":"通知公告","maintainers":["nczitzk"],"url":"jw.beijing.gov.cn/tzgg","location":"beijing/jw/tzgg.ts"}} />
-### 高州市人民政府 {#mao-ming-shi-ren-min-zheng-fu-gao-zhou-shi-ren-min-zheng-fu}
+### 投诉建议 {#zhong-guo-ren-min-yin-hang-tou-su-jian-yi}
-<Route author="ShuiHuo" example="/gov/gaozhou/www/zwgk/zcjd" path="/gov/gaozhou/:path+" paramsDesc={['路径,只填写 `www` 默认为 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
+<Route data={{"path":"/safe/complaint/:site?","categories":["government"],"example":"/gov/safe/complaint/beijing","parameters":{"site":"站点,见上表,默认为 beijing"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"投诉建议","maintainers":["nczitzk"],"location":"safe/complaint.ts"}} />
- 若订阅 [政策解读](http://www.gaozhou.gov.cn/zcjd/) 则将对应页面 URL `http://www.gaozhou.gov.cn/zcjd/` 中 `http://www.gaozhou.gov.cn/` 的字段 `www` 和 `zcjd/` 作为路径填入。此时路由为 [`/gov/gaozhou/www/zcjd/`](https://rsshub.app/gov/gaozhou/www/zcjd/)
- :::
-</Route>
+### 文件发布 {#zhong-guo-ren-min-yin-hang-wen-jian-fa-bu}
-### 化州市人民政府 {#mao-ming-shi-ren-min-zheng-fu-hua-zhou-shi-ren-min-zheng-fu}
+<Route data={{"path":"/miit/wjfb/:ministry","categories":["government"],"example":"/gov/miit/wjfb/ghs","parameters":{"ministry":"部门缩写,可以在对应 URL 中获取"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["miit.gov.cn/jgsj/:ministry/wjfb/index.html"]},"name":"文件发布","maintainers":["Fatpandac"],"location":"miit/wjfb.ts"}} />
-<Route author="ShuiHuo" example="/gov/huazhou/www/zwgk/zcjd" path="/gov/huazhou/:path+" paramsDesc={['路径,只填写 `www` 默认为 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
+### 文件公示 {#zhong-guo-ren-min-yin-hang-wen-jian-gong-shi}
- 若订阅 [政策解读](http://www.huazhou.gov.cn/syzl/zcjd/) 则将对应页面 URL `http://www.huazhou.gov.cn/syzl/zcjd/` 中 `http://www.huazhou.gov.cn/` 的字段 `www` `syzl/zcjd/` 作为路径填入。此时路由为 [`/gov/huazhou/www/syzl/zcjd/`](https://rsshub.app/gov/huazhou/www/syzl/zcjd/)
- :::
-</Route>
-
-### 广东茂名滨海新区政务网 {#mao-ming-shi-ren-min-zheng-fu-guang-dong-mao-ming-bin-hai-xin-qu-zheng-wu-wang}
-
-<Route author="ShuiHuo" example="/gov/mgs/www/zwgk/zcjd" path="/gov/mgs/:path+" paramsDesc={['路径,只填写 `www` 默认为 政务公开 > 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
-
- 若订阅 [政务公开 > 政策解读](http://www.mgs.gov.cn/zwgk/zcjd/) 则将对应页面 URL `http://www.mgs.gov.cn/zwgk/zcjd/` 中 `http://www.mgs.gov.cn/` 的字段 `www` 和 `zwgk/zcjd/` 作为路径填入。此时路由为 [`/gov/mgs/www/zwgk/zcjd/`](https://rsshub.app/gov/mgs/www/zwgk/zcjd/)
- :::
-</Route>
-
-### 广东茂名高新技术产业开发区 {#mao-ming-shi-ren-min-zheng-fu-guang-dong-mao-ming-gao-xin-ji-shu-chan-ye-kai-fa-qu}
-
-<Route author="ShuiHuo" example="/gov/mmht/www/xwzx/zcjd" path="/gov/mmht/:path+" paramsDesc={['路径,只填写 `www` 默认为 政务公开 > 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
-
- 若订阅 [政务公开 > 政策解读](http://www.mmht.gov.cn/xwzx/zcjd/) 则将对应页面 URL `http://www.mmht.gov.cn/xwzx/zcjd/` 中 `http://www.mmht.gov.cn/` 的字段 `www` 和 `xwzx/zcjd/` 作为路径填入。此时路由为 [`/gov/mmht/www/xwzx/zcjd/`](https://rsshub.app/gov/mmht/www/xwzx/zcjd/)
- :::
-</Route>
-
-### 广东省茂名水东湾新城建设管理委员会 {#mao-ming-shi-ren-min-zheng-fu-guang-dong-sheng-mao-ming-shui-dong-wan-xin-cheng-jian-she-guan-li-wei-yuan-hui}
-
-<Route author="ShuiHuo" example="/gov/sdb/www/zwgk/zcjd" path="/gov/sdb/:path+" paramsDesc={['路径,只填写 `www` 默认为 政务公开 > 政策解读']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中最前面的部分和域名后的字段。下面是一个例子。
-
- 若订阅 [政务公开 > 政策解读](http://www.sdb.gov.cn/zwgk/zcjd/) 则将对应页面 URL `http://www.sdb.gov.cn/zwgk/zcjd/` 中 `http://www.sdb.gov.cn/` 的字段 `www` 和 `zwgk/zcjd/` 作为路径填入。此时路由为 [`/gov/sdb/www/zwgk/zcjd/`](https://rsshub.app/gov/sdb/www/zwgk/zcjd/)
- :::
-</Route>
-
-## 南京鼓楼医院 {#nan-jing-gu-lou-yi-yuan}
-
-### 员工版教育培训 {#nan-jing-gu-lou-yi-yuan-yuan-gong-ban-jiao-yu-pei-xun}
+<Route data={{"path":"/miit/wjgs","categories":["government"],"example":"/gov/miit/wjgs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文件公示","maintainers":["Yoge-Code"],"location":"miit/wjgs.ts"}} />
-<Route author="real-jiakai" example="/njglyy/ygbjypx" path="/njglyy/ygbjypx" radar="1" />
+### 武汉要闻 {#zhong-guo-ren-min-yin-hang-wu-han-yao-wen}
-## 南京市人民政府 {#nan-jing-shi-ren-min-zheng-fu}
+<Route data={{"path":"/wuhan/sy/whyw","categories":["government"],"example":"/gov/wuhan/sy/whyw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wuhan.gov.cn/sy/whyw/","wuhan.gov.cn/whyw","wuhan.gov.cn/"]},"name":"武汉要闻","maintainers":["nczitzk"],"url":"wuhan.gov.cn/sy/whyw/","location":"wuhan/whyw.ts"}} />
-### 信息公开 {#nan-jing-shi-ren-min-zheng-fu-xin-xi-gong-kai}
+### 新闻 {#zhong-guo-ren-min-yin-hang-xin-wen}
-<Route author="ocleo1" example="/gov/city/nanjing/news" path="/gov/city/nanjing/:category" paramsDesc={['分类名']}>
- | 南京信息 | 部门动态 | 各区动态 | 民生信息 |
- | :------: | :--------: | :------: | :--------: |
- | news | department | district | livelihood |
-</Route>
+<Route data={{"path":"/moe/:type","categories":["government"],"example":"/gov/moe/policy_anal","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["Crawler995"],"description":"| 政策解读 | 最新文件 | 公告公示 | 教育部简报 | 教育要闻 |\n | :----------: | :----------: | :------: | :-----------------: | :--------------: |\n | policy_anal | newest_file | notice | edu_ministry_news | edu_focus_news |","location":"moe/moe.ts"}} />
-## 全国哲学社会科学工作办公室 {#quan-guo-zhe-xue-she-hui-ke-xue-gong-zuo-ban-gong-shi}
+| 政策解读 | 最新文件 | 公告公示 | 教育部简报 | 教育要闻 |
+| :----------: | :----------: | :------: | :-----------------: | :--------------: |
+| policy\_anal | newest\_file | notice | edu\_ministry\_news | edu\_focus\_news |
-### 通用 {#quan-guo-zhe-xue-she-hui-ke-xue-gong-zuo-ban-gong-shi-tong-yong}
+### 信息稿件 {#zhong-guo-ren-min-yin-hang-xin-xi-gao-jian}
-<Route author="nczitzk" example="/gov/nopss/GB/219469" path="/gov/nopss/:path+" paramsDesc={['路径,默认为通知公告']}>
- :::tip
- 路径处填写对应页面 URL 中 `http://www.nopss.gov.cn/` 后的字段。下面是一个例子。
+<Route data={{"path":"/zhengce/govall/:advance?","categories":["government"],"example":"/gov/zhengce/govall/orpro=555¬pro=2&search_field=title","parameters":{"advance":"高级搜索选项,将作为请求参数直接添加到url后。目前已知的选项及其意义如下。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.gov.cn/"],"target":"/zhengce/govall"},"name":"信息稿件","maintainers":["ciaranchen"],"url":"www.gov.cn/","description":"| 选项 | 意义 | 备注 |\n | :-----------------------------: | :----------------------------------------------: | :----------------------------: |\n | orpro | 包含以下任意一个关键词。 | 用空格分隔。 |\n | allpro | 包含以下全部关键词 | |\n | notpro | 不包含以下关键词 | |\n | inpro | 完整不拆分的关键词 | |\n | searchfield | title: 搜索词在标题中;content: 搜索词在正文中。 | 默认为空,即网页的任意位置。 |\n | pubmintimeYear, pubmintimeMonth | 从某年某月 | 单独使用月份参数无法只筛选月份 |\n | pubmaxtimeYear, pubmaxtimeMonth | 到某年某月 | 单独使用月份参数无法只筛选月份 |\n | colid | 栏目 | 比较复杂,不建议使用 |","location":"zhengce/govall.ts"}} />
- 若订阅 [年度项目、青年项目和西部项目](http://www.nopss.gov.cn/GB/219469/431027) 则将对应页面 URL `http://www.nopss.gov.cn/GB/219469/431027` 中 `http://www.nopss.gov.cn/` 后的字段 `GB/219469/431027` 作为路径填入。此时路由为 [`/gov/nopss/GB/219469/431027`](https://rsshub.app/gov/nopss/GB/219469/431027)
- :::
-</Route>
+| 选项 | 意义 | 备注 |
+| :-----------------------------: | :----------------------------------------------: | :----------------------------: |
+| orpro | 包含以下任意一个关键词。 | 用空格分隔。 |
+| allpro | 包含以下全部关键词 | |
+| notpro | 不包含以下关键词 | |
+| inpro | 完整不拆分的关键词 | |
+| searchfield | title: 搜索词在标题中;content: 搜索词在正文中。 | 默认为空,即网页的任意位置。 |
+| pubmintimeYear, pubmintimeMonth | 从某年某月 | 单独使用月份参数无法只筛选月份 |
+| pubmaxtimeYear, pubmaxtimeMonth | 到某年某月 | 单独使用月份参数无法只筛选月份 |
+| colid | 栏目 | 比较复杂,不建议使用 |
-## 泉州市跨境电子商务协会 {#quan-zhou-shi-kua-jing-dian-zi-shang-wu-xie-hui}
+### 徐州市人力资源和社会保障局 {#zhong-guo-ren-min-yin-hang-xu-zhou-shi-ren-li-zi-yuan-he-she-hui-bao-zhang-ju}
-### 新闻动态 {#quan-zhou-shi-kua-jing-dian-zi-shang-wu-xie-hui-xin-wen-dong-tai}
+<Route data={{"path":"/xuzhou/hrss/:category?","categories":["government"],"example":"/gov/xuzhou/hrss","parameters":{"category":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"徐州市人力资源和社会保障局","maintainers":["nczitzk"],"description":"| 通知公告 | 要闻动态 | 县区动态 | 事业招聘 | 企业招聘 | 政声传递 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | | 001001 | 001002 | 001004 | 001005 | 001006 |","location":"xuzhou/hrss.ts"}} />
-<Route author="nczitzk" example="/qzcea" path="/qzcea/:caty?" paramsDesc={['分类 id,默认为 `1`']}>
- | 新闻动态 | 协会动态 | 通知公告 | 会员风采 | 政策法规 | 电商资讯 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 5 | 14 | 18 |
-</Route>
+| 通知公告 | 要闻动态 | 县区动态 | 事业招聘 | 企业招聘 | 政声传递 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| | 001001 | 001002 | 001004 | 001005 | 001006 |
-## 山西省人民政府 {#shan-xi-sheng-ren-min-zheng-fu}
+### 要闻动态 {#zhong-guo-ren-min-yin-hang-yao-wen-dong-tai}
-### 人社厅 {#shan-xi-sheng-ren-min-zheng-fu-ren-she-ting}
+<Route data={{"path":"/mee/ywdt/:category?","categories":["government"],"example":"/gov/mee/ywdt/hjywnews","parameters":{"category":"分类名,预设 `szyw`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mee.gov.cn/ywdt/:category"],"target":"/mee/ywdt/:category"},"name":"要闻动态","maintainers":["liuxsdev"],"description":"| 时政要闻 | 环境要闻 | 地方快讯 | 新闻发布 | 视频新闻 | 公示公告 |\n| :------: | :------: | :------: | :------: | :------: | :------: |\n| szyw | hjywnews | dfnews | xwfb | spxw | gsgg |","location":"mee/ywdt.ts"}} />
-<Route author="wolfyu1991" example="/gov/shanxi/rst/rsks-tzgg" path="/gov/shanxi/rst/:category" paramsDesc={['分类名']} notOperational="1">
- | 通知公告 | 公务员考试 | 事业单位考试 | 专业技术人员资格考试 | 其他考试 |
- | :-------: | :--------: | :----------: | :------------------: | :-------: |
- | rsks-tzgg | rsks-gwyks | rsks-sydwks | rsks-zyjsryzgks | rsks-qtks |
-</Route>
-
-## 陕西省省人民政府 {#shan-xi-sheng-sheng-ren-min-zheng-fu}
-
-### 省科学技术厅 {#shan-xi-sheng-sheng-ren-min-zheng-fu-sheng-ke-xue-ji-shu-ting}
-
-<Route author="nczitzk" example="/gov/shaanxi/kjt" path="/gov/shaanxi/kjt/:id?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 科技头条 | 工作动态 | 基层科技 | 科技博览 | 媒体聚焦 | 通知公告 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 1061 | 24 | 27 | 25 | 28 | 221 |
-</Route>
-
-## 上海市人民政府 {#shang-hai-shi-ren-min-zheng-fu}
-
-### 上海市职业能力考试院 考试项目 {#shang-hai-shi-ren-min-zheng-fu-shang-hai-shi-zhi-ye-neng-li-kao-shi-yuan-kao-shi-xiang-mu}
-
-<Route author="Fatpandac" example="/gov/shanghai/rsj/ksxm" path="/gov/shanghai/rsj/ksxm" />
-
-### 上海卫健委 疫情通报 {#shang-hai-shi-ren-min-zheng-fu-shang-hai-wei-jian-wei-yi-qing-tong-bao}
-
-<Route author="zcf0508" example="/gov/shanghai/wsjkw/yqtb" path="/gov/shanghai/wsjkw/yqtb" notOperational="1" />
-
-### 上海市药品监督管理局 {#shang-hai-shi-ren-min-zheng-fu-shang-hai-shi-yao-pin-jian-du-guan-li-ju}
-
-<Route author="nczitzk" example="/gov/shanghai/yjj/zh" path="/gov/shanghai/yjj/:path+" paramsDesc={['路径参数']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://yjj.sh.gov.cn/` 与 `/index.html` 之间的字段,下面是一个例子。
-
- 若订阅 [最新信息公开 > 综合](https://yjj.sh.gov.cn/zh/index.html) 则将对应页面 URL `https://yjj.sh.gov.cn/zh/index.html` 中 `https://yjj.sh.gov.cn/` 和 `/index.html` 之间的字段 `zh` 作为路径填入。此时路由为 [`/gov/shanghai/yjj/zh`](https://rsshub.app/gov/shanghai/yjj/zh)
- :::
-</Route>
-
-### 上海市文旅局审批公告 {#shang-hai-shi-ren-min-zheng-fu-shang-hai-shi-wen-lv-ju-shen-pi-gong-gao}
-
-<Route author="gideonsenku" example="/gov/shanghai/wgj" path="/gov/shanghai/wgj/:page?" paramsDesc={['页数,默认第 1 页']} radar="1" />
-
-## 苏州市人民政府 {#su-zhou-shi-ren-min-zheng-fu}
-
-### 政府新闻 {#su-zhou-shi-ren-min-zheng-fu-zheng-fu-xin-wen}
-
-<Route author="EsuRt luyuhuang" example="/gov/suzhou/news/news" path="/gov/suzhou/news/:uid" paramsDesc={['栏目名']} radar="1">
- | 新闻栏目名 | :uid |
- | :--------: | :--------------: |
- | 苏州要闻 | news 或 szyw |
- | 区县快讯 | district 或 qxkx |
- | 部门动态 | bmdt |
- | 新闻视频 | xwsp |
- | 政务公告 | zwgg |
- | 便民公告 | mszx |
- | 民生资讯 | bmzx |
-
- | 热点专题栏目名 | :uid |
- | :------------: | :----: |
- | 热点专题 | rdzt |
- | 市本级专题 | sbjzt |
- | 最新热点专题 | zxrdzt |
- | 往期专题 | wqzt |
- | 区县专题 | qxzt |
-
- :::tip
- **热点专题**栏目包含**市本级专题**和**区县专题**
-
- **市本级专题**栏目包含**最新热点专题**和**往期专题**
-
- 如需订阅完整的热点专题,仅需订阅 **热点专题**`rdzt` 一项即可。
- :::
-</Route>
-
-### 政府信息公开文件 {#su-zhou-shi-ren-min-zheng-fu-zheng-fu-xin-xi-gong-kai-wen-jian}
-
-<Route author="EsuRt" example="/gov/suzhou/doc" path="/gov/suzhou/doc" radar="1" />
-
-### 苏州市发展和改革委员会 {#su-zhou-shi-ren-min-zheng-fu-su-zhou-shi-fa-zhan-he-gai-ge-wei-yuan-hui}
-
-<Route author="nczitzk" example="/gov/suzhou/fg/szfgw/ggl/nav_list" path="/gov/suzhou/fg/:category?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 发改要闻 |
- | ------------------- | -------------------- |
- | szfgw/ggl/nav\_list | szfgw/gzdt/nav\_list |
-</Route>
-
-## 台湾行政院消费者保护会 {#tai-wan-xing-zheng-yuan-xiao-fei-zhe-bao-hu-hui}
-
-### 消费资讯 {#tai-wan-xing-zheng-yuan-xiao-fei-zhe-bao-hu-hui-xiao-fei-zi-xun}
-
-<Route author="Fatpandac" example="/cpcey/xwg" path="/cpcey/:type?" paramsDesc={['默认为 `xwg`']}>
- | 新闻稿 | 消费资讯 |
- | :----: | :------: |
- | xwg | xfzx |
-</Route>
-
-## 台灣法務部廉政署 {#tai-wan-fa-wu-bu-lian-zheng-shu}
-
-### 最新消息 {#tai-wan-fa-wu-bu-lian-zheng-shu-zui-xin-xiao-xi}
-
-<Route author="TonyRL" example="/gov/moj/aac/news" path="/gov/moj/aac/news/:type?" paramsDesc={['資料大類,留空為全部']}>
- | 全部 | 其他 | 採購公告 | 新聞稿 | 肅貪 | 預防 | 綜合 | 防疫專區 |
- | ---- | ---- | -------- | ------ | ---- | ---- | ---- | -------- |
- | | 02 | 01 | 06 | 05 | 04 | 03 | 99 |
-</Route>
-
-## 台灣衛生福利部 {#tai-wan-wei-sheng-fu-li-bu}
-
-### 即時新聞澄清 {#tai-wan-wei-sheng-fu-li-bu-ji-shi-xin-wen-cheng-qing}
-
-<Route author="nczitzk" example="/mohw/clarification" path="/mohw/clarification" />
-
-## 太原市人民政府 {#tai-yuan-shi-ren-min-zheng-fu}
-
-### 太原市人力资源和社会保障局政府公开信息 {#tai-yuan-shi-ren-min-zheng-fu-tai-yuan-shi-ren-li-zi-yuan-he-she-hui-bao-zhang-ju-zheng-fu-gong-kai-xin-xi}
-
-<Route author="2PoL" example="/gov/taiyuan/rsj/gggs" path="/gov/taiyuan/rsj/:caty/:page?" paramsDesc={['信息类别', '页码']} notOperational="1">
- | 工作动态 | 太原新闻 | 通知公告 | 县区动态 | 国内动态 | 图片新闻 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | gzdt | tyxw | gggs | xqdt | gndt | tpxw |
-</Route>
-
-## 武汉东湖新技术开发区 {#wu-han-dong-hu-xin-ji-shu-kai-fa-qu}
-
-### 新闻中心 {#wu-han-dong-hu-xin-ji-shu-kai-fa-qu-xin-wen-zhong-xin}
-
-<Route author="tudou027" example="/gov/wuhan/wehdz/tz" path="/gov/wuhan/wehdz/:caty" paramsDesc={['类别']} notOperational="1">
- | 通知 | 公告 |
- | :--: | :--: |
- | tz | gg |
-</Route>
-
-## 武汉市科学技术局 {#wu-han-shi-ke-xue-ji-shu-ju}
-
-### 新闻中心 {#wu-han-shi-ke-xue-ji-shu-ju-xin-wen-zhong-xin}
-
-<Route author="tudou027" example="/gov/wuhan/kjj/tzgg" path="/gov/wuhan/kjj/:caty" paramsDesc={['类别']}>
- | 通知公告 | 公示信息 |
- | :------: | :------: |
- | tzgg | gsxx |
-</Route>
-
-## 武汉市人民政府 {#wu-han-shi-ren-min-zheng-fu}
-
-### 武汉要闻 {#wu-han-shi-ren-min-zheng-fu-wu-han-yao-wen}
-
-<Route author="nczitzk" example="/gov/wuhan/sy/whyw" path="/gov/wuhan/sy/whyw" radar="1" />
-
-## 香港卫生防护中心 {#xiang-gang-wei-sheng-fang-hu-zhong-xin}
-
-### 分类 {#xiang-gang-wei-sheng-fang-hu-zhong-xin-fen-lei}
-
-<Route author="nczitzk" example="/chp" path="/chp/:category?/:language?" paramsDesc={['分类,见下表,默认为重要资讯', '语言,见下表,默认为 `zh_tw`']} notOperational="1">
- 分类
-
- | 重要资讯 | 新闻稿 | 应变级别 | 期刊及刊物 | 健康通告 |
- | ------------- | ------------------ | ------------- | ----------- | ----------- |
- | important\_ft | press\_data\_index | ResponseLevel | publication | HealthAlert |
-
- 语言
-
- | English | 中文简体 | 中文繁體 |
- | ------- | -------- | -------- |
- | en | zh\_cn | zh\_tw |
-</Route>
-
-## 徐州市人民政府 {#xu-zhou-shi-ren-min-zheng-fu}
-
-### 徐州市人力资源和社会保障局 {#xu-zhou-shi-ren-min-zheng-fu-xu-zhou-shi-ren-li-zi-yuan-he-she-hui-bao-zhang-ju}
-
-<Route author="nczitzk" example="/gov/xuzhou/hrss" path="/gov/xuzhou/hrss/:category?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 通知公告 | 要闻动态 | 县区动态 | 事业招聘 | 企业招聘 | 政声传递 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | | 001001 | 001002 | 001004 | 001005 | 001006 |
-</Route>
-
-## 浙江省公务员考试录用网 {#zhe-jiang-sheng-gong-wu-yuan-kao-shi-lu-yong-wang}
-
-### 通知 {#zhe-jiang-sheng-gong-wu-yuan-kao-shi-lu-yong-wang-tong-zhi}
-
-<Route author="nczitzk" example="/gov/zhejiang/gwy/1" path="/gov/zhejiang/gwy/:category?/:column?" paramsDesc={['分类,见下表,默认为全部', '地市专栏,见下表,默认为全部']} notOperational="1">
- | 分类 | id |
- | ------------ | -- |
- | 重要通知 | 1 |
- | 招考公告 | 2 |
- | 招考政策 | 3 |
- | 面试体检考察 | 4 |
- | 录用公示专栏 | 5 |
-
- | 地市 | id |
- | ------------ | ----- |
- | 浙江省 | 133 |
- | 浙江省杭州市 | 13301 |
- | 浙江省宁波市 | 13302 |
- | 浙江省温州市 | 13303 |
- | 浙江省嘉兴市 | 13304 |
- | 浙江省湖州市 | 13305 |
- | 浙江省绍兴市 | 13306 |
- | 浙江省金华市 | 13307 |
- | 浙江省衢州市 | 13308 |
- | 浙江省舟山市 | 13309 |
- | 浙江省台州市 | 13310 |
- | 浙江省丽水市 | 13311 |
- | 省级单位 | 13317 |
-</Route>
-
-## 浙江省土地使用权网上交易系统 {#zhe-jiang-sheng-tu-di-shi-yong-quan-wang-shang-jiao-yi-xi-tong}
-
-### 公告信息 {#zhe-jiang-sheng-tu-di-shi-yong-quan-wang-shang-jiao-yi-xi-tong-gong-gao-xin-xi}
-
-<Route author="Fatpandac" example="/zjgtjy/all" path="/zjgtjy/:type" paramsDesc={['分类名']} notOperational="1">
- | 全部公告 | 挂牌公告 | 拍卖公告 | 补充公告 |
- | :------: | :------: | :------: | :------: |
- | all | gpgg | pmgg | bcgg |
-</Route>
-
-## 中国工业和信息化部 {#zhong-guo-gong-ye-he-xin-xi-hua-bu}
-
-### 政策解读 {#zhong-guo-gong-ye-he-xin-xi-hua-bu-zheng-ce-jie-du}
-
-<Route author="Yoge-Code" example="/gov/miit/zcjd" path="/gov/miit/zcjd" />
+| 时政要闻 | 环境要闻 | 地方快讯 | 新闻发布 | 视频新闻 | 公示公告 |
+| :------: | :------: | :------: | :------: | :------: | :------: |
+| szyw | hjywnews | dfnews | xwfb | spxw | gsgg |
-### 文件发布 {#zhong-guo-gong-ye-he-xin-xi-hua-bu-wen-jian-fa-bu}
+### 业务咨询 {#zhong-guo-ren-min-yin-hang-ye-wu-zi-xun}
-<Route author="Fatpandac" example="/gov/miit/wjfb/ghs" path="/gov/miit/wjfb/:ministry" paramsDesc={['部门缩写,可以在对应 URL 中获取']} />
+<Route data={{"path":"/safe/business/:site?","categories":["government"],"example":"/gov/safe/business/beijing","parameters":{"site":"站点,见上表,默认为 beijing"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"业务咨询","maintainers":["nczitzk"],"location":"safe/business.ts"}} />
-### 意见征集 {#zhong-guo-gong-ye-he-xin-xi-hua-bu-yi-jian-zheng-ji}
+### 意见征集 {#zhong-guo-ren-min-yin-hang-yi-jian-zheng-ji}
-<Route author="Fatpandac" example="/gov/miit/yjzj" path="/gov/miit/yjzj" />
+<Route data={{"path":"/miit/yjzj","categories":["government"],"example":"/gov/miit/yjzj","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["miit.gov.cn/gzcy/yjzj/index.html"]},"name":"意见征集","maintainers":["Fatpandac"],"url":"miit.gov.cn/gzcy/yjzj/index.html","location":"miit/yjzj.ts"}} />
-### 文件公示 {#zhong-guo-gong-ye-he-xin-xi-hua-bu-wen-jian-gong-shi}
+### 长沙市人民政府 {#zhong-guo-ren-min-yin-hang-chang-sha-shi-ren-min-zheng-fu}
-<Route author="Yoge-Code" example="/gov/miit/wjgs" path="/gov/miit/wjgs" />
+<Route data={{"path":"/hunan/changsha/major-email","categories":["government"],"example":"/gov/hunan/changsha/major-email","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wlwz.changsha.gov.cn/webapp/cs2020/email/*"]},"name":"长沙市人民政府","maintainers":["shansing"],"url":"wlwz.changsha.gov.cn/webapp/cs2020/email/*","description":"#### 市长信箱 {#hu-nan-sheng-ren-min-zheng-fu-chang-sha-shi-ren-min-zheng-fu-shi-zhang-xin-xiang}\n\n\n可能仅限中国大陆服务器访问,以实际情况为准。","location":"hunan/changsha/major-email.ts"}} />
-### 政策文件 {#zhong-guo-gong-ye-he-xin-xi-hua-bu-zheng-ce-wen-jian}
+#### 市长信箱 {#zhong-guo-ren-min-yin-hang-chang-sha-shi-ren-min-zheng-fu-shi-zhang-xin-xiang}
-<Route author="Yoge-Code" example="/gov/miit/zcwj" path="/gov/miit/zcwj" notOperational="1" />
+可能仅限中国大陆服务器访问,以实际情况为准。
-## 中国国家认证认可监管管理员会 {#zhong-guo-guo-jia-ren-zheng-ren-ke-jian-guan-guan-li-yuan-hui}
+### 政策解读 {#zhong-guo-ren-min-yin-hang-zheng-ce-jie-du}
-### 监管动态 {#zhong-guo-guo-jia-ren-zheng-ren-ke-jian-guan-guan-li-yuan-hui-jian-guan-dong-tai}
+<Route data={{"path":"/miit/zcjd","categories":["government"],"example":"/gov/miit/zcjd","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"政策解读","maintainers":["Yoge-Code"],"location":"miit/zcjd.ts"}} />
-<Route author="Yoge-Code" example="/gov/cnca/jgdt" path="/gov/cnca/jgdt" notOperational="1" />
+### 政策文件 {#zhong-guo-ren-min-yin-hang-zheng-ce-wen-jian}
-### 行业动态 {#zhong-guo-guo-jia-ren-zheng-ren-ke-jian-guan-guan-li-yuan-hui-hang-ye-dong-tai}
+<Route data={{"path":"/miit/zcwj","categories":["government"],"example":"/gov/miit/zcwj","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"政策文件","maintainers":["Yoge-Code"],"location":"miit/zcwj.ts"}} />
-<Route author="Yoge-Code" example="/gov/cnca/hydt" path="/gov/cnca/hydt" notOperational="1" />
+### 政府公开信息 {#zhong-guo-ren-min-yin-hang-zheng-fu-gong-kai-xin-xi}
-### 最新通知 {#zhong-guo-guo-jia-ren-zheng-ren-ke-jian-guan-guan-li-yuan-hui-zui-xin-tong-zhi}
+<Route data={{"path":"/sichuan/deyang/govpublicinfo/:countyName/:infoType?","categories":["government"],"example":"/gov/sichuan/deyang/govpublicinfo/绵竹市","parameters":{"countyName":"区县名(**其他区县整改中,暂时只支持`绵竹市`**)。德阳市、绵竹市、广汉市、什邡市、中江县、罗江区、旌阳区、高新区","infoType":"信息类型。默认值:fdzdnr-“法定主动内容”"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"政府公开信息","maintainers":["zytomorrow"],"description":"| 法定主动内容 | 公示公告 |\n | :----------: | :------: |\n | fdzdnr | gsgg |","location":"sichuan/deyang/govpublicinfo.ts"}} />
-<Route author="Yoge-Code" example="/gov/cnca/zxtz" path="/gov/cnca/zxtz" notOperational="1" />
+| 法定主动内容 | 公示公告 |
+| :----------: | :------: |
+| fdzdnr | gsgg |
-## 中国互联网络信息中心 {#zhong-guo-hu-lian-wang-luo-xin-xi-zhong-xin}
+### 政府新闻 {#zhong-guo-ren-min-yin-hang-zheng-fu-xin-wen}
-### 新闻中心 {#zhong-guo-hu-lian-wang-luo-xin-xi-zhong-xin-xin-wen-zhong-xin}
+<Route data={{"path":"/news/:uid","categories":["government"],"example":"/gov/news/bm","parameters":{"uid":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"政府新闻","maintainers":["EsuRt"],"description":"| 政务部门 | 滚动新闻 | 新闻要闻 | 国务院新闻 | 政策文件 |\n | :------: | :------: | :------: | :--------: | :------: |\n | bm | gd | yw | gwy | zhengce |","location":"news/index.ts"}} />
-<Route author="nczitzk" example="/gov/cnnic/gywm/xwzx/xwzxtzgg/" path="/gov/cnnic/:path+" paramsDesc={['路径,默认为热点信息']} notOperational="1">
- :::tip
- 路径处填写对应页面 URL 中 `http://www.cnnic.net.cn/` 后的字段。下面是一个例子。
+| 政务部门 | 滚动新闻 | 新闻要闻 | 国务院新闻 | 政策文件 |
+| :------: | :------: | :------: | :--------: | :------: |
+| bm | gd | yw | gwy | zhengce |
- 若订阅 [热点信息](http://www.cnnic.net.cn/gywm/xwzx/rdxw) 则将对应页面 URL `http://www.cnnic.net.cn/gywm/xwzx/rdxw` 中 `http://www.cnnic.net.cn/` 后的字段 `gywm/xwzx/rdxw` 作为路径填入。此时路由为 [`/gov/cnnic/gywm/xwzx/rdxw`](https://rsshub.app/gov/cnnic/gywm/xwzx/rdxw)
- :::
-</Route>
+### 政府新闻 {#zhong-guo-ren-min-yin-hang-zheng-fu-xin-wen}
-## 中国军网 {#zhong-guo-jun-wang}
+<Route data={{"path":"/suzhou/news/:uid","categories":["government"],"example":"/gov/suzhou/news/news","parameters":{"uid":"栏目名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.suzhou.gov.cn/szsrmzf/:uid/nav_list.shtml"]},"name":"政府新闻","maintainers":["EsuRt","luyuhuang"],"description":"| 新闻栏目名 | :uid |\n | :--------: | :--------------: |\n | 苏州要闻 | news 或 szyw |\n | 区县快讯 | district 或 qxkx |\n | 部门动态 | bmdt |\n | 新闻视频 | xwsp |\n | 政务公告 | zwgg |\n | 便民公告 | mszx |\n | 民生资讯 | bmzx |\n\n | 热点专题栏目名 | :uid |\n | :------------: | :----: |\n | 热点专题 | rdzt |\n | 市本级专题 | sbjzt |\n | 最新热点专题 | zxrdzt |\n | 往期专题 | wqzt |\n | 区县专题 | qxzt |\n\n :::tip\n **热点专题**栏目包含**市本级专题**和**区县专题**\n\n **市本级专题**栏目包含**最新热点专题**和**往期专题**\n\n 如需订阅完整的热点专题,仅需订阅 **热点专题**`rdzt` 一项即可。\n :::","location":"suzhou/news.ts"}} />
-### 军队人才网 {#zhong-guo-jun-wang-jun-dui-ren-cai-wang}
+| 新闻栏目名 | :uid |
+| :--------: | :--------------: |
+| 苏州要闻 | news 或 szyw |
+| 区县快讯 | district 或 qxkx |
+| 部门动态 | bmdt |
+| 新闻视频 | xwsp |
+| 政务公告 | zwgg |
+| 便民公告 | mszx |
+| 民生资讯 | bmzx |
-<Route author="nczitzk" example="/81/81rc" path="/81/81rc/:path+" paramsDesc={['路径,默认为工作动态']}>
- :::tip
- 若订阅 [文职人员 - 工作动态](https://81rc.81.cn/wzry/gzdt),网址为 `https://81rc.81.cn/wzry/gzdt`。截取 `https://81rc.81.cn` 到末尾的部分 `/wzry/gzdt` 作为参数,此时路由为 [`/81/81rc/wzry/gzdt`](https://rsshub.app/81/81rc/wzry/gzdt)。
+| 热点专题栏目名 | :uid |
+| :------------: | :----: |
+| 热点专题 | rdzt |
+| 市本级专题 | sbjzt |
+| 最新热点专题 | zxrdzt |
+| 往期专题 | wqzt |
+| 区县专题 | qxzt |
- 若订阅子分类 [文职人员 - 各部门各单位招考动态](https://81rc.81.cn/wzry/jwjgbmhddwzkdt),网址为 `https://81rc.81.cn/wzry/jwjgbmhddwzkdt`。截取 `https://81rc.81.cn` 到末尾的部分 `/wzry/jwjgbmhddwzkdt` 作为参数,此时路由为 [`/81/81rc/wzry/jwjgbmhddwzkdt`](https://rsshub.app/81/81rc/wzry/jwjgbmhddwzkdt)。
- :::
-</Route>
+:::tip
+**热点专题**栏目包含**市本级专题**和**区县专题**
-## 中国科学技术协会 {#zhong-guo-ke-xue-ji-shu-xie-hui}
+**市本级专题**栏目包含**最新热点专题**和**往期专题**
-### 通用 {#zhong-guo-ke-xue-ji-shu-xie-hui-tong-yong}
+如需订阅完整的热点专题,仅需订阅 **热点专题**`rdzt` 一项即可。
+:::
-<Route author="KarasuShin TonyRL" example="/cast/xw/tzgg/ZH" path="/cast/:column/:subColumn/:category?" paramsDesc={['栏目编号,见下表', '二级栏目编号','分类']} radar="1" notOperational="1">
- :::tip
- 在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,默认值为`10`
- :::
-
- | 分类 | 编码 |
- | -------- | ---- |
- | 全景科协 | qjkx |
- | 智库 | zk |
- | 学术 | xs |
- | 科普 | kp |
- | 党建 | dj |
- | 数据 | sj |
- | 新闻 | xw |
-</Route>
+### 政府信息公开文件 {#zhong-guo-ren-min-yin-hang-zheng-fu-xin-xi-gong-kai-wen-jian}
-## 中国科学学与科技政策研究会 {#zhong-guo-ke-xue-xue-yu-ke-ji-zheng-ce-yan-jiu-hui}
+<Route data={{"path":"/suzhou/doc","categories":["government"],"example":"/gov/suzhou/doc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.suzhou.gov.cn/szxxgk/front/xxgk_right.jsp","www.suzhou.gov.cn/"]},"name":"政府信息公开文件","maintainers":["EsuRt"],"url":"www.suzhou.gov.cn/szxxgk/front/xxgk_right.jsp","location":"suzhou/doc.ts"}} />
-### 研究会动态 {#zhong-guo-ke-xue-xue-yu-ke-ji-zheng-ce-yan-jiu-hui-yan-jiu-hui-dong-tai}
+### 专题 {#zhong-guo-ren-min-yin-hang-zhuan-ti}
-<Route author="nczitzk" example="/casssp/news/3" path="/casssp/news/:category?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 新闻动态 | 信息公开 | 时政要闻 |
- | -------- | -------- | -------- | -------- |
- | 3 | 2 | 92 | 93 |
-</Route>
+<Route data={{"path":"/mof/bond/:category?","categories":["government"],"example":"/gov/mof/bond","parameters":{"category":"专题,见下表,默认为国债管理工作动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专题","maintainers":["la3rence"],"description":"#### 政府债券管理\n\n | 国债管理工作动态 | 记账式国债 (含特别国债) 发行 | 储蓄国债发行 | 地方政府债券管理 |\n | ---------------- | ---------------------------- | ------------ | --------------------- |\n | gzfxgzdt | gzfxzjs | gzfxdzs | difangzhengfuzhaiquan |","location":"mof/bond.ts"}} />
-## 中国民用航空局 {#zhong-guo-min-yong-hang-kong-ju}
+#### 政府债券管理 {#zhong-guo-ren-min-yin-hang-zhuan-ti-zheng-fu-zhai-quan-guan-li}
-### 公众留言 {#zhong-guo-min-yong-hang-kong-ju-gong-zhong-liu-yan}
+| 国债管理工作动态 | 记账式国债 (含特别国债) 发行 | 储蓄国债发行 | 地方政府债券管理 |
+| ---------------- | ---------------------------- | ------------ | --------------------- |
+| gzfxgzdt | gzfxzjs | gzfxdzs | difangzhengfuzhaiquan |
-<Route author="nczitzk" example="/gov/caac/cjwt" path="/gov/caac/cjwt/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1">
- | 机票 | 托运 | 无人机 | 体检 | 行政审批 | 投诉 |
- | ---- | ---- | ------ | ---- | -------- | ---- |
-</Route>
+### 最新文件 {#zhong-guo-ren-min-yin-hang-zui-xin-wen-jian}
-## 中国农工民主党 {#zhong-guo-nong-gong-min-zhu-dang}
+<Route data={{"path":"/chinatax/latest","categories":["government"],"example":"/gov/chinatax/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.chinatax.gov.cn/*"]},"name":"最新文件","maintainers":["nczitzk","fuzy112"],"url":"www.chinatax.gov.cn/*","location":"chinatax/latest.ts"}} />
-### 新闻中心 {#zhong-guo-nong-gong-min-zhu-dang-xin-wen-zhong-xin}
+### 最新文件 {#zhong-guo-ren-min-yin-hang-zui-xin-wen-jian}
-<Route author="nczitzk" example="/ngd" path="/ngd/:slug?" paramsDesc={['见下文']} notOperational="1">
- 将目标栏目的网址拆解为 `http://www.ngd.org.cn/` 和后面的字段,去掉 `.htm` 后,把后面的字段中的 `/` 替换为 `-`,即为该路由的 slug
+<Route data={{"path":"/zhengce/wenjian/:pcodeJiguan?","categories":["government"],"example":"/gov/zhengce/wenjian","parameters":{"pcodeJiguan":"文种分类。国令、国发、国函、国发明电、国办发、国办函、国办发明电、其他"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.gov.cn/"],"target":"/zhengce/wenjian"},"name":"最新文件","maintainers":["ciaranchen"],"url":"www.gov.cn/","location":"zhengce/wenjian.ts"}} />
- 如:(要闻动态)`http://www.ngd.org.cn/xwzx/ywdt/index.htm` 的网址在 `http://www.ngd.org.cn/` 后的字段是 `xwzx/ywdt/index.htm`,则对应的 slug 为 `xwzx-ywdt-index`,对应的路由即为 `/ngd/xwzx-ywdt-index`
-</Route>
+### 最新消息 {#zhong-guo-ren-min-yin-hang-zui-xin-xiao-xi}
-## 中国人大网 {#zhong-guo-ren-da-wang}
+<Route data={{"path":"/moj/aac/news/:type?","categories":["government"],"example":"/gov/moj/aac/news","parameters":{"type":"資料大類,留空為全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新消息","maintainers":["TonyRL"],"description":"| 全部 | 其他 | 採購公告 | 新聞稿 | 肅貪 | 預防 | 綜合 | 防疫專區 |\n | ---- | ---- | -------- | ------ | ---- | ---- | ---- | -------- |\n | | 02 | 01 | 06 | 05 | 04 | 03 | 99 |","location":"moj/aac/news.ts"}} />
-### 通用 {#zhong-guo-ren-da-wang-tong-yong}
+| 全部 | 其他 | 採購公告 | 新聞稿 | 肅貪 | 預防 | 綜合 | 防疫專區 |
+| ---- | ---- | -------- | ------ | ---- | ---- | ---- | -------- |
+| | 02 | 01 | 06 | 05 | 04 | 03 | 99 |
-<Route author="233yeee" example="/gov/npc/c183" path="/gov/npc/:caty" paramsDesc={['分类名,支持形如 `http://www.npc.gov.cn/npc/c2/*/` 的网站,传入 npc 之后的参数']}>
- | 立法 | 监督 | 代表 | 理论 | 权威发布 | 滚动新闻 |
- | ---- | ---- | ---- | ---- | -------- | -------- |
- | c183 | c184 | c185 | c189 | c12435 | c10134 |
-</Route>
+### 最新政策 {#zhong-guo-ren-min-yin-hang-zui-xin-zheng-ce}
-## 中国庭审公开网 {#zhong-guo-ting-shen-gong-kai-wang}
+<Route data={{"path":["/zhengce/zuixin","/zhengce/:category{.+}?"],"categories":["government"],"example":"/gov/zhengce/zuixin","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.gov.cn/zhengce/zuixin.htm","www.gov.cn/"]},"name":"最新政策","maintainers":["SettingDust","nczitzk"],"url":"www.gov.cn/zhengce/zuixin.htm","location":"zhengce/index.ts"}} />
-### 开庭信息 {#zhong-guo-ting-shen-gong-kai-wang-kai-ting-xin-xi}
+### 最新政策 {#zhong-guo-ren-min-yin-hang-zui-xin-zheng-ce}
-<Route author="Fatpandac" example="/tingshen" path="/tingshen" />
+<Route data={{"path":["/zhengce/zuixin","/zhengce/:category{.+}?"],"categories":["government"],"example":"/gov/zhengce/zuixin","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.gov.cn/zhengce/zuixin.htm","www.gov.cn/"]},"name":"最新政策","maintainers":["SettingDust","nczitzk"],"url":"www.gov.cn/zhengce/zuixin.htm","location":"zhengce/index.ts"}} />
## 中国无线电协会业余无线电分会 {#zhong-guo-wu-xian-dian-xie-hui-ye-yu-wu-xian-dian-fen-hui}
### 最新资讯 {#zhong-guo-wu-xian-dian-xie-hui-ye-yu-wu-xian-dian-fen-hui-zui-xin-zi-xun}
-<Route author="Misaka13514" example="/crac/2" path="/crac/:type?" paramsDesc={['类型,见下表,默认为全部']} radar="1">
- | 新闻动态 | 通知公告 | 政策法规 | 常见问题 | 资料下载 | English | 业余中继台 | 科普专栏 |
- | -------- | -------- | -------- | -------- | -------- | ------- | ---------- | -------- |
- | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 |
-</Route>
-
-## 中国信息通信研究院 {#zhong-guo-xin-xi-tong-xin-yan-jiu-yuan}
-
-### 白皮书 {#zhong-guo-xin-xi-tong-xin-yan-jiu-yuan-bai-pi-shu}
-
-<Route author="nczitzk" example="/gov/caict/bps" path="/gov/caict/bps" />
-
-### 权威数据 {#zhong-guo-xin-xi-tong-xin-yan-jiu-yuan-quan-wei-shu-ju}
-
-<Route author="nczitzk" example="/gov/caict/qwsj" path="/gov/caict/qwsj" />
-
-### CAICT 观点 {#zhong-guo-xin-xi-tong-xin-yan-jiu-yuan-caict-guan-dian}
-
-<Route author="nczitzk" example="/gov/caict/caictgd" path="/gov/caict/caictgd" />
-
-## 中国银行保险监督管理委员会 {#zhong-guo-yin-hang-bao-xian-jian-du-guan-li-wei-yuan-hui}
-
-### 分类 {#zhong-guo-yin-hang-bao-xian-jian-du-guan-li-wei-yuan-hui-fen-lei}
-
-<Route author="JkCheung" example="/cbirc/" path="/cbirc/:category" paramsDesc={['类目']}>
- | 监管动态 | 公告通知 | 政策法规 | 政策解读 | 征求意见 | 行政许可 | 行政处罚 | 行政监管措施 | 工作论文 | 金融监管研究 | 统计信息 |
- | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :----------: | :------: | :----------: | :------: |
- | jgdt | ggtz | zcfg | zcjd | zqyj | xzxk | xzcf | xzjgcs | gzlw | jrjgyj | tjxx |
-</Route>
-
-## 中国载人航天 {#zhong-guo-zai-ren-hang-tian}
-
-### 综合新闻 {#zhong-guo-zai-ren-hang-tian-zong-he-xin-wen}
-
-<Route author="nczitzk" example="/gov/cmse/xwzx/zhxw" path="/gov/cmse/xwzx/zhxw" />
-
-### 研制进展 {#zhong-guo-zai-ren-hang-tian-yan-zhi-jin-zhan}
-
-<Route author="nczitzk" example="/gov/cmse/xwzx/yzjz" path="/gov/cmse/xwzx/yzjz" />
-
-### 官方公告 {#zhong-guo-zai-ren-hang-tian-guan-fang-gong-gao}
-
-<Route author="nczitzk" example="/gov/cmse/gfgg" path="/gov/cmse/gfgg" />
-
-### 飞行任务 {#zhong-guo-zai-ren-hang-tian-fei-xing-ren-wu}
-
-<Route author="nczitzk" example="/gov/cmse/fxrw" path="/gov/cmse/fxrw" />
-
-### 任务动态 {#zhong-guo-zai-ren-hang-tian-ren-wu-dong-tai}
-
-<Route author="nczitzk" example="/gov/cmse/fxrw/wtfx/rwdt" path="/gov/cmse/fxrw/:id/:category" paramsDesc={['任务 id,可在对应任务页 URL 中找到', '分类 id,见下表,可在对应任务页 URL 中找到']}>
- :::tip
- 下表分类可能并不完整。请查看各飞行任务详情页获得完整分类。
- :::
-
- | 任务动态 | 综合新闻 | 视频 | 图片新闻 | 媒体聚焦 |
- | -------- | -------- | ---- | -------- | -------- |
- | rwdt | zhxw | sp | tpxw | mtjj |
-</Route>
-
-### 空间科学 {#zhong-guo-zai-ren-hang-tian-kong-jian-ke-xue}
-
-<Route author="nczitzk" example="/gov/cmse/kjkx/kjkxyjyyy" path="/gov/cmse/kjkx/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']}>
- | 空间科学研究与应用 | 航天技术试验 | 航天医学实验 |
- | ------------------ | ------------ | ------------ |
- | kjkxyjyyy | htjssy | htyxsy |
-</Route>
-
-### 国际合作 {#zhong-guo-zai-ren-hang-tian-guo-ji-he-zuo}
-
-<Route author="nczitzk" example="/gov/cmse/gjhz" path="/gov/cmse/gjhz" />
-
-### 环球视野 {#zhong-guo-zai-ren-hang-tian-huan-qiu-shi-ye}
-
-<Route author="nczitzk" example="/gov/cmse/hqsy/zxdta" path="/gov/cmse/hqsy/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']}>
- | 最新动态 | 美国 | 俄罗斯 | 欧洲 | 日本 | 印度 | 领域动态 |
- | -------- | ---- | ------ | ---- | ---- | ---- | -------- |
- | zxdta | mg | els | oz | rb | yd | lydt |
-</Route>
-
-### 专题报道 {#zhong-guo-zai-ren-hang-tian-zhuan-ti-bao-dao}
-
-<Route author="nczitzk" example="/gov/cmse/ztbd/xwfbh" path="/gov/cmse/ztbd/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']}>
- | 新闻发布会 | 学术大会 | 标准 | 新闻专题 |
- | ---------- | -------- | ---- | -------- |
- | xwfdh | xsdh | bz | xwzt |
-</Route>
-
-### 科普教育 {#zhong-guo-zai-ren-hang-tian-ke-pu-jiao-yu}
-
-<Route author="nczitzk" example="/gov/cmse/kpjy/kphd" path="/gov/cmse/kpjy/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']}>
- | 科普活动 | 太空课堂 | 航天知识 |
- | -------- | -------- | -------- |
- | kphd | tkkt | ttzs |
-</Route>
-
-## 中国证券监督管理委员会 {#zhong-guo-zheng-quan-jian-du-guan-li-wei-yuan-hui}
-
-### 通用 {#zhong-guo-zheng-quan-jian-du-guan-li-wei-yuan-hui-tong-yong}
-
-<Route author="chinobing LogicJake" example="/gov/csrc/news/c101975/zfxxgk_zdgk.shtml" path="/gov/csrc/news/:suffix*" paramsDesc={['路径,预设为 `c100028/common_xq_list.shtml`']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `http://www.csrc.gov.cn/csrc/` 后的字段。下面是一个例子。
-
- 若订阅 [证监会要闻](http://www.csrc.gov.cn/csrc/c100028/common_xq_list.shtml) 则将对应页面 URL `http://www.csrc.gov.cn/csrc/c100028/common_xq_list.shtml` 中 `http://www.csrc.gov.cn/csrc/` 后的字段 `c100028/common_xq_list.shtml` 作为路径填入。此时路由为 [`/gov/csrc/news/c100028/common_xq_list.shtml`](https://rsshub.app/gov/csrc/news/c100028/common_xq_list.shtml)
- :::
-</Route>
-
-### 申请事项进度 {#zhong-guo-zheng-quan-jian-du-guan-li-wei-yuan-hui-shen-qing-shi-xiang-jin-du}
-
-<Route author="hillerliao" example="/gov/csrc/auditstatus/9ce91cf2d750ee62de27fbbcb05fa483" path="/gov/csrc/auditstatus/:apply_id" paramsDesc={['事项类别id,`https://neris.csrc.gov.cn/alappl/home/xkDetail` 列表中各地址的 appMatrCde 参数']} radar="1" notOperational="1" />
-
-## 中国政府网 {#zhong-guo-zheng-fu-wang}
-
-### 数据 {#zhong-guo-zheng-fu-wang-shu-ju}
-
-<Route author="nczitzk" example="/gov/shuju/shengzhu/baitiaorou" path="/gov/shuju/:caty/:item" paramsDesc={['分类,“生猪”对应`shengzhu`,“价格”对应`jiage`', '项目,见表']} notOperational="1">
- 生猪分类可选项目:
-
- | 白条猪价格 | 生猪屠宰与活体交易 | 仔猪价格 | 生猪出场价与玉米价 | 生猪存栏信息和生猪疫情 |
- | ---------- | ------------------ | -------- | -------------------- | ---------------------- |
- | baitiaorou | huotijiaoyi | zizhu | chuchangjia\_yumijia | cunlan\_yiqing |
-
- 价格分类可选项目:
-
- | 商品价格 | 农产品价格 | 油价 |
- | -------- | ----------- | ------ |
- | shangpin | nongchanpin | youjia |
-</Route>
-
-### 图解 {#zhong-guo-zheng-fu-wang-tu-jie}
-
-<Route author="nczitzk" example="/gov/xinwen/tujie/zhengce" path="/gov/xinwen/tujie/:caty" paramsDesc={['图解分类,见下表']} notOperational="1">
- | 总理活动图解 | 每周一画 | 其他漫画 | 图解政策 | 其他图解 |
- | ------------ | -------- | -------- | -------- | -------- |
- | zlhd | mzyh | qtmh | zhengce | qttj |
-
- 全部分类参见 [图解图表](http://www.gov.cn/xinwen/tujie/index.htm)
-</Route>
-
-### 政策 {#zhong-guo-zheng-fu-wang-zheng-ce}
-
-<Route author="nczitzk" example="/gov/zhengce" path="/gov/zhengce/:category?" paramsDesc={['分类,见下表,默认为最新']} radar="1">
- | 最新政策 | 政策解读 | 图解政策 |
- | -------- | -------- | ----------- |
- | zuixin | jiedu | jiedu/tujie |
-</Route>
-
-### 最新政策 {#zhong-guo-zheng-fu-wang-zui-xin-zheng-ce}
-
-<Route author="SettingDust nczitzk" example="/gov/zhengce/zuixin" path="/gov/zhengce/zuixin" radar="1" />
-
-### 最新文件 {#zhong-guo-zheng-fu-wang-zui-xin-wen-jian}
-
-<Route author="ciaranchen" example="/gov/zhengce/wenjian" path="/gov/zhengce/wenjian/:pcodeJiguan?" paramsDesc={['文种分类。国令、国发、国函、国发明电、国办发、国办函、国办发明电、其他']} notOperational="1" />
-
-### 信息稿件 {#zhong-guo-zheng-fu-wang-xin-xi-gao-jian}
-
-<Route author="ciaranchen" example="/gov/zhengce/govall/orpro=555¬pro=2&search_field=title" path="/gov/zhengce/govall/:advance?" paramsDesc={['高级搜索选项,将作为请求参数直接添加到url后。目前已知的选项及其意义如下。' ]} notOperational="1">
- | 选项 | 意义 | 备注 |
- | :-----------------------------: | :----------------------------------------------: | :----------------------------: |
- | orpro | 包含以下任意一个关键词。 | 用空格分隔。 |
- | allpro | 包含以下全部关键词 | |
- | notpro | 不包含以下关键词 | |
- | inpro | 完整不拆分的关键词 | |
- | searchfield | title: 搜索词在标题中;content: 搜索词在正文中。 | 默认为空,即网页的任意位置。 |
- | pubmintimeYear, pubmintimeMonth | 从某年某月 | 单独使用月份参数无法只筛选月份 |
- | pubmaxtimeYear, pubmaxtimeMonth | 到某年某月 | 单独使用月份参数无法只筛选月份 |
- | colid | 栏目 | 比较复杂,不建议使用 |
-</Route>
-
-### 国务院政策文件库 {#zhong-guo-zheng-fu-wang-guo-wu-yuan-zheng-ce-wen-jian-ku}
-
-<Route author="zxx-457" example="/gov/zhengce/zhengceku/bmwj" path="/gov/zhengce/zhengceku/:department" paramsDesc={['库名']} />
-
-### 政府新闻 {#zhong-guo-zheng-fu-wang-zheng-fu-xin-wen}
-
-<Route author="EsuRt" example="/gov/news/bm" path="/gov/news/:uid" paramsDesc={['分类名']}>
- | 政务部门 | 滚动新闻 | 新闻要闻 | 国务院新闻 | 政策文件 |
- | :------: | :------: | :------: | :--------: | :------: |
- | bm | gd | yw | gwy | zhengce |
-</Route>
-
-### 吹风会 {#zhong-guo-zheng-fu-wang-chui-feng-hui}
-
-<Route author="EsuRt" example="/gov/statecouncil/briefing" path="/gov/statecouncil/briefing" />
-
-## 中国政协网 {#zhong-guo-zheng-xie-wang}
-
-### 栏目 {#zhong-guo-zheng-xie-wang-lan-mu}
-
-<Route author="nczitzk" example="/cppcc" path="/cppcc/:slug?" paramsDesc={['见下文']} notOperational="1">
- 将目标栏目的网址拆解为 `http://www.cppcc.gov.cn/` 和后面的字段,去掉 `.shtml` 后,把后面的字段中的 `/` 替换为 `-`,即为该路由的 slug
-
- 如:(委员建言)`http://www.cppcc.gov.cn/zxww/newcppcc/wyjy/index.shtml` 的网址在 `http://www.cppcc.gov.cn/` 后的字段是 `zxww/newcppcc/wyjy/index.shtml`,则对应的 slug 为 `zxww-newcppcc-wyjy-index`,对应的路由即为 `/cppcc/zxww-newcppcc-wyjy-index`
-</Route>
-
-## 中国驻外使领馆 {#zhong-guo-zhu-wai-shi-ling-guan}
-
-支持国家列表
-
-加拿大 `CA`
-
-- 大使馆: `/embassy/ca`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| -------- | ---------------------- |
-| 蒙特利尔 | `/embassy/ca/montreal` |
-
-* * *
-
-德国 `DE`
-
-- 大使馆: `/embassy/de`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ------ | -------------------- |
-| 慕尼黑 | `/embassy/de/munich` |
-
-* * *
-
-法国 `FR`
-
-- 大使馆: `/embassy/fr`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ---------- | ------------------------ |
-| 马赛 | `/embassy/fr/marseille` |
-| 斯特拉斯堡 | `/embassy/fr/strasbourg` |
-| 里昂 | `/embassy/fr/lyon` |
-
-* * *
-
-日本 `JP`
-
-- 大使馆: `/embassy/jp`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ------ | ---------------------- |
-| 长崎 | `/embassy/jp/nagasaki` |
-| 大阪 | `/embassy/jp/osaka` |
-| 福冈 | `/embassy/jp/fukuoka` |
-| 名古屋 | `/embassy/jp/nagoya` |
-| 札幌 | `/embassy/jp/sapporo` |
-| 新潟 | `/embassy/jp/niigata` |
-
-* * *
-
-韩国 `KR`
-
-- 大使馆: `/embassy/kr`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ---- | --------------------- |
-| 釜山 | `/embassy/kr/busan` |
-| 济州 | `/embassy/kr/jeju` |
-| 光州 | `/embassy/kr/gwangju` |
-
-* * *
-
-马来西亚 `MY`
-
-- 大使馆: `/embassy/my`
-
-* * *
-
-新加坡 `SG`
-
-- 大使馆: `/embassy/sg`
-
-* * *
-
-美国 `US`
-
-- 大使馆: `/embassy/us`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ------ | -------------------------- |
-| 纽约 | `/embassy/us/newyork` |
-| 芝加哥 | `/embassy/us/chicago` |
-| 旧金山 | `/embassy/us/sanfrancisco` |
-
-* * *
-
-英国 `UK`
-
-- 大使馆: `/embassy/uk`
-
-- 领事馆城市列表:
-
-| 城市 | 路由 |
-| ---------- | ------------------------ |
-| 爱丁堡 | `/embassy/uk/edinburgh` |
-| 贝尔法斯特 | `/embassy/uk/belfast` |
-| 曼彻斯特 | `/embassy/uk/manchester` |
-
-### 大使馆重要通知 {#zhong-guo-zhu-wai-shi-ling-guan-da-shi-guan-zhong-yao-tong-zhi}
-
-<Route author="HenryQW" example="/embassy/us" path="/embassy/:country" paramsDesc={['国家短代码, 见支持国家列表', '城市, 对应国家列表下的`领事馆城市列表`']} />
-
-### 领事馆重要通知 {#zhong-guo-zhu-wai-shi-ling-guan-ling-shi-guan-zhong-yao-tong-zhi}
-
-<Route author="HenryQW" example="/embassy/us/chicago" path="/embassy/:country/:city" paramsDesc={['国家短代码, 见支持国家列表', '城市, 对应国家列表下的`领事馆城市列表`']} />
-
-## 中华人民共和国财政部 {#zhong-hua-ren-min-gong-he-guo-cai-zheng-bu}
-
-### 专题 {#zhong-hua-ren-min-gong-he-guo-cai-zheng-bu-zhuan-ti}
-
-<Route author="la3rence" example="/gov/mof/bond" path="/gov/mof/bond/:category?" paramsDesc={['专题,见下表,默认为国债管理工作动态']} radar="1">
- #### 政府债券管理
-
- | 国债管理工作动态 | 记账式国债 (含特别国债) 发行 | 储蓄国债发行 | 地方政府债券管理 |
- | ---------------- | ---------------------------- | ------------ | --------------------- |
- | gzfxgzdt | gzfxzjs | gzfxdzs | difangzhengfuzhaiquan |
-</Route>
-
-## 中华人民共和国国家发展和改革委员会 {#zhong-hua-ren-min-gong-he-guo-guo-jia-fa-zhan-he-gai-ge-wei-yuan-hui}
-
-### 新闻动态 {#zhong-hua-ren-min-gong-he-guo-guo-jia-fa-zhan-he-gai-ge-wei-yuan-hui-xin-wen-dong-tai}
-
-<Route author="nczitzk" example="/gov/ndrc/xwdt" path="/gov/ndrc/xwdt/:category?">
- | 新闻发布 | 通知通告 | 委领导动态 | 司局动态 | 地方动态 |
- | -------- | -------- | ---------- | -------- | -------- |
- | xwfb | tzgg | wlddt | sjdt | dfdt |
-</Route>
-
-### 发展改革工作 {#zhong-hua-ren-min-gong-he-guo-guo-jia-fa-zhan-he-gai-ge-wei-yuan-hui-fa-zhan-gai-ge-gong-zuo}
-
-<Route author="nczitzk" example="/gov/ndrc/fggz" path="/gov/ndrc/fggz/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- <details>
- <summary>全部分类</summary>
-
- #### 机关办公
-
- | 业务工作 | 学思践悟 |
- | --------- | --------- |
- | jgbg/ywgz | jgbg/xsjw |
-
- #### 发改政研
-
- | 经济数据概览 | 社会关切回应 | 新媒体解读 |
- | ------------ | ------------ | ---------- |
- | fgzy/jjsjgl | fgzy/shgqhy | fgzy/xmtjd |
-
- #### 发展战略和规划
-
- | 国家发展战略和规划 | 国家级专项规划 | 地方发展规划 | 发展规划工作 |
- | ------------------ | -------------- | ------------- | ------------- |
- | fzzlgh/gjfzgh | fzzlgh/gjjzxgh | fzzlgh/dffzgh | fzzlgh/fzgggz |
-
- #### 发改综合
-
- | 国内经济监测 | 工业经济 | 投资运行 | 市场消费 |
- | ------------ | ---------------- | ---------------- | ---------------- |
- | fgzh/gnjjjc | fgzh/gnjjjc/gyjj | fgzh/gnjjjc/tzyx | fgzh/gnjjjc/scxf |
-
- | 价格情况 | 财政收支 | 货币金融 | 就业情况 |
- | ---------------- | ---------------- | ---------------- | ---------------- |
- | fgzh/gnjjjc/jgqk | fgzh/gnjjjc/czsz | fgzh/gnjjjc/hbjr | fgzh/gnjjjc/jyqk |
-
- | 地区经济 | 国际经济监测 | 先行指数 | 大宗商品市场情况 |
- | ---------------- | ------------ | ---------------- | -------------------- |
- | fgzh/gnjjjc/dqjj | fgzh/gjjjjc | fgzh/gjjjjc/xxzs | fgzh/gjjjjc/dzspscqk |
-
- | 国别分析 | 国际组织预测和研究动态 | 国际组织预测 | 国际组织研究动态 |
- | ---------------- | ---------------------- | ----------------------- | ------------------------- |
- | fgzh/gjjjjc/gbfx | fgzh/gjzzychyjdt | fgzh/gjzzychyjdt/gjzzyc | fgzh/gjzzychyjdt/gjzzyjdt |
-
- #### 经济运行与调节
-
- | 宏观经济运行 | 地方经济运行 | 煤电油气运 | 现代物流 |
- | ------------- | ------------- | ------------ | ----------- |
- | jjyxtj/hgjjyx | jjyxtj/dfjjyx | jjyxtj/mdyqy | jjyxtj/xdwl |
-
- #### 体制改革
-
- | 改革快讯 | 半月改革动态 | 地方改革经验 |
- | --------- | ------------ | ------------ |
- | tzgg/ggkx | tzgg/byggdt | tzgg/dfggjx |
-
- #### 固定资产投资
-
- | 投资法规与政策动态 |
- | ------------------ |
- | gdzctz/tzfg |
-
- #### 利用外资和境外投资
-
- | 境外投资 | 外商投资 | 外债管理 | 政策法规 |
- | ----------- | ----------- | ----------- | ----------- |
- | lywzjw/jwtz | lywzjw/wstz | lywzjw/wzgl | lywzjw/zcfg |
-
- #### 地区经济
-
- | 重大战略 | 四大板块 | 国土海洋流域新区 |
- | --------- | --------- | ---------------- |
- | dqjj/zdzl | dqjj/sdbk | dqjj/qt |
-
- #### 地区振兴
-
- | 巩固拓展脱贫攻坚成果和欠发达地区振兴发展 | 对口支援与合作 | 革命老区振兴发展 | 生态退化地区治理 |
- | ---------------------------------------- | -------------- | ---------------- | ---------------- |
- | dqzx/tpgjypkfq | dqzx/dkzyyhz | dqzx/gglqzxfz | dqzx/stthdqzl |
-
- #### 区域开放
-
- | 信息集萃 |
- | --------- |
- | qykf/xxjc |
-
- #### 农业农村经济
-
- | 重点建设 | 投资指南 | 乡村振兴 | 农经信息 |
- | ----------- | ----------- | ----------- | ----------- |
- | nyncjj/zdjs | nyncjj/tzzn | nyncjj/xczx | nyncjj/njxx |
-
- #### 基础设施发展
-
- | 政策规划 | 城轨监管 | 重大工程 | 问题研究 |
- | ----------- | ----------- | ----------- | ----------- |
- | zcssfz/zcgh | zcssfz/cgjg | zcssfz/zdgc | zcssfz/wtyj |
-
- #### 产业发展
-
- | 制造业发展 | 服务业发展 |
- | ---------- | ---------- |
- | cyfz/zcyfz | cyfz/fwyfz |
-
- #### 创新和高技术发展
-
- | 地方进展 |
- | ------------- |
- | cxhgjsfz/dfjz |
-
- #### 环境与资源
-
- | 碳达峰碳中和 | 生态文明建设 | 节能和能效 | 资源利用和循环经济 |
- | ------------ | ------------ | ----------- | ------------------ |
- | hjyzy/tdftzh | hjyzy/stwmjs | hjyzy/jnhnx | hjyzy/zyzhlyhxhjj |
-
- #### 就业与收入
-
- | 就业收入社保消费 | 地方经验 |
- | ---------------- | ---------- |
- | jyysr/jysrsbxf | jyysr/dfjx |
-
- #### 经济贸易
-
- | 重要商品情况 | 对外经贸及政策分析 | 流通业发展 |
- | ------------ | ------------------ | ---------- |
- | jjmy/zyspqk | jjmy/dwjmjzcfx | jjmy/ltyfz |
-
- #### 财金信用
-
- | 工作动态 |
- | ----------- |
- | cjxy/gzdt03 |
-
- #### 价格管理
-
- | 地方工作 |
- | --------- |
- | jggl/dfgz |
-
- #### 发改法规
-
- | 地方信息 |
- | --------- |
- | fgfg/dfxx |
-
- #### 国际合作
-
- | 世经动态 |
- | --------- |
- | gjhz/zywj |
-
- #### 干部之家
-
- | 系统风采 | 人才招聘 | 委属工作 | 学习园地 |
- | --------- | --------- | --------- | --------- |
- | gbzj/xtfc | gbzj/rczp | gbzj/wsgz | gbzj/xxyd |
-
- #### 评估督导
-
- | 评督动态 | 评督经验 |
- | --------- | --------- |
- | pgdd/pddt | pgdd/pdjy |
-
- #### 发改党建
-
- | 中央精神 | 机关党建 | 委属党建 | 系统党建 |
- | --------- | --------- | --------- | --------- |
- | fgdj/zydj | fgdj/jgdj | fgdj/wsdj | fgdj/xtdj |
-
- #### 发改金辉
-
- | 党建之窗 | 系统交流 | 学习园地 | 金色夕阳 |
- | --------- | --------- | --------- | --------- |
- | fgjh/djzc | fgjh/zthd | fgjh/yxyd | fgjh/jsxy |
- </details>
-</Route>
-
-### 价格监测中心 {#zhong-hua-ren-min-gong-he-guo-guo-jia-fa-zhan-he-gai-ge-wei-yuan-hui-jia-ge-jian-ce-zhong-xin}
-
-<Route author="nczitzk" example="/gov/jgjcndrc" path="/gov/jgjcndrc/:id?" paramsDesc={['栏目 id,见下表,默认为 692,即通知公告']} radar="1">
- | 通知公告 | 中心工作动态 | 地方工作动态 | 监测信息 | 分析预测 | 调查报告 |
- | -------- | ------------ | ------------ | -------- | -------- | -------- |
- | 692 | 693 | 694 | 695 | 696 | 697 |
-
- | 价格指数 | 地方价格监测 | 价格监测报告制度 | 监测法规 | 媒体聚焦 |
- | -------- | ------------ | ---------------- | -------- | -------- |
- | 698 | 699 | 700 | 701 | 753 |
-
- #### 监测信息
-
- | 国内外市场价格监测情况周报 | 主要粮油副食品日报 | 生猪出厂价与玉米价格周报 | 国际市场石油价格每日 动态 |
- | -------------------------- | ------------------ | ------------------------ | ------------------------- |
- | 749 | 703 | 704 | 705 |
-
- | 非学科类培训服务价格 | 监测周期价格动态 | 月度监测行情表 | 猪料、鸡料、蛋料比价 |
- | -------------------- | ---------------- | -------------- | -------------------- |
- | 821 | 706 | 707 | 708 |
-</Route>
-
-## 中华人民共和国海关总署 {#zhong-hua-ren-min-gong-he-guo-hai-guan-zong-shu}
-
-### 拍卖信息 / 海关法规 {#zhong-hua-ren-min-gong-he-guo-hai-guan-zong-shu-pai-mai-xin-xi-hai-guan-fa-gui}
-
-<Route author="Jeason0228 TonyRL" example="/gov/customs/list/paimai" path="/gov/customs/list/:gchannel?" paramsDesc={['支持 `paimai` 及 `fagui` 2个频道,默认为 `paimai`']} anticrawler="1" puppeteer="1" radar="1">
- :::warning
- 由于区域限制,建议在国内 IP 的机器上自建
- :::
-</Route>
-
-## 中华人民共和国交通运输部 {#zhong-hua-ren-min-gong-he-guo-jiao-tong-yun-shu-bu}
-
-### 栏目 {#zhong-hua-ren-min-gong-he-guo-jiao-tong-yun-shu-bu-lan-mu}
-
-<Route author="nczitzk" example="/gov/mot/jiaotongyaowen" path="/gov/mot/:category?" paramsDesc={['分类 id,见下表,默认为交通要闻']} radar="1">
- #### 新闻
-
- | 分类名 | 分类 id |
- | -------- | -------------- |
- | 时政要闻 | shizhengyaowen |
- | 交通要闻 | jiaotongyaowen |
- | 重要会议 | zhongyaohuiyi |
-
- #### 数据
-
- | 分类名 | 分类 id |
- | -------- | ------------ |
- | 数据开放 | sjkf |
- | 统计数据 | tongjishuju |
- | 分析公报 | fenxigongbao |
- | 运价指数 | yunjiazhishu |
-
- #### 统计数据
-
- | 分类名 | 分类 id |
- | -------------------- | --------------------------------- |
- | 公路 | tongjishuju/gonglu |
- | 水运 | tongjishuju/shuiyun |
- | 铁路 | tongjishuju/tielu |
- | 民航 | tongjishuju/minhang |
- | 邮政 | tongjishuju/youzheng |
- | 城市客运 | tongjishuju/chengshikeyun |
- | 港口货物旅客吞吐量 | tongjishuju/gangkouhuowulvkettl |
- | 固定资产投资完成情况 | tongjishuju/gudingzichantouziwcqk |
-
- #### 分析公报
-
- | 分类名 | 分类 id |
- | -------- | -------------------------- |
- | 行业公报 | fenxigongbao/hangyegongbao |
- | 经济分析 | fenxigongbao/jingjifenxi |
- | 科技统计 | fenxigongbao/kejitongji |
- | 运力分析 | fenxigongbao/yunlifenxi |
-
- #### 运价指数
-
- | 分类名 | 分类 id |
- | -------------------- | ------------------------------------ |
- | 沿海散货运价指数 | yunjiazhishu/yanhaisanhuoyjzs |
- | 出口集装箱运价指数 | yunjiazhishu/chukoujizhuangxiangyjzs |
- | 长江航运指数分析 | yunjiazhishu/changjianghangyunzsfx |
- | 珠江水运经济运行分析 | yunjiazhishu/zhujiangshuiyunjjyxfx |
-</Route>
-
-## 中华人民共和国教育部 {#zhong-hua-ren-min-gong-he-guo-jiao-yu-bu}
-
-### 新闻 {#zhong-hua-ren-min-gong-he-guo-jiao-yu-bu-xin-wen}
-
-<Route author="Crawler995" example="/gov/moe/policy_anal" path="/gov/moe/:type" paramsDesc={['分类名']}>
- | 政策解读 | 最新文件 | 公告公示 | 教育部简报 | 教育要闻 |
- | :----------: | :----------: | :------: | :-----------------: | :--------------: |
- | policy\_anal | newest\_file | notice | edu\_ministry\_news | edu\_focus\_news |
-</Route>
-
-### 司局通知 {#zhong-hua-ren-min-gong-he-guo-jiao-yu-bu-si-ju-tong-zhi}
-
-<Route author="TonyRL" example="/gov/moe/s78/A13" path="/gov/moe/s78/:column" paramsDesc={['司局 ID,可在 URL 找到']} radar="1" />
-
-## 中华人民共和国农业农村部 {#zhong-hua-ren-min-gong-he-guo-nong-ye-nong-cun-bu}
-
-### 新闻 {#zhong-hua-ren-min-gong-he-guo-nong-ye-nong-cun-bu-xin-wen}
-
-<Route author="Origami404" example="/gov/moa/xw/zwdt" path="/gov/moa/:suburl" paramsDesc={['分类目录的子 url']} notOperational="1">
- 更多例子:
-
- - `农业农村部动态`的网页链接是`http://www.moa.gov.cn/xw/zwdt/`, 对应的`suburl`是`xw/zwdt`
- - `财务公开`的网页链接是`http://www.moa.gov.cn/gk/cwgk_1/`, 对应的`suburl`是`gk/cwgk_1`
- - 像[政策法规](http://www.moa.gov.cn/gk/zcfg/)这种页面 (`http://www.moa.gov.cn/gk/zcfg/`), 它**不是**一个合法的分类目录,它是`法律`, `行政法规`, `部门规章`等一堆栏目的集合,这时候请点开对应栏目的`更多 >>`进入栏目的目录,再根据上面的规则提取`suburl`
- - 特别地,`图片新闻`对应的`suburl`为`xw/tpxw/`, `最新公开`对应的`suburl`为`govpublic`
-</Route>
-
-### 数据 {#zhong-hua-ren-min-gong-he-guo-nong-ye-nong-cun-bu-shu-ju}
-
-<Route author="MisteryMonster nczitzk" example="/gov/moa/zdscxx" path="/gov/moa/zdscxx/:channel?/:source?" paramsDesc={['报告主题,见下表,默认为全部', '报告来源,见下表,默认为全部']} radar="1" anticrawler="1">
- #### 报告主题
-
- | 价格指数 | 供需月报 | 日历信息 | 蔬菜生产 |
- | -------- | -------- | -------- | -------- |
-
- #### 报告来源
-
- | 农业农村部市场与信息化司 | 农业农村部畜牧兽医局 | 农业农村部种植业管理司 | 农业农村部信息中心 | 农业农村部农业贸易促进中心 |
- | ------------------------ | -------------------- | ---------------------- | ------------------ | -------------------------- |
-
- | 新华网 | 新闻晨报 | 楚天都市报 | 中国兴农网 | 泉州晚报 |
- | ------ | -------- | ---------- | ---------- | -------- |
-
- | 潇湘晨报 | 澎湃新闻 | 环京津网 | 经济日报 | 腾讯网 |
- | -------- | -------- | -------- | -------- | ------ |
-
- | 贵阳晚报 | 山东广播电视台闪电新闻客户端 | 央视网 | 农产品;平衡表;供需分析 | 农民日报 |
- | -------- | ---------------------------- | ------ | ------------------------ | -------- |
-
- | 重庆市黔江区人民政府 | 农业农村部新闻办公室 | 农业农村部市场预警专家委员会 | 农业农村部市场畜牧兽医局 | 其它来源 |
- | -------------------- | -------------------- | ---------------------------- | ------------------------ | -------- |
-
- | 人民网 | 人民日报 | 中央气象台 | 中国证券报 | 中国网 |
- | ------ | -------- | ---------- | ---------- | ------ |
-
- | 中国新闻网 | 南方日报 | 黑龙江省政府新闻办 |
- | ---------- | -------- | ------------------ |
-</Route>
-
-## 中华人民共和国人力资源和社会保障部 {#zhong-hua-ren-min-gong-he-guo-ren-li-zi-yuan-he-she-hui-bao-zhang-bu}
-
-### 社保减免 {#zhong-hua-ren-min-gong-he-guo-ren-li-zi-yuan-he-she-hui-bao-zhang-bu-she-bao-jian-mian}
-
-<Route author="ncziztk" example="/gov/mohrss/sbjm" path="/gov/mohrss/sbjm/:category?" paramsDesc={['分类,见下表']}>
- | 要点新闻 | 政策文件 | 工作动态 | 媒体报道 | 图片新闻 |
- | -------- | -------- | -------- | -------- | -------- |
- | ydxw | zcwj | gzdt | mtbd | tpxw |
-</Route>
-
-## 中华人民共和国商务部 {#zhong-hua-ren-min-gong-he-guo-shang-wu-bu}
-
-### 政务公开 {#zhong-hua-ren-min-gong-he-guo-shang-wu-bu-zheng-wu-gong-kai}
-
-<Route author="LogicJake" example="/gov/mofcom/article/xwfb" path="/gov/mofcom/article/:suffix+" paramsDesc={['支持形如 `http://www.mofcom.gov.cn/article/*` 的网站,传入 article 之后的后缀,支持多级']} radar="1" />
-
-## 中华人民共和国生态环境部 {#zhong-hua-ren-min-gong-he-guo-sheng-tai-huan-jing-bu}
-
-### 要闻动态 {#zhong-hua-ren-min-gong-he-guo-sheng-tai-huan-jing-bu-yao-wen-dong-tai}
-
-<Route author="liuxsdev" example="/gov/mee/ywdt/hjywnews" path="/gov/mee/ywdt/:category?" paramsDesc={['分类名,预设 `szyw`']} />
-
-| 时政要闻 | 环境要闻 | 地方快讯 | 新闻发布 | 视频新闻 | 公示公告 |
-| :------: | :------: | :------: | :------: | :------: | :------: |
-| szyw | hjywnews | dfnews | xwfb | spxw | gsgg |
-
-## 中华人民共和国司法部 {#zhong-hua-ren-min-gong-he-guo-si-fa-bu}
-
-### 立法意见征集 {#zhong-hua-ren-min-gong-he-guo-si-fa-bu-li-fa-yi-jian-zheng-ji}
-
-<Route author="la3rence" example="/gov/moj/lfyjzj" path="/gov/moj/lfyjzj" radar="1" />
-
-## 中华人民共和国退役军人事务部 {#zhong-hua-ren-min-gong-he-guo-tui-yi-jun-ren-shi-wu-bu}
-
-### 中华人民共和国退役军人事务部 {#zhong-hua-ren-min-gong-he-guo-tui-yi-jun-ren-shi-wu-bu-zhong-hua-ren-min-gong-he-guo-tui-yi-jun-ren-shi-wu-bu}
-
-<Route author="SunShinenny" example="/gov/veterans/bnxx" path="/gov/veterans/:type" paramsDesc={['分类名']}>
- | 部内信息 | 政策解读 | 首页信息 |
- | :------: | :------: | :------: |
- | bnxx | zcjd | index |
-</Route>
-
-## 中华人民共和国外交部 {#zhong-hua-ren-min-gong-he-guo-wai-jiao-bu}
-
-### 外交动态 {#zhong-hua-ren-min-gong-he-guo-wai-jiao-bu-wai-jiao-dong-tai}
-
-<Route author="nczitzk" example="/gov/mfa/wjdt/fyrbt" path="/gov/mfa/wjdt/:category?" paramsDesc={['分类,见下表,默认为领导人活动']}>
- | 分类 | category |
- | ---------- | -------- |
- | 领导人活动 | gjldrhd |
- | 外事日程 | wsrc |
- | 部领导活动 | wjbxw |
- | 业务动态 | sjxw |
- | 发言人表态 | fyrbt |
- | 吹风会 | cfhsl |
- | 大使任免 | dsrm |
- | 驻外报道 | zwbd |
- | 政策解读 | zcjd |
-</Route>
-
-## 中华人民共和国应急管理部 {#zhong-hua-ren-min-gong-he-guo-ying-ji-guan-li-bu}
-
-### 事故及灾害查处 {#zhong-hua-ren-min-gong-he-guo-ying-ji-guan-li-bu-shi-gu-ji-zai-hai-cha-chu}
-
-<Route author="nczitzk" example="/gov/mem/gk/sgcc/tbzdsgdcbg" path="/gov/mem/gk/sgcc/:category?" paramsDesc={['分类,见下表,默认为挂牌督办']} radar="1">
- | 挂牌督办 | 调查报告 |
- | -------- | ---------- |
- | sggpdbqk | tbzdsgdcbg |
-</Route>
-
-## 中华人民共和国住房和城乡建设部 {#zhong-hua-ren-min-gong-he-guo-zhu-fang-he-cheng-xiang-jian-she-bu}
-
-### 政策发布 {#zhong-hua-ren-min-gong-he-guo-zhu-fang-he-cheng-xiang-jian-she-bu-zheng-ce-fa-bu}
-
-<Route author="nczitzk" example="/gov/mohurd/policy" path="/gov/mohurd/policy" notOperational="1" />
-
-## 中華民國國防部 {#zhong-hua-min-guo-guo-fang-bu}
-
-### 即時軍事動態 {#zhong-hua-min-guo-guo-fang-bu-ji-shi-jun-shi-dong-tai}
-
-<Route author="nczitzk" example="/gov/taiwan/mnd" path="/gov/taiwan/mnd" />
-
-## 中央纪委国家监委 {#zhong-yang-ji-wei-guo-jia-jian-wei}
-
-### 要闻 {#zhong-yang-ji-wei-guo-jia-jian-wei-yao-wen}
-
-<Route author="bigfei" example="/gov/ccdi/yaowenn" path="/gov/ccdi/:path+" paramsDesc={['路径,默认为 要闻']}>
- :::tip
- 路径处填写对应页面 URL 中 `http://www.ccdi.gov.cn/` 后的字段。下面是一个例子。
-
- 若订阅 [审查调查 > 中管干部 > 执纪审查](https://www.ccdi.gov.cn/scdcn/zggb/zjsc/) 则将对应页面 URL `https://www.ccdi.gov.cn/scdcn/zggb/zjsc/` 中 `http://www.ccdi.gov.cn/` 后的字段 `scdcn/zggb/zjsc` 作为路径填入。此时路由为 [`/gov/ccdi/scdcn/zggb/zjsc`](https://rsshub.app/gov/ccdi/scdcn/zggb/zjsc)
- :::
-</Route>
-
-## 中央网信办 {#zhong-yang-wang-xin-ban}
-
-### 分类 {#zhong-yang-wang-xin-ban-fen-lei}
-
-<Route author="drgnchan" example="/gov/cac/xxh" path="/gov/cac/:path+" paramsDesc={['路径,比如xxh表示信息化']} radar="1" notOperational="1">
- :::tip
- 路径填写对应页面 URL 中间部分。例如:
+<Route data={{"path":"/:type?","categories":["government"],"example":"/crac/2","parameters":{"type":"类型,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新资讯","maintainers":["Misaka13514"],"description":"| 新闻动态 | 通知公告 | 政策法规 | 常见问题 | 资料下载 | English | 业余中继台 | 科普专栏 |\n | -------- | -------- | -------- | -------- | -------- | ------- | ---------- | -------- |\n | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 |","location":"index.ts"}} />
- 首页 > 权威发布 > 办公室发布: `http://www.cac.gov.cn/qwfb/bgsfb/A090302index_1.htm`
- 此时,path 参数为:/qwfb/bgsfb
- :::
-</Route>
+| 新闻动态 | 通知公告 | 政策法规 | 常见问题 | 资料下载 | English | 业余中继台 | 科普专栏 |
+| -------- | -------- | -------- | -------- | -------- | ------- | ---------- | -------- |
+| 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 |
diff --git a/website/docs/routes/journal.mdx b/website/docs/routes/journal.mdx
index 72d4d10897a74b..b5705577f43b7c 100644
--- a/website/docs/routes/journal.mdx
+++ b/website/docs/routes/journal.mdx
@@ -1,253 +1,134 @@
-# 🔬 Scientific Journal
-
-## Academy of Management {#academy-of-management}
-
-### Journal {#academy-of-management-journal}
-
-<Route author="nczitzk" example="/aom/journal/amr" path="/aom/journal/:id" paramsDesc={['journal id, see below']} notOperational="1">
- | Id | Title |
- | --------- | ------------------------------------------ |
- | annals | Academy of Management Annals |
- | amd | Academy of Management Discoveries |
- | amgblproc | Academy of Management Global Proceedings |
- | amj | Academy of Management Journal |
- | amle | Academy of Management Learning & Education |
- | amp | Academy of Management Perspectives |
- | amproc | Academy of Management Proceedings |
- | amr | Academy of Management Review |
-</Route>
+# journal
## ACM Special Interest Group on Security Audit and Control {#acm-special-interest-group-on-security-audit-and-control}
### The ACM Conference on Computer and Communications Security {#acm-special-interest-group-on-security-audit-and-control-the-acm-conference-on-computer-and-communications-security}
-<Route author="ZeddYu" example="/sigsac/ccs" path="/sigsac/ccs" notOperational="1">
- Return results from 2020
-</Route>
+<Route data={{"path":"/ccs","categories":["journal"],"example":"/sigsac/ccs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sigsac.org/ccs.html","sigsac.org/"]},"name":"The ACM Conference on Computer and Communications Security","maintainers":[],"url":"sigsac.org/ccs.html","description":"Return results from 2020","location":"ccs.ts"}} />
+
+Return results from 2020
## American Economic Association {#american-economic-association}
### Journal {#american-economic-association-journal}
-<Route author="nczitzk" example="/aeaweb/aer" path="/aeaweb/:id" paramsDesc={['Journal id, can be found in URL']} supportScihub="1">
- The URL of the journal [American Economic Review](https://www.aeaweb.org/journals/aer) is `https://www.aeaweb.org/journals/aer`, where `aer` is the id of the journal, so the route for this journal is `/aeaweb/aer`.
+<Route data={{"path":"/:id","categories":["journal"],"example":"/aeaweb/aer","parameters":{"id":"Journal id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["aeaweb.org/journals/:id","aeaweb.org/"]},"name":"Journal","maintainers":["nczitzk"],"description":"The URL of the journal [American Economic Review](https://www.aeaweb.org/journals/aer) is `https://www.aeaweb.org/journals/aer`, where `aer` is the id of the journal, so the route for this journal is `/aeaweb/aer`.\n\n :::tip\n More jounals can be found in [AEA Journals](https://www.aeaweb.org/journals).\n :::","location":"index.ts"}} />
+
+The URL of the journal [American Economic Review](https://www.aeaweb.org/journals/aer) is `https://www.aeaweb.org/journals/aer`, where `aer` is the id of the journal, so the route for this journal is `/aeaweb/aer`.
- :::tip
- More jounals can be found in [AEA Journals](https://www.aeaweb.org/journals).
- :::
-</Route>
+:::tip
+More jounals can be found in [AEA Journals](https://www.aeaweb.org/journals).
+:::
## American Institute of Physics {#american-institute-of-physics}
### Journal {#american-institute-of-physics-journal}
-<Route author="Derekmini auto-bot-ty" example="/aip/aapt/ajp" path="/aip/:pub/:jrn" paramsDesc={['Publisher id','Journal id']} radar="1" supportScihub="1">
- Refer to the URL format `pubs.aip.org/:pub/:jrn`
+<Route data={{"path":"/:pub/:jrn","categories":["journal"],"example":"/aip/aapt/ajp","parameters":{"pub":"Publisher id","jrn":"Journal id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["pubs.aip.org/:pub/:jrn"]},"name":"Journal","maintainers":["Derekmini","auto-bot-ty"],"description":"Refer to the URL format `pubs.aip.org/:pub/:jrn`\n\n :::tip\n More jounals can be found in [AIP Publications](https://publishing.aip.org/publications/find-the-right-journal).\n :::","location":"journal.ts"}} />
+
+Refer to the URL format `pubs.aip.org/:pub/:jrn`
- :::tip
- More jounals can be found in [AIP Publications](https://publishing.aip.org/publications/find-the-right-journal).
- :::
-</Route>
+:::tip
+More jounals can be found in [AIP Publications](https://publishing.aip.org/publications/find-the-right-journal).
+:::
## Annual Reviews {#annual-reviews}
### Journal {#annual-reviews-journal}
-<Route author="nczitzk" example="/annualreviews/anchem" path="/annualreviews/:id" paramsDesc={['Journal id, can be found in URL']} supportScihub="1">
- The URL of the journal [Annual Review of Analytical Chemistry](https://www.annualreviews.org/journal/anchem) is `https://www.annualreviews.org/journal/anchem`, where `anchem` is the id of the journal, so the route for this journal is `/annualreviews/anchem`.
-
- :::tip
- More jounals can be found in [Browse Journals](https://www.annualreviews.org/action/showPublications).
- :::
-</Route>
-
-## arXiv {#arxiv}
+<Route data={{"path":"/:id","categories":["journal"],"example":"/annualreviews/anchem","parameters":{"id":"Journal id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["annualreviews.org/journal/:id","annualreviews.org/"]},"name":"Journal","maintainers":["nczitzk"],"description":"The URL of the journal [Annual Review of Analytical Chemistry](https://www.annualreviews.org/journal/anchem) is `https://www.annualreviews.org/journal/anchem`, where `anchem` is the id of the journal, so the route for this journal is `/annualreviews/anchem`.\n\n :::tip\n More jounals can be found in [Browse Journals](https://www.annualreviews.org/action/showPublications).\n :::","location":"index.ts"}} />
-### Search Keyword {#arxiv-search-keyword}
+The URL of the journal [Annual Review of Analytical Chemistry](https://www.annualreviews.org/journal/anchem) is `https://www.annualreviews.org/journal/anchem`, where `anchem` is the id of the journal, so the route for this journal is `/annualreviews/anchem`.
-<Route author="nczitzk" example="/arxiv/search_query=all:electron&start=0&max_results=10" path="/arxiv/:query" paramsDesc={['query statement']} anticrawler="1">
- See [arXiv API User Manual](https://arxiv.org/help/api/user-manual) to find out all query statements.
-
- Fill in parameter `query` with content after `http://export.arxiv.org/api/query?`.
-</Route>
+:::tip
+More jounals can be found in [Browse Journals](https://www.annualreviews.org/action/showPublications).
+:::
## BioOne {#bioone}
### Featured articles {#bioone-featured-articles}
-<Route author="nczitzk" example="/bioone/featured" path="/bioone/featured" />
+<Route data={{"path":"/featured","categories":["journal"],"example":"/bioone/featured","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bioone.org/"]},"name":"Featured articles","maintainers":["nczitzk"],"url":"bioone.org/","location":"featured.ts"}} />
### Journals {#bioone-journals}
-<Route author="nczitzk" example="/bioone/journals/acta-chiropterologica" path="/bioone/journals/:journal?" paramsDesc={['Journals, can be found in URL']} />
+<Route data={{"path":"/journals/:journal?","categories":["journal"],"example":"/bioone/journals/acta-chiropterologica","parameters":{"journal":"Journals, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bioone.org/journals/:journal","bioone.org/"],"target":"/journals/:journal"},"name":"Journals","maintainers":["nczitzk"],"location":"journal.ts"}} />
## caa.reviews {#caa-reviews}
### Book Reviews {#caa-reviews-book-reviews}
-<Route author="Fatpandac" example="/caareviews/book" path="/caareviews/book" />
-
-### Exhibition Reviews {#caa-reviews-exhibition-reviews}
-
-<Route author="Fatpandac" example="/caareviews/exhibition" path="/caareviews/exhibition" />
+<Route data={{"path":"/book","categories":["journal"],"example":"/caareviews/book","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caareviews.org/reviews/book"]},"name":"Book Reviews","maintainers":["Fatpandac"],"url":"caareviews.org/reviews/book","location":"book.ts"}} />
### Essays {#caa-reviews-essays}
-<Route author="Fatpandac" example="/caareviews/essay" path="/caareviews/essay" />
-
-## Cell {#cell}
-
-### Current Issue {#cell-current-issue}
-
-<Route author="y9c" example="/cell/cell/current" path="/cell/cell/:category" supportScihub="1">
- | `:category` | Query Type | Route |
- | :---------: | :---------------------: | ---------------------------------------------------------- |
- | current | Current Issue (default) | [/cell/cell/current](https://rsshub.app/cell/cell/current) |
- | inpress | Articles in press | [/cell/cell/inpress](https://rsshub.app/cell/cell/inpress) |
-</Route>
-
-### Cover Story {#cell-cover-story}
-
-<Route author="y9c" example="/cell/cover" path="/cell/cover" notOperational="1">
- Subscribe to the cover images of the Cell journals, and get the latest publication updates in time.
+<Route data={{"path":"/essay","categories":["journal"],"example":"/caareviews/essay","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caareviews.org/reviews/essay"]},"name":"Essays","maintainers":["Fatpandac"],"url":"caareviews.org/reviews/essay","location":"essay.ts"}} />
- Including 'cell', 'cancer-cell', 'cell-chemical-biology', 'cell-host-microbe', 'cell-metabolism', 'cell-reports', 'cell-reports-physical-science', 'cell-stem-cell', 'cell-systems', 'chem', 'current-biology', 'developmental-cell', 'immunity', 'joule', 'matter', 'molecular-cell', 'neuron', 'one-earth' and 'structure'.
-</Route>
-
-## Cool Papers {#cool-papers}
-
-### Category {#cool-papers-category}
-
-<Route author="nczitzk" example="/papers" path="/papers/:category?" paramsDesc={['Category, see below, `arxiv/cs.CL` by default']} radar="1" supportBT="1" supportScihub="1">
- | Category | id |
- | ----------------------------------------------------- | ------------- |
- | Arxiv Computation and Language (cs.CL) | arxiv/cs.CL |
- | Arxiv Machine Learning (cs.LG) | arxiv/cs.LG |
- | Arxiv Artificial Intelligence (cs.AI) | arxiv/cs.AI |
- | Arxiv Information Retrieval (cs.IR) | arxiv/cs.IR |
- | Arxiv Computer Vision and Pattern Recognition (cs.CV) | arxiv/cs.CV |
- | Arxiv Machine Learning (stat.ML) | arxiv/stat.ML |
-</Route>
-
-## Deloitte {#deloitte}
-
-### Articles {#deloitte-articles}
-
-<Route author="laampui" example="/deloitte/industries/consumer" path="/deloitte/industries/:category?" paramsDesc={['默认为 energy-resources-industrials']}>
- | 消费行业 | 能源、资源及工业行业 | 金融服务行业 | 政府及公共服务 | 生命科学与医疗行业 | 科技、传媒及电信行业 |
- | -------- | ---------------------------- | ------------------ | -------------------------- | ------------------------ | ----------------------------------- |
- | consumer | energy-resources-industrials | financial-services | government-public-services | life-sciences-healthcare | technology-media-telecommunications |
-</Route>
-
-## ELSEVIER {#elsevier}
-
-### Journal {#elsevier-journal}
+### Exhibition Reviews {#caa-reviews-exhibition-reviews}
-<Route author="Derekmini sunwolf-swb" example="/elsevier/signal-processing" path="/elsevier/:journal" paramsDesc={['Journal Name, the part of the URL after `/journal/`']} radar="1" />
+<Route data={{"path":"/exhibition","categories":["journal"],"example":"/caareviews/exhibition","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caareviews.org/reviews/exhibition"]},"name":"Exhibition Reviews","maintainers":["Fatpandac"],"url":"caareviews.org/reviews/exhibition","location":"exhibition.ts"}} />
-### Special Issue {#elsevier-special-issue}
+## Google {#google}
-<Route author="Derekmini sunwolf-swb" example="/elsevier/signal-processing/192" path="/elsevier/:journal/:issue" paramsDesc={['Journal Name, the part of the URL after `/journal/`','Release Number, the number in the URL after `/vol/` (If both Volume and Issue exist, must use the `Volume-Issue` form, e.g., `/elsevier/aace-clinical-case-reports/7-6`)']} radar="1" />
+### Author Citations {#google-author-citations}
-## Google Scholar {#google-scholar}
+<Route data={{"path":"/citations/:id","categories":["journal"],"example":"/google/citations/mlmE4JMAAAAJ","parameters":{"id":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Author Citations","maintainers":["KellyHwong","const7"],"description":"The parameter id in the route is the id in the URL of the user's Google Scholar reference page, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ` to `mlmE4JMAAAAJ`.\n\n Query parameters are also supported here, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ&sortby=pubdate` to `mlmE4JMAAAAJ&sortby=pubdate`. Please make sure that the user id (`mlmE4JMAAAAJ` in this case) should be the first parameter in the query string.","location":"citations.ts"}} />
-### Keywords Monitoring {#google-scholar-keywords-monitoring}
+The parameter id in the route is the id in the URL of the user's Google Scholar reference page, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ` to `mlmE4JMAAAAJ`.
-<Route author="HenryQW" path="/google/scholar/:query" example="/google/scholar/data+visualization" paramsDesc={['query statement which supports「Basic」and「Advanced」modes']} anticrawler="1">
- :::warning
- Google Scholar has strict anti-crawling mechanism implemented, the demo below doesn't guarantee availability. Please deploy your own instance as it might increase the stability.
- :::
+Query parameters are also supported here, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ&sortby=pubdate` to `mlmE4JMAAAAJ&sortby=pubdate`. Please make sure that the user id (`mlmE4JMAAAAJ` in this case) should be the first parameter in the query string.
- 1. Basic mode, sample query is the keywords desired, eg.「data visualization」, [https://rsshub.app/google/scholar/data+visualization](https://rsshub.app/google/scholar/data+visualization).
+### Keywords Monitoring {#google-keywords-monitoring}
- 2. Advanced mode, visit [Google Scholar](https://scholar.google.com/schhp?hl=en\&as_sdt=0,5), click the top left corner and select「Advanced Search」, fill in your conditions and submit the search. The URL should look like this: [https://scholar.google.com/scholar?as\_q=data+visualization\&as\_epq=\&as\_oq=\&as\_eq=\&as\_occt=any\&as\_sauthors=\&as\_publication=\&as\_ylo=2018\&as\_yhi=\&hl=en\&as\_sdt=0%2C5](https://scholar.google.com/scholar?as_q=data+visualization\&as_epq=\&as_oq=\&as_eq=\&as_occt=any\&as_sauthors=\&as_publication=\&as_ylo=2018\&as_yhi=\&hl=en\&as_sdt=0%2C5), copy everything after `https://scholar.google.com/scholar?` from the URL and use it as the query for this route. The complete URL for the above example should look like this: [https://rsshub.app/google/scholar/as\_q=data+visualization\&as\_epq=\&as\_oq=\&as\_eq=\&as\_occt=any\&as\_sauthors=\&as\_publication=\&as\_ylo=2018\&as\_yhi=\&hl=en\&as\_sdt=0%2C5](https://rsshub.app/google/scholar/as_q=data+visualization\&as_epq=\&as_oq=\&as_eq=\&as_occt=any\&as_sauthors=\&as_publication=\&as_ylo=2018\&as_yhi=\&hl=en\&as_sdt=0%2C5).
-</Route>
+<Route data={{"path":"/scholar/:query","categories":["journal"],"example":"/google/scholar/data+visualization","parameters":{"query":"query statement which supports「Basic」and「Advanced」modes"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keywords Monitoring","maintainers":["HenryQW"],"description":":::warning\n Google Scholar has strict anti-crawling mechanism implemented, the demo below doesn't guarantee availability. Please deploy your own instance as it might increase the stability.\n :::\n\n 1. Basic mode, sample query is the keywords desired, eg.「data visualization」, [https://rsshub.app/google/scholar/data+visualization](https://rsshub.app/google/scholar/data+visualization).\n\n 2. Advanced mode, visit [Google Scholar](https://scholar.google.com/schhp?hl=en&as_sdt=0,5), click the top left corner and select「Advanced Search」, fill in your conditions and submit the search. The URL should look like this: [https://scholar.google.com/scholar?as_q=data+visualization&as_epq=&as_oq=&as_eq=&as_occt=any&as_sauthors=&as_publication=&as_ylo=2018&as_yhi=&hl=en&as_sdt=0%2C5](https://scholar.google.com/scholar?as_q=data+visualization&as_epq=&as_oq=&as_eq=&as_occt=any&as_sauthors=&as_publication=&as_ylo=2018&as_yhi=&hl=en&as_sdt=0%2C5), copy everything after `https://scholar.google.com/scholar?` from the URL and use it as the query for this route. The complete URL for the above example should look like this: [https://rsshub.app/google/scholar/as_q=data+visualization&as_epq=&as_oq=&as_eq=&as_occt=any&as_sauthors=&as_publication=&as_ylo=2018&as_yhi=&hl=en&as_sdt=0%2C5](https://rsshub.app/google/scholar/as_q=data+visualization&as_epq=&as_oq=&as_eq=&as_occt=any&as_sauthors=&as_publication=&as_ylo=2018&as_yhi=&hl=en&as_sdt=0%2C5).","location":"scholar.ts"}} />
-### Author Citations {#google-scholar-author-citations}
+:::warning
+Google Scholar has strict anti-crawling mechanism implemented, the demo below doesn't guarantee availability. Please deploy your own instance as it might increase the stability.
+:::
-<Route author="KellyHwong const7" example="/google/citations/mlmE4JMAAAAJ" path="/google/citations/:id" anticrawler="1">
- The parameter id in the route is the id in the URL of the user's Google Scholar reference page, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ` to `mlmE4JMAAAAJ`.
+1. Basic mode, sample query is the keywords desired, eg.「data visualization」, [https://rsshub.app/google/scholar/data+visualization](https://rsshub.app/google/scholar/data+visualization).
- Query parameters are also supported here, for example `https://scholar.google.com/citations?user=mlmE4JMAAAAJ&sortby=pubdate` to `mlmE4JMAAAAJ&sortby=pubdate`. Please make sure that the user id (`mlmE4JMAAAAJ` in this case) should be the first parameter in the query string.
-</Route>
+2. Advanced mode, visit [Google Scholar](https://scholar.google.com/schhp?hl=en\&as_sdt=0,5), click the top left corner and select「Advanced Search」, fill in your conditions and submit the search. The URL should look like this: [https://scholar.google.com/scholar?as\_q=data+visualization\&as\_epq=\&as\_oq=\&as\_eq=\&as\_occt=any\&as\_sauthors=\&as\_publication=\&as\_ylo=2018\&as\_yhi=\&hl=en\&as\_sdt=0%2C5](https://scholar.google.com/scholar?as_q=data+visualization\&as_epq=\&as_oq=\&as_eq=\&as_occt=any\&as_sauthors=\&as_publication=\&as_ylo=2018\&as_yhi=\&hl=en\&as_sdt=0%2C5), copy everything after `https://scholar.google.com/scholar?` from the URL and use it as the query for this route. The complete URL for the above example should look like this: [https://rsshub.app/google/scholar/as\_q=data+visualization\&as\_epq=\&as\_oq=\&as\_eq=\&as\_occt=any\&as\_sauthors=\&as\_publication=\&as\_ylo=2018\&as\_yhi=\&hl=en\&as\_sdt=0%2C5](https://rsshub.app/google/scholar/as_q=data+visualization\&as_epq=\&as_oq=\&as_eq=\&as_occt=any\&as_sauthors=\&as_publication=\&as_ylo=2018\&as_yhi=\&hl=en\&as_sdt=0%2C5).
## IEEE Computer Society {#ieee-computer-society}
### IEEE Symposium on Security and Privacy {#ieee-computer-society-ieee-symposium-on-security-and-privacy}
-<Route author="ZeddYu" example="/ieee-security/security-privacy" path="/ieee-security/security-privacy">
- Return results from 2020
-</Route>
-
-## IEEE Xplore {#ieee-xplore}
-
-### Author {#ieee-xplore-author}
-
-<Route author="queensferryme" example="/ieee/author/37283006000/newest/10" path="/ieee/author/:aid/:sortType/:count?" paramsDesc={['作者 ID,可以在 URL 中找到,例如 [https://ieeexplore.ieee.org/author/37283006000](https://ieeexplore.ieee.org/author/37283006000)', '排序方式,详细见下', '数量限制,默认为 10 篇']}>
- | 排序方式 | 最新 | 最旧 | 最多论文引用 | 最多专利引用 | 最流行 | 标题升序 | 标题降序 |
- | ----------- | -------- | -------- | ----------------- | ------------------ | -------------- | --------------- | ---------------- |
- | `:sortType` | `newest` | `oldest` | `paper-citations` | `patent-citations` | `most-popular` | `pub-title-asc` | `pub-title-desc` |
-</Route>
+<Route data={{"path":"/security-privacy","categories":["journal"],"example":"/ieee-security/security-privacy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ieee-security.org/TC/SP-Index.html","ieee-security.org/"]},"name":"IEEE Symposium on Security and Privacy","maintainers":["ZeddYu"],"url":"ieee-security.org/TC/SP-Index.html","description":"Return results from 2020","location":"sp.ts"}} />
-### Journal {#ieee-xplore-journal}
+Return results from 2020
-<Route author="Derekmini auto-bot-ty" example="/ieee/journal/70" path="/ieee/journal/:journal/:sortType?" paramsDesc={['Journal code, the number of the `punumber` in the URL','Sort Type, default: `vol-only-seq`, the part of the URL after `sortType`']} radar="1" />
-
-### Journal (Papers within the recent 2 months) {#ieee-xplore-journal-papers-within-the-recent-2-months}
-
-<Route author="Derekmini auto-bot-ty" example="/ieee/journal/78/recent" path="/ieee/journal/:journal/recent/:sortType?" paramsDesc={['Journal code, the number of the `punumber` in the URL','Sort Type, default: `vol-only-seq`, the part of the URL after `sortType`']} radar="1" />
+## IEEE Xplore {#ieee-xplore}
### Early Access Journal {#ieee-xplore-early-access-journal}
-<Route author="5upernova-heng" example="/ieee/journal/5306045/earlyaccess" path="/ieee/journal/:journal/earlyaccess/:sortType?" paramsDesc={['Issue code, the number of the `isnumber` in the URL','Sort Type, default: `vol-only-seq`, the part of the URL after `sortType`']} radar="1" notOperational="1" />
+<Route data={{"path":"/journal/:journal/earlyaccess/:sortType?","categories":["journal"],"example":"/ieee/journal/5306045/earlyaccess","parameters":{"journal":"Issue code, the number of the `isnumber` in the URL","sortType":"Sort Type, default: `vol-only-seq`, the part of the URL after `sortType`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Early Access Journal","maintainers":["5upernova-heng"],"location":"earlyaccess.ts"}} />
## INFORMS {#informs}
### Category {#informs-category}
-<Route author="Fatpandac" example="/informs/mnsc" path="/informs/:category?" paramsDesc={['Category, can be found in the url of the page, `orsc` by default']} notOperational="1" />
+<Route data={{"path":"/:category?","categories":["journal"],"example":"/informs/mnsc","parameters":{"category":"Category, can be found in the url of the page, `orsc` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["Fatpandac"],"location":"index.ts"}} />
## MDPI {#mdpi}
### Journal {#mdpi-journal}
-<Route author="Derekmini" example="/mdpi/analytica" path="/mdpi/:journal" paramsDesc={['Journal Name, get it from the journal homepage']} radar="1" />
+<Route data={{"path":"/:journal","categories":["journal"],"example":"/mdpi/analytica","parameters":{"journal":"Journal Name, get it from the journal homepage"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mdpi.com/journal/:journal"]},"name":"Journal","maintainers":["Derekmini"],"location":"journal.ts"}} />
-## MIT Technology Review {#mit-technology-review}
-
-### Index {#mit-technology-review-index}
-
-<Route author="zphw" example="/technologyreview" path="/technologyreview" notOperational="1" />
-
-### Topics {#mit-technology-review-topics}
+## National Bureau of Economic Research {#national-bureau-of-economic-research}
-<Route author="laampui" example="/technologyreview/humans-and-technology" path="/technologyreview/:category_name" paramsDesc={['see below']} />
+### All Papers {#national-bureau-of-economic-research-all-papers}
-| `:category_name` | Route |
-| ----------------------- | ----------------------------------------- |
-| humans-and-technology | /technologyreview/humans-and-technology |
-| election-2020 | /technologyreview/election-2020 |
-| artificial-intelligence | /technologyreview/artificial-intelligence |
-| biotechnology | /technologyreview/biotechnology |
-| blockchain | /technologyreview/blockchain |
-| climate-change | /technologyreview/climate-change |
-| computing | /technologyreview/computing |
-| tech-policy | /technologyreview/tech-policy |
-| silicon-valley | /technologyreview/silicon-valley |
-| smart-cities | /technologyreview/smart-cities |
-| space | /technologyreview/space |
+<Route data={{"path":["/papers","/news"],"categories":["journal"],"example":"/nber/papers","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["nber.org/papers"]},"name":"All Papers","maintainers":[],"url":"nber.org/papers","description":"Papers that are published in this week.","location":"index.ts"}} />
-## National Bureau of Economic Research {#national-bureau-of-economic-research}
+Papers that are published in this week.
### All Papers {#national-bureau-of-economic-research-all-papers}
-<Route author="5upernova-heng" example="/nber/papers" path="/nber/papers" radar="1" supportScihub="1" />
-
-### New Papers {#national-bureau-of-economic-research-new-papers}
+<Route data={{"path":["/papers","/news"],"categories":["journal"],"example":"/nber/papers","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["nber.org/papers"]},"name":"All Papers","maintainers":[],"url":"nber.org/papers","description":"Papers that are published in this week.","location":"index.ts"}} />
-<Route author="5upernova-heng" example="/nber/news" path="/nber/news" radar="1" supportScihub="1">
- Papers that are published in this week.
-</Route>
+Papers that are published in this week.
## Nature Journal {#nature-journal}
@@ -255,265 +136,209 @@
You can get all short name of a journal from [https://www.nature.com/siteindex](https://www.nature.com/siteindex) or [Journal List](#nature-journal-journal-list).
:::
-### Latest Research {#nature-journal-latest-research}
+### Cover Story {#nature-journal-cover-story}
-<Route author="y9c TonyRL" example="/nature/research/ng" path="/nature/research/:journal?" paramsDesc={['short name for a journal, `nature` by default']} supportScihub="1" radar="1">
- | `:journal` | Full Name of the Journal | Route |
- | :-----------: | :-------------------------: | ---------------------------------------------------------------------------------- |
- | nature | Nature | [/nature/research/nature](https://rsshub.app/nature/research/nature) |
- | nbt | Nature Biotechnology | [/nature/research/nbt](https://rsshub.app/nature/research/nbt) |
- | neuro | Nature Neuroscience | [/nature/research/neuro](https://rsshub.app/nature/research/neuro) |
- | ng | Nature Genetics | [/nature/research/ng](https://rsshub.app/nature/research/ng) |
- | ni | Nature Immunology | [/nature/research/ni](https://rsshub.app/nature/research/ni) |
- | nmeth | Nature Method | [/nature/research/nmeth](https://rsshub.app/nature/research/nmeth) |
- | nchem | Nature Chemistry | [/nature/research/nchem](https://rsshub.app/nature/research/nchem) |
- | nmat | Nature Materials | [/nature/research/nmat](https://rsshub.app/nature/research/nmat) |
- | natmachintell | Nature Machine Intelligence | [/nature/research/natmachintell](https://rsshub.app/nature/research/natmachintell) |
-
- - Using router (`/nature/research/` + "short name for a journal") to query latest research paper for a certain journal of Nature Publishing Group.
- If the `:journal` parameter is blank, then latest research of Nature will return.
- - The journals from NPG are run by different group of people, and the website of may not be consitent for all the journals
- - Only abstract is rendered in some researches
-</Route>
-
-### News & Comment {#nature-journal-news-comment}
-
-<Route author="y9c TonyRL" example="/nature/news-and-comment/ng" path="/nature/news-and-comment/:journal" paramsDesc={['short name for a journal']} supportScihub="1" radar="1">
- | `:journal` | Full Name of the Journal | Route |
- | :-----------: | :-------------------------: | --------------------------------------------------------------------------------------------------------------------- |
- | nbt | Nature Biotechnology | [/nature/news-and-comment/nbt](https://rsshub.app/nature/news-and-comment/nbt) |
- | neuro | Nature Neuroscience | [/nature/news-and-comment/neuro](https://rsshub.app/nature/news-and-comment/neuro) |
- | ng | Nature Genetics | [/nature/news-and-comment/ng](https://rsshub.app/nature/news-and-comment/ng) |
- | ni | Nature Immunology | [/nature/news-and-comment/ni](https://rsshub.app/nature/news-and-comment/ni) |
- | nmeth | Nature Method | [/nature/news-and-comment/nmeth](https://rsshub.app/nature/news-and-comment/nmeth) |
- | nchem | Nature Chemistry | [/nature/news-and-comment/nchem](https://rsshub.app/nature/news-and-comment/nchem) |
- | nmat | Nature Materials | [/nature/news-and-comment/nmat](https://rsshub.app/nature/news-and-comment/nmat) |
- | natmachintell | Nature Machine Intelligence | [/nature/news-and-https://rsshub.app/comment/natmachintell](https://rsshub.app/nature/news-and-comment/natmachintell) |
-
- - Using router (`/nature/research/` + "short name for a journal") to query latest research paper for a certain journal of Nature Publishing Group.
- - The journals from NPG are run by different group of people, and the website of may not be consitent for all the journals
-</Route>
+<Route data={{"path":"/cover","categories":["journal"],"example":"/nature/cover","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nature.com/"]},"name":"Cover Story","maintainers":["y9c"],"url":"nature.com/","description":"Subscribe to the cover images of the Nature journals, and get the latest publication updates in time.","location":"cover.ts"}} />
-### Cover Story {#nature-journal-cover-story}
+Subscribe to the cover images of the Nature journals, and get the latest publication updates in time.
+
+### Journal List {#nature-journal-journal-list}
+
+<Route data={{"path":"/siteindex","categories":["journal"],"example":"/nature/siteindex","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Journal List","maintainers":["TonyRL"],"location":"siteindex.ts"}} />
+
+### Latest Research {#nature-journal-latest-research}
-<Route author="y9c" example="/nature/cover" path="/nature/cover">
- Subscribe to the cover images of the Nature journals, and get the latest publication updates in time.
-</Route>
+<Route data={{"path":"/research/:journal?","categories":["journal"],"example":"/nature/research/ng","parameters":{"journal":"short name for a journal, `nature` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["nature.com/:journal/research-articles","nature.com/:journal","nature.com/"],"target":"/research/:journal"},"name":"Latest Research","maintainers":["y9c","TonyRL"],"description":"| `:journal` | Full Name of the Journal | Route |\n | :-----------: | :-------------------------: | ---------------------------------------------------------------------------------- |\n | nature | Nature | [/nature/research/nature](https://rsshub.app/nature/research/nature) |\n | nbt | Nature Biotechnology | [/nature/research/nbt](https://rsshub.app/nature/research/nbt) |\n | neuro | Nature Neuroscience | [/nature/research/neuro](https://rsshub.app/nature/research/neuro) |\n | ng | Nature Genetics | [/nature/research/ng](https://rsshub.app/nature/research/ng) |\n | ni | Nature Immunology | [/nature/research/ni](https://rsshub.app/nature/research/ni) |\n | nmeth | Nature Method | [/nature/research/nmeth](https://rsshub.app/nature/research/nmeth) |\n | nchem | Nature Chemistry | [/nature/research/nchem](https://rsshub.app/nature/research/nchem) |\n | nmat | Nature Materials | [/nature/research/nmat](https://rsshub.app/nature/research/nmat) |\n | natmachintell | Nature Machine Intelligence | [/nature/research/natmachintell](https://rsshub.app/nature/research/natmachintell) |\n\n - Using router (`/nature/research/` + \"short name for a journal\") to query latest research paper for a certain journal of Nature Publishing Group.\n If the `:journal` parameter is blank, then latest research of Nature will return.\n - The journals from NPG are run by different group of people, and the website of may not be consitent for all the journals\n - Only abstract is rendered in some researches","location":"research.ts"}} />
+
+| `:journal` | Full Name of the Journal | Route |
+| :-----------: | :-------------------------: | ---------------------------------------------------------------------------------- |
+| nature | Nature | [/nature/research/nature](https://rsshub.app/nature/research/nature) |
+| nbt | Nature Biotechnology | [/nature/research/nbt](https://rsshub.app/nature/research/nbt) |
+| neuro | Nature Neuroscience | [/nature/research/neuro](https://rsshub.app/nature/research/neuro) |
+| ng | Nature Genetics | [/nature/research/ng](https://rsshub.app/nature/research/ng) |
+| ni | Nature Immunology | [/nature/research/ni](https://rsshub.app/nature/research/ni) |
+| nmeth | Nature Method | [/nature/research/nmeth](https://rsshub.app/nature/research/nmeth) |
+| nchem | Nature Chemistry | [/nature/research/nchem](https://rsshub.app/nature/research/nchem) |
+| nmat | Nature Materials | [/nature/research/nmat](https://rsshub.app/nature/research/nmat) |
+| natmachintell | Nature Machine Intelligence | [/nature/research/natmachintell](https://rsshub.app/nature/research/natmachintell) |
+
+- Using router (`/nature/research/` + "short name for a journal") to query latest research paper for a certain journal of Nature Publishing Group.
+ If the `:journal` parameter is blank, then latest research of Nature will return.
+- The journals from NPG are run by different group of people, and the website of may not be consitent for all the journals
+- Only abstract is rendered in some researches
### Nature News {#nature-journal-nature-news}
-<Route author="y9c TonyRL" example="/nature/news" path="/nature/news" supportScihub="1" radar="1" />
+<Route data={{"path":"/news","categories":["journal"],"example":"/nature/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["nature.com/latest-news","nature.com/news","nature.com/"]},"name":"Nature News","maintainers":["y9c","TonyRL"],"url":"nature.com/latest-news","location":"news.ts"}} />
### Research Highlight {#nature-journal-research-highlight}
-<Route author="y9c TonyRL" example="/nature/highlight" path="/nature/highlight/:journal?" paramsDesc={['short name for a journal, `nature` by default']} supportScihub="1" radar="1">
- :::warning
- Only some journals are supported.
- :::
-</Route>
-
-### Journal List {#nature-journal-journal-list}
+<Route data={{"path":"/highlight/:journal?","categories":["journal"],"example":"/nature/highlight","parameters":{"journal":"short name for a journal, `nature` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["nature.com/:journal/articles","nature.com/:journal","nature.com/"],"target":"/highlight/:journal"},"name":"Research Highlight","maintainers":[],"description":":::warning\n Only some journals are supported.\n :::","location":"highlight.ts"}} />
-<Route author="TonyRL" example="/nature/siteindex" path="/nature/siteindex" />
+:::warning
+Only some journals are supported.
+:::
## Network and Distributed System Security (NDSS) Symposium {#network-and-distributed-system-security-ndss-symposium}
### Accepted papers {#network-and-distributed-system-security-ndss-symposium-accepted-papers}
-<Route author="ZeddYu" example="/ndss-symposium/ndss" path="/ndss-symposium/ndss">
- Return results from 2020
-</Route>
+<Route data={{"path":"/ndss","categories":["journal"],"example":"/ndss-symposium/ndss","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ndss-symposium.org/"]},"name":"Accepted papers","maintainers":["ZeddYu"],"url":"ndss-symposium.org/","description":"Return results from 2020","location":"ndss.ts"}} />
+
+Return results from 2020
## Oxford University Press {#oxford-university-press}
### Oxford Academic {#oxford-university-press-oxford-academic}
-#### Journal {#oxford-university-press-oxford-academic-journal}
-
-<Route author="Fatpandac" example="/oup/journals/adaptation" path="/oup/journals/:name" paramsDesc={['short name for a journal, can be found in URL']} anticrawler="1" />
-
-## Proceedings of The National Academy of Sciences {#proceedings-of-the-national-academy-of-sciences}
+<Route data={{"path":"/journals/:name","categories":["journal"],"example":"/oup/journals/adaptation","parameters":{"name":"short name for a journal, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["academic.oup.com/","academic.oup.com/:name/issue"]},"name":"Oxford Academic","maintainers":[],"url":"academic.oup.com/","description":"#### Journal {#oxford-university-press-oxford-academic-journal}","location":"index.ts"}} />
-### Journal {#proceedings-of-the-national-academy-of-sciences-journal}
+#### Journal {#oxford-university-press-oxford-academic-journal}
-<Route author="emdoe HenryQW y9c" example="/pnas/latest" path="/pnas/:topicPath*" paramsDesc={['Topic path, support **Featured Topics**, **Articles By Topic** and [**Collected Papers**](https://www.pnas.org/about/collected-papers), `latest` by default']} radar="1" anticrawler="1" puppeteer="1" supportScihub="1">
- :::tip
- Some topics require adding `topic/` to `topicPath` like [`/pnas/topic/app-math`](https://rsshub.app/pnas/topic/app-math) and some don't like [`/pnas/biophysics-and-computational-biology`](https://rsshub.app/pnas/biophysics-and-computational-biology)
- :::
-</Route>
+## Royal Society of Chemistry {#royal-society-of-chemistry}
-## PubMed {#pubmed}
+### Journal {#royal-society-of-chemistry-journal}
-### Trending articles {#pubmed-trending-articles}
+<Route data={{"path":"/journal/:id/:category?","categories":["journal"],"example":"/rsc/journal/ta","parameters":{"id":"Journal id, can be found in URL","category":"Category, see below, All Recent Articles by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Journal","maintainers":["nczitzk"],"description":":::tip\n All journals at [Current journals](https://pubs.rsc.org/en/journals)\n :::\n\n | All Recent Articles | Advance Articles |\n | ------------------- | ---------------- |\n | allrecentarticles | advancearticles |","location":"journal.ts"}} />
-<Route author="y9c nczitzk" example="/pubmed/trending" path="/pubmed/trending/:filter?" paramsDesc={['Filters, can be found in URL']} supportScihub="1">
- :::tip
- For the parameter **filter**, the `filter` parameter in the URL should be split into a string by `,`, here is an example.
+:::tip
+All journals at [Current journals](https://pubs.rsc.org/en/journals)
+:::
- In `https://pubmed.ncbi.nlm.nih.gov/trending/?filter=simsearch1.fha&filter=pubt.clinicaltrial&filter=pubt.randomizedcontrolledtrial`, the filter parameters are `simsearch1.fha`, `pubt.clinicaltrial`, and `pubt.randomizedcontrolledtrial`. Therefore, the filter corresponding to the route should be filled with `simsearch1.fha,pubt.clinicaltrial,pubt.randomizedcontrolledtrial`, and the route is [`/pubmed/trending/simsearch1.fha,pubt .clinicaltrial,pubt.randomizedcontrolledtrial`](https://rsshub.app/pubmed/trending/simsearch1.fha,pubt.clinicaltrial,pubt.randomizedcontrolledtrial)
- :::
-</Route>
+| All Recent Articles | Advance Articles |
+| ------------------- | ---------------- |
+| allrecentarticles | advancearticles |
-## Routledge {#routledge}
+## Science Magazine {#science-magazine}
-### Book Series {#routledge-book-series}
+### Blogs {#science-magazine-blogs}
-<Route author="TonyRL" example="/routledge/:bookName/book-series/:bookId" path="/routledge/A-Colour-Atlas/book-series/CRCACOLOATLA" paramsDesc={['Book name, can be found in URL', 'Book ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/blogs/:name?","categories":["journal"],"example":"/science/blogs/pipeline","parameters":{"name":"Short name for the blog, get this from the url. Defaults to pipeline"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["science.org/blogs/:name"],"target":"/blogs/:name"},"name":"Blogs","maintainers":["TomHodson"],"description":"To subscribe to [IN THE PIPELINE by Derek Lowe’s](https://science.org/blogs/pipeline) or the [science editor's blog](https://science.org/blogs/editors-blog), use the name parameter `pipeline` or `editors-blog`.","location":"blogs.ts"}} />
-## Royal Society of Chemistry {#royal-society-of-chemistry}
+To subscribe to [IN THE PIPELINE by Derek Lowe’s](https://science.org/blogs/pipeline) or the [science editor's blog](https://science.org/blogs/editors-blog), use the name parameter `pipeline` or `editors-blog`.
-### Journal {#royal-society-of-chemistry-journal}
+### Cover Story {#science-magazine-cover-story}
-<Route author="nczitzk" example="/rsc/journal/ta" path="/rsc/journal/:id/:category?" paramsDesc={['Journal id, can be found in URL', 'Category, see below, All Recent Articles by default']} radar="1">
- :::tip
- All journals at [Current journals](https://pubs.rsc.org/en/journals)
- :::
+<Route data={{"path":"/cover","categories":["journal"],"example":"/science/cover","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["science.org/"]},"name":"Cover Story","maintainers":["y9c","TonyRL"],"url":"science.org/","description":"Subscribe to the cover images of Science journals, and get the latest publication updates in time.\n\n Including 'Science', 'Science Advances', 'Science Immunology', 'Science Robotics', 'Science Signaling' and 'Science Translational Medicine'.","location":"cover.ts"}} />
- | All Recent Articles | Advance Articles |
- | ------------------- | ---------------- |
- | allrecentarticles | advancearticles |
-</Route>
+Subscribe to the cover images of Science journals, and get the latest publication updates in time.
-## Science Magazine {#science-magazine}
+Including 'Science', 'Science Advances', 'Science Immunology', 'Science Robotics', 'Science Signaling' and 'Science Translational Medicine'.
### Current Issue {#science-magazine-current-issue}
-<Route author="y9c TonyRL" example="/science/current/science" path="/science/current/:journal?" paramsDesc={['Short name for a journal']} supportScihub="1" anticrawler="1" puppeteer="1" radar="1">
- | Short name | Full name of the journal | Route |
- | :---------: | :----------------------------: | ------------------------------------------------------------------------------ |
- | science | Science | [/science/current/science](https://rsshub.app/science/current/science) |
- | sciadv | Science Advances | [/science/current/sciadv](https://rsshub.app/science/current/sciadv) |
- | sciimmunol | Science Immunology | [/science/current/sciimmunol](https://rsshub.app/science/current/sciimmunol) |
- | scirobotics | Science Robotics | [/science/current/scirobotics](https://rsshub.app/science/current/scirobotics) |
- | signaling | Science Signaling | [/science/current/signaling](https://rsshub.app/science/current/signaling) |
- | stm | Science Translational Medicine | [/science/current/stm](https://rsshub.app/science/current/stm) |
+<Route data={{"path":"/current/:journal?","categories":["journal"],"example":"/science/current/science","parameters":{"journal":"Short name for a journal"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["science.org/journal/:journal","science.org/toc/:journal/current"],"target":"/current/:journal"},"name":"Current Issue","maintainers":["y9c","TonyRL"],"description":"| Short name | Full name of the journal | Route |\n | :---------: | :----------------------------: | ------------------------------------------------------------------------------ |\n | science | Science | [/science/current/science](https://rsshub.app/science/current/science) |\n | sciadv | Science Advances | [/science/current/sciadv](https://rsshub.app/science/current/sciadv) |\n | sciimmunol | Science Immunology | [/science/current/sciimmunol](https://rsshub.app/science/current/sciimmunol) |\n | scirobotics | Science Robotics | [/science/current/scirobotics](https://rsshub.app/science/current/scirobotics) |\n | signaling | Science Signaling | [/science/current/signaling](https://rsshub.app/science/current/signaling) |\n | stm | Science Translational Medicine | [/science/current/stm](https://rsshub.app/science/current/stm) |\n\n - Using route (`/science/current/` + \"short name for a journal\") to get current issue of a journal from AAAS.\n - Leaving it empty (`/science/current`) to get update from Science.","location":"current.ts"}} />
- - Using route (`/science/current/` + "short name for a journal") to get current issue of a journal from AAAS.
- - Leaving it empty (`/science/current`) to get update from Science.
-</Route>
+| Short name | Full name of the journal | Route |
+| :---------: | :----------------------------: | ------------------------------------------------------------------------------ |
+| science | Science | [/science/current/science](https://rsshub.app/science/current/science) |
+| sciadv | Science Advances | [/science/current/sciadv](https://rsshub.app/science/current/sciadv) |
+| sciimmunol | Science Immunology | [/science/current/sciimmunol](https://rsshub.app/science/current/sciimmunol) |
+| scirobotics | Science Robotics | [/science/current/scirobotics](https://rsshub.app/science/current/scirobotics) |
+| signaling | Science Signaling | [/science/current/signaling](https://rsshub.app/science/current/signaling) |
+| stm | Science Translational Medicine | [/science/current/stm](https://rsshub.app/science/current/stm) |
-### Cover Story {#science-magazine-cover-story}
-
-<Route author="y9c TonyRL" example="/science/cover" path="/science/cover" anticrawler="1" radar="1">
- Subscribe to the cover images of Science journals, and get the latest publication updates in time.
-
- Including 'Science', 'Science Advances', 'Science Immunology', 'Science Robotics', 'Science Signaling' and 'Science Translational Medicine'.
-</Route>
+- Using route (`/science/current/` + "short name for a journal") to get current issue of a journal from AAAS.
+- Leaving it empty (`/science/current`) to get update from Science.
### First Release {#science-magazine-first-release}
-<Route author="y9c TonyRL" example="/science/early" path="/science/early/:journal?" paramsDesc={['Short name for a journal']} supportScihub="1" anticrawler="1" puppeteer="1" radar="1">
- *only Science, Science Immunology and Science Translational Medicine have first release*
-</Route>
+<Route data={{"path":"/early/:journal?","categories":["journal"],"example":"/science/early","parameters":{"journal":"Short name for a journal"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":true},"radar":{"source":["science.org/journal/:journal","science.org/toc/:journal/0/0"],"target":"/early/:journal"},"name":"First Release","maintainers":["y9c","TonyRL"],"description":"*only Science, Science Immunology and Science Translational Medicine have first release*","location":"early.ts"}} />
-### Blogs {#science-magazine-blogs}
-
-<Route author="TomHodson" example="/science/blogs/pipeline" path="/science/blogs/:name?" paramsDesc={['Short name for the blog, get this from the url. Defaults to pipeline']} anticrawler="1" puppeteer="1" radar="1">
- To subscribe to [IN THE PIPELINE by Derek Lowe’s](https://science.org/blogs/pipeline) or the [science editor's blog](https://science.org/blogs/editors-blog), use the name parameter `pipeline` or `editors-blog`.
-</Route>
+*only Science, Science Immunology and Science Translational Medicine have first release*
## ScienceDirect {#sciencedirect}
### Journal {#sciencedirect-journal}
-<Route author="nczitzk" example="/sciencedirect/journal/research-policy" path="/sciencedirect/journal/:id" paramsDesc={['Journal id, can be found in URL']} notOperational="1" />
+<Route data={{"path":"/journal/:id","categories":["journal"],"example":"/sciencedirect/journal/research-policy","parameters":{"id":"Journal id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sciencedirect.com/journal/:id","sciencedirect.com/"]},"name":"Journal","maintainers":["nczitzk"],"location":"journal.ts"}} />
## Springer {#springer}
### Journal {#springer-journal}
-<Route author="Derekmini TonyRL" example="/springer/journal/10450" path="/springer/journal/:journal" paramsDesc={['Journal Code, the number in the URL from the journal homepage']} radar="1" />
+<Route data={{"path":"/journal/:journal","categories":["journal"],"example":"/springer/journal/10450","parameters":{"journal":"Journal Code, the number in the URL from the journal homepage"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.springer.com/journal/:journal/*"]},"name":"Journal","maintainers":["Derekmini","TonyRL"],"location":"journal.ts"}} />
## Telecompaper {#telecompaper}
### News {#telecompaper-news}
-<Route author="nczitzk" example="/telecompaper/news/mobile/2020/China/News" path="/telecompaper/news/:caty/:year?/:country?/:type?" paramsDesc={['Category, see table below', 'Year. The year in respective category page filter, `all` for unlimited year, empty by default', 'Country or continent, `all` for unlimited country or continent, empty by default', 'Type, can be found in the `Types` filter, `all` for unlimited type, unlimited by default']} notOperational="1">
- Category
+<Route data={{"path":"/news/:caty/:year?/:country?/:type?","categories":["journal"],"example":"/telecompaper/news/mobile/2020/China/News","parameters":{"caty":"Category, see table below","year":"Year. The year in respective category page filter, `all` for unlimited year, empty by default","country":"Country or continent, `all` for unlimited country or continent, empty by default","type":"Type, can be found in the `Types` filter, `all` for unlimited type, unlimited by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["nczitzk"],"description":"Category\n\n | WIRELESS | BROADBAND | VIDEO | GENERAL | IT | INDUSTRY RESOURCES |\n | -------- | --------- | --------- | ------- | -- | ------------------ |\n | mobile | internet | boardcast | general | it | industry-resources |\n\n :::tip\n If `country` or `type` includes empty space, use `-` instead. For example, `United States` needs to be replaced with `United-States`, `White paper` needs to be replaced with `White-paper`\n\n Filters in [INDUSTRY RESOURCES](https://www.telecompaper.com/industry-resources) only provides `Content Type` which corresponds to `type`. `year` and `country` are not supported.\n :::","location":"news.ts"}} />
+
+Category
- | WIRELESS | BROADBAND | VIDEO | GENERAL | IT | INDUSTRY RESOURCES |
- | -------- | --------- | --------- | ------- | -- | ------------------ |
- | mobile | internet | boardcast | general | it | industry-resources |
+| WIRELESS | BROADBAND | VIDEO | GENERAL | IT | INDUSTRY RESOURCES |
+| -------- | --------- | --------- | ------- | -- | ------------------ |
+| mobile | internet | boardcast | general | it | industry-resources |
- :::tip
- If `country` or `type` includes empty space, use `-` instead. For example, `United States` needs to be replaced with `United-States`, `White paper` needs to be replaced with `White-paper`
+:::tip
+If `country` or `type` includes empty space, use `-` instead. For example, `United States` needs to be replaced with `United-States`, `White paper` needs to be replaced with `White-paper`
- Filters in [INDUSTRY RESOURCES](https://www.telecompaper.com/industry-resources) only provides `Content Type` which corresponds to `type`. `year` and `country` are not supported.
- :::
-</Route>
+Filters in [INDUSTRY RESOURCES](https://www.telecompaper.com/industry-resources) only provides `Content Type` which corresponds to `type`. `year` and `country` are not supported.
+:::
### Search {#telecompaper-search}
-<Route author="nczitzk" example="/telecompaper/search/Nokia" path="/telecompaper/search/:keyword?/:company?/:sort?/:period?" paramsDesc={['Keyword', 'Company name, empty by default', 'Sorting, see table below, `Date Descending` by default', 'Date selection, Last 12 months by default']} notOperational="1">
- Sorting
+<Route data={{"path":"/search/:keyword?/:company?/:sort?/:period?","categories":["journal"],"example":"/telecompaper/search/Nokia","parameters":{"keyword":"Keyword","company":"Company name, empty by default","sort":"Sorting, see table below, `Date Descending` by default","period":"Date selection, Last 12 months by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["nczitzk"],"description":"Sorting\n\n | Date Ascending | Date Descending |\n | -------------- | --------------- |\n | 1 | 2 |\n\n Date selection\n\n | 1 month | 3 months | 6 months | 12 months | 24 months |\n | ------- | -------- | -------- | --------- | --------- |\n | 1 | 3 | 6 | 12 | 24 |","location":"search.ts"}} />
+
+Sorting
- | Date Ascending | Date Descending |
- | -------------- | --------------- |
- | 1 | 2 |
+| Date Ascending | Date Descending |
+| -------------- | --------------- |
+| 1 | 2 |
- Date selection
+Date selection
- | 1 month | 3 months | 6 months | 12 months | 24 months |
- | ------- | -------- | -------- | --------- | --------- |
- | 1 | 3 | 6 | 12 | 24 |
-</Route>
+| 1 month | 3 months | 6 months | 12 months | 24 months |
+| ------- | -------- | -------- | --------- | --------- |
+| 1 | 3 | 6 | 12 | 24 |
## The University of Chicago Press: Journals {#the-university-of-chicago-press-journals}
### Current Issue {#the-university-of-chicago-press-journals-current-issue}
-<Route author="TonyRL" example="/uchicago/journals/current/jpe" path="/uchicago/journals/current/:journal" paramsDesc={['Journal id, can be found in URL. [Browse journals by title](https://www.journals.uchicago.edu/action/showPublications)']} radar="1" anticrawler="1" />
+<Route data={{"path":"/journals/current/:journal","categories":["journal"],"example":"/uchicago/journals/current/jpe","parameters":{"journal":"Journal id, can be found in URL. [Browse journals by title](https://www.journals.uchicago.edu/action/showPublications)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["journals.uchicago.edu/toc/:journal/current","journals.uchicago.edu/journal/:journal"]},"name":"Current Issue","maintainers":["TonyRL"],"location":"current.ts"}} />
## Trending Papers {#trending-papers}
### Trending Papers on arXiv {#trending-papers-trending-papers-on-arxiv}
-<Route author="CookiePieWw" example="/trendingpapers/papers" path="/trendingpapers/papers/:category?/:time?/:cited?" paramsDesc={['Category of papers, can be found in URL. `All categories` by default.', 'Time like `24 hours` to specify the duration of ranking, can be found in URL. `Since beginning` by default.', 'Cited or uncited papers, can be found in URL. `Cited and uncited papers` by default.']} />
+<Route data={{"path":"/papers/:category?/:time?/:cited?","categories":["journal"],"example":"/trendingpapers/papers","parameters":{"category":"Category of papers, can be found in URL. `All categories` by default.","time":"Time like `24 hours` to specify the duration of ranking, can be found in URL. `Since beginning` by default.","cited":"Cited or uncited papers, can be found in URL. `Cited and uncited papers` by default."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Trending Papers on arXiv","maintainers":["CookiePieWw"],"location":"papers.ts"}} />
## USENIX {#usenix}
### Security Symposia {#usenix-security-symposia}
-<Route author="ZeddYu" example="/usenix/usenix-security-sympoium" path="/usenix/usenix-security-sympoium">
- Return results from 2020
-</Route>
+<Route data={{"path":"/usenix-security-sympoium","categories":["journal"],"example":"/usenix/usenix-security-sympoium","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["usenix.org/conferences/all","usenix.org/conferences","usenix.org/"]},"name":"Security Symposia","maintainers":["ZeddYu"],"url":"usenix.org/conferences/all","description":"Return results from 2020","location":"usenix.ts"}} />
+
+Return results from 2020
## X-MOL {#x-mol}
### Journal {#x-mol-journal}
-<Route author="cssxsh" example="/x-mol/paper/0/9" path="/x-mol/paper/:type/:magazine" paramsDesc={['type','magazine']} anticrawler="1" />
+<Route data={{"path":"/paper/:type/:magazine","categories":["journal"],"example":"/x-mol/paper/0/9","parameters":{"type":"type","magazine":"magazine"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Journal","maintainers":["cssxsh"],"location":"paper.ts"}} />
## 管理世界 {#guan-li-shi-jie}
### 分类 {#guan-li-shi-jie-fen-lei}
-<Route author="nczitzk" example="/mvm" path="/mvm/:category?" paramsDesc={['分类,见下表,默认为本期要目']} notOperational="1">
- | 本期要目 | 网络首发 | 学术活动 | 通知公告 |
- | -------- | -------- | -------- | -------- |
- | bqym | wlsf | xshd | tzgg |
-</Route>
+<Route data={{"path":"/:category?","categories":["journal"],"example":"/mvm","parameters":{"category":"分类,见下表,默认为本期要目"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mwm.net.cn/web/:category","mwm.net.cn/"]},"name":"分类","maintainers":["nczitzk"],"description":"| 本期要目 | 网络首发 | 学术活动 | 通知公告 |\n | -------- | -------- | -------- | -------- |\n | bqym | wlsf | xshd | tzgg |","location":"index.ts"}} />
-## 环球法律评论 {#huan-qiu-fa-lv-ping-lun}
+| 本期要目 | 网络首发 | 学术活动 | 通知公告 |
+| -------- | -------- | -------- | -------- |
+| bqym | wlsf | xshd | tzgg |
-### 期刊 {#huan-qiu-fa-lv-ping-lun-qi-kan}
+## 中国知网 {#zhong-guo-zhi-wang}
-<Route author="nczitzk" example="/globallawreview" path="/globallawreview" />
+### Unknown {#zhong-guo-zhi-wang-unknown}
-## 中国知网 {#zhong-guo-zhi-wang}
+<Route data={{"path":"/author/:code","categories":["journal"],"example":"/cnki/author/000042423923","parameters":{"code":"作者对应code,可以在网址中得到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["harveyqiu","Derekmini"],"location":"author.ts"}} />
### 期刊 {#zhong-guo-zhi-wang-qi-kan}
-<Route author="Fatpandac Derekmini" example="/cnki/journals/LKGP" path="/cnki/journals/:name" paramsDesc={['期刊缩写,可以在网址中得到']} notOperational="1" />
+<Route data={{"path":"/journals/:name","categories":["journal"],"example":"/cnki/journals/LKGP","parameters":{"name":"期刊缩写,可以在网址中得到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["navi.cnki.net/knavi/journals/:name/detail"]},"name":"期刊","maintainers":["Fatpandac","Derekmini"],"location":"journals.ts"}} />
### 网络首发 {#zhong-guo-zhi-wang-wang-luo-shou-fa}
-<Route author="Fatpandac" example="/cnki/journals/debut/LKGP" path="/cnki/journals/debut/:name" paramsDesc={['期刊缩写,可以在网址中得到']} />
-
-### 作者期刊文献 {#zhong-guo-zhi-wang-zuo-zhe-qi-kan-wen-xian}
-
-:::tip
-可能仅限中国大陆服务器访问,以实际情况为准。
-:::
-
-<Route author="harveyqiu Derekmini" example="/cnki/author/000042423923" path="/cnki/author/:code" paramsDesc={['作者对应code,可以在网址中得到']} notOperational="1" />
+<Route data={{"path":"/journals/debut/:name","categories":["journal"],"example":"/cnki/journals/debut/LKGP","parameters":{"name":"期刊缩写,可以在网址中得到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["navi.cnki.net/knavi/journals/:name/detail"]},"name":"网络首发","maintainers":["Fatpandac"],"location":"debut.ts"}} />
diff --git a/website/docs/routes/live.mdx b/website/docs/routes/live.mdx
index 85bc81b473801b..013573c44528f1 100644
--- a/website/docs/routes/live.mdx
+++ b/website/docs/routes/live.mdx
@@ -1,91 +1,99 @@
-# 🎥 Live
+# live
-## LiSA {#lisa}
+## Bilibili {#bilibili}
-### News {#lisa-news}
+### 直播分区 {#bilibili-zhi-bo-fen-qu}
+
+<Route data={{"path":"/live/area/:areaID/:order","categories":["live"],"example":"/bilibili/live/area/207/online","parameters":{"areaID":"分区 ID 分区增删较多, 可通过 [分区列表](https://api.live.bilibili.com/room/v1/Area/getList) 查询","order":"排序方式, live_time 开播时间, online 人气"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"直播分区","maintainers":["Qixingchen"],"description":":::warning\n 由于接口未提供开播时间,如果直播间未更换标题与分区,将视为一次。如果直播间更换分区与标题,将视为另一项\n :::","location":"live-area.ts"}} />
+
+:::warning
+由于接口未提供开播时间,如果直播间未更换标题与分区,将视为一次。如果直播间更换分区与标题,将视为另一项
+:::
-<Route author="Kiotlin" example="/lxixsxa/info" path="/lxixsxa/info" radar="1" />
+### 直播开播 {#bilibili-zhi-bo-kai-bo}
+
+<Route data={{"path":"/live/room/:roomID","categories":["live"],"example":"/bilibili/live/room/3","parameters":{"roomID":"房间号, 可在直播间 URL 中找到, 长短号均可"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["live.bilibili.com/:roomID"]},"name":"直播开播","maintainers":["Qixingchen"],"location":"live-room.ts"}} />
+
+### 直播搜索 {#bilibili-zhi-bo-sou-suo}
+
+<Route data={{"path":"/live/search/:key/:order","categories":["live"],"example":"/bilibili/live/search/dota/online","parameters":{"key":"搜索关键字","order":"排序方式, live_time 开播时间, online 人气"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"直播搜索","maintainers":["Qixingchen"],"location":"live-search.ts"}} />
+
+## LiSA {#lisa}
### Latest Discography {#lisa-latest-discography}
-<Route author="Kiotlin" example="/lxixsxa/disco" path="/lxixsxa/disco" radar="1" />
+<Route data={{"path":"/disco","categories":["live"],"example":"/lxixsxa/disco","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.lxixsxa.com/","www.lxixsxa.com/discography"]},"name":"Latest Discography","maintainers":["Kiotlin"],"url":"www.lxixsxa.com/","location":"discography.ts"}} />
-## Twitch {#twitch}
+### News {#lisa-news}
-### Live {#twitch-live}
+<Route data={{"path":"/info","categories":["live"],"example":"/lxixsxa/info","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.lxixsxa.com/","www.lxixsxa.com/info"]},"name":"News","maintainers":["Kiotlin"],"url":"www.lxixsxa.com/","location":"information.ts"}} />
-<Route author="hoilc" path="/twitch/live/:login" example="/twitch/live/riotgames" paramsDesc={['Twitch username']} radar="1" />
+## Twitch {#twitch}
### Channel Video {#twitch-channel-video}
-<Route author="hoilc" path="/twitch/video/:login/:filter?" example="/twitch/video/riotgames/highlights" paramsDesc={['Twitch username', 'Video type, Default to all']} radar="1" />
+<Route data={{"path":"/video/:login/:filter?","categories":["live"],"example":"/twitch/video/riotgames/highlights","parameters":{"login":"Twitch username","filter":"Video type, Default to all"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.twitch.tv/:login/videos"],"target":"/video/:login"},"name":"Channel Video","maintainers":["hoilc"],"description":"| archive | highlights | all |\n| ----------------- | ----------------------------- | ---------- |\n| Recent broadcasts | Recent highlights and uploads | All videos |","location":"video.ts"}} />
| archive | highlights | all |
| ----------------- | ----------------------------- | ---------- |
| Recent broadcasts | Recent highlights and uploads | All videos |
-### Stream Schedule {#twitch-stream-schedule}
+### Live {#twitch-live}
-<Route author="hoilc" path="/twitch/schedule/:login" example="/twitch/schedule/riotgames" paramsDesc={['Twitch username']} radar="1" />
+<Route data={{"path":"/live/:login","categories":["live"],"example":"/twitch/live/riotgames","parameters":{"login":"Twitch username"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Live","maintainers":["hoilc"],"location":"live.ts"}} />
-## Yoasobi Official {#yoasobi-official}
+### Stream Schedule {#twitch-stream-schedule}
-### News & Biography {#yoasobi-official-news-biography}
+<Route data={{"path":"/schedule/:login","categories":["live"],"example":"/twitch/schedule/riotgames","parameters":{"login":"Twitch username"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.twitch.tv/:login/schedule"]},"name":"Stream Schedule","maintainers":["hoilc"],"location":"schedule.ts"}} />
-<Route author="Kiotlin" example="/yoasobi-music/info/news" path="/yoasobi-music/info/:category?" paramsDesc={['`news`, `biography`']} radar="1" />
+## Yoasobi Official {#yoasobi-official}
### Live {#yoasobi-official-live}
-<Route author="Kiotlin" example="/yoasobi-music/live" path="/yoasobi-music/live" radar="1" />
+<Route data={{"path":"/live","categories":["live"],"example":"/yoasobi-music/live","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.yoasobi-music.jp/","www.yoasobi-music.jp/live"]},"name":"Live","maintainers":["Kiotlin"],"url":"www.yoasobi-music.jp/","location":"live.ts"}} />
### Media {#yoasobi-official-media}
-<Route author="Kiotlin" example="/yoasobi-music/media" path="/yoasobi-music/media" radar="1" />
+<Route data={{"path":"/media","categories":["live"],"example":"/yoasobi-music/media","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.yoasobi-music.jp/","www.yoasobi-music.jp/media"]},"name":"Media","maintainers":["Kiotlin"],"url":"www.yoasobi-music.jp/","location":"media.ts"}} />
-## YouTube Live {#youtube-live}
-
-### Live {#youtube-live-live}
+### News & Biography {#yoasobi-official-news-biography}
-<Route author="sussurr127" path="/youtube/live/:username/:embed?" example="/youtube/live/@GawrGura" paramsDesc={['YouTuber id', 'Default to embed the video, set to any value to disable embedding']} radar="1" />
+<Route data={{"path":"/info/:category?","categories":["live"],"example":"/yoasobi-music/info/news","parameters":{"category":"`news`, `biography`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.yoasobi-music.jp/","www.yoasobi-music.jp/:category"],"target":"/info/:category"},"name":"News & Biography","maintainers":[],"url":"www.yoasobi-music.jp/","location":"info.ts"}} />
-## 哔哩哔哩直播 {#bi-li-bi-li-zhi-bo}
+## YouTube Live {#youtube-live}
-### 直播开播 {#bi-li-bi-li-zhi-bo-zhi-bo-kai-bo}
+### Live {#youtube-live-live}
-<Route author="Qixingchen" example="/bilibili/live/room/3" path="/bilibili/live/room/:roomID" paramsDesc={['房间号, 可在直播间 URL 中找到, 长短号均可']} />
+<Route data={{"path":"/live/:username/:embed?","categories":["live"],"example":"/youtube/live/@GawrGura","parameters":{"username":"YouTuber id","embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Live","maintainers":["sussurr127"],"location":"live.ts"}} />
-### 直播搜索 {#bi-li-bi-li-zhi-bo-zhi-bo-sou-suo}
+## 抖音直播 {#dou-yin-zhi-bo}
-<Route author="Qixingchen" example="/bilibili/live/search/dota/online" path="/bilibili/live/search/:key/:order" paramsDesc={['搜索关键字', '排序方式, live_time 开播时间, online 人气']} />
+:::warning
+反爬严格,需要启用 puppeteer。抖音的视频 CDN 会验证 Referer,意味着许多阅读器都无法直接播放内嵌视频,以下是一些变通解决方案:
-### 直播分区 {#bi-li-bi-li-zhi-bo-zhi-bo-fen-qu}
+1. 启用内嵌视频 (`embed=1`), 参考 [通用参数 -> 多媒体处理](/parameter#多媒体处理) 配置 `multimedia_hotlink_template` **或** `wrap_multimedia_in_iframe`。
+2. 关闭内嵌视频 (`embed=0`),手动点击 `视频直链` 超链接,一般情况下均可成功播放视频。若仍然出现 HTTP 403,请复制 URL 以后到浏览器打开。
+3. 点击原文链接打开抖音网页版的视频详情页播放视频。
+:::
-<Route author="Qixingchen" example="/bilibili/live/area/207/online" path="/bilibili/live/area/:areaID/:order" paramsDesc={['分区 ID 分区增删较多, 可通过 [分区列表](https://api.live.bilibili.com/room/v1/Area/getList) 查询', '排序方式, live_time 开播时间, online 人气']}>
- :::warning
- 由于接口未提供开播时间,如果直播间未更换标题与分区,将视为一次。如果直播间更换分区与标题,将视为另一项
- :::
-</Route>
+额外参数
-## 抖音直播 {#dou-yin-zhi-bo}
+| 键 | 含义 | 值 | 默认值 |
+| ------- | ---------------- | ---------------------- | ------- |
+| `embed` | 是否启用内嵌视频 | `0`/`1`/`true`/`false` | `false` |
### 直播间开播 {#dou-yin-zhi-bo-zhi-bo-jian-kai-bo}
-<Route author="TonyRL" example="/douyin/live/685317364746" path="/douyin/live/:rid" paramsDesc={['直播间 id, 可在主播直播间页 URL 中找到']} anticrawler="1" radar="1" puppeteer="1" />
+<Route data={{"path":"/live/:rid","categories":["live"],"example":"/douyin/live/685317364746","parameters":{"rid":"直播间 id, 可在主播直播间页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["live.douyin.com/:rid"]},"name":"直播间开播","maintainers":["TonyRL"],"location":"live.ts"}} />
## 斗鱼直播 {#dou-yu-zhi-bo}
### 直播间开播 {#dou-yu-zhi-bo-zhi-bo-jian-kai-bo}
-<Route author="DIYgod" example="/douyu/room/24422" path="/douyu/room/:id" paramsDesc={['直播间 id, 可在主播直播间页 URL 中找到']} />
-
-## 虎牙直播 {#hu-ya-zhi-bo}
-
-### 直播间开播 {#hu-ya-zhi-bo-zhi-bo-jian-kai-bo}
-
-<Route author="SettingDust xyqfer" example="/huya/live/edmunddzhang" path="/huya/live/:id" paramsDesc={['直播间id或主播名(有一些id是名字,如上)']} radar="1" />
+<Route data={{"path":"/room/:id","categories":["live"],"example":"/douyu/room/24422","parameters":{"id":"直播间 id, 可在主播直播间页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.douyu.com/:id","www.douyu.com/"]},"name":"直播间开播","maintainers":["DIYgod"],"location":"room.ts"}} />
## 浪 Play 直播 {#lang-play-zhi-bo}
-### 直播间开播 {#lang-play-zhi-bo-zhi-bo-jian-kai-bo}
+### Unknown {#lang-play-zhi-bo-unknown}
-<Route author="MittWillson" example="/lang/live/room/1352360" path="/lang/live/room/:id" paramsDesc={['直播间 id, 可在主播直播间页 URL 中找到']} anticrawler="1" />
+<Route data={{"path":"/live/room/:id","categories":["live"],"example":"/lang/live/room/1352360","parameters":{"id":"直播间 id, 可在主播直播间页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lang.live/room/:id"]},"name":"Unknown","maintainers":["MittWillson"],"location":"room.ts"}} />
diff --git a/website/docs/routes/multimedia.mdx b/website/docs/routes/multimedia.mdx
index bdb4e747bfc365..901b104a431904 100644
--- a/website/docs/routes/multimedia.mdx
+++ b/website/docs/routes/multimedia.mdx
@@ -1,233 +1,96 @@
-# 🔊 Multimedia
-
-## 141JAV {#141jav}
-
-:::tip
-官方提供的订阅源不支持 BT 下载订阅,地址为 [https://141jav.com/feeds/](https://141jav.com/feeds/)
-:::
-
-### 通用 {#141jav-tong-yong}
-
-<Route author="cgkings nczitzk" example="/141jav/popular/30" path="/141jav/:type?/:keyword?" paramsDesc={['类型', '关键词']} supportBT="1" radar="1" anticrawler="1">
- **类型**
-
- | 最新 | 热门 | 随机 | 指定演员 | 指定标签 |
- | ---- | ------- | ------ | -------- | -------- |
- | new | popular | random | actress | tag |
-
- **关键词**
-
- | 空 | 日期范围 | 演员名 | 标签名 |
- | -- | ----------- | ------------ | -------------- |
- | | 7 / 30 / 60 | Yua%20Mikami | Adult%20Awards |
-
- **示例说明**
-
- - `/141jav/new`
-
- 仅当类型为 `new` `popular` 或 `random` 时关键词为 **空**
-
- - `/141jav/popular/30`
-
- `popular` `random` 类型的关键词可填写 `7` `30` 或 `60` 三个 **日期范围** 之一,分别对应 **7 天**、**30 天** 或 **60 天内**
-
- - `/141jav/actress/Yua%20Mikami`
-
- `actress` 类型的关键词必须填写 **演员名** ,可在 [此处](https://141jav.com/actress) 演员单页链接中获取
-
- - `/141jav/tag/Adult%20Awards`
-
- `tag` 类型的关键词必须填写 **标签名** 且标签中的 `/` 必须替换为 `%2F` ,可在 [此处](https://141jav.com/tag) 标签单页链接中获取
-
- - `/141jav/date/2020/07/30`
-
- `date` 类型的关键词必须填写 **日期**
-</Route>
-
-## 141PPV {#141ppv}
-
-:::tip
-官方提供的订阅源不支持 BT 下载订阅,地址为 [https://141ppv.com/feeds/](https://141ppv.com/feeds/)
-:::
-
-### 通用 {#141ppv-tong-yong}
-
-<Route author="cgkings nczitzk" example="/141ppv/popular/30" path="/141ppv/:type?/:keyword?" paramsDesc={['类型', '关键词']} supportBT="1" radar="1">
- **类型**
-
- | 最新 | 热门 | 随机 | 指定演员 | 指定标签 |
- | ---- | ------- | ------ | -------- | -------- |
- | new | popular | random | actress | tag |
-
- **关键词**
-
- | 空 | 日期范围 | 演员名 | 标签名 |
- | -- | ----------- | ------------ | -------------- |
- | | 7 / 30 / 60 | Yua%20Mikami | Adult%20Awards |
-
- **示例说明**
-
- - `/141ppv/new`
-
- 仅当类型为 `new` `popular` 或 `random` 时关键词为 **空**
-
- - `/141ppv/popular/30`
-
- `popular` `random` 类型的关键词可填写 `7` `30` 或 `60` 三个 **日期范围** 之一,分别对应 **7 天**、**30 天** 或 **60 天内**
-
- - `/141ppv/actress/Yua%20Mikami`
-
- `actress` 类型的关键词必须填写 **演员名** ,可在 [此处](https://141ppv.com/actress) 演员单页链接中获取
-
- - `/141ppv/tag/Adult%20Awards`
-
- `tag` 类型的关键词必须填写 **标签名** 且标签中的 `/` 必须替换为 `%2F` ,可在 [此处](https://141ppv.com/tag) 标签单页链接中获取
-
- - `/141ppv/date/2020/07/30`
-
- `date` 类型的关键词必须填写 **日期**
-</Route>
+# multimedia
## 2048 核基地 {#2048-he-ji-di}
### 论坛 {#2048-he-ji-di-lun-tan}
-<Route author="hoilc nczitzk" example="/2048/2" path="/2048/:id?" paramsDesc={['板块 ID, 见下表,默认为最新合集,即 `3`,亦可在 URL 中找到, 例如, `thread.php?fid-3.html`中, 板块 ID 为`3`']} supportBT="1">
- | 最新合集 | 亞洲無碼 | 日本騎兵 | 歐美新片 | 國內原創 | 中字原創 | 三級寫真 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 3 | 4 | 5 | 13 | 15 | 16 | 18 |
+<Route data={{"path":"/:id?","categories":["multimedia"],"example":"/2048/2","parameters":{"id":"板块 ID, 见下表,默认为最新合集,即 `3`,亦可在 URL 中找到, 例如, `thread.php?fid-3.html`中, 板块 ID 为`3`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"论坛","maintainers":["nczitzk"],"description":"| 最新合集 | 亞洲無碼 | 日本騎兵 | 歐美新片 | 國內原創 | 中字原創 | 三級寫真 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 3 | 4 | 5 | 13 | 15 | 16 | 18 |\n\n | 有碼.HD | 亞洲 SM.HD | 日韓 VR/3D | 歐美 VR/3D | S-cute / Mywife / G-area |\n | ------- | ---------- | ---------- | ---------- | ------------------------ |\n | 116 | 114 | 96 | 97 | 119 |\n\n | 網友自拍 | 亞洲激情 | 歐美激情 | 露出偷窺 | 高跟絲襪 | 卡通漫畫 | 原創达人 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 23 | 24 | 25 | 26 | 27 | 28 | 135 |\n\n | 唯美清純 | 网络正妹 | 亞洲正妹 | 素人正妹 | COSPLAY | 女优情报 | Gif 动图 |\n | -------- | -------- | -------- | -------- | ------- | -------- | -------- |\n | 21 | 274 | 276 | 277 | 278 | 29 | |\n\n | 獨家拍攝 | 稀有首發 | 网络见闻 | 主播實錄 | 珍稀套圖 | 名站同步 | 实用漫画 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 213 | 94 | 283 | 111 | 88 | 131 | 180 |\n\n | 网盘二区 | 网盘三区 | 分享福利 | 国产精选 | 高清福利 | 高清首发 | 多挂原创 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 72 | 272 | 195 | 280 | 79 | 216 | 76 |\n\n | 磁链迅雷 | 正片大片 | H-GAME | 有声小说 | 在线视频 | 在线快播影院 |\n | -------- | -------- | ------ | -------- | -------- | ------------ |\n | 43 | 67 | 66 | 55 | 78 | 279 |\n\n | 综合小说 | 人妻意淫 | 乱伦迷情 | 长篇连载 | 文学作者 | TXT 小说打包 |\n | -------- | -------- | -------- | -------- | -------- | ------------ |\n | 48 | 103 | 50 | 54 | 100 | 109 |\n\n | 聚友客栈 | 坛友自售 |\n | -------- | -------- |\n | 57 | 136 |","location":"index.ts"}} />
- | 有碼.HD | 亞洲 SM.HD | 日韓 VR/3D | 歐美 VR/3D | S-cute / Mywife / G-area |
- | ------- | ---------- | ---------- | ---------- | ------------------------ |
- | 116 | 114 | 96 | 97 | 119 |
+| 最新合集 | 亞洲無碼 | 日本騎兵 | 歐美新片 | 國內原創 | 中字原創 | 三級寫真 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 3 | 4 | 5 | 13 | 15 | 16 | 18 |
- | 網友自拍 | 亞洲激情 | 歐美激情 | 露出偷窺 | 高跟絲襪 | 卡通漫畫 | 原創达人 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 23 | 24 | 25 | 26 | 27 | 28 | 135 |
+| 有碼.HD | 亞洲 SM.HD | 日韓 VR/3D | 歐美 VR/3D | S-cute / Mywife / G-area |
+| ------- | ---------- | ---------- | ---------- | ------------------------ |
+| 116 | 114 | 96 | 97 | 119 |
- | 唯美清純 | 网络正妹 | 亞洲正妹 | 素人正妹 | COSPLAY | 女优情报 | Gif 动图 |
- | -------- | -------- | -------- | -------- | ------- | -------- | -------- |
- | 21 | 274 | 276 | 277 | 278 | 29 | |
+| 網友自拍 | 亞洲激情 | 歐美激情 | 露出偷窺 | 高跟絲襪 | 卡通漫畫 | 原創达人 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 23 | 24 | 25 | 26 | 27 | 28 | 135 |
- | 獨家拍攝 | 稀有首發 | 网络见闻 | 主播實錄 | 珍稀套圖 | 名站同步 | 实用漫画 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 213 | 94 | 283 | 111 | 88 | 131 | 180 |
+| 唯美清純 | 网络正妹 | 亞洲正妹 | 素人正妹 | COSPLAY | 女优情报 | Gif 动图 |
+| -------- | -------- | -------- | -------- | ------- | -------- | -------- |
+| 21 | 274 | 276 | 277 | 278 | 29 | |
- | 网盘二区 | 网盘三区 | 分享福利 | 国产精选 | 高清福利 | 高清首发 | 多挂原创 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 72 | 272 | 195 | 280 | 79 | 216 | 76 |
+| 獨家拍攝 | 稀有首發 | 网络见闻 | 主播實錄 | 珍稀套圖 | 名站同步 | 实用漫画 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 213 | 94 | 283 | 111 | 88 | 131 | 180 |
- | 磁链迅雷 | 正片大片 | H-GAME | 有声小说 | 在线视频 | 在线快播影院 |
- | -------- | -------- | ------ | -------- | -------- | ------------ |
- | 43 | 67 | 66 | 55 | 78 | 279 |
+| 网盘二区 | 网盘三区 | 分享福利 | 国产精选 | 高清福利 | 高清首发 | 多挂原创 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 72 | 272 | 195 | 280 | 79 | 216 | 76 |
- | 综合小说 | 人妻意淫 | 乱伦迷情 | 长篇连载 | 文学作者 | TXT 小说打包 |
- | -------- | -------- | -------- | -------- | -------- | ------------ |
- | 48 | 103 | 50 | 54 | 100 | 109 |
+| 磁链迅雷 | 正片大片 | H-GAME | 有声小说 | 在线视频 | 在线快播影院 |
+| -------- | -------- | ------ | -------- | -------- | ------------ |
+| 43 | 67 | 66 | 55 | 78 | 279 |
- | 聚友客栈 | 坛友自售 |
- | -------- | -------- |
- | 57 | 136 |
-</Route>
+| 综合小说 | 人妻意淫 | 乱伦迷情 | 长篇连载 | 文学作者 | TXT 小说打包 |
+| -------- | -------- | -------- | -------- | -------- | ------------ |
+| 48 | 103 | 50 | 54 | 100 | 109 |
+
+| 聚友客栈 | 坛友自售 |
+| -------- | -------- |
+| 57 | 136 |
## 4k 世界 {#4k-shi-jie}
### 分类 {#4k-shi-jie-fen-lei}
-<Route author="nczitzk" example="/4ksj/forum" path="/4ksj/forum/:id?" paramsDesc={['分类 id,默认为最新4K电影']}>
- :::tip
- 若订阅 [最新 4K 电影](https://www.4ksj.com/forum-2-1.html),网址为 `https://www.4ksj.com/forum-2-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `2-1` 作为参数,此时路由为 [`/4ksj/forum/2-1`](https://rsshub.app/4ksj/forum/2-1)。
-
- 若订阅子分类 [Dolby Vision 纪录片 4K 电影](https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html),网址为 `https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1` 作为参数,此时路由为 [`/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1`](https://rsshub.app/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1)。
- :::
-</Route>
-
-## 60-Second Science - Scientific American {#60-second-science-scientific-american}
+<Route data={{"path":"/forum/:id?","categories":["multimedia"],"example":"/4ksj/forum","parameters":{"id":"分类 id,默认为最新4K电影"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":":::tip\n 若订阅 [最新 4K 电影](https://www.4ksj.com/forum-2-1.html),网址为 `https://www.4ksj.com/forum-2-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `2-1` 作为参数,此时路由为 [`/4ksj/forum/2-1`](https://rsshub.app/4ksj/forum/2-1)。\n\n 若订阅子分类 [Dolby Vision 纪录片 4K 电影](https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html),网址为 `https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1` 作为参数,此时路由为 [`/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1`](https://rsshub.app/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1)。\n :::","location":"forum.ts"}} />
-### Transcript {#60-second-science-scientific-american-transcript}
-
-<Route author="emdoe" example="/60s-science" path="/60s-science" />
+:::tip
+若订阅 [最新 4K 电影](https://www.4ksj.com/forum-2-1.html),网址为 `https://www.4ksj.com/forum-2-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `2-1` 作为参数,此时路由为 [`/4ksj/forum/2-1`](https://rsshub.app/4ksj/forum/2-1)。
-Full transcript support for better user experience.
+若订阅子分类 [Dolby Vision 纪录片 4K 电影](https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html),网址为 `https://www.4ksj.com/forum-4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1.html`。截取 `https://www.4ksj.com/forum-` 到末尾 `.html` 的部分 `4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1` 作为参数,此时路由为 [`/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1`](https://rsshub.app/4ksj/forum/4kdianying-s7-dianyingbiaozhun-3-dytypes-9-1)。
+:::
## 6v 电影 {#6v-dian-ying}
-### 最新电影 {#6v-dian-ying-zui-xin-dian-ying}
+### 最新电视剧 {#6v-dian-ying-zui-xin-dian-shi-ju}
-<Route author="tc9011" example="/6v123/latestMovies" path="/6v123/latestMovies" supportBT="1" />
+<Route data={{"path":"/latestTVSeries","categories":["multimedia"],"example":"/6v123/latestTVSeries","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hao6v.com/","hao6v.com/gvod/dsj.html"]},"name":"最新电视剧","maintainers":["tc9011"],"url":"hao6v.com/","location":"latest-tvseries.ts"}} />
-### 最新电视剧 {#6v-dian-ying-zui-xin-dian-shi-ju}
+### 最新电影 {#6v-dian-ying-zui-xin-dian-ying}
-<Route author="tc9011" example="/6v123/latestTVSeries" path="/6v123/latestTVSeries" supportBT="1" />
+<Route data={{"path":"/latestMovies","categories":["multimedia"],"example":"/6v123/latestMovies","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hao6v.com/","hao6v.com/gvod/zx.html"]},"name":"最新电影","maintainers":["tc9011"],"url":"hao6v.com/","location":"latest-movies.ts"}} />
## 7mmtv {#7mmtv}
### Category {#7mmtv-category}
-<Route author="nczitzk" example="/7mmtv/zh/censored_list/all" path="/7mmtv/:language?/:category?/:type?" paramsDesc={['Language, see below, `en` as English by default', 'Category, see below, `censored_list` as Censored by default', 'Server, see below, all server by default']} anticrawler="1">
- **Language**
-
- | English | 日本語 | 한국의 | 中文 |
- | ------- | ------ | ------ | ---- |
- | en | ja | ko | zh |
-
- **Category**
-
- | Chinese subtitles AV | Censored | Amateur | Uncensored | Asian self-timer | H comics |
- | -------------------- | -------------- | ---------------- | ---------------- | ---------------- | ------------ |
- | chinese\_list | censored\_list | amateurjav\_list | uncensored\_list | amateur\_list | hcomic\_list |
-
- | Chinese subtitles AV random | Censored random | Amateur random | Uncensored random | Asian self-timer random | H comics random |
- | --------------------------- | ---------------- | ------------------ | ------------------ | ----------------------- | --------------- |
- | chinese\_random | censored\_random | amateurjav\_random | uncensored\_random | amateur\_random | hcomic\_random |
-
- **Server**
+<Route data={{"path":"/:language?/:category?/:type?","categories":["multimedia"],"example":"/7mmtv/zh/censored_list/all","parameters":{"language":"Language, see below, `en` as English by default","category":"Category, see below, `censored_list` as Censored by default","type":"Server, see below, all server by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"description":"**Language**\n\n | English | 日本語 | 한국의 | 中文 |\n | ------- | ------ | ------ | ---- |\n | en | ja | ko | zh |\n\n **Category**\n\n | Chinese subtitles AV | Censored | Amateur | Uncensored | Asian self-timer | H comics |\n | -------------------- | -------------- | ---------------- | ---------------- | ---------------- | ------------ |\n | chinese_list | censored_list | amateurjav_list | uncensored_list | amateur_list | hcomic_list |\n\n | Chinese subtitles AV random | Censored random | Amateur random | Uncensored random | Asian self-timer random | H comics random |\n | --------------------------- | ---------------- | ------------------ | ------------------ | ----------------------- | --------------- |\n | chinese_random | censored_random | amateurjav_random | uncensored_random | amateur_random | hcomic_random |\n\n **Server**\n\n | All Server | fembed(Full DL) | streamsb(Full DL) | doodstream | streamtape(Full DL) | avgle | embedgram | videovard(Full DL) |\n | ---------- | --------------- | ----------------- | ---------- | ------------------- | ----- | --------- | ------------------ |\n | all | 21 | 30 | 28 | 29 | 17 | 34 | 33 |","location":"index.ts"}} />
- | All Server | fembed(Full DL) | streamsb(Full DL) | doodstream | streamtape(Full DL) | avgle | embedgram | videovard(Full DL) |
- | ---------- | --------------- | ----------------- | ---------- | ------------------- | ----- | --------- | ------------------ |
- | all | 21 | 30 | 28 | 29 | 17 | 34 | 33 |
-</Route>
+**Language**
-### Maker {#7mmtv-maker}
+| English | 日本語 | 한국의 | 中文 |
+| ------- | ------ | ------ | ---- |
+| en | ja | ko | zh |
-<Route author="nczitzk" example="/7mmtv/zh/amateurjav_makersr/1752" path="/7mmtv/:language?/:category?/:id?" paramsDesc={['Language, see below, `en` as English by default', 'Category, see below', 'Id, see below']} anticrawler="1">
- **Language**
+**Category**
- | English | 日本語 | 한국의 | 中文 |
- | ------- | ------ | ------ | ---- |
- | en | ja | ko | zh |
+| Chinese subtitles AV | Censored | Amateur | Uncensored | Asian self-timer | H comics |
+| -------------------- | -------------- | ---------------- | ---------------- | ---------------- | ------------ |
+| chinese\_list | censored\_list | amateurjav\_list | uncensored\_list | amateur\_list | hcomic\_list |
- **Category and Id**
+| Chinese subtitles AV random | Censored random | Amateur random | Uncensored random | Asian self-timer random | H comics random |
+| --------------------------- | ---------------- | ------------------ | ------------------ | ----------------------- | --------------- |
+| chinese\_random | censored\_random | amateurjav\_random | uncensored\_random | amateur\_random | hcomic\_random |
- When `amateurjav_makersr` as **Amateur** is chosen as **Category**, the available **ids** are:
+**Server**
- | Maker | Id |
- | ------------------------- | ---- |
- | シロウト TV (SIRO) | 1752 |
- | ラグジュ TV (LUXU) | 1586 |
- | ナンパ TV (200GANA) | 1751 |
- | PRESTIGE PREMIUM(300MAAN) | 1318 |
- | S-CUTE | 1069 |
- | ARA | 1585 |
-
- When `uncensored_makersr` as **Uncensored** is chosen as **Category**, the available **ids** are:
-
- | Maker | Id |
- | ----------------------------------- | --- |
- | HEYZO | 17 |
- | 東京熱 (Tokyo Hot) | 29 |
- | 一本道 (1pondo) | 32 |
- | カリビアンコム (Caribbeancom) | 30 |
- | カリビアンコム PPV (Caribbeancompr) | 40 |
- | 天然むすめ (10musume) | 31 |
- | パコパコママ (pacopacomama) | 36 |
- | ガチん娘!(Gachinco) | 35 |
- | エッチな 4610 | 34 |
- | 人妻斬り 0930 | 38 |
- | エッチな 0930 | 39 |
- | トリプルエックス (XXX-AV) | 126 |
- | FC2 | 37 |
-</Route>
+| All Server | fembed(Full DL) | streamsb(Full DL) | doodstream | streamtape(Full DL) | avgle | embedgram | videovard(Full DL) |
+| ---------- | --------------- | ----------------- | ---------- | ------------------- | ----- | --------- | ------------------ |
+| all | 21 | 30 | 28 | 29 | 17 | 34 | 33 |
## 91porn {#91porn}
@@ -235,167 +98,112 @@ Full transcript support for better user experience.
91porn has multiple backup domains, routes use the permanent domain `https://91porn.com` by default. If the domain is not accessible, you can add `?domain=<domain>` to specify the domain to be used. If you want to specify the backup domain to `https://0122.91p30.com`, you can add `?domain=0122.91p30.com` to the end of all 91porn routes, then the route will become [`/91porn?domain=0122.91p30.com`](https://rsshub.app/91porn?domain=0122.91p30.com)
:::
-### Hot Video Today {#91porn-hot-video-today}
-
-<Route author="TonyRL" example="/91porn" path="/91porn/:lang?" paramsDesc={['Language, see below, `en_US` by default ']} radar="1" anticrawler="1">
- | English | 简体中文 | 繁體中文 |
- | ------- | -------- | -------- |
- | en\_US | cn\_CN | zh\_ZH |
-</Route>
-
### Author {#91porn-author}
-<Route author="TonyRL" example="/91porn/author/2d6d2iWm4vVCwqujAZbSrKt2QJCbbaObv9HQ21Zo8wGJWudWBg" path="/91porn/author/:uid/:lang?" paramsDesc={['Author ID, can be found in URL', 'Language, see above, `en_US` by default ']} radar="1" anticrawler="1" />
-
-## 99% Invisible {#99%25-invisible}
-
-### Transcript {#99%25-invisible-transcript}
-
-<Route author="Ji4n1ng" example="/99percentinvisible/transcript" path="/99percentinvisible/transcript" />
-
-## A 姐分享 {#a-jie-fen-xiang}
-
-### 存档列表 {#a-jie-fen-xiang-cun-dang-lie-biao}
-
-<Route author="zhenhappy" example="/abskoop/nsfw" path="/abskoop/:type?" paramsDesc={['为空, 订阅主站点, `nsfw`订阅nsfw子站点']} radar="1" />
-
-## AV01(av01.tv) {#av01-av01-tv}
-
-### 演员 {#av01-av01-tv-yan-yuan}
-
-:::tip
-当没有给定排序类型时,默认为按上传时间排序及 mr
-:::
-
-<Route author="HXHL" example="/av01/actor/七沢みあ" path="/av01/actor/:name/:type?" paramsDesc={['女优名,必选-仅限日语,可直接在网站上找到','排序顺序,可选-可以是`mr` `rd` `bw` `tr` `lg`']}>
- | 按上传时间排序 | 按上市时间排序 | 按观看次数排序 | 按评分排序 | 按时长排序 |
- | -------------- | -------------- | -------------- | ---------- | ---------- |
- | mr | rd | bw | tr | lg |
-</Route>
-
-### 分类 {#av01-av01-tv-fen-lei}
+<Route data={{"path":"/author/:uid/:lang?","categories":["multimedia"],"example":"/91porn/author/2d6d2iWm4vVCwqujAZbSrKt2QJCbbaObv9HQ21Zo8wGJWudWBg","parameters":{"uid":"Author ID, can be found in URL","lang":"Language, see above, `en_US` by default "},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["91porn.com/index.php"],"target":""},"name":"Author","maintainers":["TonyRL"],"url":"91porn.com/index.php","location":"author.ts"}} />
-<Route author="HXHL" example="/av01/tag/中出し" path="/av01/tag/:name/:type?" paramsDesc={['分类名,必选-仅限日语,可直接在网站上找到','排序顺序,可选-可以是`mr` `rd` `bw` `tr` `lg`']}>
- 例如,路由 `/av01/tag/中出し` 应该输出 [https://www.av01.tv/tag/ 中出し](https://www.av01.tv/tag/中出し) 的排行榜单
-</Route>
-
-## Avgle {#avgle}
-
-### 视频列表 {#avgle-shi-pin-lie-biao}
-
-<Route author="I2IMk" example="/avgle/videos" path="/avgle/videos/:order?/:time?/:top?" paramsDesc={['视频次序, `bw` 观看中 / `mr` 最新 / `mv` 最多观看 / `tr` 最高评分 / `tf` 最多收藏 / `lg` 最长, 默认 `mv`', '视频的添加时间, `a` 所有 / `t` 今天 / `d` 本周 / `m` 本月, 默认 `m`', '按次序获取的视频数, 不大于 `250`, 默认 `30`']} />
+### Hot Video Today {#91porn-hot-video-today}
-### 视频搜索 {#avgle-shi-pin-sou-suo}
+<Route data={{"path":"/:lang?","categories":["multimedia"],"example":"/91porn","parameters":{"lang":"Language, see below, `en_US` by default "},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["91porn.com/index.php"],"target":""},"name":"Hot Video Today","maintainers":["TonyRL"],"url":"91porn.com/index.php","description":"| English | 简体中文 | 繁體中文 |\n | ------- | -------- | -------- |\n | en_US | cn_CN | zh_ZH |","location":"index.ts"}} />
-<Route author="I2IMk" example="/avgle/search/橋本ありな" path="/avgle/search/:keyword/:order?/:time?/:top?" paramsDesc={['搜索的关键词', '视频次序, `bw` 观看中 / `mr` 最新 / `mv` 最多观看 / `tr` 最高评分 / `tf` 最多收藏 / `lg` 最长, 默认 `mr`', '视频的添加时间, `a` 所有 / `t` 今天 / `d` 本周 / `m` 本月, 默认 `a`', '按次序获取的视频数, 不大于 `250`, 默认 `30`']} />
+| English | 简体中文 | 繁體中文 |
+| ------- | -------- | -------- |
+| en\_US | cn\_CN | zh\_ZH |
## Bandcamp {#bandcamp}
-### Weekly {#bandcamp-weekly}
-
-<Route author="nczitzk" example="/bandcamp/weekly" path="/bandcamp/weekly" />
-
### Tag {#bandcamp-tag}
-<Route author="nczitzk" example="/bandcamp/tag/united-kingdom" path="/bandcamp/tag/:tag?" paramsDesc={['Tag, can be found in URL']} />
+<Route data={{"path":"/tag/:tag?","categories":["multimedia"],"example":"/bandcamp/tag/united-kingdom","parameters":{"tag":"Tag, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bandcamp.com/tag/:tag"],"target":"/tag/:tag"},"name":"Tag","maintainers":["nczitzk"],"location":"tag.ts"}} />
### Upcoming Live Streams {#bandcamp-upcoming-live-streams}
-<Route author="nczitzk" example="/bandcamp/live" path="/bandcamp/live" />
+<Route data={{"path":"/live","categories":["multimedia"],"example":"/bandcamp/live","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bandcamp.com/live_schedule"]},"name":"Upcoming Live Streams","maintainers":["nczitzk"],"url":"bandcamp.com/live_schedule","location":"live.ts"}} />
-## BT 之家 1LOU 站 {#bt-zhi-jia-1lou-zhan}
+### Weekly {#bandcamp-weekly}
-### 搜索 {#bt-zhi-jia-1lou-zhan-sou-suo}
+<Route data={{"path":"/weekly","categories":["multimedia"],"example":"/bandcamp/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bandcamp.com/"]},"name":"Weekly","maintainers":["nczitzk"],"url":"bandcamp.com/","location":"weekly.ts"}} />
+
+## BT 之家 {#bt-zhi-jia}
-<Route author="falling" example="/1lou/search-繁花.htm" path="/1lou/:path?" paramsDesc={['路径信息在URL里找到,主页为 index']}>
- :::tip
- 将 1lou.me/ 后的内容作为参数传入到 path 即可
+### 分类 {#bt-zhi-jia-fen-lei}
- [www.1lou.me/search - 繁花.htm](http://www.1lou.me/search-繁花.htm) --> /1lou/search - 繁花.htm
+<Route data={{"path":"/:category?","categories":["multimedia"],"example":"/btzj","parameters":{"category":"分类,可在对应分类页 URL 中找到,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["btbtt20.com/"]},"name":"分类","maintainers":["nczitzk"],"url":"btbtt20.com/","description":":::tip\n 分类页中域名末尾到 `.htm` 前的字段即为对应分类,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm) `https://www.btbtt20.com/forum-index-fid-951.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-951`,所以路由应为 [`/btzj/forum-index-fid-951`](https://rsshub.app/btzj/forum-index-fid-951)\n\n 部分分类页,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm)、[剧集](https://www.btbtt20.com/forum-index-fid-950.htm) 等,提供了更复杂的分类筛选。你可以将选项选中后,获得结果分类页 URL 中分类参数,构成路由。如选中分类 [高清电影 - 年份:2021 - 地区:欧美](https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm) `https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`,所以路由应为 [`/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`](https://rsshub.app/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0)\n :::\n\n 基础分类如下:\n\n | 交流 | 电影 | 剧集 | 高清电影 |\n | ------------------- | ------------------- | ------------------- | -------------------- |\n | forum-index-fid-975 | forum-index-fid-951 | forum-index-fid-950 | forum-index-fid-1183 |\n\n | 音乐 | 动漫 | 游戏 | 综艺 |\n | ------------------- | ------------------- | ------------------- | -------------------- |\n | forum-index-fid-953 | forum-index-fid-981 | forum-index-fid-955 | forum-index-fid-1106 |\n\n | 图书 | 美图 | 站务 | 科技 |\n | -------------------- | ------------------- | ----------------- | ------------------- |\n | forum-index-fid-1151 | forum-index-fid-957 | forum-index-fid-2 | forum-index-fid-952 |\n\n | 求助 | 音轨字幕 |\n | -------------------- | -------------------- |\n | forum-index-fid-1187 | forum-index-fid-1191 |\n\n :::tip\n BT 之家的域名会变更,本路由以 `https://www.btbtt20.com` 为默认域名,若该域名无法访问,可以通过在路由后方加上 `?domain=<域名>` 指定路由访问的域名。如指定域名为 `https://www.btbtt15.com`,则在 `/btzj` 后加上 `?domain=btbtt15.com` 即可,此时路由为 [`/btzj?domain=btbtt15.com`](https://rsshub.app/btzj?domain=btbtt15.com)\n\n 如果加入了分类参数,直接在分类参数后加入 `?domain=<域名>` 即可。如指定分类 [剧集](https://www.btbtt20.com/forum-index-fid-950.htm) `https://www.btbtt20.com/forum-index-fid-950.htm` 并指定域名为 `https://www.btbtt15.com`,即在 `/btzj/forum-index-fid-950` 后加上 `?domain=btbtt15.com`,此时路由为 [`/btzj/forum-index-fid-950?domain=btbtt15.com`](https://rsshub.app/btzj/forum-index-fid-950?domain=btbtt15.com)\n\n 目前,你可以选择的域名有 `btbtt10-20.com` 共 10 个,或 `88btbbt.com`,该站也提供了专用网址查询工具。详见 [此贴](https://www.btbtt20.com/thread-index-fid-2-tid-4550191.htm)\n :::","location":"index.ts"}} />
- [www.1lou.me/forum-1.htm](http://www.1lou.me/forum-1.htm) --> /1lou/forum-1.htm
+:::tip
+分类页中域名末尾到 `.htm` 前的字段即为对应分类,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm) `https://www.btbtt20.com/forum-index-fid-951.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-951`,所以路由应为 [`/btzj/forum-index-fid-951`](https://rsshub.app/btzj/forum-index-fid-951)
- [www.1lou.me/](http://www.1lou.me/) --> /1lou/
- :::
-</Route>
+部分分类页,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm)、[剧集](https://www.btbtt20.com/forum-index-fid-950.htm) 等,提供了更复杂的分类筛选。你可以将选项选中后,获得结果分类页 URL 中分类参数,构成路由。如选中分类 [高清电影 - 年份:2021 - 地区:欧美](https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm) `https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`,所以路由应为 [`/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`](https://rsshub.app/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0)
+:::
-## BT 之家 {#bt-zhi-jia}
+基础分类如下:
-### 分类 {#bt-zhi-jia-fen-lei}
+| 交流 | 电影 | 剧集 | 高清电影 |
+| ------------------- | ------------------- | ------------------- | -------------------- |
+| forum-index-fid-975 | forum-index-fid-951 | forum-index-fid-950 | forum-index-fid-1183 |
-<Route author="nczitzk" example="/btzj" path="/btzj/:category?" paramsDesc={['分类,可在对应分类页 URL 中找到,默认为首页']}>
- :::tip
- 分类页中域名末尾到 `.htm` 前的字段即为对应分类,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm) `https://www.btbtt20.com/forum-index-fid-951.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-951`,所以路由应为 [`/btzj/forum-index-fid-951`](https://rsshub.app/btzj/forum-index-fid-951)
+| 音乐 | 动漫 | 游戏 | 综艺 |
+| ------------------- | ------------------- | ------------------- | -------------------- |
+| forum-index-fid-953 | forum-index-fid-981 | forum-index-fid-955 | forum-index-fid-1106 |
- 部分分类页,如 [电影](https://www.btbtt20.com/forum-index-fid-951.htm)、[剧集](https://www.btbtt20.com/forum-index-fid-950.htm) 等,提供了更复杂的分类筛选。你可以将选项选中后,获得结果分类页 URL 中分类参数,构成路由。如选中分类 [高清电影 - 年份:2021 - 地区:欧美](https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm) `https://www.btbtt20.com/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0.htm` 中域名末尾到 `.htm` 前的字段为 `forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`,所以路由应为 [`/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0`](https://rsshub.app/btzj/forum-index-fid-1183-typeid1-0-typeid2-738-typeid3-10086-typeid4-0)
- :::
+| 图书 | 美图 | 站务 | 科技 |
+| -------------------- | ------------------- | ----------------- | ------------------- |
+| forum-index-fid-1151 | forum-index-fid-957 | forum-index-fid-2 | forum-index-fid-952 |
- 基础分类如下:
+| 求助 | 音轨字幕 |
+| -------------------- | -------------------- |
+| forum-index-fid-1187 | forum-index-fid-1191 |
- | 交流 | 电影 | 剧集 | 高清电影 |
- | ------------------- | ------------------- | ------------------- | -------------------- |
- | forum-index-fid-975 | forum-index-fid-951 | forum-index-fid-950 | forum-index-fid-1183 |
+:::tip
+BT 之家的域名会变更,本路由以 `https://www.btbtt20.com` 为默认域名,若该域名无法访问,可以通过在路由后方加上 `?domain=<域名>` 指定路由访问的域名。如指定域名为 `https://www.btbtt15.com`,则在 `/btzj` 后加上 `?domain=btbtt15.com` 即可,此时路由为 [`/btzj?domain=btbtt15.com`](https://rsshub.app/btzj?domain=btbtt15.com)
- | 音乐 | 动漫 | 游戏 | 综艺 |
- | ------------------- | ------------------- | ------------------- | -------------------- |
- | forum-index-fid-953 | forum-index-fid-981 | forum-index-fid-955 | forum-index-fid-1106 |
+如果加入了分类参数,直接在分类参数后加入 `?domain=<域名>` 即可。如指定分类 [剧集](https://www.btbtt20.com/forum-index-fid-950.htm) `https://www.btbtt20.com/forum-index-fid-950.htm` 并指定域名为 `https://www.btbtt15.com`,即在 `/btzj/forum-index-fid-950` 后加上 `?domain=btbtt15.com`,此时路由为 [`/btzj/forum-index-fid-950?domain=btbtt15.com`](https://rsshub.app/btzj/forum-index-fid-950?domain=btbtt15.com)
- | 图书 | 美图 | 站务 | 科技 |
- | -------------------- | ------------------- | ----------------- | ------------------- |
- | forum-index-fid-1151 | forum-index-fid-957 | forum-index-fid-2 | forum-index-fid-952 |
+目前,你可以选择的域名有 `btbtt10-20.com` 共 10 个,或 `88btbbt.com`,该站也提供了专用网址查询工具。详见 [此贴](https://www.btbtt20.com/thread-index-fid-2-tid-4550191.htm)
+:::
- | 求助 | 音轨字幕 |
- | -------------------- | -------------------- |
- | forum-index-fid-1187 | forum-index-fid-1191 |
+## BT 之家 1LOU 站 {#bt-zhi-jia-1lou-zhan}
- :::tip
- BT 之家的域名会变更,本路由以 `https://www.btbtt20.com` 为默认域名,若该域名无法访问,可以通过在路由后方加上 `?domain=<域名>` 指定路由访问的域名。如指定域名为 `https://www.btbtt15.com`,则在 `/btzj` 后加上 `?domain=btbtt15.com` 即可,此时路由为 [`/btzj?domain=btbtt15.com`](https://rsshub.app/btzj?domain=btbtt15.com)
+### 搜索 {#bt-zhi-jia-1lou-zhan-sou-suo}
- 如果加入了分类参数,直接在分类参数后加入 `?domain=<域名>` 即可。如指定分类 [剧集](https://www.btbtt20.com/forum-index-fid-950.htm) `https://www.btbtt20.com/forum-index-fid-950.htm` 并指定域名为 `https://www.btbtt15.com`,即在 `/btzj/forum-index-fid-950` 后加上 `?domain=btbtt15.com`,此时路由为 [`/btzj/forum-index-fid-950?domain=btbtt15.com`](https://rsshub.app/btzj/forum-index-fid-950?domain=btbtt15.com)
+<Route data={{"path":"/:path?","categories":["multimedia"],"example":"/1lou/search-繁花.htm","parameters":{"path":"路径信息在URL里找到,主页为 index"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["1lou.me/:path"],"target":"/:path"},"name":"搜索","maintainers":["falling"],"description":":::tip\n 将 1lou.me/ 后的内容作为参数传入到 path 即可\n\n [www.1lou.me/search - 繁花.htm](http://www.1lou.me/search-繁花.htm) --> /1lou/search - 繁花.htm\n\n [www.1lou.me/forum-1.htm](http://www.1lou.me/forum-1.htm) --> /1lou/forum-1.htm\n\n [www.1lou.me/](http://www.1lou.me/) --> /1lou/\n :::","location":"index.ts"}} />
- 目前,你可以选择的域名有 `btbtt10-20.com` 共 10 个,或 `88btbbt.com`,该站也提供了专用网址查询工具。详见 [此贴](https://www.btbtt20.com/thread-index-fid-2-tid-4550191.htm)
- :::
-</Route>
+:::tip
+将 1lou.me/ 后的内容作为参数传入到 path 即可
-### 最新种子 {#bt-zhi-jia-zui-xin-zhong-zi}
+[www.1lou.me/search - 繁花.htm](http://www.1lou.me/search-繁花.htm) --> /1lou/search - 繁花.htm
-<Route author="zhang-wangz nczitzk" example="/btzj/base" path="/btzj/:type?" anticrawler="1" paramsDesc={['type,见下表']}>
- | base | govern |
- | -------------------------- | ------------------------ |
- | `https://www.88btbtt.com/` | `http://www.2btjia.com/` |
-</Route>
+[www.1lou.me/forum-1.htm](http://www.1lou.me/forum-1.htm) --> /1lou/forum-1.htm
-:::tip
-由于 BT 之家域名有多个。此 feed 对应[`https://www.88btbtt.com`](https://www.88btbtt.com)域名和[`http://www.2btjia.com/`](http://www.2btjia.com/)域名.
-可空,默认为 base
+[www.1lou.me/](http://www.1lou.me/) --> /1lou/
:::
## CNTV {#cntv}
### 栏目 {#cntv-lan-mu}
+<Route data={{"path":"/:column","categories":["multimedia"],"example":"/cntv/TOPC1451528971114112","parameters":{"column":"栏目ID, 可在对应CNTV栏目页面找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["navi.cctv.com/"]},"name":"栏目","maintainers":["WhoIsSure","Fatpandac"],"url":"navi.cctv.com/","description":":::tip\n栏目 ID 查找示例:\n打开栏目具体某一期页面,F12 控制台输入`column_id`得到栏目 ID。\n:::\n\n 栏目\n\n | 新闻联播 | 新闻周刊 | 天下足球 |\n | -------------------- | -------------------- | -------------------- |\n | TOPC1451528971114112 | TOPC1451559180488841 | TOPC1451551777876756 |","location":"column.ts"}} />
+
:::tip
栏目 ID 查找示例:
打开栏目具体某一期页面,F12 控制台输入`column_id`得到栏目 ID。
:::
-<Route author="WhoIsSure Fatpandac" example="/cntv/TOPC1451528971114112" path="/cntv/:column" paramsDesc={['栏目ID, 可在对应CNTV栏目页面找到']}>
- 栏目
+栏目
- | 新闻联播 | 新闻周刊 | 天下足球 |
- | -------------------- | -------------------- | -------------------- |
- | TOPC1451528971114112 | TOPC1451559180488841 | TOPC1451551777876756 |
-</Route>
+| 新闻联播 | 新闻周刊 | 天下足球 |
+| -------------------- | -------------------- | -------------------- |
+| TOPC1451528971114112 | TOPC1451559180488841 | TOPC1451551777876756 |
## Coomer {#coomer}
### Artist {#coomer-artist}
-<Route author="nczitzk" example="/coomer/artist/belledelphine" path="/coomer/artist/:id" paramsDesc={['Artist id, can be found in URL']} />
+<Route data={{"path":"/artist/:id","categories":["multimedia"],"example":"/coomer/artist/belledelphine","parameters":{"id":"Artist id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["coomer.party/onlyfans/user/:id","coomer.party/"]},"name":"Artist","maintainers":["nczitzk"],"location":"artist.ts"}} />
### Recent Posts {#coomer-recent-posts}
-<Route author="nczitzk" example="/coomer/posts" path="/coomer/posts" />
+<Route data={{"path":"/posts","categories":["multimedia"],"example":"/coomer/posts","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["coomer.party/posts","coomer.party/"]},"name":"Recent Posts","maintainers":["nczitzk"],"url":"coomer.party/posts","location":"posts.ts"}} />
## DoMP4 影视 {#domp4-ying-shi}
@@ -409,13 +217,9 @@ Full transcript support for better user experience.
```
:::
-### 最近更新 {#domp4-ying-shi-zui-jin-geng-xin}
-
-<Route author="savokiss" example="/domp4/latest/vod" path="/domp4/latest/:type?" paramsDesc={['`vod` 代表电影,`tv` 代表电视剧,默认 vod']} radar="1" />
-
### 剧集订阅 {#domp4-ying-shi-ju-ji-ding-yue}
-<Route author="savokiss" example="/domp4/detail/LBTANI22222I" path="/domp4/detail/:id" paramsDesc={['从剧集详情页 URL 处获取,如:`https://www.mp4kan.com/html/LBTANI22222I.html`,取 `.html` 前面部分']} radar="1" supportBT="1" />
+<Route data={{"path":"/detail/:id","categories":["multimedia"],"example":"/domp4/detail/LBTANI22222I","parameters":{"id":"从剧集详情页 URL 处获取,如:`https://www.mp4kan.com/html/LBTANI22222I.html`,取 `.html` 前面部分"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["domp4.cc/detail/:id"]},"name":"剧集订阅","maintainers":["savokiss"],"description":":::tip\n由于大部分详情页是 `/html/xxx.html`,还有部分是 `/detail/123.html`,所以此处做了兼容,id 取 `xxx` 或者 `123` 都可以。\n\n新增 `second` 参数,用于选择下载地址二(地址二不可用或者不填都默认地址一),用法: `/domp4/detail/LBTANI22222I?second=1`。\n:::","location":"detail.ts"}} />
:::tip
由于大部分详情页是 `/html/xxx.html`,还有部分是 `/detail/123.html`,所以此处做了兼容,id 取 `xxx` 或者 `123` 都可以。
@@ -423,198 +227,28 @@ Full transcript support for better user experience.
新增 `second` 参数,用于选择下载地址二(地址二不可用或者不填都默认地址一),用法: `/domp4/detail/LBTANI22222I?second=1`。
:::
-## E-Hentai {#e-hentai}
-
-### 分类 {#e-hentai-fen-lei}
-
-<Route author="nczitzk" example="/e-hentai/category/manga" path="/e-hentai/category/:category?/:needTorrents?/:needImages?" paramsDesc={['分类,可在对应分类页中找到,默认为首页', '需要输出种子文件,填写 true/yes 表示需要,默认需要', '需要显示大图,填写 true/yes 表示需要,默认需要']}>
- :::tip
- 参数 **需要输出种子文件** 设置为 `true` `yes` `t` `y` 等值后,RSS 会携带种子文件的路径,以供支持 RSS 的下载工具订阅下载。
-
- 同理,参数 **需要显示大图** 启用后,RSS 会携带每项内容中的大图,而不只提供缩略图。
-
- 当然,选择 **需要输出种子文件**、**需要显示大图** 后获取内容时间需要更久,同时若指定获取数量过多,可能会出现获取超时错误。此时,可以在路由末尾处加上 `?limit=限制获取数目` 来限制获取条目数量,或直接修改全局的超时参数 `REQUEST_TIMEOUT`(详见文档中的 [其他应用配置](https://docs.rsshub.app/install/#pei-zhi-qi-ta-ying-yong-pei-zhi))。
-
- 以下是一个例子:
-
- 选择浏览 [Manga 分类](https://e-hentai.org/manga),并指定 **不携带种子文件**,**只显示大图**,并只 **输出 5 个**。由于 [Manga 分类](https://e-hentai.org/manga) 的 URL `https://e-hentai.org/manga` 中对应分类字段为 `manga`,所以对应路由为 [`/e-hentai/category/manga/no/yes?limit=5`](https://rsshub.app/e-hentai/category/manga/no/yes?limit=5)
- :::
-
- | Doujinshi | Manga | Artist CG | Game CG | Western |
- | --------- | ----- | --------- | ------- | ------- |
- | doujinshi | manga | artistcg | gamecg | western |
-
- | Non-H | Image Set | Cosplay | Asian Porn | Misc | Popular |
- | ----- | --------- | ------- | ---------- | ---- | ------- |
- | non-h | imageset | cosplay | asianporn | misc | popular |
-</Route>
-
-### 标签 {#e-hentai-biao-qian}
-
-<Route author="nczitzk" example="/e-hentai/tag/language:chinese" path="/e-hentai/tag/:tag?" paramsDesc={['标签,可在对应标签页中找到,默认为首页']}>
- :::tip
- 参数 **需要输出种子文件**、**需要显示大图** 的说明同上,以下是一个例子:
-
- 选择浏览 [language:chinese 标签](https://e-hentai.org/tag/language\:chinese),并指定 **携带种子文件**,**不显示大图**。由于 [language:chinese 标签](https://e-hentai.org/tag/language\:chinese) 的 URL `https://e-hentai.org/tag/language:chinese` 中对应标签字段为 `language:chinese`,所以对应路由为 [`/e-hentai/tag/language:chinese/true/false`](https://rsshub.app/e-hentai/tag/language\:chinese/true/false)
- :::
-</Route>
-
-### 搜索 {#e-hentai-sou-suo}
-
-<Route author="nczitzk" example="/e-hentai/search/f_search=haha" path="/e-hentai/search/:keyword?" paramsDesc={['关键字,可以在搜索结果页的 URL 中找到,默认为首页']}>
- :::tip
- 参数 **需要输出种子文件**、**需要显示大图** 的说明同上,以下是一个例子:
-
- 选择浏览 [f\_search=cosplay 搜索结果](https://e-hentai.org/?f_search=cosplay),并指定 **携带种子文件**,且 **显示大图**。由于 [f\_search=cosplay 搜索结果](https://e-hentai.org/?f_search=cosplay) 的 URL `https://e-hentai.org/?f_search=cosplay` 中对应关键字字段为 `?` 后的 `f_search=cosplay`,所以对应路由为 [`/e-hentai/search/f_search=cosplay/y/y`](https://rsshub.app/e-hentai/search/f_search=cosplay/y/y)
- :::
-</Route>
-
-## EZTV {#eztv}
-
-:::tip
-Official RSS: [https://eztv.io/ezrss.xml](https://eztv.io/ezrss.xml)
-:::
-
-### Lookup Torrents by IMDB ID {#eztv-lookup-torrents-by-imdb-id}
+### 最近更新 {#domp4-ying-shi-zui-jin-geng-xin}
-<Route author="Songkeys" example="/eztv/torrents/6048596" path="/eztv/torrents/:imdb_id" paramsDesc={['The IMDB ID corresponding to the seed of show you want to search can be found on the official website [IMDB](https://www.imdb.com)']} supportBT="1" anticrawler="1" />
+<Route data={{"path":"/latest/:type?","categories":["multimedia"],"example":"/domp4/latest/vod","parameters":{"type":"`vod` 代表电影,`tv` 代表电视剧,默认 vod"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["domp4.cc/","domp4.cc/custom/update.html"]},"name":"最近更新","maintainers":["savokiss"],"url":"domp4.cc/","location":"latest.ts"}} />
## FIX 字幕侠 {#fix-zi-mu-xia}
### 分类 {#fix-zi-mu-xia-fen-lei}
-<Route author="nczitzk" example="/zimuxia" path="/zimuxia/:category?" paramsDesc={['分类,见下表,默认为 ALL']}>
- | ALL | FIX 德语社 | 欧美剧集 | 欧美电影 | 综艺 & 纪录 | FIX 日语社 | FIX 韩语社 | FIX 法语社 |
- | --- | ---------- | -------- | -------- | ----------- | ---------- | ---------- | ---------- |
- | | 昆仑德语社 | 欧美剧集 | 欧美电影 | 综艺纪录 | fix 日语社 | fix 韩语社 | fix 法语社 |
-</Route>
+<Route data={{"path":"/:category?","categories":["multimedia"],"example":"/zimuxia","parameters":{"category":"分类,见下表,默认为 ALL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| ALL | FIX 德语社 | 欧美剧集 | 欧美电影 | 综艺 & 纪录 | FIX 日语社 | FIX 韩语社 | FIX 法语社 |\n | --- | ---------- | -------- | -------- | ----------- | ---------- | ---------- | ---------- |\n | | 昆仑德语社 | 欧美剧集 | 欧美电影 | 综艺纪录 | fix 日语社 | fix 韩语社 | fix 法语社 |","location":"index.ts"}} />
+
+| ALL | FIX 德语社 | 欧美剧集 | 欧美电影 | 综艺 & 纪录 | FIX 日语社 | FIX 韩语社 | FIX 法语社 |
+| --- | ---------- | -------- | -------- | ----------- | ---------- | ---------- | ---------- |
+| | 昆仑德语社 | 欧美剧集 | 欧美电影 | 综艺纪录 | fix 日语社 | fix 韩语社 | fix 法语社 |
### 剧集 {#fix-zi-mu-xia-ju-ji}
-<Route author="nczitzk" example="/zimuxia/portfolio/我们这一天" path="/zimuxia/portfolio/:id" paramsDesc={['剧集名,可在剧集页 URL 中找到']} />
+<Route data={{"path":"/portfolio/:id","categories":["multimedia"],"example":"/zimuxia/portfolio/我们这一天","parameters":{"id":"剧集名,可在剧集页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zimuxia.cn/portfolio/:id"]},"name":"剧集","maintainers":["nczitzk"],"description":":::tip\n本路由以 `magnet` 为默认 linktype,可以通过在路由后方加上 `?linktype=链接类型` 指定导出的链接类型。比如路由为 [`/zimuxia/portfolio/我们这一天?linktype=baidu`](https://rsshub.app/zimuxia/portfolio/我们这一天?linktype=baidu) 来导出百度盘链接。目前,你可以选择的 `链接类型` 包括: `magnet`(默认), `all`(所有), `ed2k`(电驴), `baidu`(百度盘), `quark`(夸克盘), `115`(115 盘), `subhd`(字幕).\n:::","location":"portfolio.ts"}} />
:::tip
本路由以 `magnet` 为默认 linktype,可以通过在路由后方加上 `?linktype=链接类型` 指定导出的链接类型。比如路由为 [`/zimuxia/portfolio/我们这一天?linktype=baidu`](https://rsshub.app/zimuxia/portfolio/我们这一天?linktype=baidu) 来导出百度盘链接。目前,你可以选择的 `链接类型` 包括: `magnet`(默认), `all`(所有), `ed2k`(电驴), `baidu`(百度盘), `quark`(夸克盘), `115`(115 盘), `subhd`(字幕).
:::
-## Hentaimama {#hentaimama}
-
-### Recent Videos {#hentaimama-recent-videos}
-
-<Route author="everyonus" example="/hentaimama/videos" path="/hentaimama/videos" />
-
-## JavBus {#javbus}
-
-:::warning
-Requests from non-Asia areas will be redirected to login page.
-:::
-
-:::tip[Language]
-You can change the language of each route to the languages listed below.
-
-| English | 日本语 | 한국의 | 中文 |
-| ------- | ------ | ------ | ---------------- |
-| en | ja | ko | (leave it empty) |
-:::
-
-:::tip
-JavBus has multiple backup domains, these routes use default domain `https://javbus.com`. If the domain is unreachable, you can add `?domain=<domain>` to the end of the route to specify the domain to visit. Let say you want to use the backup domain `https://javsee.icu`, you can add `?domain=javsee.icu` to the end of the route, then the route will be [`/javbus/en?domain=javsee.icu`](https://rsshub.app/javbus?domain=javsee.icu)
-
-**Note**: **Western** has different domain than the main site, the backup domains are also different. The default domain is `https://javbus.org` and you can add `?western_domain=<domain>` to the end of the route to specify the domain to visit. Let say you want to use the backup domain `https://javsee.one`, you can add `?western_domain=javsee.one` to the end of the route, then the route will be [`/javbus/western/en?western_domain=javsee.one`](https://rsshub.app/javbus/western?western_domain=javsee.one)
-:::
-
-### Censored - Home {#javbus-censored-home}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en" path="/javbus/en" anticrawler="1" />
-
-### Censored - Genre {#javbus-censored-genre}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/genre/7g" path="/javbus/en/genre/:id" paramsDesc={['Genre id, can be found in URL']} anticrawler="1">
- For more genre, please visit [Censored - Genre](https://www.javbus.com/en/genre)
-</Route>
-
-### Censored - Actresses {#javbus-censored-actresses}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/star/2jv" path="/javbus/en/star/:id" paramsDesc={['Actresses id, can be found in URL']} anticrawler="1">
- For more actresses, please visit [Censored JAV Idols](https://www.javbus.com/en/actresses)
-</Route>
-
-### Censored - Series {#javbus-censored-series}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/series/44q" path="/javbus/en/series/:id" paramsDesc={['Series id, can be found in URL']} anticrawler="1" />
-
-### Censored - Studio {#javbus-censored-studio}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/studio/ej" path="/javbus/en/studio/:id" paramsDesc={['Studio id, can be found in URL']} anticrawler="1" />
-
-### Censored - Label {#javbus-censored-label}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/label/x8" path="/javbus/en/label/:id" paramsDesc={['Label id, can be found in URL']} anticrawler="1" />
-
-### Censored - Director {#javbus-censored-director}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/director/4gv" path="/javbus/en/director/:id" paramsDesc={['Director id, can be found in URL']} anticrawler="1" />
-
-### Censored - Search {#javbus-censored-search}
-
-<Route author="nczitzk" example="/javbus/en/search/REBD" path="/javbus/en/search/:keyword" paramsDesc={['Keyword, empty by default']} anticrawler="1" />
-
-### Uncensored - Home {#javbus-uncensored-home}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/uncensored" path="/javbus/en/uncensored" anticrawler="1" />
-
-### Uncensored - Genre {#javbus-uncensored-genre}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/uncensored/genre/1bc" path="/javbus/en/uncensored/genre/:id" paramsDesc={['Genre id, can be found in URL']} anticrawler="1">
- For more genre, please visit [Uncensored - Genre](https://www.javbus.com/en/uncensored/genre)
-</Route>
-
-### Uncensored - Actresses {#javbus-uncensored-actresses}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/uncensored/star/b5b" path="/javbus/en/uncensored/star/:id" paramsDesc={['Actresses id, can be found in URL']} anticrawler="1">
- For more actresses, please visit [Uncensored JAV Idols](https://www.javbus.com/en/uncensored/actresses)
-</Route>
-
-### Uncensored - Series {#javbus-uncensored-series}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/uncensored/series/1ft" path="/javbus/en/uncensored/series/:id" paramsDesc={['系列 id, can be found in URL']} anticrawler="1" />
-
-### Uncensored - Studio {#javbus-uncensored-studio}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/uncensored/studio/3n" path="/javbus/en/uncensored/studio/:id" paramsDesc={[', can be found in URL']} anticrawler="1" />
-
-### Uncensored - Search {#javbus-uncensored-search}
-
-<Route author="nczitzk" example="/javbus/en/uncensored/search/HEYZO" path="/javbus/en/uncensored/search/:keyword" paramsDesc={['Keyword, empty by default']} anticrawler="1" />
-
-### Western - Home {#javbus-western-home}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/western" path="/javbus/en/western" anticrawler="1" />
-
-### Western - Genre {#javbus-western-genre}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/western/genre/86" path="/javbus/en/western/genre/:id" paramsDesc={['Genre id, can be found in URL']} anticrawler="1">
- For more genre, please visit [Genre - Video](https://www.javbus.org/en/genre)
-</Route>
-
-### Western - Actresses {#javbus-western-actresses}
-
-<Route author="MegrezZhu CoderTonyChan nczitzk" example="/javbus/en/western/star/4hv" path="/javbus/en/western/star/:id" paramsDesc={['Actresses id, can be found in URL']} anticrawler="1">
- For more actresses [Western AV Idols](https://www.javbus.org/en/actresses)
-</Route>
-
-### Western - Series {#javbus-western-series}
-
-<Route author="MegrezZhu CoderTonyChan Felix2yu nczitzk" example="/javbus/en/western/series/20" path="/javbus/en/western/series/:id" paramsDesc={['Series id, can be found in URL']} anticrawler="1" />
-
-### Western - Studio {#javbus-western-studio}
-
-<Route author="nczitzk" example="/javbus/en/western/studio/4" path="/javbus/en/western/studio/:id" paramsDesc={['Studio id, can be found in URLL']} anticrawler="1" />
-
-### Western - Search {#javbus-western-search}
-
-<Route author="nczitzk" example="/javbus/en/western/search/Brazzers" path="/javbus/en/western/search/:keyword" paramsDesc={['Keyword, empty by default']} anticrawler="1" />
-
## JavDB {#javdb}
:::tip
@@ -631,465 +265,247 @@ JavDB 有多个备用域名,本路由默认使用永久域名 `https://javdb.c
因为该站有反爬检测,所以不应将此值调整过高
:::
-### 主页 {#javdb-zhu-ye}
-
-<Route author="nczitzk" example="/javdb" path="/javdb/:category?/:sort?/:filter?" paramsDesc={['分类,见下表,默认为 `有碼`', '排序,见下表,默认为 `磁鏈更新排序`', '过滤,见下表,默认为 `可下载`']} anticrawler="1">
- 分类
+### 分類 {#javdb-fen-lei}
- | 有碼 | 無碼 | 歐美 |
- | -------- | ---------- | ------- |
- | censored | uncensored | western |
+<Route data={{"path":"/tags/:query?/:category?","categories":["multimedia"],"example":"/javdb/tags/c2=5&c10=1","parameters":{"query":"筛选,默认为 `c10=1`","category":"分类,见下表,默认为 `有碼`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"分類","maintainers":["nczitzk"],"url":"javdb.com/","description":":::tip\n 在 [分類](https://javdb.com/tags) 中选定分类后,URL 中 `tags?` 后的字段即为筛选参数。\n\n 如 `https://javdb.com/tags?c2=5&c10=1` 中 `c2=5&c10=1` 为筛选参数。\n :::\n\n 分类\n\n | 有碼 | 無碼 | 歐美 |\n | -------- | ---------- | ------- |\n | censored | uncensored | western |","location":"tags.ts"}} />
- 排序
+:::tip
+在 [分類](https://javdb.com/tags) 中选定分类后,URL 中 `tags?` 后的字段即为筛选参数。
- | 发布日期排序 | 磁鏈更新排序 |
- | ------------ | ------------ |
- | 1 | 2 |
+如 `https://javdb.com/tags?c2=5&c10=1` 中 `c2=5&c10=1` 为筛选参数。
+:::
- 过滤
+分类
- | 全部 | 可下载 | 含字幕 | 含短評 |
- | ---- | ------ | ------ | ------ |
- | 0 | 1 | 2 | 3 |
-</Route>
+| 有碼 | 無碼 | 歐美 |
+| -------- | ---------- | ------- |
+| censored | uncensored | western |
-### 分類 {#javdb-fen-lei}
+### 排行榜 {#javdb-pai-hang-bang}
-<Route author="nczitzk" example="/javdb/tags/c2=5&c10=1" path="/javdb/tags/:query?/:category?" paramsDesc={['筛选,默认为 `c10=1`', '分类,见下表,默认为 `有碼`']} anticrawler="1">
- :::tip
- 在 [分類](https://javdb.com/tags) 中选定分类后,URL 中 `tags?` 后的字段即为筛选参数。
+<Route data={{"path":"/rankings/:category?/:time?","categories":["multimedia"],"example":"/javdb/rankings","parameters":{"category":"分类,见下表,默认为 `有碼`","time":"时间,见下表,默认为 `日榜`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"排行榜","maintainers":["nczitzk"],"url":"javdb.com/","description":"分类\n\n | 有碼 | 無碼 | 歐美 |\n | -------- | ---------- | ------- |\n | censored | uncensored | western |\n\n 时间\n\n | 日榜 | 週榜 | 月榜 |\n | ----- | ------ | ------- |\n | daily | weekly | monthly |","location":"rankings.ts"}} />
- 如 `https://javdb.com/tags?c2=5&c10=1` 中 `c2=5&c10=1` 为筛选参数。
- :::
+分类
- 分类
+| 有碼 | 無碼 | 歐美 |
+| -------- | ---------- | ------- |
+| censored | uncensored | western |
- | 有碼 | 無碼 | 歐美 |
- | -------- | ---------- | ------- |
- | censored | uncensored | western |
-</Route>
+时间
-### 排行榜 {#javdb-pai-hang-bang}
+| 日榜 | 週榜 | 月榜 |
+| ----- | ------ | ------- |
+| daily | weekly | monthly |
-<Route author="nczitzk" example="/javdb/rankings" path="/javdb/rankings/:category?/:time?" paramsDesc={['分类,见下表,默认为 `有碼`', '时间,见下表,默认为 `日榜`']} anticrawler="1">
- 分类
+### 片商 {#javdb-pian-shang}
- | 有碼 | 無碼 | 歐美 |
- | -------- | ---------- | ------- |
- | censored | uncensored | western |
+<Route data={{"path":"/makers/:id/:filter?","categories":["multimedia"],"example":"/javdb/makers/7R","parameters":{"id":"编号,可在片商页 URL 中找到","filter":"过滤,见下表,默认为 `全部`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"片商","maintainers":["nczitzk"],"url":"javdb.com/","description":"| 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |\n | ---- | -------- | -------- | -------- | ----- | ------- |\n | | playable | single | download | cnsub | preview |\n\n 所有片商编号参见 [片商庫](https://javdb.com/makers)","location":"makers.ts"}} />
- 时间
+| 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |
+| ---- | -------- | -------- | -------- | ----- | ------- |
+| | playable | single | download | cnsub | preview |
- | 日榜 | 週榜 | 月榜 |
- | ----- | ------ | ------- |
- | daily | weekly | monthly |
-</Route>
+所有片商编号参见 [片商庫](https://javdb.com/makers)
### 搜索 {#javdb-sou-suo}
-<Route author="nczitzk" example="/javdb/search/巨乳" path="/javdb/search/:keyword?/:filter?/:sort?" paramsDesc={['关键字,默认为空', '过滤,见下表,默认为 `可播放`', '排序,见下表,默认为 `按相关度排序`']} anticrawler="1">
- 过滤
-
- | 全部 | 占位 | 可播放 | 單體作品 | 演員 | 片商 | 導演 | 系列 | 番號 | 可下載 | 字幕 | 預覽圖 |
- | ---- | ---- | -------- | -------- | ----- | ----- | -------- | ------ | ---- | -------- | ----- | ------- |
- | | none | playable | single | actor | maker | director | series | code | download | cnsub | preview |
-
- 排序
+<Route data={{"path":"/search/:keyword?/:filter?/:sort?","categories":["multimedia"],"example":"/javdb/search/巨乳","parameters":{"keyword":"关键字,默认为空","filter":"过滤,见下表,默认为 `可播放`","sort":"排序,见下表,默认为 `按相关度排序`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"搜索","maintainers":["nczitzk"],"url":"javdb.com/","description":"过滤\n\n | 全部 | 占位 | 可播放 | 單體作品 | 演員 | 片商 | 導演 | 系列 | 番號 | 可下載 | 字幕 | 預覽圖 |\n | ---- | ---- | -------- | -------- | ----- | ----- | -------- | ------ | ---- | -------- | ----- | ------- |\n | | none | playable | single | actor | maker | director | series | code | download | cnsub | preview |\n\n 排序\n\n | 按相关度排序 | 按发布时间排序 |\n | ------------ | -------------- |\n | 0 | 1 |","location":"search.ts"}} />
- | 按相关度排序 | 按发布时间排序 |
- | ------------ | -------------- |
- | 0 | 1 |
-</Route>
+过滤
-### 演員 {#javdb-yan-yuan}
+| 全部 | 占位 | 可播放 | 單體作品 | 演員 | 片商 | 導演 | 系列 | 番號 | 可下載 | 字幕 | 預覽圖 |
+| ---- | ---- | -------- | -------- | ----- | ----- | -------- | ------ | ---- | -------- | ----- | ------- |
+| | none | playable | single | actor | maker | director | series | code | download | cnsub | preview |
-<Route author="nczitzk" example="/javdb/actors/R2Vg" path="/javdb/actors/:id/:filter?" paramsDesc={['编号,可在演员页 URL 中找到', '过滤,见下表,默认为 `全部`']} anticrawler="1">
- | 全部 | 可播放 | 單體作品 | 可下載 | 含字幕 |
- | ---- | ------ | -------- | ------ | ------ |
- | | p | s | d | c |
+排序
- 所有演员编号参见 [演員庫](https://javdb.com/actors)
-</Route>
+| 按相关度排序 | 按发布时间排序 |
+| ------------ | -------------- |
+| 0 | 1 |
### 系列 {#javdb-xi-lie}
-<Route author="nczitzk" example="/javdb/series/1NW" path="/javdb/series/:id/:filter?" paramsDesc={['编号,可在系列页 URL 中找到', '过滤,见下表,默认为 `全部`']} anticrawler="1">
- | 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |
- | ---- | -------- | -------- | -------- | ----- | ------- |
- | | playable | single | download | cnsub | preview |
-
- 所有系列编号参见 [系列庫](https://javdb.com/series)
-</Route>
-
-### 片商 {#javdb-pian-shang}
-
-<Route author="nczitzk" example="/javdb/makers/7R" path="/javdb/makers/:id/:filter?" paramsDesc={['编号,可在片商页 URL 中找到', '过滤,见下表,默认为 `全部`']} anticrawler="1">
- | 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |
- | ---- | -------- | -------- | -------- | ----- | ------- |
- | | playable | single | download | cnsub | preview |
+<Route data={{"path":"/series/:id/:filter?","categories":["multimedia"],"example":"/javdb/series/1NW","parameters":{"id":"编号,可在系列页 URL 中找到","filter":"过滤,见下表,默认为 `全部`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"系列","maintainers":["nczitzk"],"url":"javdb.com/","description":"| 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |\n | ---- | -------- | -------- | -------- | ----- | ------- |\n | | playable | single | download | cnsub | preview |\n\n 所有系列编号参见 [系列庫](https://javdb.com/series)","location":"series.ts"}} />
- 所有片商编号参见 [片商庫](https://javdb.com/makers)
-</Route>
+| 全部 | 可播放 | 單體作品 | 可下載 | 字幕 | 預覽圖 |
+| ---- | -------- | -------- | -------- | ----- | ------- |
+| | playable | single | download | cnsub | preview |
-### 清单 {#javdb-qing-dan}
+所有系列编号参见 [系列庫](https://javdb.com/series)
-<Route author="dddepg" example="/javdb/lists/2GPgB" path="/lists/:id/:filter?/:sort?" paramsDesc={['编号,可在清单页 URL 中找到', '过滤,见下表,默认为 `全部`,需要占位时可设置为 `none`', '排序,见下表,默认为 `加入时间排序`']} anticrawler="1">
- 过滤
+### 演員 {#javdb-yan-yuan}
- | 全部 | 占位 | 可播放 | 單體作品 | 含磁链 | 含字幕 | 預覽圖 |
- | ---- | ---- | -------- | -------- | -------- | ------ | ------- |
- | | none | playable | single | download | cnsub | preview |
+<Route data={{"path":"/actors/:id/:filter?","categories":["multimedia"],"example":"/javdb/actors/R2Vg","parameters":{"id":"编号,可在演员页 URL 中找到","filter":"过滤,见下表,默认为 `全部`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["javdb.com/"],"target":""},"name":"演員","maintainers":["nczitzk"],"url":"javdb.com/","description":"| 全部 | 可播放 | 單體作品 | 可下載 | 含字幕 |\n | ---- | ------ | -------- | ------ | ------ |\n | | p | s | d | c |\n\n 所有演员编号参见 [演員庫](https://javdb.com/actors)","location":"actors.ts"}} />
- 排序
+| 全部 | 可播放 | 單體作品 | 可下載 | 含字幕 |
+| ---- | ------ | -------- | ------ | ------ |
+| | p | s | d | c |
- | 加入时间排序 | 发布时间排序 |
- | ------------ | ------------ |
- | 0 | 1 |
-</Route>
+所有演员编号参见 [演員庫](https://javdb.com/actors)
## JAVLibrary {#javlibrary}
-### Recently Discussed Videos {#javlibrary-recently-discussed-videos}
-
-<Route author="nczitzk" example="/javlibrary/update/en" path="/javlibrary/update/:language?" paramsDesc={['Language, see below, Japanese by default, as `ja`']} radar="1" anticrawler="1" />
-
-### New Releases {#javlibrary-new-releases}
-
-<Route author="nczitzk" example="/javlibrary/newrelease/en" path="/javlibrary/newrelease/:language?/:mode?" paramsDesc={['Language, see below, Japanese by default, as `ja`', 'Mode, see below, videos with comments (by date) by default, as `1`']} radar="1" anticrawler="1">
- | videos with comments (by date) | everything (by date) |
- | ------------------------------ | -------------------- |
- | 1 | 2 |
-</Route>
-
-### Recently Inserted Videos {#javlibrary-recently-inserted-videos}
-
-<Route author="nczitzk" example="/javlibrary/newentries/en" path="/javlibrary/newentries/:language?" paramsDesc={['Language, see below, Japanese by default, as `ja`']} radar="1" anticrawler="1" />
-
-### Most Wanted Videos {#javlibrary-most-wanted-videos}
-
-<Route author="nczitzk" example="/javlibrary/mostwanted/en" path="/javlibrary/mostwanted/:language?/:mode?" paramsDesc={['Language, see below, Japanese by default, as `ja`', 'Mode, see below, Last Month by default, as `1`']} radar="1" anticrawler="1">
- | Last Month | All Time |
- | ---------- | -------- |
- | 1 | 2 |
-</Route>
-
-### Best Rated Videos {#javlibrary-best-rated-videos}
-
-<Route author="nczitzk" example="/javlibrary/bestrated/en" path="/javlibrary/bestrated/:language?/:mode?" paramsDesc={['Language, see below, Japanese by default, as `ja`', 'Mode, see below, Last Month by default, as `1`']} radar="1" anticrawler="1">
- | Last Month | All Time |
- | ---------- | -------- |
- | 1 | 2 |
-</Route>
-
### Best Reviews {#javlibrary-best-reviews}
-<Route author="DCJaous nczitzk" example="/javlibrary/bestreviews/en" path="/javlibrary/bestreviews/:language?/:mode?" paramsDesc={['Language, see below, Japanese by default, as `ja`', 'Mode, see below, Last Month by default, as `1`']} radar="1" anticrawler="1">
- | Last Month | All Time |
- | ---------- | -------- |
- | 1 | 2 |
-</Route>
+<Route data={{"path":"/bestreviews/:language?/:mode?","categories":["multimedia"],"example":"/javlibrary/bestreviews/en","parameters":{"language":"Language, see below, Japanese by default, as `ja`","mode":"Mode, see below, Last Month by default, as `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Best Reviews","maintainers":["nczitzk"],"description":"| Last Month | All Time |\n | ---------- | -------- |\n | 1 | 2 |","location":"bestreviews.ts"}} />
-### Videos by categories {#javlibrary-videos-by-categories}
-
-<Route author="nczitzk" example="/javlibrary/genre/amjq/en" path="/javlibrary/genre/:genre?/:language?/:mode?" paramsDesc={['Category, Acme · Orgasm by default, as `amjq`', 'Language, see below, Japanese by default, as `ja`', 'Mode, see below, videos with comments (by date) by default, as `1`']} radar="1" anticrawler="1">
- | videos with comments (by date) | everything (by date) |
- | ------------------------------ | -------------------- |
- | 1 | 2 |
-
- :::tip
- See [Categories](https://www.javlibrary.com/en/genres.php) to view all categories.
- :::
-</Route>
+| Last Month | All Time |
+| ---------- | -------- |
+| 1 | 2 |
### Videos by makers {#javlibrary-videos-by-makers}
-<Route author="Huzhixin00" example="/javlibrary/videos/maker/arlq/cn" path="/javlibrary/videos/maker/:maker?/:language?/:mode?" paramsDesc={['Maker, S1 NO.1 STYLE by default, as `arlq`', 'Language, see below, Japanese by default, as `ja`', 'Mode, see below, videos with comments (by date) by default, as `1`']} radar="1" anticrawler="1">
- | videos with comments (by date) | everything (by date) |
- | ------------------------------ | -------------------- |
- | 1 | 2 |
-</Route>
-
-### Videos by star {#javlibrary-videos-by-star}
-
-<Route author="DIYgod junfengP nczitzk" example="/javlibrary/star/abbds/en" path="/javlibrary/star/:id/:language?/:mode?" paramsDesc={['Star id, can be found in URL', 'Language, see below, Japanese by default, as `ja`', 'Mode, see below, videos with comments (by date) by default, as `1`']} radar="1" anticrawler="1">
- | videos with comments (by date) | everything (by date) |
- | ------------------------------ | -------------------- |
- | 1 | 2 |
-
- :::tip
- See [Ranking](https://www.javlibrary.com/en/star_mostfav.php) to view stars by ranks.
+<Route data={{"path":"/videos/maker/:maker?/:language?/:mode?","categories":["multimedia"],"example":"/javlibrary/videos/maker/arlq/cn","parameters":{"maker":"Maker, S1 NO.1 STYLE by default, as `arlq`","language":"Language, see below, Japanese by default, as `ja`","mode":"Mode, see below, videos with comments (by date) by default, as `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Videos by makers","maintainers":[],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |","location":"maker.ts"}} />
- See [Directory](https://www.javlibrary.com/en/star_list.php) to view all stars.
- :::
-</Route>
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
-### Posts published by user {#javlibrary-posts-published-by-user}
-
-<Route author="Diygod junfengP nczitzk" example="/javlibrary/userposts/mangudai/en" path="/javlibrary/userposts/:id/:language?" paramsDesc={['User id, can be found in URL', 'Language, see below, Japanese by default, as `ja`']} radar="1" anticrawler="1" />
-
-### Videos by user {#javlibrary-videos-by-user}
-
-<Route author="Diygod junfengP nczitzk" example="/javlibrary/userwatched/mangudai/en" path="/javlibrary/:type/:id/:language?" paramsDesc={['Type, see below', 'User id, can be found in URL', 'Language, see below, Japanese by default, as `ja`']} radar="1" anticrawler="1">
- | Wanted | Watched | Owned |
- | ---------- | ----------- | --------- |
- | userwanted | userwatched | userowned |
-</Route>
-
-## Last.fm {#last-fm}
-
-### 用户播放记录 {#last-fm-yong-hu-bo-fang-ji-lu}
-
-<Route author="hoilc" example="/lastfm/recent/yeFoenix" path="/lastfm/recent/:user" paramsDesc={['Last.fm 用户名']} radar="1" />
-
-### 用户 Love 记录 {#last-fm-yong-hu-love-ji-lu}
-
-<Route author="hoilc" example="/lastfm/loved/yeFoenix" path="/lastfm/loved/:user" paramsDesc={['Last.fm 用户名']} radar="1" />
-
-### 站内 Top 榜单 {#last-fm-zhan-nei-top-bang-dan}
+### Videos by star {#javlibrary-videos-by-star}
-<Route author="hoilc" example="/lastfm/top/spain" path="/lastfm/top/:country?" paramsDesc={['国家或地区, 需要符合`ISO 3166-1`的英文全称, 可参考`https://zh.wikipedia.org/wiki/ISO_3166-1二位字母代码#正式分配代码`']} radar="1" />
+<Route data={{"path":"/star/:id/:language?/:mode?","categories":["multimedia"],"example":"/javlibrary/star/abbds/en","parameters":{"id":"Star id, can be found in URL","language":"Language, see below, Japanese by default, as `ja`","mode":"Mode, see below, videos with comments (by date) by default, as `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Videos by star","maintainers":["nczitzk"],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |\n\n :::tip\n See [Ranking](https://www.javlibrary.com/en/star_mostfav.php) to view stars by ranks.\n\n See [Directory](https://www.javlibrary.com/en/star_list.php) to view all stars.\n :::","location":"star.ts"}} />
-## Melon {#melon}
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
-### Chart {#melon-chart}
+:::tip
+See [Ranking](https://www.javlibrary.com/en/star_mostfav.php) to view stars by ranks.
-<Route author="nczitzk" example="/melon/chart" path="/melon/chart/:category?" paramsDesc={['Category, see below, 24H by default']}>
- | 24H | 일간 | 주간 | 월간 |
- | --- | ---- | ---- | ----- |
- | | day | week | month |
-</Route>
+See [Directory](https://www.javlibrary.com/en/star_list.php) to view all stars.
+:::
## MissAV.com {#missav-com}
### 最近更新 {#missav-com-zui-jin-geng-xin}
-<Route author="TonyRL" example="/missav/new" path="/missav/new" radar="1" />
+<Route data={{"path":"/new","categories":["multimedia"],"example":"/missav/new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["missav.com/dm397/new","missav.com/new","missav.com/"]},"name":"最近更新","maintainers":["TonyRL"],"url":"missav.com/dm397/new","location":"new.ts"}} />
## Mixcloud {#mixcloud}
### User {#mixcloud-user}
-<Route author="Misaka13514" example="/mixcloud/dholbach/uploads" path="/mixcloud/:username/:type?" paramsDesc={['Username, can be found in URL', 'Type, see below, uploads by default']} radar="1" supportPodcast="1">
- | Shows | Favorites | History | Stream |
- | ------- | --------- | ------- | ------ |
- | uploads | favorites | listens | stream |
-</Route>
+<Route data={{"path":"/:username/:type?","categories":["multimedia"],"example":"/mixcloud/dholbach/uploads","parameters":{"username":"Username, can be found in URL","type":"Type, see below, uploads by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"User","maintainers":["Misaka13514"],"description":"| Shows | Favorites | History | Stream |\n | ------- | --------- | ------- | ------ |\n | uploads | favorites | listens | stream |","location":"index.ts"}} />
-## Netflav {#netflav}
-
-### Index {#netflav-index}
-
-<Route author="TonyRL" example="/netflav" path="/netflav" radar="1" />
+| Shows | Favorites | History | Stream |
+| ------- | --------- | ------- | ------ |
+| uploads | favorites | listens | stream |
## NEW 字幕组 {#new-zi-mu-zu}
-### 分类 {#new-zi-mu-zu-fen-lei}
-
-<Route author="nczitzk" example="/newzmz" path="/newzmz/:category?/:downLinkType?" paramsDesc={['分类,见下表,默认为最近更新', '下载链接类型,默认为磁力链']}>
- :::tip
- `downLinkType` 参数指下载链接类型,默认为 **磁力链**。网站提供的下载链接类型包括但不限于 **磁力链**、**百度网盘**、**阿里云盘**、**夸克网盘**、**UC 网盘** 等。若无法找到指定类型的下载链接,将会返回第 1 条下载链接。
-
- 与其他路由不同的是,本路由的 `limit` 参数作用于获取剧集数量,所以返回的总条目数根据每次获取的剧集所包含的条目变更而不同。
- :::
-
- | 制作中 | 最近更新 | 剧集推荐 | 电影推荐 | 纪录片推荐 | 动画推荐 | 真人秀推荐 |
- | ------ | -------- | -------- | -------- | ---------- | -------- | ---------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
-</Route>
-
### 指定剧集 {#new-zi-mu-zu-zhi-ding-ju-ji}
-<Route author="nczitzk" example="/newzmz/qEzRyY3v" path="/newzmz/:id?/:downLinkType?" paramsDesc={['剧集 id,可在剧集下载页 URL 中找到', '下载链接类型,默认为磁力链']}>
- :::tip
- [雪国列车 (剧版)](https://nzmz.xyz/details-qEzRyY3v.html) 的下载页 URL 为 `https://v.ys99.xyz/view/qEzRyY3v.html`,即剧集 id 为 `qEzRyY3v`
- :::
-</Route>
-
-## Nyaa {#nyaa}
-
-### Search Result {#nyaa-search-result}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/search/psycho-pass" path="/nyaa/search/:query?" paramsDesc={['Search keyword']} supportBT="1" radar="1" />
-
-### User {#nyaa-user}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/user/silver-khaie" path="/nyaa/user/:username?" paramsDesc={['Username']} supportBT="1" radar="1" />
-
-### Search Result with specify user {#nyaa-search-result-with-specify-user}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/user/silver-khaie/search/a" path="/nyaa/user/:username/search/:query?" paramsDesc={['Username', 'Search keyword']} supportBT="1" radar="1" />
-
-### Sukebei Search Result {#nyaa-sukebei-search-result}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/sukebei/search/hi" path="/nyaa/sukebei/search/:query?" paramsDesc={['Search keyword']} supportBT="1" radar="1" />
-
-### Sukebei User {#nyaa-sukebei-user}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/sukebei/user/Tarakara168" path="/nyaa/sukebei/user/:username?" paramsDesc={['Username']} supportBT="1" radar="1" />
-
-### Sukebei search Result with specify user {#nyaa-sukebei-search-result-with-specify-user}
-
-<Route author="Lava-Swimmer noname1776" example="/nyaa/sukebei/user/Tarakara168/search/a" path="/nyaa/sukebei/user/:username/search/:query?" paramsDesc={['Username', 'Search keyword']} supportBT="1" radar="1" />
-
-## OneJAV {#onejav}
+<Route data={{"path":"/:id?/:downLinkType?","categories":["multimedia"],"example":"/newzmz/qEzRyY3v","parameters":{"id":"剧集 id,可在剧集下载页 URL 中找到","downLinkType":"下载链接类型,默认为磁力链"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["newzmz.com/"],"target":""},"name":"指定剧集","maintainers":["nczitzk"],"url":"newzmz.com/","description":":::tip\n [雪国列车 (剧版)](https://nzmz.xyz/details-qEzRyY3v.html) 的下载页 URL 为 `https://v.ys99.xyz/view/qEzRyY3v.html`,即剧集 id 为 `qEzRyY3v`\n :::","location":"index.ts"}} />
:::tip
-官方提供的订阅源不支持 BT 下载订阅,地址为 [https://onejav.com/feeds/](https://onejav.com/feeds/)
+[雪国列车 (剧版)](https://nzmz.xyz/details-qEzRyY3v.html) 的下载页 URL 为 `https://v.ys99.xyz/view/qEzRyY3v.html`,即剧集 id 为 `qEzRyY3v`
:::
-### OneJAV BT {#onejav-onejav-bt}
-
-<Route author="monsterxcn" example="/onejav/popular/30" path="/onejav/:type/:key?" paramsDesc={['类型', '关键词']} supportBT="1" radar="1" anticrawler="1">
- **类型**
-
- | 最新 | 热门 | 随机 | 指定演员 | 指定标签 | 指定日期 |
- | ---- | ------- | ------ | -------- | -------- | -------- |
- | new | popular | random | actress | tag | day |
-
- **关键词**
+## Nyaa {#nyaa}
- | 空 | 日期范围 | 演员名 | 标签名 | 日期 |
- | -- | ----------- | ------------ | -------------- | -------- |
- | | 7 / 30 / 60 | Yua%20Mikami | Adult%20Awards | YYYYMMDD |
+### Search Result {#nyaa-search-result}
- **示例说明**
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
- - `/onejav/new`
+### Search Result {#nyaa-search-result}
- 仅当类型为 `new` `popular` 或 `random` 时关键词可为 **空**
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
- - `/onejav/popular/30`
+### Search Result {#nyaa-search-result}
- `popular` `random` 类型的关键词可填写 `7` `30` 或 `60` 三个 **日期范围** 之一
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
- - `/onejav/actress/Yua%20Mikami`
+### Search Result {#nyaa-search-result}
- `actress` 类型的关键词必须填写 **演员名** ,可在 [此处](https://onejav.com/actress/) 演员单页链接中获取
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
- - `/onejav/tag/Adult%20Awards`
+### Search Result {#nyaa-search-result}
- `tag` 类型的关键词必须填写 **标签名** 且标签中的 `/` 必须替换为 `%2F` ,可在 [此处](https://onejav.com/tag/) 标签单页链接中获取
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
- - `/onejav/day/20200730`
+### Search Result {#nyaa-search-result}
- `day` 类型的关键词必须填写 **日期** ,按照示例写成形如 `20200730` 的格式
-</Route>
+<Route data={{"path":["/search/:query?","/user/:username?","/user/:username/search/:query?","/sukebei/search/:query?","/sukebei/user/:username?","/sukebei/user/:username/search/:query?"],"categories":["multimedia"],"example":"/nyaa/search/psycho-pass","parameters":{"query":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["Lava-Swimmer","noname1776"],"location":"main.ts"}} />
## OTOBANANA {#otobanana}
-### Timeline タイムライン {#otobanana-timeline-%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%A9%E3%82%A4%E3%83%B3}
-
-<Route author="TonyRL" example="/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1" path="/otobanana/user/:id" paramsDesc={['User ID, can be found in URL']} radar="1" supportPodcast="1" />
-
### Cast 音声投稿 {#otobanana-cast-yin-sheng-tou-gao}
-<Route author="TonyRL" example="/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1/cast" path="/otobanana/user/:id/cast" paramsDesc={['User ID, can be found in URL']} radar="1" supportPodcast="1" />
+<Route data={{"path":"/user/:id/cast","categories":["multimedia"],"example":"/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1/cast","parameters":{"id":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["otobanana.com/user/:id/cast","otobanana.com/user/:id"]},"name":"Cast 音声投稿","maintainers":["TonyRL"],"location":"cast.ts"}} />
### Livestream ライブ配信 {#otobanana-livestream-%E3%83%A9%E3%82%A4%E3%83%96-pei-xin}
-<Route author="TonyRL" example="/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1/livestream" path="/otobanana/user/:id/livestream" paramsDesc={['User ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/user/:id/livestream","categories":["multimedia"],"example":"/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1/livestream","parameters":{"id":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["otobanana.com/user/:id/livestream","otobanana.com/user/:id"]},"name":"Livestream ライブ配信","maintainers":["TonyRL"],"location":"livestream.ts"}} />
+
+### Timeline タイムライン {#otobanana-timeline-%E3%82%BF%E3%82%A4%E3%83%A0%E3%83%A9%E3%82%A4%E3%83%B3}
+
+<Route data={{"path":"/user/:id","categories":["multimedia"],"example":"/otobanana/user/cee16401-96b1-420f-8188-abd4d33093f1","parameters":{"id":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["otobanana.com/user/:id"]},"name":"Timeline タイムライン","maintainers":["TonyRL"],"location":"timeline.ts"}} />
## PornHub {#pornhub}
### Category {#pornhub-category}
-<Route author="nczitzk" example="/pornhub/category/popular-with-women" path="/pornhub/category/:caty" paramsDesc={['category, see [categories](https://www.pornhub.com/webmasters/categories)']} radar="1" />
+<Route data={{"path":"/category/:caty","categories":["multimedia"],"example":"/pornhub/category/popular-with-women","parameters":{"caty":"category, see [categories](https://www.pornhub.com/webmasters/categories)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"location":"category.ts"}} />
### Keyword Search {#pornhub-keyword-search}
-<Route author="nczitzk" example="/pornhub/search/stepsister" path="/pornhub/search/:keyword" paramsDesc={['keyword']} radar="1" />
+<Route data={{"path":"/search/:keyword","categories":["multimedia"],"example":"/pornhub/search/stepsister","parameters":{"keyword":"keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keyword Search","maintainers":["nczitzk"],"location":"search.ts"}} />
### Users {#pornhub-users}
-<Route author="I2IMk queensferryme" example="/pornhub/users/pornhubmodels" path="/pornhub/:language?/users/:username" paramsDesc={['language, see below', 'username, part of the url e.g. `pornhub.com/users/pornhubmodels`']} radar="1" />
+<Route data={{"path":"/:language?/users/:username","categories":["multimedia"],"example":"/pornhub/users/pornhubmodels","parameters":{"language":"language, see below","username":"username, part of the url e.g. `pornhub.com/users/pornhubmodels`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pornhub.com/users/:username/*"],"target":"/users/:username"},"name":"Users","maintainers":["I2IMk","queensferryme"],"location":"users.ts"}} />
### Verified amateur / Model {#pornhub-verified-amateur-model}
-<Route author="I2IMk queensferryme" example="/pornhub/model/stacy-starando" path="/pornhub/:language?/model/:username/:sort?" paramsDesc={['language, see below', 'username, part of the url e.g. `pornhub.com/model/stacy-starando`', 'sorting method, see below']} radar="1" anticrawler="1" />
+<Route data={{"path":"/:language?/model/:username/:sort?","categories":["multimedia"],"example":"/pornhub/model/stacy-starando","parameters":{"language":"language, see below","username":"username, part of the url e.g. `pornhub.com/model/stacy-starando`","sort":"sorting method, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pornhub.com/model/:username/*"],"target":"/model/:username"},"name":"Verified amateur / Model","maintainers":["I2IMk","queensferryme"],"location":"model.ts"}} />
### Verified model / Pornstar {#pornhub-verified-model-pornstar}
-<Route author="I2IMk queensferryme" example="/pornhub/pornstar/june-liu" path="/pornhub/:language?/pornstar/:username/:sort?" paramsDesc={['language, see below', 'username, part of the url e.g. `pornhub.com/pornstar/june-liu`', 'sorting method, see below']} radar="1" anticrawler="1">
- **`sort`**
-
- | Most Recent | Most Viewed | Top Rated | Longest | Best |
- | ----------- | ----------- | --------- | ------- | ---- |
- | mr | mv | tr | lg | |
-</Route>
-
-### Video List {#pornhub-video-list}
-
-<Route author="I2IMk queensferryme" example="/pornhub/category_url/video%3Fc%3D15%26o%3Dmv%26t%3Dw%26cc%3Djp" path="/pornhub/:language?/category_url/:url?" paramsDesc={['language, see below', 'relative path after `pornhub.com/`, need to be URL encoded']} anticrawler="1">
- **`language`**
+<Route data={{"path":"/:language?/pornstar/:username/:sort?","categories":["multimedia"],"example":"/pornhub/pornstar/june-liu","parameters":{"language":"language, see below","username":"username, part of the url e.g. `pornhub.com/pornstar/june-liu`","sort":"sorting method, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pornhub.com/pornstar/:username/*"],"target":"/pornstar/:username"},"name":"Verified model / Pornstar","maintainers":["I2IMk","queensferryme"],"description":"**`sort`**\n\n | Most Recent | Most Viewed | Top Rated | Longest | Best |\n | ----------- | ----------- | --------- | ------- | ---- |\n | mr | mv | tr | lg | |","location":"pornstar.ts"}} />
- Refer to [Pornhub F.A.Qs](https://help.pornhub.com/hc/en-us/articles/360044327034-How-do-I-change-the-language-), English by default. For example:
+**`sort`**
- - `cn` (Chinese), for Pornhub in China [https://cn.pornhub.com](https://cn.pornhub.com);
+| Most Recent | Most Viewed | Top Rated | Longest | Best |
+| ----------- | ----------- | --------- | ------- | ---- |
+| mr | mv | tr | lg | |
- - `jp` (Japanese), for Pornhub in Japan [https://jp.pornhub.com](https://jp.pornhub.com) etc.
-</Route>
-
-## sexinsex {#sexinsex}
-
-### 分区帖子 {#sexinsex-fen-qu-tie-zi}
+### Video List {#pornhub-video-list}
-<Route author="cnzgray" example="/sexinsex/230/634" path="/sexinsex/:id/:type?" paramsDesc={['分区 id, 可在分区页 URL 中找到', '类型 id, 可在分区类型过滤后的 URL 中找到']}>
- > 注意:并非所有的分区都有子类型,可以参考亚洲成人有码原创区的 `字幕` 这一子类型。
+<Route data={{"path":"/:language?/category_url/:url?","categories":["multimedia"],"example":"/pornhub/category_url/video%3Fc%3D15%26o%3Dmv%26t%3Dw%26cc%3Djp","parameters":{"language":"language, see below","url":"relative path after `pornhub.com/`, need to be URL encoded"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Video List","maintainers":["I2IMk","queensferryme"],"description":"**`language`**\n\n Refer to [Pornhub F.A.Qs](https://help.pornhub.com/hc/en-us/articles/360044327034-How-do-I-change-the-language-), English by default. For example:\n\n - `cn` (Chinese), for Pornhub in China [https://cn.pornhub.com](https://cn.pornhub.com);\n\n - `jp` (Japanese), for Pornhub in Japan [https://jp.pornhub.com](https://jp.pornhub.com) etc.","location":"category-url.ts"}} />
- | 亚洲成人无码原创区 | 亚洲成人有码原创区 | 欧美无码原创区 | 欧美无码区 | 亚洲有码薄码区 |
- | ------------------ | ------------------ | -------------- | ---------- | -------------- |
- | 143 | 230 | 229 | 77 | 58 |
-</Route>
+**`language`**
-## SoundCloud {#soundcloud}
+Refer to [Pornhub F.A.Qs](https://help.pornhub.com/hc/en-us/articles/360044327034-How-do-I-change-the-language-), English by default. For example:
-### Tracks {#soundcloud-tracks}
+- `cn` (Chinese), for Pornhub in China [https://cn.pornhub.com](https://cn.pornhub.com);
-<Route author="fallenhh" example="/soundcloud/tracks/angeart" path="/soundcloud/tracks/:user" paramsDesc={['User name']} />
+- `jp` (Japanese), for Pornhub in Japan [https://jp.pornhub.com](https://jp.pornhub.com) etc.
## Spotify {#spotify}
### Artist Albums {#spotify-artist-albums}
-<Route author="outloudvi" example="/spotify/artist/6k9TBCxyr4bXwZ8Y21Kwn1" path="/spotify/artist/:id" paramsDesc={['Artist ID']} configRequired="1" />
-
-### Playlist {#spotify-playlist}
-
-<Route author="outloudvi" example="/spotify/playlist/4UBVy1LttvodwivPUuwJk2" path="/spotify/playlist/:id" paramsDesc={['Playlist ID']} configRequired="1" />
+<Route data={{"path":"/artist/:id","categories":["multimedia"],"example":"/spotify/artist/6k9TBCxyr4bXwZ8Y21Kwn1","parameters":{"id":"Artist ID"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/artist/:id"]},"name":"Artist Albums","maintainers":["outloudvi"],"location":"artist.ts"}} />
### Personal Saved Tracks {#spotify-personal-saved-tracks}
-<Route author="outloudvi" example="/spotify/saved/50" path="/spotify/saved/:limit?" paramsDesc={['Track count, 50 by default']} configRequired="1" />
-
-### Personal Top Tracks {#spotify-personal-top-tracks}
-
-<Route author="outloudvi" example="/spotify/top/tracks" path="/spotify/top/tracks" configRequired="1" />
+<Route data={{"path":"/saved/:limit?","categories":["multimedia"],"example":"/spotify/saved/50","parameters":{"limit":"Track count, 50 by default"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/collection/tracks"],"target":"/saved"},"name":"Personal Saved Tracks","maintainers":["outloudvi"],"url":"open.spotify.com/collection/tracks","location":"saved.ts"}} />
### Personal Top Artists {#spotify-personal-top-artists}
-<Route author="outloudvi" example="/spotify/top/artists" path="/spotify/top/artists" configRequired="1" />
+<Route data={{"path":"/top/artists","categories":["multimedia"],"example":"/spotify/top/artists","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/"]},"name":"Personal Top Artists","maintainers":["outloudvi"],"url":"open.spotify.com/","location":"artists-top.ts"}} />
-### Show {#spotify-show}
-
-<Route author="caiohsramos" example="/spotify/show/5CfCWKI5pZ28U0uOzXkDHe" path="/spotify/show/:id" paramsDesc={['Show ID']} configRequired="1" />
+### Personal Top Tracks {#spotify-personal-top-tracks}
-## Sub HD {#sub-hd}
+<Route data={{"path":"/top/tracks","categories":["multimedia"],"example":"/spotify/top/tracks","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/"]},"name":"Personal Top Tracks","maintainers":["outloudvi"],"url":"open.spotify.com/","location":"tracks-top.ts"}} />
-### 字幕 {#sub-hd-zi-mu}
+### Playlist {#spotify-playlist}
-<Route author="laampui nczitzk" example="/subhd/sub/new" path="/subhd/sub/:category?" paramsDesc={['分类,见下表,默认为最新']}>
- | 最新字幕 | 热门字幕 | 剧集字幕 | 电影字幕 |
- | -------- | -------- | -------- | -------- |
- | new | top | tv | movie |
-</Route>
+<Route data={{"path":"/playlist/:id","categories":["multimedia"],"example":"/spotify/playlist/4UBVy1LttvodwivPUuwJk2","parameters":{"id":"Playlist ID"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/playlist/:id"]},"name":"Playlist","maintainers":["outloudvi"],"location":"playlist.ts"}} />
-### 字幕组 {#sub-hd-zi-mu-zu}
+### Show {#spotify-show}
-<Route author="nczitzk" example="/subhd/zu/14" path="/subhd/zu/:category?" paramsDesc={['字幕组,见下表,默认为 YYeTs字幕组']}>
- | YYeTs 字幕组 | F.I.X 字幕侠 | 深影字幕组 | 擦枪字幕组 | 哒哒字幕组 | 迪幻字幕组 | 伊甸园字幕组 | H-SGDK 字幕组 | 蓝血字幕组 | GA 字幕组 | CC 标准电影字幕组 | NEW 字幕组 | Orange 字幕组 | 圣城家园 SCG 字幕组 | 纪录片之家字幕组 |
- | ------------ | ------------ | ---------- | ---------- | ---------- | ---------- | ------------ | ------------- | ---------- | --------- | ----------------- | ---------- | ------------- | ------------------- | ---------------- |
- | 14 | 28 | 2 | 118 | 132 | 20 | 1 | 18 | 71 | 11 | 75 | 130 | 66 | 19 | 10 |
-</Route>
+<Route data={{"path":"/show/:id","categories":["multimedia"],"example":"/spotify/show/5CfCWKI5pZ28U0uOzXkDHe","parameters":{"id":"Show ID"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["open.spotify.com/show/:id"]},"name":"Show","maintainers":["caiohsramos"],"location":"show.ts"}} />
## The Movie Database {#the-movie-database}
@@ -1099,140 +515,65 @@ Refer to [https://developers.themoviedb.org/3/getting-started/languages](https:/
### Collection {#the-movie-database-collection}
-<Route author="x2cf" example="/themoviedb/collection/131292/en-US" path="/themoviedb/collection/:id/:lang?" paramsDesc={['Collection ID', 'Language']} radar="1" />
+<Route data={{"path":"/collection/:id/:lang?","categories":["multimedia"],"example":"/themoviedb/collection/131292/en-US","parameters":{"id":"Collection ID","lang":"Language"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Collection","maintainers":["x2cf"],"location":"collection.ts"}} />
-### Trending {#the-movie-database-trending}
+### Sheet {#the-movie-database-sheet}
-<Route author="x2cf" example="/themoviedb/trending/tv/day/en-US" path="/themoviedb/trending/:mediaType/:timeWindow/:lang?" paramsDesc={['`movie` or `tv`', '`day` or `week`', 'Language']} radar="1" />
+<Route data={{"path":"/:mediaType/:sheet/:lang?","categories":["multimedia"],"example":"/themoviedb/tv/top-rated/en-US","parameters":{"mediaType":"`movie` or `tv`","sheet":"Sheet, see below","lang":"Language"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Sheet","maintainers":["x2cf"],"description":"When `mediaType` is `tv`, `sheet` should be:\n\n | Airing Today | On TV | Top Rated |\n | ------------ | ---------- | --------- |\n | airing-today | on-the-air | top-rated |\n\n When `mediaType` is `movie`, `sheet` should be:\n\n | Now Playing | Upcoming | Top Rated |\n | ----------- | -------- | --------- |\n | now-playing | upcoming | top-rated |","location":"sheet.ts"}} />
-### TV Show Seasons {#the-movie-database-tv-show-seasons}
+When `mediaType` is `tv`, `sheet` should be:
+
+| Airing Today | On TV | Top Rated |
+| ------------ | ---------- | --------- |
+| airing-today | on-the-air | top-rated |
-<Route author="x2cf" example="/themoviedb/tv/70593/seasons/en-US" path="/themoviedb/tv/:id/seasons/:lang?" paramsDesc={['TV show ID', 'Language']} radar="1" />
+When `mediaType` is `movie`, `sheet` should be:
+
+| Now Playing | Upcoming | Top Rated |
+| ----------- | -------- | --------- |
+| now-playing | upcoming | top-rated |
+
+### Trending {#the-movie-database-trending}
+
+<Route data={{"path":"/trending/:mediaType/:timeWindow/:lang?","categories":["multimedia"],"example":"/themoviedb/trending/tv/day/en-US","parameters":{"mediaType":"`movie` or `tv`","timeWindow":"`day` or `week`","lang":"Language"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Trending","maintainers":["x2cf"],"location":"trending.ts"}} />
### TV Show Episodes {#the-movie-database-tv-show-episodes}
-<Route author="x2cf" example="/themoviedb/tv/70593/seasons/1/episodes/en-US" path="/themoviedb/tv/:id/seasons/:seasonNumber/episodes/:lang?" paramsDesc={['TV show ID', 'Season number', 'Language']} radar="1" />
+<Route data={{"path":"/tv/:id/seasons/:seasonNumber/episodes/:lang?","categories":["multimedia"],"example":"/themoviedb/tv/70593/seasons/1/episodes/en-US","parameters":{"id":"TV show ID","seasonNumber":"Season number","lang":"Language"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"TV Show Episodes","maintainers":["x2cf"],"location":"episodes.ts"}} />
-### Sheet {#the-movie-database-sheet}
+### TV Show Seasons {#the-movie-database-tv-show-seasons}
-<Route author="x2cf" example="/themoviedb/tv/top-rated/en-US" path="/themoviedb/:mediaType/:sheet/:lang?" paramsDesc={['`movie` or `tv`', 'Sheet, see below', 'Language']} radar="1">
- When `mediaType` is `tv`, `sheet` should be:
-
- | Airing Today | On TV | Top Rated |
- | ------------ | ---------- | --------- |
- | airing-today | on-the-air | top-rated |
-
- When `mediaType` is `movie`, `sheet` should be:
-
- | Now Playing | Upcoming | Top Rated |
- | ----------- | -------- | --------- |
- | now-playing | upcoming | top-rated |
-</Route>
-
-## Trakt.tv {#trakt-tv}
-
-### User Collection {#trakt-tv-user-collection}
-
-<Route author="hoilc" example="/trakt/collection/tomyangsh/movies" path="/trakt/collection/:username/:type?" paramsDesc={['Username','Collection type, can be `movies`,`shows`,`episodes`,`all`, default to `all`']} radar="1" />
-
-## Transcript Forest {#transcript-forest}
-
-### Channel {#transcript-forest-channel}
-
-<Route author="nczitzk" example="/transcriptforest/all-the-hacks" path="/transcriptforest" paramsDesc={['Channel, see below, all by default']} radar="1" supportPodcast="1">
- | Channel | ID |
- | ---------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
- | [All](https://www.transcriptforest.com/en) | |
- | [a16z podcast](https://www.transcriptforest.com/en/channel/a16z-podcast) | [a16z-podcast](https://rsshub.app/transcriptforest/a16z-podcast) |
- | [Aarthi and Sriram's Good Time Show](https://www.transcriptforest.com/en/channel/aarthi-and-srirams-good-time-show) | [aarthi-and-srirams-good-time-show](https://rsshub.app/transcriptforest/aarthi-and-srirams-good-time-show) |
- | [Acquired](https://www.transcriptforest.com/en/channel/acquired) | [acquired](https://rsshub.app/transcriptforest/acquired) |
- | [All-In with Chamath, Jason, Sacks & Friedberg](https://www.transcriptforest.com/en/channel/all-in-with-chamath-jason-sacks-friedberg) | [all-in-with-chamath-jason-sacks-friedberg](https://rsshub.app/transcriptforest/all-in-with-chamath-jason-sacks-friedberg) |
- | [All the Hacks](https://www.transcriptforest.com/en/channel/all-the-hacks) | [all-the-hacks](https://rsshub.app/transcriptforest/all-the-hacks) |
- | [Breaking Points](https://www.transcriptforest.com/en/channel/breaking-points) | [breaking-points](https://rsshub.app/transcriptforest/breaking-points) |
- | [Cartoon Avatars](https://www.transcriptforest.com/en/channel/cartoon-avatars) | [cartoon-avatars](https://rsshub.app/transcriptforest/cartoon-avatars) |
- | [Conversations With Coleman](https://www.transcriptforest.com/en/channel/conversations-with-coleman) | [conversations-with-coleman](https://rsshub.app/transcriptforest/conversations-with-coleman) |
- | [CSPI Podcast](https://www.transcriptforest.com/en/channel/cspi-podcast) | [cspi-podcast](https://rsshub.app/transcriptforest/cspi-podcast) |
- | [Culpable](https://www.transcriptforest.com/en/channel/culpable) | [culpable](https://rsshub.app/transcriptforest/culpable) |
- | [Dateline NBC](https://www.transcriptforest.com/en/channel/dateline-nbc) | [dateline-nbc](https://rsshub.app/transcriptforest/dateline-nbc) |
- | [Execs](https://www.transcriptforest.com/en/channel/execs) | [execs](https://rsshub.app/transcriptforest/execs) |
- | [Exponent](https://www.transcriptforest.com/en/channel/exponent) | [exponent](https://rsshub.app/transcriptforest/exponent) |
- | [Freakonomics](https://www.transcriptforest.com/en/channel/freakonomics) | [freakonomics](https://rsshub.app/transcriptforest/freakonomics) |
- | [Future of StoryTelling](https://www.transcriptforest.com/en/channel/future-of-storytelling) | [future-of-storytelling](https://rsshub.app/transcriptforest/future-of-storytelling) |
- | [Gamecraft](https://www.transcriptforest.com/en/channel/gamecraft) | [gamecraft](https://rsshub.app/transcriptforest/gamecraft) |
- | [Get WIRED](https://www.transcriptforest.com/en/channel/get-wired) | [get-wired](https://rsshub.app/transcriptforest/get-wired) |
- | [Greymatter](https://www.transcriptforest.com/en/channel/greymatter) | [greymatter](https://rsshub.app/transcriptforest/greymatter) |
- | [How I built this](https://www.transcriptforest.com/en/channel/how-I-built-this) | [how-I-built-this](https://rsshub.app/transcriptforest/how-I-built-this) |
- | [Huberman Lab](https://www.transcriptforest.com/en/channel/huberman-lab) | [huberman-lab](https://rsshub.app/transcriptforest/huberman-lab) |
- | [ICYMI](https://www.transcriptforest.com/en/channel/icymi) | [icymi](https://rsshub.app/transcriptforest/icymi) |
- | [In Machines We Trust](https://www.transcriptforest.com/en/channel/in-machines-we-trust) | [in-machines-we-trust](https://rsshub.app/transcriptforest/in-machines-we-trust) |
- | [Invest Like the Best with Patrick O'Shaughnessy](https://www.transcriptforest.com/en/channel/invest-like-the-best-with-patrick-o-shaughnessy) | [invest-like-the-best-with-patrick-o-shaughnessy](https://rsshub.app/transcriptforest/invest-like-the-best-with-patrick-o-shaughnessy) |
- | [Joe Rogan Experience Review podcast](https://www.transcriptforest.com/en/channel/joe-rogan-experience-review-podcast) | [joe-rogan-experience-review-podcast](https://rsshub.app/transcriptforest/joe-rogan-experience-review-podcast) |
- | [Land of Giants](https://www.transcriptforest.com/en/channel/land-of-giants) | [land-of-giants](https://rsshub.app/transcriptforest/land-of-giants) |
- | [Lenny's Podcast: Product \| Growth \| Career](https://www.transcriptforest.com/en/channel/lenny-podcast-product-growth-career) | [lenny-podcast-product-growth-career](https://rsshub.app/transcriptforest/lenny-podcast-product-growth-career) |
- | [Lex Fridman Podcast](https://www.transcriptforest.com/en/channel/lex-fridman-podcast) | [lex-fridman-podcast](https://rsshub.app/transcriptforest/lex-fridman-podcast) |
- | [Making Sense with Sam Harris](https://www.transcriptforest.com/en/channel/making-sense-with-sam-harris) | [making-sense-with-sam-harris](https://rsshub.app/transcriptforest/making-sense-with-sam-harris) |
- | [Masters of Scale](https://www.transcriptforest.com/en/channel/masters-of-scale) | [masters-of-scale](https://rsshub.app/transcriptforest/masters-of-scale) |
- | [Modern Wisdom](https://www.transcriptforest.com/en/channel/modern-wisdom) | [modern-wisdom](https://rsshub.app/transcriptforest/modern-wisdom) |
- | [Moment of Zen](https://www.transcriptforest.com/en/channel/moment-of-zen) | [moment-of-zen](https://rsshub.app/transcriptforest/moment-of-zen) |
- | [Morbid](https://www.transcriptforest.com/en/channel/morbid) | [morbid](https://rsshub.app/transcriptforest/morbid) |
- | [My First Million](https://www.transcriptforest.com/en/channel/my-first-million) | [my-first-million](https://rsshub.app/transcriptforest/my-first-million) |
- | [Naval](https://www.transcriptforest.com/en/channel/naval) | [naval](https://rsshub.app/transcriptforest/naval) |
- | [Newcomer Podcast](https://www.transcriptforest.com/en/channel/newcomer-podcast) | [newcomer-podcast](https://rsshub.app/transcriptforest/newcomer-podcast) |
- | [Not investment advice](https://www.transcriptforest.com/en/channel/not-investment-advice) | [not-investment-advice](https://rsshub.app/transcriptforest/not-investment-advice) |
- | [Odd Lots](https://www.transcriptforest.com/en/channel/odd-lots) | [odd-lots](https://rsshub.app/transcriptforest/odd-lots) |
- | [On with Kara Swisher](https://www.transcriptforest.com/en/channel/on-with-kara-swisher) | [on-with-kara-swisher](https://rsshub.app/transcriptforest/on-with-kara-swisher) |
- | [Proof: A True Crime Podcast](https://www.transcriptforest.com/en/channel/proof-a-true-crime-podcast) | [proof-a-true-crime-podcast](https://rsshub.app/transcriptforest/proof-a-true-crime-podcast) |
- | [Reply All](https://www.transcriptforest.com/en/channel/reply-all) | [reply-all](https://rsshub.app/transcriptforest/reply-all) |
- | [Revisionist History](https://www.transcriptforest.com/en/channel/revisionist-history) | [revisionist-history](https://rsshub.app/transcriptforest/revisionist-history) |
- | [Serial](https://www.transcriptforest.com/en/channel/serial-podcast) | [serial-podcast](https://rsshub.app/transcriptforest/serial-podcast) |
- | [Slow Burn](https://www.transcriptforest.com/en/channel/slow-burn) | [slow-burn](https://rsshub.app/transcriptforest/slow-burn) |
- | [StrictlyVC Download](https://www.transcriptforest.com/en/channel/strictlyvc-download) | [strictlyvc-download](https://rsshub.app/transcriptforest/strictlyvc-download) |
- | [Stuff You Should Know:](https://www.transcriptforest.com/en/channel/stuff-you-should-know) | [stuff-you-should-know](https://rsshub.app/transcriptforest/stuff-you-should-know) |
- | [Subversive w/Alex Kaschuta](https://www.transcriptforest.com/en/channel/subversive-w-alex-kaschuta) | [subversive-w-alex-kaschuta](https://rsshub.app/transcriptforest/subversive-w-alex-kaschuta) |
- | [TED Radio Hour](https://www.transcriptforest.com/en/channel/ted-radio-hour) | [ted-radio-hour](https://rsshub.app/transcriptforest/ted-radio-hour) |
- | [The Bootstrapped Founder](https://www.transcriptforest.com/en/channel/the-bootstrapped-founder) | [the-bootstrapped-founder](https://rsshub.app/transcriptforest/the-bootstrapped-founder) |
- | [The Boyscast with Ryan Long](https://www.transcriptforest.com/en/channel/the-boyscast-with-ryan-long) | [the-boyscast-with-ryan-long](https://rsshub.app/transcriptforest/the-boyscast-with-ryan-long) |
-</Route>
-
-## U3C3 {#u3c3}
-
-### Keyword Search {#u3c3-keyword-search}
-
-<Route author="noname1897" example="/u3c3/search/les" path="/u3c3/search/:keyword/:preview?" paramsDesc={['search keyword', 'Show image preview, off by default, non empty value means on']} supportBT="1" radar="1" />
-
-### Type {#u3c3-type}
-
-<Route author="noname1897" example="/u3c3/U3C3" path="/u3c3/:type?/:preview?" paramsDesc={['type, pay attention to case, it should be exactly same as the choices: `U3C3`/`Video`/`Photo`/`Book`/`Game`/`Software`/`Other`, if no type is provided, show the home index','Show image preview, off by default, non empty value means on']} supportBT="1" radar="1" />
+<Route data={{"path":"/tv/:id/seasons/:lang?","categories":["multimedia"],"example":"/themoviedb/tv/70593/seasons/en-US","parameters":{"id":"TV show ID","lang":"Language"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"TV Show Seasons","maintainers":["x2cf"],"location":"seasons.ts"}} />
## U9A9 {#u9a9}
-### Home {#u9a9-home}
+### Search {#u9a9-search}
-<Route author="TonyRL" example="/u9a9" path="/u3c3/:preview?" paramsDesc={['Show image preview, off by default, non empty value means on']} supportBT="1" radar="1" />
+<Route data={{"path":["/search/:keyword/:preview?","/:type?/:preview?"],"categories":["multimedia"],"example":"/u9a9/search/新片速递","parameters":{"keyword":"Search keyword","preview":"Show image preview, off by default, non empty value means on"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["storytellerF"],"location":"index.ts"}} />
### Search {#u9a9-search}
-<Route author="TonyRL" example="/u9a9/search/新片速递" path="/u3c3/search/:keyword/:preview?" paramsDesc={['Search keyword', 'Show image preview, off by default, non empty value means on']} supportBT="1" radar="1" />
+<Route data={{"path":["/search/:keyword/:preview?","/:type?/:preview?"],"categories":["multimedia"],"example":"/u9a9/search/新片速递","parameters":{"keyword":"Search keyword","preview":"Show image preview, off by default, non empty value means on"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["storytellerF"],"location":"index.ts"}} />
## 阿基米德 FM {#a-ji-mi-de-fm}
### 播客 {#a-ji-mi-de-fm-bo-ke}
-<Route author="Fatpandac" example="/ajmide/10603594" path="/ajmide/:id" paramsDesc={['播客 id,可以从播客页面 URL 中找到']} radar="1" />
+<Route data={{"path":"/:id","categories":["multimedia"],"example":"/ajmide/10603594","parameters":{"id":"播客 id,可以从播客页面 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"播客","maintainers":["Fatpandac"],"location":"index.ts"}} />
## 爱奇艺 {#ai-qi-yi}
-### 用户视频 {#ai-qi-yi-yong-hu-shi-pin}
+### 剧集 {#ai-qi-yi-ju-ji}
-<Route author="talengu" example="/iqiyi/user/video/2289191062" path="/iqiyi/user/video/:uid" paramsDesc={['用户名']} radar="1" />
+<Route data={{"path":"/album/:id","categories":["multimedia"],"example":"/iqiyi/album/神武天尊-2020-1b4lufwxd7h","parameters":{"id":"剧集 id, 可在该主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"剧集","maintainers":["TonyRL"],"description":":::tip\n 可抓取內容根据服务器所在地区而定\n :::","location":"album.ts"}} />
-### 剧集 {#ai-qi-yi-ju-ji}
+:::tip
+可抓取內容根据服务器所在地区而定
+:::
-<Route author="TonyRL" example="/iqiyi/album/神武天尊-2020-1b4lufwxd7h" path="/iqiyi/album/:id" paramsDesc={['剧集 id, 可在该主页 URL 中找到']} radar="1">
- :::tip
- 可抓取內容根据服务器所在地区而定
- :::
-</Route>
+### 用户视频 {#ai-qi-yi-yong-hu-shi-pin}
+
+<Route data={{"path":"/user/video/:uid","categories":["multimedia"],"example":"/iqiyi/user/video/2289191062","parameters":{"uid":"用户名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["iqiyi.com/u/:uid/*"]},"name":"用户视频","maintainers":["talengu","JimenezLi"],"location":"video.ts"}} />
## 哔嘀影视 {#bi-di-ying-shi}
@@ -1242,434 +583,276 @@ Refer to [https://developers.themoviedb.org/3/getting-started/languages](https:/
### 首页 {#bi-di-ying-shi-shou-ye}
-<Route author="nczitzk" example="/bdys" path="/bdys/:caty?/:type?/:area?/:year?/:order?" paramsDesc={['影视类型,见下表,默认为 `all` 即不限','资源分类,见下表,默认为 `all` 即不限', '制片地区,见下表,默认为 `all` 即不限','上映时间,此处填写年份不小于2000,默认为 `all` 即不限','影视排序,见下表,默认为更新时间']} anticrawler="1" radar="1">
- #### 资源分类
+<Route data={{"path":"/:caty?/:type?/:area?/:year?/:order?","categories":["multimedia"],"example":"/bdys","parameters":{"caty":"影视类型,见下表,默认为 `all` 即不限","type":"资源分类,见下表,默认为 `all` 即不限","area":"制片地区,见下表,默认为 `all` 即不限","year":"上映时间,此处填写年份不小于2000,默认为 `all` 即不限","order":"影视排序,见下表,默认为更新时间"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["nczitzk"],"description":"#### 资源分类\n\n | 不限 | 电影 | 电视剧 |\n | ---- | ---- | ------ |\n | all | 0 | 1 |\n\n #### 影视类型\n\n | 不限 | 动作 | 爱情 | 喜剧 | 科幻 | 恐怖 |\n | ---- | ------- | ------ | ---- | ------ | ------ |\n | all | dongzuo | aiqing | xiju | kehuan | kongbu |\n\n | 战争 | 武侠 | 魔幻 | 剧情 | 动画 | 惊悚 |\n | --------- | ----- | ------ | ------ | ------- | -------- |\n | zhanzheng | wuxia | mohuan | juqing | donghua | jingsong |\n\n | 3D | 灾难 | 悬疑 | 警匪 | 文艺 | 青春 |\n | -- | ------ | ------ | ------- | ----- | -------- |\n | 3D | zainan | xuanyi | jingfei | wenyi | qingchun |\n\n | 冒险 | 犯罪 | 纪录 | 古装 | 奇幻 | 国语 |\n | ------- | ------ | ---- | -------- | ------ | ----- |\n | maoxian | fanzui | jilu | guzhuang | qihuan | guoyu |\n\n | 综艺 | 历史 | 运动 | 原创压制 |\n | ------ | ----- | ------- | ---------- |\n | zongyi | lishi | yundong | yuanchuang |\n\n | 美剧 | 韩剧 | 国产电视剧 | 日剧 | 英剧 | 德剧 |\n | ----- | ----- | ---------- | ---- | ------ | ---- |\n | meiju | hanju | guoju | riju | yingju | deju |\n\n | 俄剧 | 巴剧 | 加剧 | 西剧 | 意大利剧 | 泰剧 |\n | ---- | ---- | ----- | ------- | -------- | ----- |\n | eju | baju | jiaju | spanish | yidaliju | taiju |\n\n | 港台剧 | 法剧 | 澳剧 |\n | --------- | ---- | ---- |\n | gangtaiju | faju | aoju |\n\n #### 制片地区\n\n | 大陆 | 中国香港 | 中国台湾 |\n | ---- | -------- | -------- |\n\n | 美国 | 英国 | 日本 | 韩国 | 法国 |\n | ---- | ---- | ---- | ---- | ---- |\n\n | 印度 | 德国 | 西班牙 | 意大利 | 澳大利亚 |\n | ---- | ---- | ------ | ------ | -------- |\n\n | 比利时 | 瑞典 | 荷兰 | 丹麦 | 加拿大 | 俄罗斯 |\n | ------ | ---- | ---- | ---- | ------ | ------ |\n\n #### 影视排序\n\n | 更新时间 | 豆瓣评分 |\n | -------- | -------- |\n | 0 | 1 |","location":"index.ts"}} />
- | 不限 | 电影 | 电视剧 |
- | ---- | ---- | ------ |
- | all | 0 | 1 |
+#### 资源分类 {#bi-di-ying-shi-shou-ye-zi-yuan-fen-lei}
- #### 影视类型
+| 不限 | 电影 | 电视剧 |
+| ---- | ---- | ------ |
+| all | 0 | 1 |
- | 不限 | 动作 | 爱情 | 喜剧 | 科幻 | 恐怖 |
- | ---- | ------- | ------ | ---- | ------ | ------ |
- | all | dongzuo | aiqing | xiju | kehuan | kongbu |
+#### 影视类型 {#bi-di-ying-shi-shou-ye-ying-shi-lei-xing}
- | 战争 | 武侠 | 魔幻 | 剧情 | 动画 | 惊悚 |
- | --------- | ----- | ------ | ------ | ------- | -------- |
- | zhanzheng | wuxia | mohuan | juqing | donghua | jingsong |
+| 不限 | 动作 | 爱情 | 喜剧 | 科幻 | 恐怖 |
+| ---- | ------- | ------ | ---- | ------ | ------ |
+| all | dongzuo | aiqing | xiju | kehuan | kongbu |
- | 3D | 灾难 | 悬疑 | 警匪 | 文艺 | 青春 |
- | -- | ------ | ------ | ------- | ----- | -------- |
- | 3D | zainan | xuanyi | jingfei | wenyi | qingchun |
+| 战争 | 武侠 | 魔幻 | 剧情 | 动画 | 惊悚 |
+| --------- | ----- | ------ | ------ | ------- | -------- |
+| zhanzheng | wuxia | mohuan | juqing | donghua | jingsong |
- | 冒险 | 犯罪 | 纪录 | 古装 | 奇幻 | 国语 |
- | ------- | ------ | ---- | -------- | ------ | ----- |
- | maoxian | fanzui | jilu | guzhuang | qihuan | guoyu |
+| 3D | 灾难 | 悬疑 | 警匪 | 文艺 | 青春 |
+| -- | ------ | ------ | ------- | ----- | -------- |
+| 3D | zainan | xuanyi | jingfei | wenyi | qingchun |
- | 综艺 | 历史 | 运动 | 原创压制 |
- | ------ | ----- | ------- | ---------- |
- | zongyi | lishi | yundong | yuanchuang |
+| 冒险 | 犯罪 | 纪录 | 古装 | 奇幻 | 国语 |
+| ------- | ------ | ---- | -------- | ------ | ----- |
+| maoxian | fanzui | jilu | guzhuang | qihuan | guoyu |
- | 美剧 | 韩剧 | 国产电视剧 | 日剧 | 英剧 | 德剧 |
- | ----- | ----- | ---------- | ---- | ------ | ---- |
- | meiju | hanju | guoju | riju | yingju | deju |
+| 综艺 | 历史 | 运动 | 原创压制 |
+| ------ | ----- | ------- | ---------- |
+| zongyi | lishi | yundong | yuanchuang |
- | 俄剧 | 巴剧 | 加剧 | 西剧 | 意大利剧 | 泰剧 |
- | ---- | ---- | ----- | ------- | -------- | ----- |
- | eju | baju | jiaju | spanish | yidaliju | taiju |
+| 美剧 | 韩剧 | 国产电视剧 | 日剧 | 英剧 | 德剧 |
+| ----- | ----- | ---------- | ---- | ------ | ---- |
+| meiju | hanju | guoju | riju | yingju | deju |
- | 港台剧 | 法剧 | 澳剧 |
- | --------- | ---- | ---- |
- | gangtaiju | faju | aoju |
+| 俄剧 | 巴剧 | 加剧 | 西剧 | 意大利剧 | 泰剧 |
+| ---- | ---- | ----- | ------- | -------- | ----- |
+| eju | baju | jiaju | spanish | yidaliju | taiju |
- #### 制片地区
+| 港台剧 | 法剧 | 澳剧 |
+| --------- | ---- | ---- |
+| gangtaiju | faju | aoju |
- | 大陆 | 中国香港 | 中国台湾 |
- | ---- | -------- | -------- |
+#### 制片地区 {#bi-di-ying-shi-shou-ye-zhi-pian-di-qu}
- | 美国 | 英国 | 日本 | 韩国 | 法国 |
- | ---- | ---- | ---- | ---- | ---- |
+| 大陆 | 中国香港 | 中国台湾 |
+| ---- | -------- | -------- |
- | 印度 | 德国 | 西班牙 | 意大利 | 澳大利亚 |
- | ---- | ---- | ------ | ------ | -------- |
+| 美国 | 英国 | 日本 | 韩国 | 法国 |
+| ---- | ---- | ---- | ---- | ---- |
- | 比利时 | 瑞典 | 荷兰 | 丹麦 | 加拿大 | 俄罗斯 |
- | ------ | ---- | ---- | ---- | ------ | ------ |
+| 印度 | 德国 | 西班牙 | 意大利 | 澳大利亚 |
+| ---- | ---- | ------ | ------ | -------- |
- #### 影视排序
+| 比利时 | 瑞典 | 荷兰 | 丹麦 | 加拿大 | 俄罗斯 |
+| ------ | ---- | ---- | ---- | ------ | ------ |
- | 更新时间 | 豆瓣评分 |
- | -------- | -------- |
- | 0 | 1 |
-</Route>
+#### 影视排序 {#bi-di-ying-shi-shou-ye-ying-shi-pai-xu}
+
+| 更新时间 | 豆瓣评分 |
+| -------- | -------- |
+| 0 | 1 |
## 草榴社区 {#cao-liu-she-qu}
### 分区帖子 {#cao-liu-she-qu-fen-qu-tie-zi}
-<Route author="zhboner" example="/t66y/20/2" path="/t66y/:id/:type?" paramsDesc={['分区 id, 可在分区页 URL 中找到', '类型 id, 可在分区类型过滤后的 URL 中找到']} anticrawler="1">
- > 注意:并非所有的分区都有子类型,可以参考成人文学交流区的 `古典武侠` 这一子类型。
-
- | 亚洲无码原创区 | 亚洲有码原创区 | 欧美原创区 | 动漫原创区 | 国产原创区 |
- | -------------- | -------------- | ---------- | ---------- | ---------- |
- | 2 | 15 | 4 | 5 | 25 |
-
- | 中字原创区 | 转帖交流区 | HTTP 下载区 | 在线成人区 |
- | ---------- | ---------- | ----------- | ---------- |
- | 26 | 27 | 21 | 22 |
-
- | 技术讨论区 | 新时代的我们 | 达盖尔的旗帜 | 成人文学交流 |
- | ---------- | ------------ | ------------ | ------------ |
- | 7 | 8 | 16 | 20 |
-</Route>
-
-### 帖子跟踪 {#cao-liu-she-qu-tie-zi-gen-zong}
-
-<Route author="cnzgray" example="/t66y/post/3286088" path="/t66y/post/:tid" paramsDesc={['帖子 id, 可在帖子 URL 中找到']} anticrawler="1">
- :::tip
- 帖子 id 查找办法:
-
- 打开想跟踪的帖子,比如:`https://t66y.com/htm_data/20/1811/3286088.html` 其中 `3286088` 就是帖子 id。
- :::
-</Route>
-
-## 低端影视 {#di-duan-ying-shi}
-
-### 影视剧集更新 {#di-duan-ying-shi-ying-shi-ju-ji-geng-xin}
-
-<Route author="saintwinkle" example="/ddrk/update/silicon-valley/6" path="/ddrk/update/:name/:season?" paramsDesc={['影视名称,可以在 URL 中找到','季数,可以在 URL 中找到,剧集没有分季时不用填写,或是默认输出第一季的内容']} radar="1" anticrawler="1" />
+<Route data={{"path":"/:id/:type?","categories":["multimedia"],"example":"/t66y/20/2","parameters":{"id":"分区 id, 可在分区页 URL 中找到","type":"类型 id, 可在分区类型过滤后的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分区帖子","maintainers":["zhboner"],"description":"> 注意:并非所有的分区都有子类型,可以参考成人文学交流区的 `古典武侠` 这一子类型。\n\n | 亚洲无码原创区 | 亚洲有码原创区 | 欧美原创区 | 动漫原创区 | 国产原创区 |\n | -------------- | -------------- | ---------- | ---------- | ---------- |\n | 2 | 15 | 4 | 5 | 25 |\n\n | 中字原创区 | 转帖交流区 | HTTP 下载区 | 在线成人区 |\n | ---------- | ---------- | ----------- | ---------- |\n | 26 | 27 | 21 | 22 |\n\n | 技术讨论区 | 新时代的我们 | 达盖尔的旗帜 | 成人文学交流 |\n | ---------- | ------------ | ------------ | ------------ |\n | 7 | 8 | 16 | 20 |","location":"index.ts"}} />
-### 首页 {#di-duan-ying-shi-shou-ye}
+> 注意:并非所有的分区都有子类型,可以参考成人文学交流区的 `古典武侠` 这一子类型。
-<Route author="hoilc" example="/ddrk/index" path="/ddrk/index" radar="1" anticrawler="1" />
+| 亚洲无码原创区 | 亚洲有码原创区 | 欧美原创区 | 动漫原创区 | 国产原创区 |
+| -------------- | -------------- | ---------- | ---------- | ---------- |
+| 2 | 15 | 4 | 5 | 25 |
-### 分类 {#di-duan-ying-shi-fen-lei}
+| 中字原创区 | 转帖交流区 | HTTP 下载区 | 在线成人区 |
+| ---------- | ---------- | ----------- | ---------- |
+| 26 | 27 | 21 | 22 |
-<Route author="hoilc" example="/ddrk/category/jp-drama" path="/ddrk/category/:category" paramsDesc={['分类 ID, 可在 URL 中找到, 注意, 如果有两级分类, 只需要填写第二级即可']} radar="1" anticrawler="1" />
+| 技术讨论区 | 新时代的我们 | 达盖尔的旗帜 | 成人文学交流 |
+| ---------- | ------------ | ------------ | ------------ |
+| 7 | 8 | 16 | 20 |
-### 标签 {#di-duan-ying-shi-biao-qian}
-
-<Route author="hoilc" example="/ddrk/tag/石原里美" path="/ddrk/tag/:tag" paramsDesc={['标签名, 可在 URL 中找到']} radar="1" anticrawler="1" />
-
-## 电影天堂 {#dian-ying-tian-tang}
-
-### 新片精品 {#dian-ying-tian-tang-xin-pian-jing-pin}
-
-<Route author="imgss" example="/dytt" path="/dytt" supportBT="1" anticrawler="1" />
+### 帖子跟踪 {#cao-liu-she-qu-tie-zi-gen-zong}
-## 高清电台 {#gao-qing-dian-tai}
+<Route data={{"path":"/post/:tid","categories":["multimedia"],"example":"/t66y/post/3286088","parameters":{"tid":"帖子 id, 可在帖子 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"帖子跟踪","maintainers":["cnzgray"],"description":":::tip\n 帖子 id 查找办法:\n\n 打开想跟踪的帖子,比如:`https://t66y.com/htm_data/20/1811/3286088.html` 其中 `3286088` 就是帖子 id。\n :::","location":"post.ts"}} />
-### 最新电影 {#gao-qing-dian-tai-zui-xin-dian-ying}
+:::tip
+帖子 id 查找办法:
-<Route author="Songkeys" example="/gaoqing/latest" path="/gaoqing/latest" anticrawler="1" />
+打开想跟踪的帖子,比如:`https://t66y.com/htm_data/20/1811/3286088.html` 其中 `3286088` 就是帖子 id。
+:::
## 故事 FM {#gu-shi-fm}
-### 首页 {#gu-shi-fm-shou-ye}
-
-<Route author="sanmmm" example="/storyfm/index" path="/storyfm/index" notOperational="1" />
-
### 播客 {#gu-shi-fm-bo-ke}
-<Route author="nczitzk" example="/storyfm/episodes" path="/storyfm/episodes" supportPodcast="1" />
-
-## 开眼 {#kai-yan}
-
-### 每日精选 {#kai-yan-mei-ri-jing-xuan}
+<Route data={{"path":"/episodes","categories":["multimedia"],"example":"/storyfm/episodes","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["storyfm.cn/episodes-list","storyfm.cn/"]},"name":"播客","maintainers":["nczitzk"],"url":"storyfm.cn/episodes-list","location":"episodes.ts"}} />
-<Route author="SunShinenny" example="/kaiyan/index" path="/kaiyan/index" />
-
-## 荔枝 FM {#li-zhi-fm}
-
-### 电台更新 {#li-zhi-fm-dian-tai-geng-xin}
-
-<Route author="nczitzk" example="/lizhi/user/27151442948222380" path="/lizhi/user/:id" paramsDesc={['用户 id,可以在电台的 URL 中找到']} />
-
-## 猫耳 FM {#mao-er-fm}
-
-### 广播剧 / 有声漫画 {#mao-er-fm-guang-bo-ju-you-sheng-man-hua}
-
-<Route author="FlashWingShadow" example="/missevan/drama/28499" path="/missevan/drama/:id" paramsDesc={['剧集 id,在剧集主页 URL 中可以找到']} />
-
-### 最新广播剧 {#mao-er-fm-zui-xin-guang-bo-ju}
-
-<Route author="nczitzk" example="/missevan/drama/latest" path="/missevan/drama/latest" />
-
-## 猫眼电影 {#mao-yan-dian-ying}
-
-### 正在热映 {#mao-yan-dian-ying-zheng-zai-re-ying}
-
-<Route author="HenryQW" example="/maoyan/hot" path="/maoyan/hot" />
-
-### 即将上映 {#mao-yan-dian-ying-ji-jiang-shang-ying}
-
-<Route author="HenryQW" example="/maoyan/upcoming" path="/maoyan/upcoming" />
-
-### 正在热映 - 完整版 {#mao-yan-dian-ying-zheng-zai-re-ying-wan-zheng-ban}
+### 首页 {#gu-shi-fm-shou-ye}
-<Route author="song-zhou" example="/maoyan/hotComplete" path="/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?" paramsDesc={['排序条件,(score: 评分,pubDate: 发布时间),', '正序或倒序 (asc: 正序, desc: 倒序) 默认倒序', '取前多少条,默认取所有']} />
+<Route data={{"path":"/index","categories":["multimedia"],"example":"/storyfm/index","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["storyfm.cn/"]},"name":"首页","maintainers":["sanmmm"],"url":"storyfm.cn/","location":"index.ts"}} />
## 片源网 {#pian-yuan-wang}
### 最新资源 {#pian-yuan-wang-zui-xin-zi-yuan}
-<Route author="greatcodeeer jerry1119" example="/pianyuan/index" path="/pianyuan/index/:media?" paramsDesc={['类别,见下表,默认为首页']} radar="1" configRequired="1" />
+<Route data={{"path":"/index/:media?","categories":["multimedia"],"example":"/pianyuan/index","parameters":{"media":"类别,见下表,默认为首页"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pianyuan.org/"],"target":"/index"},"name":"最新资源","maintainers":["greatcodeeer","jerry1119"],"url":"pianyuan.org/","description":"| 电影 | 剧集 |\n| ---- | ---- |\n| mv | tv |","location":"app.ts"}} />
| 电影 | 剧集 |
| ---- | ---- |
| mv | tv |
-### 搜索 {#pian-yuan-wang-sou-suo}
+## 蜻蜓 FM {#qing-ting-fm}
-<Route author="jerry1119" example="/pianyuan/indexers/pianyuan/results/search/api?t=test&q=长津湖" path="/pianyuan/indexers/pianyuan/results/search/" configRequired="1" />
+### 播客 {#qing-ting-fm-bo-ke}
-搜索路由模仿 jackett 的搜索 api, 以提供给 nastools 使用,填写在 nastools 配置 indexer 中
+<Route data={{"path":"/podcast/:id","categories":["multimedia"],"example":"/qingting/podcast/293411","parameters":{"id":"专辑id, 可在专辑页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["qingting.fm/channels/:id"]},"name":"播客","maintainers":["RookieZoe","huyyi"],"description":"获取的播放 URL 有效期只有 1 天,需要开启播客 APP 的自动下载功能。","location":"podcast.ts"}} />
-## 蜻蜓 FM {#qing-ting-fm}
+获取的播放 URL 有效期只有 1 天,需要开启播客 APP 的自动下载功能。
### 专辑 {#qing-ting-fm-zhuan-ji}
-<Route author="nczitzk" example="/qingting/channel/293411" path="/qingting/channel/:id" paramsDesc={['专辑id, 可在专辑页 URL 中找到']} />
-
-### 播客 {#qing-ting-fm-bo-ke}
-
-<Route author="RookieZoe huyyi" example="/qingting/podcast/293411" path="/qingting/podcast/:id" paramsDesc={['专辑id, 可在专辑页 URL 中找到']} radar="1" supportPodcast="1" notOperational="1">
- 获取的播放 URL 有效期只有 1 天,需要开启播客 APP 的自动下载功能。
-</Route>
+<Route data={{"path":"/channel/:id","categories":["multimedia"],"example":"/qingting/channel/293411","parameters":{"id":"专辑id, 可在专辑页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专辑","maintainers":["nczitzk"],"location":"channel.ts"}} />
## 秋爸日字 {#qiu-ba-ri-zi}
### 分类 {#qiu-ba-ri-zi-fen-lei}
-<Route author="nczitzk" example="/qq88" path="/qq88/:category?" paramsDesc={['分类 id,见下表,默认为首页']}>
- | 首页 | オトナの土ドラ | 日剧 | 日剧 SP |
- | ---- | -------------- | ---- | ------- |
- | | 10 | 5 | 11 |
-</Route>
+<Route data={{"path":"/:category?","categories":["multimedia"],"example":"/qq88","parameters":{"category":"分类 id,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 首页 | オトナの土ドラ | 日剧 | 日剧 SP |\n | ---- | -------------- | ---- | ------- |\n | | 10 | 5 | 11 |","location":"index.ts"}} />
-## 人人影视 {#ren-ren-ying-shi}
-
-### 影视资讯 {#ren-ren-ying-shi-ying-shi-zi-xun}
+| 首页 | オトナの土ドラ | 日剧 | 日剧 SP |
+| ---- | -------------- | ---- | ------- |
+| | 10 | 5 | 11 |
-<Route author="wb121017405" example="/yyets/article" path="/yyets/article/:type?" paramsDesc="['分类,见下表,默认为全部']" radar="1">
- | 全部 | 影视资讯 | 收视快报 | 人人影评 | 人人剧评 | 新剧评测 | 片单推荐 |
- | ---- | -------- | -------- | --------- | --------- | ----------- | -------- |
- | | news | report | m\_review | t\_review | new\_review | recom |
-</Route>
+## 人人影视 {#ren-ren-ying-shi}
### 今日播出 {#ren-ren-ying-shi-jin-ri-bo-chu}
-<Route author="bao1991213" example="/yyets/today" path="/yyets/today" radar="1" />
-
-## 色花堂 {#se-hua-tang}
-
-### 分区帖子 {#se-hua-tang-fen-qu-tie-zi}
+<Route data={{"path":"/today","categories":["multimedia"],"example":"/yyets/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yysub.net/tv/schedule","yysub.net/"]},"name":"今日播出","maintainers":["bao1991213"],"url":"yysub.net/tv/schedule","location":"today.ts"}} />
-<Route author="qiwihui junfengP nczitzk" example="/sehuatang/36/368" path="/sehuatang/:subforumid?/:type?" supportBT="1" paramsDesc={['版块 id 或板块名称(见下表), 为空默认高清中文字幕', '类型 id, 可在分区类型过滤后的 URL 中找到']} anticrawler="1">
- **原创 BT 电影**
+### 影视资讯 {#ren-ren-ying-shi-ying-shi-zi-xun}
- | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
- | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
- | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
+<Route data={{"path":"/article/:type?","categories":["multimedia"],"example":"/yyets/article","parameters":{"type":"["},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"影视资讯","maintainers":["wb121017405"],"description":"| 全部 | 影视资讯 | 收视快报 | 人人影评 | 人人剧评 | 新剧评测 | 片单推荐 |\n | ---- | -------- | -------- | --------- | --------- | ----------- | -------- |\n | | news | report | m_review | t_review | new_review | recom |","location":"article.ts"}} />
- **色花图片**
+| 全部 | 影视资讯 | 收视快报 | 人人影评 | 人人剧评 | 新剧评测 | 片单推荐 |
+| ---- | -------- | -------- | --------- | --------- | ----------- | -------- |
+| | news | report | m\_review | t\_review | new\_review | recom |
- | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
-</Route>
+## 色花堂 {#se-hua-tang}
### 作者文章 {#se-hua-tang-zuo-zhe-wen-zhang}
-<Route author="JamYiz" example="/sehuatang/user/411096" path="/sehuatang/user/:uid" paramsDesc={['用户 uid, 可在用户主页 URL 中找到']} configRequired="1" />
+<Route data={{"path":"/user/:uid","categories":["multimedia"],"example":"/sehuatang/user/411096","parameters":{"uid":"用户 uid, 可在用户主页 URL 中找到"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作者文章","maintainers":["JamYiz"],"location":"user.ts"}} />
## 听听 FM {#ting-ting-fm}
### 节目 {#ting-ting-fm-jie-mu}
-<Route author="TonyRL" example="/tingtingfm/program/M7VJv6Jj4R" path="/tingtingfm/program/:programId" paramsDesc={['节目 ID,可以在 URL 中找到']} radar="1" supportPodcast="1" />
+<Route data={{"path":"/program/:programId","categories":["multimedia"],"example":"/tingtingfm/program/M7VJv6Jj4R","parameters":{"programId":"节目 ID,可以在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["mobile.tingtingfm.com/v3/program/:programId"]},"name":"节目","maintainers":["TonyRL"],"location":"program.ts"}} />
-## 网易云音乐 {#wang-yi-yun-yin-yue}
+## 网易公开课 {#wang-yi-gong-kai-ke}
:::tip
部分歌单及听歌排行信息为登陆后可见,自建时将环境变量`NCM_COOKIES`设为登陆后的 Cookie 值,即可正常获取。
:::
-### 歌单歌曲 {#wang-yi-yun-yin-yue-ge-dan-ge-qu}
+### 电台节目 {#wang-yi-gong-kai-ke-dian-tai-jie-mu}
-<Route author="DIYgod" example="/163/music/playlist/35798529" path="/163/music/playlist/:id" paramsDesc={['歌单 id, 可在歌单页 URL 中找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/music/djradio/:id","categories":["multimedia"],"example":"/163/music/djradio/347317067","parameters":{"id":"节目 id, 可在电台节目页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"电台节目","maintainers":["magic-akari"],"location":"music/djradio.ts"}} />
-### 用户歌单 {#wang-yi-yun-yin-yue-yong-hu-ge-dan}
+### 歌单歌曲 {#wang-yi-gong-kai-ke-ge-dan-ge-qu}
-<Route author="DIYgod" example="/163/music/user/playlist/45441555" path="/163/music/user/playlist/:uid" paramsDesc={['用户 uid, 可在用户主页 URL 中找到']} radar="1" />
+<Route data={{"path":"/music/playlist/:id","categories":["multimedia"],"example":"/163/music/playlist/35798529","parameters":{"id":"歌单 id, 可在歌单页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"歌单歌曲","maintainers":["DIYgod"],"location":"music/playlist.ts"}} />
-### 用户听歌排行 {#wang-yi-yun-yin-yue-yong-hu-ting-ge-pai-hang}
+### 歌手歌曲 {#wang-yi-gong-kai-ke-ge-shou-ge-qu}
-<Route author="alfredcai" example="/163/music/user/playrecords/45441555/1" path="/163/music/user/playrecords/:uid/:type?" paramsDesc={['用户 uid, 可在用户主页 URL 中找到','排行榜类型,0所有时间(默认),1最近一周']} />
+<Route data={{"path":"/music/artist/songs/:id","categories":["multimedia"],"example":"/163/music/artist/songs/2116","parameters":{"id":"歌手 id, 可在歌手详情页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"歌手歌曲","maintainers":["ZhongMingKun"],"location":"music/artist-songs.ts"}} />
-### 用户动态 {#wang-yi-yun-yin-yue-yong-hu-dong-tai}
+### 歌手专辑 {#wang-yi-gong-kai-ke-ge-shou-zhuan-ji}
-<Route author="Master-Hash" example="/163/music/user/events/585804522" path="/163/music/user/events/:uid" paramsDesc={['用户 uid, 可在用户主页 URL 中找到']} rader="1" />
+<Route data={{"path":"/music/artist/:id","categories":["multimedia"],"example":"/163/music/artist/2116","parameters":{"id":"歌手 id, 可在歌手详情页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"歌手专辑","maintainers":["metowolf"],"location":"music/artist.ts"}} />
-### 歌手专辑 {#wang-yi-yun-yin-yue-ge-shou-zhuan-ji}
+### 用户歌单 {#wang-yi-gong-kai-ke-yong-hu-ge-dan}
-<Route author="metowolf" example="/163/music/artist/2116" path="/163/music/artist/:id" paramsDesc={['歌手 id, 可在歌手详情页 URL 中找到']} radar="1" />
+<Route data={{"path":"/music/user/playlist/:uid","categories":["multimedia"],"example":"/163/music/user/playlist/45441555","parameters":{"uid":"用户 uid, 可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户歌单","maintainers":["DIYgod"],"location":"music/userplaylist.ts"}} />
-### 歌手歌曲 {#wang-yi-yun-yin-yue-ge-shou-ge-qu}
+### 用户听歌排行 {#wang-yi-gong-kai-ke-yong-hu-ting-ge-pai-hang}
-<Route author="ZhongMingKun" example="/163/music/artist/songs/2116" path="/163/music/artist/songs/:id" paramsDesc={['歌手 id, 可在歌手详情页 URL 中找到']} radar="1" />
-
-### 电台节目 {#wang-yi-yun-yin-yue-dian-tai-jie-mu}
-
-<Route author="magic-akari" example="/163/music/djradio/347317067" path="/163/music/djradio/:id" paramsDesc={['节目 id, 可在电台节目页 URL 中找到']} supportPodcast="1" radar="1" />
+<Route data={{"path":"/music/user/playrecords/:uid/:type?","categories":["multimedia"],"example":"/163/music/user/playrecords/45441555/1","parameters":{"uid":"用户 uid, 可在用户主页 URL 中找到","type":"排行榜类型,0所有时间(默认),1最近一周"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户听歌排行","maintainers":["alfredcai"],"location":"music/userplayrecords.ts"}} />
## 西瓜视频 {#xi-gua-shi-pin}
### 用户视频投稿 {#xi-gua-shi-pin-yong-hu-shi-pin-tou-gao}
-<Route author="FlashWingShadow Fatpandac" example="/ixigua/user/video/4234740937" path="/ixigua/user/video/:uid/:disableEmbed?" paramsDesc={['用户 id, 可在用户主页中找到', '默认为开启内嵌视频, 任意值为关闭']} />
+<Route data={{"path":"/user/video/:uid/:disableEmbed?","categories":["multimedia"],"example":"/ixigua/user/video/4234740937","parameters":{"uid":"用户 id, 可在用户主页中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ixigua.com/home/:uid"],"target":"/user/video/:uid"},"name":"用户视频投稿","maintainers":[],"location":"user-video.ts"}} />
## 喜马拉雅 {#xi-ma-la-ya}
### 专辑(不输出 ShowNote) {#xi-ma-la-ya-zhuan-ji-bu-shu-chu-shownote}
-<Route author="lengthmin jjeejj prnake" example="/ximalaya/album/299146" path="/ximalaya/:type/:id/:all?" paramsDesc={['专辑类型, 通常可以使用 `album`,可在对应专辑页面的 URL 中找到','专辑 id, 可在对应专辑页面的 URL 中找到','是否需要获取全部节目,填入 `1`、`true`、`all` 视为获取所有节目,填入其他则不获取。']} supportPodcast="1" radar="1" configRequired="1">
- 目前喜马拉雅的 API 只能一集一集的获取各节目上的 ShowNote,会极大的占用系统资源,所以默认为不获取节目的 ShowNote。下方有一个新的路径可选获取 ShowNote。
+<Route data={{"path":["/:type/:id/:all?","/:type/:id/:all/:shownote?"],"categories":["multimedia"],"example":"/ximalaya/album/299146","parameters":{"type":"专辑类型, 通常可以使用 `album`,可在对应专辑页面的 URL 中找到","id":"专辑 id, 可在对应专辑页面的 URL 中找到","all":"是否需要获取全部节目,填入 `1`、`true`、`all` 视为获取所有节目,填入其他则不获取。"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"专辑(不输出 ShowNote)","maintainers":["lengthmin","jjeejj","prnake"],"description":"目前喜马拉雅的 API 只能一集一集的获取各节目上的 ShowNote,会极大的占用系统资源,所以默认为不获取节目的 ShowNote。下方有一个新的路径可选获取 ShowNote。\n\n :::warning\n 专辑类型即 url 中的分类拼音,使用通用分类 `album` 通常是可行的,专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了\n\n **付费内容需要配置好已购买账户的 token 才能收听,详情见部署页面的配置模块**\n :::","location":"album.ts"}} />
- :::warning
- 专辑类型即 url 中的分类拼音,使用通用分类 `album` 通常是可行的,专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了
+目前喜马拉雅的 API 只能一集一集的获取各节目上的 ShowNote,会极大的占用系统资源,所以默认为不获取节目的 ShowNote。下方有一个新的路径可选获取 ShowNote。
- **付费内容需要配置好已购买账户的 token 才能收听,详情见部署页面的配置模块**
- :::
-</Route>
+:::warning
+专辑类型即 url 中的分类拼音,使用通用分类 `album` 通常是可行的,专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了
-### 专辑(输出 ShowNote) {#xi-ma-la-ya-zhuan-ji-shu-chu-shownote}
+**付费内容需要配置好已购买账户的 token 才能收听,详情见部署页面的配置模块**
+:::
-<Route author="lengthmin jjeejj prnake" example="/ximalaya/album/39488639/0/shownote" path="/ximalaya/:type/:id/:all/:shownote?" paramsDesc={['专辑类型, 通常可以使用 `album`,可在对应专辑页面的 URL 中找到','专辑 id, 可在对应专辑页面的 URL 中找到','是否需要获取全部节目,填入 `1`、`true`、`all` 视为获取所有节目,填入其他则不获取。', '是否需要获取节目的 ShowNote,填入 `1`、`true`,`shownote` 视为获取,填入其他则不获取。']} supportPodcast="1" configRequired="1" />
+### 专辑(不输出 ShowNote) {#xi-ma-la-ya-zhuan-ji-bu-shu-chu-shownote}
-## 小宇宙 {#xiao-yu-zhou}
+<Route data={{"path":["/:type/:id/:all?","/:type/:id/:all/:shownote?"],"categories":["multimedia"],"example":"/ximalaya/album/299146","parameters":{"type":"专辑类型, 通常可以使用 `album`,可在对应专辑页面的 URL 中找到","id":"专辑 id, 可在对应专辑页面的 URL 中找到","all":"是否需要获取全部节目,填入 `1`、`true`、`all` 视为获取所有节目,填入其他则不获取。"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"专辑(不输出 ShowNote)","maintainers":["lengthmin","jjeejj","prnake"],"description":"目前喜马拉雅的 API 只能一集一集的获取各节目上的 ShowNote,会极大的占用系统资源,所以默认为不获取节目的 ShowNote。下方有一个新的路径可选获取 ShowNote。\n\n :::warning\n 专辑类型即 url 中的分类拼音,使用通用分类 `album` 通常是可行的,专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了\n\n **付费内容需要配置好已购买账户的 token 才能收听,详情见部署页面的配置模块**\n :::","location":"album.ts"}} />
-### 发现 {#xiao-yu-zhou-fa-xian}
+目前喜马拉雅的 API 只能一集一集的获取各节目上的 ShowNote,会极大的占用系统资源,所以默认为不获取节目的 ShowNote。下方有一个新的路径可选获取 ShowNote。
-<Route author="prnake" example="/xiaoyuzhou" path="/xiaoyuzhou" configRequired="1">
- :::warning
- 小宇宙的 api 需要验证 `x-jike-device-id`、`x-jike-access-token` 和 `x-jike-refresh-token` 。必要时需要自行配置,具体见部署文档。
- :::
-</Route>
+:::warning
+专辑类型即 url 中的分类拼音,使用通用分类 `album` 通常是可行的,专辑 id 是跟在**分类拼音**后的那个 id, 不要输成某集的 id 了
+
+**付费内容需要配置好已购买账户的 token 才能收听,详情见部署页面的配置模块**
+:::
+
+## 小宇宙 {#xiao-yu-zhou}
### 播客 {#xiao-yu-zhou-bo-ke}
-<Route author="hondajojo" example="/xiaoyuzhou/podcast/6021f949a789fca4eff4492c" path="/xiaoyuzhou/podcast/:id" paramsDesc={['播客id,可以在小宇宙播客的 URL 中找到']} />
+<Route data={{"path":"/podcast/:id","categories":["multimedia"],"example":"/xiaoyuzhou/podcast/6021f949a789fca4eff4492c","parameters":{"id":"播客id,可以在小宇宙播客的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaoyuzhoufm.com/podcast/:id"]},"name":"播客","maintainers":["hondajojo","jtsang4"],"url":"xiaoyuzhoufm.com/","location":"podcast.ts"}} />
## 优酷 {#you-ku}
### 频道 {#you-ku-pin-dao}
-<Route author="xyqfer Fatpandac" example="/youku/channel/UNTg3MTM3OTcy" path="/youku/channel/:channelId/:embed?" paramsDesc={['频道 id', '默认为开启内嵌视频, 任意值为关闭']} anticrawler="1" />
+<Route data={{"path":"/channel/:channelId/:embed?","categories":["multimedia"],"example":"/youku/channel/UNTg3MTM3OTcy","parameters":{"channelId":"频道 id","embed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["i.youku.com/i/:id"],"target":"/channel/:id"},"name":"频道","maintainers":["xyqfer","Fatpandac"],"location":"channel.ts"}} />
## 云听 {#yun-ting}
-### 专辑 {#yun-ting-zhuan-ji}
-
-<Route author="nczitzk" example="/radio/album/15682090498666" path="/radio/album/:id" paramsDesc={['专辑 id,可在对应专辑页面的 URL 中找到']} supportPodcast="1">
- 如果订阅 [中国相声榜](https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666`,可以得到 `columnId` 为 `15682090498666`
-
- 所以对应路由为 [`/radio/album/15682090498666`](https://rsshub.app/radio/album/15682090498666)
-
- :::tip
- 部分专辑不适用该路由,此时可以尝试 [节目](#yun-ting-jie-mu) 路由
- :::
-</Route>
-
### 节目 {#yun-ting-jie-mu}
-<Route author="kt286 nczitzk" example="/radio/1552135" path="/radio/:id" paramsDesc={['专辑 id,可在对应专辑页面的 URL 中找到']} supportPodcast="1" notOperational="1">
- 如果订阅 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135`,可以得到 `columnId` 为 `1552135`
-
- 所以对应路由为 [`/radio/1552135`](https://rsshub.app/radio/1552135)
-
- :::tip
- 该路由仅适用于更新时间较早的电台节目,如 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135)
+<Route data={{"path":"/:id","categories":["multimedia"],"example":"/radio/1552135","parameters":{"id":"专辑 id,可在对应专辑页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"节目","maintainers":["kt286","nczitzk"],"description":"如果订阅 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135`,可以得到 `columnId` 为 `1552135`\n\n 所以对应路由为 [`/radio/1552135`](https://rsshub.app/radio/1552135)\n\n :::tip\n 该路由仅适用于更新时间较早的电台节目,如 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135)\n\n 与适用于 [专辑](#yun-ting-zhuan-ji) 路由的专辑其 `columnId` 长度相比,它们的 `columnId` 长度较短\n :::","location":"index.ts"}} />
- 与适用于 [专辑](#yun-ting-zhuan-ji) 路由的专辑其 `columnId` 长度相比,它们的 `columnId` 长度较短
- :::
-</Route>
+如果订阅 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135`,可以得到 `columnId` 为 `1552135`
-### 直播 {#yun-ting-zhi-bo}
-
-<Route author="nczitzk" example="/radio/zhibo/1395528" path="/radio/zhibo/:id" paramsDesc={['直播 id,可在对应点播页面的 URL 中找到']} supportPodcast="1">
- 如果订阅 [新闻和报纸摘要](http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528),其 URL 为 `http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528`,可以得到 `name` 为 `1395528`
-
- 所以对应路由为 [`/radio/zhibo/1395528`](https://rsshub.app/radio/zhibo/1395528)
-
- :::tip
- 查看更多电台直播节目,可前往 [电台直播](http://www.radio.cn/pc-portal/erji/radioStation.html)
- :::
-</Route>
-
-## 直播吧 {#zhi-bo-ba}
-
-### 录像 {#zhi-bo-ba-lu-xiang}
-
-<Route author="TonyRL" example="/zhibo8/luxiang/nba" path="/zhibo8/luxiang/:category" paramsDesc={['分类,见下表,默认为 `nba`']} radar="1">
- | NBA | 足球 |
- | --- | ----- |
- | nba | zuqiu |
-</Route>
-
-## 中文播客榜 {#zhong-wen-bo-ke-bang}
+所以对应路由为 [`/radio/1552135`](https://rsshub.app/radio/1552135)
:::tip
-可以通过指定 `limit` 参数确定榜单排名下限,默认为 250。
-
-若只查看榜单前 50,可在订阅 URL 后加入 `?limit=50`。
+该路由仅适用于更新时间较早的电台节目,如 [共和国追梦人](http://www.radio.cn/pc-portal/sanji/detail.html?columnId=1552135)
-即,以 [热门节目](https://xyzrank.com/#/) 为例,路由为[`/xyzrank?limit=50`](https://rsshub.app/xyzrank?limit=50)。
+与适用于 [专辑](#yun-ting-zhuan-ji) 路由的专辑其 `columnId` 长度相比,它们的 `columnId` 长度较短
:::
-### 热门节目 {#zhong-wen-bo-ke-bang-re-men-jie-mu}
-
-<Route author="nczitzk" example="/xyzrank" path="/xyzrank" />
-
-### 热门播客 {#zhong-wen-bo-ke-bang-re-men-bo-ke}
-
-<Route author="nczitzk" example="/xyzrank/hot-podcasts" path="/xyzrank/hot-podcasts" />
-
-### 新锐节目 {#zhong-wen-bo-ke-bang-xin-rui-jie-mu}
-
-<Route author="nczitzk" example="/xyzrank/hot-episodes-new" path="/xyzrank/hot-episodes-new" />
-
-### 新锐播客 {#zhong-wen-bo-ke-bang-xin-rui-bo-ke}
-
-<Route author="nczitzk" example="/xyzrank/new-podcasts" path="/xyzrank/new-podcasts" />
-
-## 追新番 {#zhui-xin-fan}
-
-### 最近更新 {#zhui-xin-fan-zui-jin-geng-xin}
+### 直播 {#yun-ting-zhi-bo}
-<Route author="mengx8 nczitzk" example="/fanxinzhui" path="/fanxinzhui" radar="1" />
+<Route data={{"path":"/zhibo/:id","categories":["multimedia"],"example":"/radio/zhibo/1395528","parameters":{"id":"直播 id,可在对应点播页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"直播","maintainers":["nczitzk"],"description":"如果订阅 [新闻和报纸摘要](http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528),其 URL 为 `http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528`,可以得到 `name` 为 `1395528`\n\n 所以对应路由为 [`/radio/zhibo/1395528`](https://rsshub.app/radio/zhibo/1395528)\n\n :::tip\n 查看更多电台直播节目,可前往 [电台直播](http://www.radio.cn/pc-portal/erji/radioStation.html)\n :::","location":"zhibo.ts"}} />
-## 字幕库 {#zi-mu-ku}
+如果订阅 [新闻和报纸摘要](http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528),其 URL 为 `http://www.radio.cn/pc-portal/sanji/zhibo_2.html?name=1395528`,可以得到 `name` 为 `1395528`
-### 字幕列表 {#zi-mu-ku-zi-mu-lie-biao}
+所以对应路由为 [`/radio/zhibo/1395528`](https://rsshub.app/radio/zhibo/1395528)
-<Route author="sanmmm" example="/zimuku/mv" path="/zimuku/:type?" paramsDesc={['类型, 默认为`mv`电影']}>
- 类型
+:::tip
+查看更多电台直播节目,可前往 [电台直播](http://www.radio.cn/pc-portal/erji/radioStation.html)
+:::
- | 最新电影 | 最新美剧 |
- | -------- | -------- |
- | mv | tv |
-</Route>
+### 专辑 {#yun-ting-zhuan-ji}
-## 综艺秀 {#zong-yi-xiu}
+<Route data={{"path":"/album/:id","categories":["multimedia"],"example":"/radio/album/15682090498666","parameters":{"id":"专辑 id,可在对应专辑页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"专辑","maintainers":["nczitzk"],"description":"如果订阅 [中国相声榜](https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666`,可以得到 `columnId` 为 `15682090498666`\n\n 所以对应路由为 [`/radio/album/15682090498666`](https://rsshub.app/radio/album/15682090498666)\n\n :::tip\n 部分专辑不适用该路由,此时可以尝试 [节目](#yun-ting-jie-mu) 路由\n :::","location":"album.ts"}} />
-### 综艺 {#zong-yi-xiu-zong-yi}
+如果订阅 [中国相声榜](https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666),其 URL 为 `https://www.radio.cn/pc-portal/sanji/detail.html?columnId=15682090498666`,可以得到 `columnId` 为 `15682090498666`
-<Route author="pharaoh2012 nczitzk" example="/zyshow/chongchongchong" path="/zyshow/:region?/:id" paramsDesc={['地区,见下表,默认为空,即台湾', '综艺 id,综艺详情对应页 URL 中找到']} radar="1" anticrawler="1">
- 地区
+所以对应路由为 [`/radio/album/15682090498666`](https://rsshub.app/radio/album/15682090498666)
- | 台湾 | 韩国 | 大陆 |
- | ---- | ---- | ---- |
- | | kr | dl |
-</Route>
+:::tip
+部分专辑不适用该路由,此时可以尝试 [节目](#yun-ting-jie-mu) 路由
+:::
diff --git a/website/docs/routes/new-media.mdx b/website/docs/routes/new-media.mdx
index 1f5b8970a04688..33af350e8003f7 100644
--- a/website/docs/routes/new-media.mdx
+++ b/website/docs/routes/new-media.mdx
@@ -1,5318 +1,3000 @@
-# 📱 New media
-
-## 199IT {#199it}
-
-### 首页更新 {#199it-shou-ye-geng-xin}
-
-<Route author="xfangbao" example="/199it" path="/199it" />
-
-### 分类 {#199it-fen-lei}
-
-<Route author="nczitzk" example="/199it/category/199itdata" path="/199it/category/:caty" paramsDesc={['分类,可在分类页 URL 中找到']}>
- 分类为单一路径,如 `http://www.199it.com/archives/category/199itdata` 则路由为 `/199it/category/199itdata`.
-
- 分类包含多重路径,如 `http://www.199it.com/archives/category/emerging/5g` 则替换 `/` 为 `|`,即路由为 `/199it/category/emerging|5g`.
-</Route>
-
-### 标签 {#199it-biao-qian}
-
-<Route author="nczitzk" example="/199it/tag/iphone" path="/199it/tag/:tag" paramsDesc={['标签,可在标签页 URL 中找到']} />
+# new-media
## 36kr {#36kr}
-### 资讯 {#36kr-zi-xun}
-
-<Route author="nczitzk" example="/36kr/information/web_news" path="/36kr/information/:category?" paramsDesc={['资讯分类,见下表,默认为最新']}>
- | 最新 | 推荐 | 创投 | 财经 |
- | --------- | -------------- | ------- | ---- |
- | web\_news | web\_recommend | contact | ccs |
-
- | 汽车 | 科技 | 企服 | 生活 |
- | ------ | ---------- | ----------------- | ----------- |
- | travel | technology | enterpriseservice | happy\_life |
-
- | 创新 | 房产 | 职场 | 企业号 | 其他 |
- | -------- | ------------ | ------------- | ------- | ----- |
- | innovate | real\_estate | web\_zhichang | qiyehao | other |
-</Route>
-
-### 快讯 {#36kr-kuai-xun}
-
-<Route author="hillerliao nczitzk" example="/36kr/newsflashes" path="/36kr/newsflashes" />
-
-### 用户文章 {#36kr-yong-hu-wen-zhang}
-
-<Route author="nczitzk" example="/36kr/user/747305693" path="/36kr/user/:id" paramsDesc={['用户 id,可在对应用户页面 URL 中找到']} />
-
-### 主题文章 {#36kr-zhu-ti-wen-zhang}
-
-<Route author="nczitzk" example="/36kr/motif/452" path="/36kr/motif/:id" paramsDesc={['主题 id,可在对应主题页面 URL 中找到']} />
-
-### 专题文章 {#36kr-zhuan-ti-wen-zhang}
-
-<Route author="nczitzk" example="/36kr/topics/1818512662032001" path="/36kr/topics/:id" paramsDesc={['专题 id,可在对应专题页面 URL 中找到']} />
-
-### 搜索文章 {#36kr-sou-suo-wen-zhang}
-
-<Route author="xyqfer kt286 nczitzk" example="/36kr/search/articles/ofo" path="/36kr/search/articles/:keyword" paramsDesc={['关键字']} />
-
-### 搜索快讯 {#36kr-sou-suo-kuai-xun}
-
-<Route author="nczitzk" example="/36kr/search/newsflashes/ofo" path="/36kr/search/newsflashes/:keyword" paramsDesc={['关键字']} />
-
### 资讯热榜 {#36kr-zi-xun-re-bang}
-<Route author="nczitzk" example="/36kr/hot-list" path="/36kr/hot-list/:category?" paramsDesc={['分类,默认为24小时热榜']}>
- | 24 小时热榜 | 资讯人气榜 | 资讯综合榜 | 资讯收藏榜 |
- | ----------- | ---------- | ---------- | ---------- |
- | 24 | renqi | zonghe | shoucang |
-</Route>
+<Route data={{"path":"/hot-list/:category?","categories":["new-media"],"example":"/36kr/hot-list","parameters":{"category":"分类,默认为24小时热榜"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["36kr.com/hot-list/:category","36kr.com/"],"target":"/hot-list/:category"},"name":"资讯热榜","maintainers":["nczitzk"],"description":"| 24 小时热榜 | 资讯人气榜 | 资讯综合榜 | 资讯收藏榜 |\n | ----------- | ---------- | ---------- | ---------- |\n | 24 | renqi | zonghe | shoucang |","location":"hot-list.ts"}} />
+
+| 24 小时热榜 | 资讯人气榜 | 资讯综合榜 | 资讯收藏榜 |
+| ----------- | ---------- | ---------- | ---------- |
+| 24 | renqi | zonghe | shoucang |
## 52hrtt 华人头条 {#52hrtt-hua-ren-tou-tiao}
### 新闻 {#52hrtt-hua-ren-tou-tiao-xin-wen}
-<Route author="nczitzk" example="/52hrtt/global" path="/52hrtt/:area?/:type?" paramsDesc={['地区,默认为全球', '分类,默认为新闻']}>
- 地区和分类皆可在浏览器地址栏中找到,下面是一个例子。
-
- 访问华人头条全球站的国际分类,会跳转到 `https://www.52hrtt.com/global/n/w?infoTypeId=A1459145516533`。其中 `global` 即为 **全球** 对应的地区代码,`A1459145516533` 即为 **国际** 对应的分类代码。
-</Route>
-
-### 专题 {#52hrtt-hua-ren-tou-tiao-zhuan-ti}
-
-<Route author="nczitzk" example="/52hrtt/symposium/F1626082387819" path="/52hrtt/symposium/:id?/:classId?" paramsDesc={['专题 id', '子分类 id']}>
- 专题 id 和 子分类 id 皆可在浏览器地址栏中找到,下面是一个例子。
-
- 访问 “邱毅看平潭” 专题,会跳转到 `https://www.52hrtt.com/global/n/w/symposium/F1626082387819`。其中 `F1626082387819` 即为 **专题 id** 对应的地区代码。
+<Route data={{"path":"/:area?/:type?","categories":["new-media"],"example":"/52hrtt/global","parameters":{"area":"地区,默认为全球","type":"分类,默认为新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["nczitzk"],"description":"地区和分类皆可在浏览器地址栏中找到,下面是一个例子。\n\n 访问华人头条全球站的国际分类,会跳转到 `https://www.52hrtt.com/global/n/w?infoTypeId=A1459145516533`。其中 `global` 即为 **全球** 对应的地区代码,`A1459145516533` 即为 **国际** 对应的分类代码。","location":"index.ts"}} />
- :::tip
- 更多的专题可以点击 [这里](https://www.52hrtt.com/global/n/w/symposium)
- :::
-</Route>
+地区和分类皆可在浏览器地址栏中找到,下面是一个例子。
-## 8 视界 {#8-shi-jie}
+访问华人头条全球站的国际分类,会跳转到 `https://www.52hrtt.com/global/n/w?infoTypeId=A1459145516533`。其中 `global` 即为 **全球** 对应的地区代码,`A1459145516533` 即为 **国际** 对应的分类代码。
-### 分类 {#8-shi-jie-fen-lei}
+### 专题 {#52hrtt-hua-ren-tou-tiao-zhuan-ti}
-<Route author="nczitzk" example="/8world" path="/8world/:category?" paramsDesc={['分类 id,见下表,默认为即时 REALTIME']}>
- | 分类 | id |
- | ---------------------- | -------------- |
- | 即时 REALTIME | realtime |
- | 新加坡 SINGAPORE | singapore |
- | 东南亚 SOUTH-EAST ASIA | southeast-asia |
- | 中港台 GREATER CHINA | greater-china |
- | 国际 WORLD | world |
- | 财经 FINANCE | finance |
- | 体育 SPORTS | sports |
- | 社团 COMMUNITY | community |
-</Route>
+<Route data={{"path":"/symposium/:id?/:classId?","categories":["new-media"],"example":"/52hrtt/symposium/F1626082387819","parameters":{"id":"专题 id","classId":"子分类 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["52hrtt.com/global/n/w/symposium/:id"],"target":"/symposium/:id"},"name":"专题","maintainers":["nczitzk"],"description":"专题 id 和 子分类 id 皆可在浏览器地址栏中找到,下面是一个例子。\n\n 访问 “邱毅看平潭” 专题,会跳转到 `https://www.52hrtt.com/global/n/w/symposium/F1626082387819`。其中 `F1626082387819` 即为 **专题 id** 对应的地区代码。\n\n :::tip\n 更多的专题可以点击 [这里](https://www.52hrtt.com/global/n/w/symposium)\n :::","location":"symposium.ts"}} />
-### 标签 {#8-shi-jie-biao-qian}
+专题 id 和 子分类 id 皆可在浏览器地址栏中找到,下面是一个例子。
-<Route author="nczitzk" example="/8world/topic/xianggang-3" path="/8world/topic/:id" paramsDesc={['标签 id,可在对应标签页中找到']} />
+访问 “邱毅看平潭” 专题,会跳转到 `https://www.52hrtt.com/global/n/w/symposium/F1626082387819`。其中 `F1626082387819` 即为 **专题 id** 对应的地区代码。
-## 9To5 {#9to5}
+:::tip
+更多的专题可以点击 [这里](https://www.52hrtt.com/global/n/w/symposium)
+:::
-### 9To5 Sub-site {#9to5-9to5-sub-site}
+## AEON {#aeon}
-<Route author="HenryQW" example="/9to5/mac/aapl" path="/9to5/:subsite/:category?" paramsDesc={['Subsite name', 'Tag name inside the url of the tag page']} radar="1">
- Supported sub-sites:
+### Categories {#aeon-categories}
- | 9To5Mac | 9To5Google | 9To5Toys |
- | ------- | ---------- | -------- |
- | Mac | Google | Toys |
-</Route>
+<Route data={{"path":"/category/:category","categories":["new-media"],"example":"/aeon/category/philosophy","parameters":{"category":"Category"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aeon.aeon.co/:category"]},"name":"Categories","maintainers":["emdoe"],"description":"Supported categories: Philosophy, Science, Psychology, Society, and Culture.","location":"category.ts"}} />
-## AEON {#aeon}
+Supported categories: Philosophy, Science, Psychology, Society, and Culture.
### Types {#aeon-types}
-<Route author="emdoe" example="/aeon/essays" path="/aeon/:type" paramsDesc={['Type']}>
- Supported types: Essays, Videos, and Audio.
+<Route data={{"path":"/:type","categories":["new-media"],"example":"/aeon/essays","parameters":{"type":"Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aeon.aeon.co/:type"]},"name":"Types","maintainers":["emdoe"],"description":"Supported types: Essays, Videos, and Audio.\n\n Compared to the official one, the RSS feed generated by RSSHub not only has more fine-grained options, but also eliminates pull quotes, which can't be easily distinguished from other paragraphs by any RSS reader, but only disrupt the reading flow. This feed also provides users with a bio of the author at the top.\n\n However, The content generated under `audio` does not contain links to audio files.","location":"type.ts"}} />
- Compared to the official one, the RSS feed generated by RSSHub not only has more fine-grained options, but also eliminates pull quotes, which can't be easily distinguished from other paragraphs by any RSS reader, but only disrupt the reading flow. This feed also provides users with a bio of the author at the top.
+Supported types: Essays, Videos, and Audio.
- However, The content generated under `audio` does not contain links to audio files.
-</Route>
+Compared to the official one, the RSS feed generated by RSSHub not only has more fine-grained options, but also eliminates pull quotes, which can't be easily distinguished from other paragraphs by any RSS reader, but only disrupt the reading flow. This feed also provides users with a bio of the author at the top.
-### Categories {#aeon-categories}
-
-<Route author="emdoe" example="/aeon/category/philosophy" path="/aeon/category/:category" paramsDesc={['Category']}>
- Supported categories: Philosophy, Science, Psychology, Society, and Culture.
-</Route>
+However, The content generated under `audio` does not contain links to audio files.
## AG⓪RA {#ag%E2%93%AAra}
-### 零博客 {#ag%E2%93%AAra-ling-bo-ke}
-
-<Route author="nczitzk" example="/agora0/initium" path="/agora0/:category?" paramsDesc={['分类,见下表,默认为 initium,即端传媒']} radar="1">
- | muitinⒾ | aidemnⒾ | srettaⓂ | qⓅ | sucoⓋ |
- | ------- | ------- | -------- | -- | ----- |
- | initium | inmedia | matters | pq | vocus |
-</Route>
-
### 共和報 {#ag%E2%93%AAra-gong-he-bao}
-<Route author="TonyRL" example="/agora0/pen0" path="/agora0/pen0" radar="1" />
+<Route data={{"path":"/pen0","categories":["new-media"],"example":"/agora0/pen0","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agorahub.github.io/pen0"]},"name":"共和報","maintainers":["TonyRL"],"url":"agorahub.github.io/pen0","location":"pen0.ts"}} />
-## American Federation of Labor and Congress of Industrial Organizations {#american-federation-of-labor-and-congress-of-industrial-organizations}
+### 零博客 {#ag%E2%93%AAra-ling-bo-ke}
-### Blog {#american-federation-of-labor-and-congress-of-industrial-organizations-blog}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/agora0/initium","parameters":{"category":"分类,见下表,默认为 initium,即端传媒"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agora0.gitlab.io/blog/:category","agora0.gitlab.io/"],"target":"/:category"},"name":"零博客","maintainers":["nczitzk"],"description":"| muitinⒾ | aidemnⒾ | srettaⓂ | qⓅ | sucoⓋ |\n | ------- | ------- | -------- | -- | ----- |\n | initium | inmedia | matters | pq | vocus |","location":"index.ts"}} />
-<Route author="nczitzk" example="/aflcio/blog" path="/aflcio/blog" />
+| muitinⒾ | aidemnⒾ | srettaⓂ | qⓅ | sucoⓋ |
+| ------- | ------- | -------- | -- | ----- |
+| initium | inmedia | matters | pq | vocus |
## AppleInsider {#appleinsider}
### Category {#appleinsider-category}
-<Route author="nczitzk" example="/appleinsider" path="/appleinsider/:category?" paramsDesc={['Category, see below, News by default']}>
- | News | Reviews | How-tos |
- | ---- | ------- | ------- |
- | | reviews | how-to |
-</Route>
-
-## ASML Holding N.V {#asml-holding-n-v}
-
-### Press releases & announcements {#asml-holding-n-v-press-releases-announcements}
-
-<Route author="nczitzk" example="/asml/press-releases" path="/asml/press-releases" />
-
-## Bad.news {#bad-news}
-
-### 通用 {#bad-news-tong-yong}
-
-<Route author="nczitzk" example="/bad" path="/bad/:path+" paramsDesc={['路径,默认为首页热门']} anticrawler="1">
- :::tip
- 若订阅 [每日热点 - 最新](https://bad.news/tag/每日热点/sort-new),网址为 [https://bad.news/tag/ 每日热点 /sort-new](https://bad.news/tag/每日热点/sort-new)。截取 `https://bad.news` 到末尾的部分 `/tag/每日热点/sort-new` 作为参数,此时路由为 [`/bad/tag/每日热点/sort-new`](https://rsshub.app/bad/tag/每日热点/sort-new)。
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/appleinsider","parameters":{"category":"Category, see below, News by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["appleinsider.com/:category","appleinsider.com/"],"target":"/:category"},"name":"Category","maintainers":["nczitzk"],"description":"| News | Reviews | How-tos |\n | ---- | ------- | ------- |\n | | reviews | how-to |","location":"index.ts"}} />
- 若订阅子分类 [大陆资讯 - 热门](https://bad.news/tag/大陆资讯/sort-hot),网址为 [https://bad.news/tag/ 大陆资讯 /sort-hot](https://bad.news/tag/大陆资讯/sort-hot)。截取 `https://bad.news` 到末尾的部分 `/tag/大陆资讯/sort-hot` 作为参数,路由为 [`/bad/tag/大陆资讯/sort-hot`](https://rsshub.app/bad/tag/大陆资讯/sort-hot)。
- :::
-</Route>
-
-## biodiscover.com 生物探索 {#biodiscover-com-sheng-wu-tan-suo}
-
-### Channel {#biodiscover-com-sheng-wu-tan-suo-channel}
-
-<Route author="aidistan" example="/biodiscover/reaseach" path="/biodiscover/:channel" paramsDesc={['channel, see below']}>
- | Research | Interview | Industry | Activity |
- | -------- | --------- | -------- | -------- |
- | reaseach | interview | industry | activity |
-</Route>
+| News | Reviews | How-tos |
+| ---- | ------- | ------- |
+| | reviews | how-to |
## C114 通信网 {#c114-tong-xin-wang}
### 滚动新闻 {#c114-tong-xin-wang-gun-dong-xin-wen}
-<Route author="nczitzk" example="/c114/roll" path="/c114/roll" />
-
-## CBNData {#cbndata}
-
-### 看点 {#cbndata-kan-dian}
-
-<Route author="nczitzk" example="/cbndata/information" path="/cbndata/information/:category?" paramsDesc={['分类,见下表,默认为看点']}>
- | 看点 | 餐饮零售 | 美妆个护 | 服饰鞋包 | 家电数码 | 宠物 | 营销 |
- | ---- | -------- | -------- | -------- | -------- | ---- | ---- |
- | | 2560 | 1 | 2559 | 59 | 2419 | 2484 |
-</Route>
-
-## cfan {#cfan}
-
-### News {#cfan-news}
-
-<Route author="kt286" example="/cfan/news" path="/cfan/news" />
-
-## CGTN {#cgtn}
-
-### Opinions {#cgtn-opinions}
-
-<Route author="nczitzk" example="/cgtn/opinions" path="/cgtn/opinions" />
-
-### Most Read & Most Share {#cgtn-most-read-most-share}
-
-<Route author="nczitzk" example="/cgtn/most/read/day" path="/cgtn/most/:type?/:time?" paramsDesc={['Type, `read` as most read, `share` as most share, `read` by default', 'Time range, `all` as all the time, `day` as today, `week` as this week, `month` as this month, `year` as this year, `all` by default']} />
-
-## China Labour Bulletin 中国劳工通讯 {#china-labour-bulletin-zhong-guo-lao-gong-tong-xun}
-
-### Commentary and Analysis {#china-labour-bulletin-zhong-guo-lao-gong-tong-xun-commentary-and-analysis}
-
-<Route author="nczitzk" example="/clb/commentary" path="/clb/commentary/:lang?" paramsDesc={['Language, Simplified Chinese by default, or `en` as English']} />
+<Route data={{"path":"/roll","categories":["new-media"],"example":"/c114/roll","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["c114.com.cn/news/roll.asp","c114.com.cn/"]},"name":"滚动新闻","maintainers":["nczitzk"],"url":"c114.com.cn/news/roll.asp","location":"roll.ts"}} />
## China.com 中华网 {#china-com-zhong-hua-wang}
-### Military - Military News 军事 - 军事新闻 {#china-com-zhong-hua-wang-military-military-news-jun-shi-jun-shi-xin-wen}
-
-<Route author="jiaaoMario" example="/china/news/military" path="/china/news/military" />
-
-### News and current affairs 时事新闻 {#china-com-zhong-hua-wang-news-and-current-affairs-shi-shi-xin-wen}
-
-<Route author="jiaaoMario" example="/china/news" path="/china/news/:category?" paramsDesc={['Category of news. See the form below for details, default is china news.']}>
- Category of news
-
- | China News | International News | Social News | Breaking News |
- | ---------- | ------------------ | ----------- | ------------- |
- | domestic | international | social | news100 |
-</Route>
-
### Finance News 财经 - 财经新闻 {#china-com-zhong-hua-wang-finance-news-cai-jing-cai-jing-xin-wen}
-<Route author="KingJem" example="/china/finance" path="/china/finance/:category?" paramsDesc={['Category of news. See the form below for details, default is suggest news.']} radar="1">
- | 推荐 | TMT | 金融 | 地产 | 消费 | 医药 | 酒业 | IPO 观察 |
- | ------- | --- | ------- | ------ | ------- | ----- | ---- | -------- |
- | tuijian | TMT | jinrong | dichan | xiaofei | yiyao | wine | IPO |
+<Route data={{"path":"/finance/:category?","categories":["new-media"],"example":"/china/finance","parameters":{"category":"Category of news. See the form below for details, default is suggest news."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["finance.china.com/:category"]},"name":"Finance News 财经 - 财经新闻","maintainers":["KingJem"],"description":"| 推荐 | TMT | 金融 | 地产 | 消费 | 医药 | 酒业 | IPO 观察 |\n | ------- | --- | ------- | ------ | ------- | ----- | ---- | -------- |\n | tuijian | TMT | jinrong | dichan | xiaofei | yiyao | wine | IPO |\n\n > Note: The default news num is `30`.\n\n > 注意:默认新闻条数是 `30`。","location":"finance/finance.ts"}} />
- > Note: The default news num is `30`.
+| 推荐 | TMT | 金融 | 地产 | 消费 | 医药 | 酒业 | IPO 观察 |
+| ------- | --- | ------- | ------ | ------- | ----- | ---- | -------- |
+| tuijian | TMT | jinrong | dichan | xiaofei | yiyao | wine | IPO |
- > 注意:默认新闻条数是 `30`。
-</Route>
+> Note: The default news num is `30`.
-## cnBeta.COM {#cnbeta-com}
+> 注意:默认新闻条数是 `30`。
-### 头条资讯 {#cnbeta-com-tou-tiao-zi-xun}
+### Military - Military News 军事 - 军事新闻 {#china-com-zhong-hua-wang-military-military-news-jun-shi-jun-shi-xin-wen}
-<Route author="kt286 HaitianLiu nczitzk" example="/cnbeta" path="/cnbeta" />
+<Route data={{"path":"/news/military","categories":["new-media"],"example":"/china/news/military","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["military.china.com/news"]},"name":"Military - Military News 军事 - 军事新闻","maintainers":["jiaaoMario"],"url":"military.china.com/news","location":"news/military/news.ts"}} />
-### 分类 {#cnbeta-com-fen-lei}
+### News and current affairs 时事新闻 {#china-com-zhong-hua-wang-news-and-current-affairs-shi-shi-xin-wen}
-<Route author="nczitzk" example="/cnbeta/category/movie" path="/cnbeta/category/:id" paramsDesc={['分类 id,可在对应分类页的 URL 中找到']}>
- | 影视 | 音乐 | 游戏 | 动漫 | 趣闻 | 科学 | 软件 |
- | ----- | ----- | ---- | ----- | ----- | ------- | ---- |
- | movie | music | game | comic | funny | science | soft |
-</Route>
+<Route data={{"path":"/news/:category?","categories":["new-media"],"example":"/china/news","parameters":{"category":"Category of news. See the form below for details, default is china news."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.china.com/:category"]},"name":"News and current affairs 时事新闻","maintainers":["jiaaoMario"],"description":"Category of news\n\n | China News | International News | Social News | Breaking News |\n | ---------- | ------------------ | ----------- | ------------- |\n | domestic | international | social | news100 |","location":"news/highlights/news.ts"}} />
-### 主题 {#cnbeta-com-zhu-ti}
+Category of news
-<Route author="cczhong11 nczitzk" example="/cnbeta/topics/453" path="/cnbeta/topics/:id" paramsDesc={['主题 id,可在对应主题页的 URL 中找到']}>
- :::tip
- 完整的主题列表参见 [主题列表](https://www.cnbeta.com.tw/topics.htm)
- :::
-</Route>
+| China News | International News | Social News | Breaking News |
+| ---------- | ------------------ | ----------- | ------------- |
+| domestic | international | social | news100 |
## CoinDesk Consensus Magazine {#coindesk-consensus-magazine}
### 新闻周刊 {#coindesk-consensus-magazine-xin-wen-zhou-kan}
-<Route author="jameshih" example="/coindesk/consensus-magazine" path="/coindesk/consensus-magazine" />
+<Route data={{"path":"/consensus-magazine","categories":["new-media"],"example":"/coindesk/consensus-magazine","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["coindesk.com/"]},"name":"新闻周刊","maintainers":["jameshih"],"url":"coindesk.com/","location":"index.ts"}} />
## DCFever {#dcfever}
-### 新聞中心 {#dcfever-xin-wen-zhong-xin}
-
-<Route author="TonyRL" example="/dcfever/news" path="/dcfever/news/:type?" paramsDesc={['分類,預設為所有新聞']} radar="1">
- | 所有新聞 | 攝影器材 | 手機通訊 | 汽車熱話 | 攝影文化 | 影片攝錄 | 測試報告 | 生活科技 | 攝影技巧 |
- | -------- | -------- | -------- | -------- | ----------- | ----------- | -------- | -------- | --------- |
- | | camera | mobile | auto | photography | videography | reviews | gadget | technique |
-</Route>
-
### 測試報告 {#dcfever-ce-shi-bao-gao}
-<Route author="TonyRL" example="/dcfever/reviews/cameras" path="/dcfever/reviews/:type?" paramsDesc={['分類,預設為 `cameras`']} radar="1">
- | 相機及鏡頭 | 手機平板 | 試車報告 |
- | ---------- | -------- | -------- |
- | cameras | phones | cars |
-</Route>
-
-### 二手市集 {#dcfever-er-shou-shi-ji}
+<Route data={{"path":"/reviews/:type?","categories":["new-media"],"example":"/dcfever/reviews/cameras","parameters":{"type":"分類,預設為 `cameras`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dcfever.com/:type/reviews.php"],"target":"/reviews/:type"},"name":"測試報告","maintainers":["TonyRL"],"description":"| 相機及鏡頭 | 手機平板 | 試車報告 |\n | ---------- | -------- | -------- |\n | cameras | phones | cars |","location":"reviews.ts"}} />
-<Route author="TonyRL" example="/dcfever/trading/1" path="/dcfever/trading/:id" paramsDesc={['分類 ID,見下表']} radar="1">
- [所有物品分類](https://www.dcfever.com/trading/index.php#all_cats)
+| 相機及鏡頭 | 手機平板 | 試車報告 |
+| ---------- | -------- | -------- |
+| cameras | phones | cars |
- | 攝影產品 | 電腦 | 手機通訊 | 影音產品 | 遊戲機、模型 | 電器傢俱 | 潮流服飾 | 手錶 | 單車及運動 | 其它 |
- | -------- | ---- | -------- | -------- | ------------ | -------- | -------- | ---- | ---------- | ---- |
- | 1 | 2 | 3 | 44 | 43 | 104 | 45 | 99 | 109 | 4 |
-</Route>
+### 二手市集 {#dcfever-er-shou-shi-ji}
-### 二手市集 - 物品搜尋 {#dcfever-er-shou-shi-ji-wu-pin-sou-xun}
+<Route data={{"path":"/trading/:id","categories":["new-media"],"example":"/dcfever/trading/1","parameters":{"id":"分類 ID,見下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"二手市集","maintainers":["TonyRL"],"description":"[所有物品分類](https://www.dcfever.com/trading/index.php#all_cats)\n\n | 攝影產品 | 電腦 | 手機通訊 | 影音產品 | 遊戲機、模型 | 電器傢俱 | 潮流服飾 | 手錶 | 單車及運動 | 其它 |\n | -------- | ---- | -------- | -------- | ------------ | -------- | -------- | ---- | ---------- | ---- |\n | 1 | 2 | 3 | 44 | 43 | 104 | 45 | 99 | 109 | 4 |","location":"trading.ts"}} />
-<Route author="TonyRL" example="/dcfever/trading/search/Sony" path="/dcfever/trading/search/:keyword/:mainCat?" paramsDesc={['關鍵字', '主要分類 ID,見上表']} radar="1" />
+[所有物品分類](https://www.dcfever.com/trading/index.php#all_cats)
-## Deadline {#deadline}
+| 攝影產品 | 電腦 | 手機通訊 | 影音產品 | 遊戲機、模型 | 電器傢俱 | 潮流服飾 | 手錶 | 單車及運動 | 其它 |
+| -------- | ---- | -------- | -------- | ------------ | -------- | -------- | ---- | ---------- | ---- |
+| 1 | 2 | 3 | 44 | 43 | 104 | 45 | 99 | 109 | 4 |
-### Latest Article {#deadline-latest-article}
+### 二手市集 - 物品搜尋 {#dcfever-er-shou-shi-ji-wu-pin-sou-xun}
-<Route author="TonyRL" example="/deadline" path="/deadline" radar="1" />
+<Route data={{"path":"/trading/search/:keyword/:mainCat?","categories":["new-media"],"example":"/dcfever/trading/search/Sony","parameters":{"keyword":"關鍵字","mainCat":"主要分類 ID,見上表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"二手市集 - 物品搜尋","maintainers":["TonyRL"],"location":"trading-search.ts"}} />
-## DeepL {#deepl}
+### 新聞中心 {#dcfever-xin-wen-zhong-xin}
-### Blog {#deepl-blog}
+<Route data={{"path":"/news/:type?","categories":["new-media"],"example":"/dcfever/news","parameters":{"type":"分類,預設為所有新聞"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新聞中心","maintainers":["TonyRL"],"description":"| 所有新聞 | 攝影器材 | 手機通訊 | 汽車熱話 | 攝影文化 | 影片攝錄 | 測試報告 | 生活科技 | 攝影技巧 |\n | -------- | -------- | -------- | -------- | ----------- | ----------- | -------- | -------- | --------- |\n | | camera | mobile | auto | photography | videography | reviews | gadget | technique |","location":"news.ts"}} />
-<Route author="nczitzk" example="/deepl/blog" path="/deepl/blog/:lang?" paramsDesc={['语言,可选 `en` 指 英语 和 `zh` 指 汉语,默认为 en']} />
+| 所有新聞 | 攝影器材 | 手機通訊 | 汽車熱話 | 攝影文化 | 影片攝錄 | 測試報告 | 生活科技 | 攝影技巧 |
+| -------- | -------- | -------- | -------- | ----------- | ----------- | -------- | -------- | --------- |
+| | camera | mobile | auto | photography | videography | reviews | gadget | technique |
## DeepMind {#deepmind}
### Blog {#deepmind-blog}
-<Route author="nczitzk" example="/deepmind/blog" path="/deepmind/blog" radar="1" />
+<Route data={{"path":"/blog","categories":["new-media"],"example":"/deepmind/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["deepmind.com/blog","deepmind.com/"]},"name":"Blog","maintainers":["nczitzk","TonyRL"],"url":"deepmind.com/blog","location":"blog.ts"}} />
## DN.com {#dn-com}
### News {#dn-com-news}
-<Route author="nczitzk" example="/dn/en-us/news" path="/dn/:language/news/:category?" paramsDesc={['Language, see below', 'Category, see below, The Latest by default']} radar="1">
- #### Language
+<Route data={{"path":"/:language/news/:category?","categories":["new-media"],"example":"/dn/en-us/news","parameters":{"language":"Language, see below","category":"Category, see below, The Latest by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["nczitzk"],"description":"#### Language\n\n | English | 中文 |\n | ------- | ----- |\n | en-us | zh-cn |\n\n #### Category\n\n | English Category | 中文分类 | Category id |\n | -------------------- | -------- | ----------- |\n | The Latest | 最新 | |\n | Industry Information | 行业资讯 | category-1 |\n | Knowledge | 域名知识 | category-2 |\n | Investment | 域名投资 | category-3 |","location":"news.ts"}} />
+
+#### Language {#dn-com-news-language}
- | English | 中文 |
- | ------- | ----- |
- | en-us | zh-cn |
+| English | 中文 |
+| ------- | ----- |
+| en-us | zh-cn |
- #### Category
+#### Category {#dn-com-news-category}
- | English Category | 中文分类 | Category id |
- | -------------------- | -------- | ----------- |
- | The Latest | 最新 | |
- | Industry Information | 行业资讯 | category-1 |
- | Knowledge | 域名知识 | category-2 |
- | Investment | 域名投资 | category-3 |
-</Route>
+| English Category | 中文分类 | Category id |
+| -------------------- | -------- | ----------- |
+| The Latest | 最新 | |
+| Industry Information | 行业资讯 | category-1 |
+| Knowledge | 域名知识 | category-2 |
+| Investment | 域名投资 | category-3 |
## e 公司 {#e-gong-si}
### 快讯 {#e-gong-si-kuai-xun}
-<Route author="hillerliao" example="/egsea/flash" path="/egsea/flash" />
-
-## Engadget 瘾科技 {#engadget-yin-ke-ji}
-
-### Multi-language {#engadget-yin-ke-ji-multi-language}
-
-<Route author="JamesWDGu KeiLongW" example="/engadget/chinese" path="/engadget/:lang" paramsDesc={['Language']}>
- | Traditional Chinese | Simplified Chinese | US | Japanese |
- | ------------------- | ------------------ | -- | -------- |
- | chinese | cn | us | japanese |
-</Route>
+<Route data={{"path":"/flash","categories":["new-media"],"example":"/egsea/flash","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["egsea.com/news/flash"]},"name":"快讯","maintainers":["hillerliao"],"url":"egsea.com/news/flash","location":"flash.ts"}} />
## ePrice {#eprice}
### 最新消息 {#eprice-zui-xin-xiao-xi}
-<Route author="TonyRL" example="/eprice/tw" path="/eprice/:region?" paramsDesc={['地区,预设为 tw']}>
- 地区:
+<Route data={{"path":"/:region?","categories":["new-media"],"example":"/eprice/tw","parameters":{"region":"地区,预设为 tw"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新消息","maintainers":["TonyRL"],"description":"地区:\n\n | hk | tw |\n | ---- | ---- |\n | 香港 | 台湾 |","location":"rss.ts"}} />
+
+地区:
- | hk | tw |
- | ---- | ---- |
- | 香港 | 台湾 |
-</Route>
+| hk | tw |
+| ---- | ---- |
+| 香港 | 台湾 |
## EU Disinfo Lab {#eu-disinfo-lab}
### Publications {#eu-disinfo-lab-publications}
-<Route author="nczitzk" example="/disinfo/publications" path="/disinfo/publications" />
-
-## Europa Press {#europa-press}
-
-### Category {#europa-press-category}
-
-<Route author="nczitzk" example="/europapress" path="/europapress/:category?" paramsDesc={['Category, see below, Home by default']}>
- Categories
-
- | España | Internacional | Economía | Deportes |
- | -------- | ------------- | -------- | -------- |
- | nacional | internacional | economía | deportes |
-
- | Cultura | Sociedad | Ciencia | Salud |
- | ------- | -------- | ------- | ----- |
- | cultura | sociedad | ciencia | salud |
-
- | Tecnología | Comunicados | Estar donde estés |
- | ---------- | ----------- | ----------------- |
- | tecnología | comunicados | estar-donde-estes |
-
- | Andalucía | Aragón | Cantabria | Castilla-La Mancha |
- | --------- | ------ | --------- | ------------------ |
- | andalucia | aragon | cantabria | castilla-lamancha |
-
- | Castilla y León | Cataluña | Extremadura | Galicia |
- | --------------- | --------- | ----------- | ------- |
- | castilla-y-leon | catalunya | extremadura | galicia |
-
- | Islas Canarias | Islas Baleares | Madrid | País Vasco |
- | -------------- | -------------- | ------ | ---------- |
- | islas-canarias | illes-balears | madrid | euskadi |
-
- | La Rioja | C. Valenciana | Navarra | Asturias |
- | -------- | -------------------- | ------- | -------- |
- | la-rioja | comunitat-valenciana | navarra | asturias |
-
- | Murcia | Ceuta y Melilla |
- | ------ | --------------- |
- | murcia | ceuta-y-melilla |
-</Route>
+<Route data={{"path":"/publications","categories":["new-media"],"example":"/disinfo/publications","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["disinfo.eu/"]},"name":"Publications","maintainers":["nczitzk"],"url":"disinfo.eu/","location":"publications.ts"}} />
## Farmatters {#farmatters}
-### Viewpoint {#farmatters-viewpoint}
-
-<Route author="nczitzk" example="/farmatters/news" path="/farmatters/news/:locale?" paramsDesc={['Locale, `zh-CN` or `en-US`, `zh-CN` by default']} radar="1" />
-
### Exclusive {#farmatters-exclusive}
-<Route author="nczitzk" example="/farmatters/exclusive" path="/farmatters/exclusive/:locale?" paramsDesc={['Locale, `zh-CN` or `en-US`, `zh-CN` by default']} radar="1" />
-
-### Tag {#farmatters-tag}
-
-<Route author="nczitzk" example="/farmatters/tag/1" path="/farmatters/tag/:id/:locale?" paramsDesc={['Tag id, see below', 'Locale, `zh-CN` or `en-US`, `zh-CN` by default']} radar="1">
- | id | Tag | 标签 |
- | -- | -------------------- | -------- |
- | 1 | company | 上市公司 |
- | 2 | original | 原创 |
- | 3 | business investment | 商业投资 |
- | 4 | comments | 评论 |
- | 5 | agtech | 农业科技 |
- | 12 | cellular agriculture | 细胞农业 |
- | 17 | vertical farming | 垂直农业 |
- | 19 | urban agriculture | 城市农业 |
- | 20 | mechinery | 农机 |
- | 23 | agfood | 农产食材 |
- | 25 | alternative protein | 替代蛋白 |
- | 29 | food waste | 食物浪费 |
- | 31 | CEA | 设施农业 |
- | 36 | agronomy | 农艺 |
- | 41 | synthetic biology | 合成生物 |
-</Route>
-
-### Wiki {#farmatters-wiki}
-
-<Route author="nczitzk" example="/farmatters/wiki/1" path="/farmatters/wiki/:id/:locale?" paramsDesc={['Category id, see below', 'Locale, `zh-CN` or `en-US`, `zh-CN` by default']} radar="1">
- | id | Category | 分类 |
- | -- | ----------- | -------- |
- | 1 | Agriculture | 农业知识 |
- | 2 | Others | 其他 |
- | 3 | Food | 食物贴士 |
-</Route>
-
-## Fashion Network {#fashion-network}
-
-### Headline {#fashion-network-headline}
-
-<Route author="nczitzk" example="/fashionnetwork/headline" path="/fashionnetwork/headline/:country?" paramsDesc={['Country, see below, `ww` by default']} />
-
-### News {#fashion-network-news}
-
-<Route author="nczitzk" example="/fashionnetwork/news/5,6/15,112" path="/fashionnetwork/news/:sectors?/:categories?/:country?" paramsDesc={['Sectors, see below, `all` by default', 'Categories, see below, `all` by default', 'Country, see below, `ww` as Worldwide by default']}>
- Sectoies
-
- Fashion 1
-
- | Ready-to-wear | Accessories | Footwear | Sports | Denim | Lingerie | Swimwear | Eyewear | Bridal wear | Textile | Miscellaneous |
- | ------------- | ----------- | -------- | ------ | ----- | -------- | -------- | ------- | ----------- | ------- | ------------- |
- | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 31 |
+<Route data={{"path":["/exclusive/:locale?","/news/:locale?","/:locale?","/:type/:id/:locale?"],"categories":["new-media"],"example":"/farmatters/exclusive","parameters":{"locale":"Locale, `zh-CN` or `en-US`, `zh-CN` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["farmatters.com/exclusive"],"target":"/exclusive"},"name":"Exclusive","maintainers":["nczitzk"],"url":"farmatters.com/exclusive","location":"index.ts"}} />
- Luxury 2
-
- | Ready-to-wear | Accessories | Footwear | Watches | Jewellery | Miscellaneous |
- | ------------- | ----------- | -------- | ------- | --------- | ------------- |
- | 15 | 16 | 17 | 18 | 19 | 32 |
-
- Beauty 3
-
- | Perfume | Cosmetics | Aesthetics | Wellness | Hair | Miscellaneous |
- | ------- | --------- | ---------- | -------- | ---- | ------------- |
- | 21 | 22 | 23 | 24 | 33 | |
-
- Lifestyle 4
-
- | Home decor | Tableware | Hospitality | Fine foods | Tourism | Miscellaneous |
- | ---------- | --------- | ----------- | ---------- | ------- | ------------- |
- | 25 | 26 | 27 | 28 | 29 | 34 |
-
- Others 30
-
- Category
-
- | Retail | Business | Industry | Trade shows |
- | ------ | -------- | -------- | ----------- |
- | 15 | 112 | 5 | 12 |
-
- | Innovations | Collection | Catwalks | Design |
- | ----------- | ---------- | -------- | ------ |
- | 113 | 114 | 60 | 70 |
-
- | Media | Campaigns | People | Events | Appointments |
- | ----- | --------- | ------ | ------ | ------------ |
- | 50 | 115 | 80 | 90 | 95 |
-
- Country
-
- | Latin America | Brazil | China | France |
- | ------------- | ------ | ----- | ------ |
- | pe | br | cn | fr |
-
- | Germany | India | Italy | Japan |
- | ------- | ----- | ----- | ----- |
- | de | in | it | jp |
+### Exclusive {#farmatters-exclusive}
- | Mexico | Portugal | Russia | Spain |
- | ------ | -------- | ------ | ----- |
- | mx | pt | ru | es |
+<Route data={{"path":["/exclusive/:locale?","/news/:locale?","/:locale?","/:type/:id/:locale?"],"categories":["new-media"],"example":"/farmatters/exclusive","parameters":{"locale":"Locale, `zh-CN` or `en-US`, `zh-CN` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["farmatters.com/exclusive"],"target":"/exclusive"},"name":"Exclusive","maintainers":["nczitzk"],"url":"farmatters.com/exclusive","location":"index.ts"}} />
- | Turkey | United Kingdom | USA | Worldwide |
- | ------ | -------------- | --- | --------- |
- | tr | uk | us | ww |
-</Route>
+### Exclusive {#farmatters-exclusive}
-## Fermilab {#fermilab}
+<Route data={{"path":["/exclusive/:locale?","/news/:locale?","/:locale?","/:type/:id/:locale?"],"categories":["new-media"],"example":"/farmatters/exclusive","parameters":{"locale":"Locale, `zh-CN` or `en-US`, `zh-CN` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["farmatters.com/exclusive"],"target":"/exclusive"},"name":"Exclusive","maintainers":["nczitzk"],"url":"farmatters.com/exclusive","location":"index.ts"}} />
-### News {#fermilab-news}
+### Exclusive {#farmatters-exclusive}
-<Route author="nczitzk" example="/fnal/news" path="/fnal/news/:category?" paramsDesc={['Category, see below, All News by default']}>
- | All News | Fermilab features | Press releases | Symmetry features |
- | -------- | ----------------- | -------------- | ----------------- |
- | allnews | 269 | 55 | 12580 |
-</Route>
+<Route data={{"path":["/exclusive/:locale?","/news/:locale?","/:locale?","/:type/:id/:locale?"],"categories":["new-media"],"example":"/farmatters/exclusive","parameters":{"locale":"Locale, `zh-CN` or `en-US`, `zh-CN` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["farmatters.com/exclusive"],"target":"/exclusive"},"name":"Exclusive","maintainers":["nczitzk"],"url":"farmatters.com/exclusive","location":"index.ts"}} />
## Focus Taiwan {#focus-taiwan}
### Category {#focus-taiwan-category}
-<Route author="nczitzk" example="/focustaiwan" path="/focustaiwan/:category?" paramsDesc={['分类,见下表,默认为 news']}>
- | Latest | Editor's Picks | Photos of the Day |
- | ------ | -------------- | ----------------- |
- | news | editorspicks | photos |
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/focustaiwan","parameters":{"category":"分类,见下表,默认为 news"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"description":"| Latest | Editor's Picks | Photos of the Day |\n | ------ | -------------- | ----------------- |\n | news | editorspicks | photos |\n\n | Politics | Cross-strait | Business | Society | Science & Tech | Culture | Sports |\n | -------- | ------------ | -------- | ------- | -------------- | ------- | ------ |\n | politics | cross-strait | business | society | science & tech | culture | sports |","location":"index.ts"}} />
- | Politics | Cross-strait | Business | Society | Science & Tech | Culture | Sports |
- | -------- | ------------ | -------- | ------- | -------------- | ------- | ------ |
- | politics | cross-strait | business | society | science & tech | culture | sports |
-</Route>
+| Latest | Editor's Picks | Photos of the Day |
+| ------ | -------------- | ----------------- |
+| news | editorspicks | photos |
+
+| Politics | Cross-strait | Business | Society | Science & Tech | Culture | Sports |
+| -------- | ------------ | -------- | ------- | -------------- | ------- | ------ |
+| politics | cross-strait | business | society | science & tech | culture | sports |
## Foresight News {#foresight-news}
-### 首页 {#foresight-news-shou-ye}
+### 快讯 {#foresight-news-kuai-xun}
-<Route author="nczitzk" example="/foresightnews" path="/foresightnews" />
+<Route data={{"path":"/news","categories":["new-media"],"example":"/foresightnews/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["foresightnews.pro/news","foresightnews.pro/"]},"name":"快讯","maintainers":["nczitzk"],"url":"foresightnews.pro/news","location":"news.ts"}} />
### 文章 {#foresight-news-wen-zhang}
-<Route author="nczitzk" example="/foresightnews/article" path="/foresightnews/article" />
-
-### 快讯 {#foresight-news-kuai-xun}
-
-<Route author="nczitzk" example="/foresightnews/news" path="/foresightnews/news" />
+<Route data={{"path":"/article","categories":["new-media"],"example":"/foresightnews/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["foresightnews.pro/"]},"name":"文章","maintainers":["nczitzk"],"url":"foresightnews.pro/","location":"article.ts"}} />
### 专栏 {#foresight-news-zhuan-lan}
-<Route author="nczitzk" example="/foresightnews/column/1" path="/foresightnews/column/:id" paramsDesc={['专栏 id, 可在对应专栏页 URL 中找到']} />
+<Route data={{"path":"/column/:id","categories":["new-media"],"example":"/foresightnews/column/1","parameters":{"id":"专栏 id, 可在对应专栏页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["foresightnews.pro/column/detail/:id","foresightnews.pro/"]},"name":"专栏","maintainers":["nczitzk"],"url":"foresightnews.pro/","location":"column.ts"}} />
-## Google News {#google-news}
+## Google {#google}
-### News {#google-news-news}
+### News {#google-news}
-<Route author="zoenglinghou" example="/google/news/Top stories/hl=en-US&gl=US&ceid=US:en" path="/google/news/:category/:locale" paramsDesc={['Category Title', 'locales, could be found behind `?`, including `hl`, `gl`, and `ceid` as parameters']} />
+<Route data={{"path":"/news/:category/:locale","categories":["new-media"],"example":"/google/news/Top stories/hl=en-US&gl=US&ceid=US:en","parameters":{"category":"Category Title","locale":"locales, could be found behind `?`, including `hl`, `gl`, and `ceid` as parameters"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["zoenglinghou"],"location":"news.ts"}} />
## Grist {#grist}
-### Articles {#grist-articles}
-
-<Route author="Rjnishant530" example="/grist" path="/grist" radar="1" />
-
### Featured {#grist-featured}
-<Route author="Rjnishant530" example="/grist/featured" path="/grist/featured" radar="1" />
+<Route data={{"path":"/featured","categories":["new-media"],"example":"/grist/featured","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grist.org/"]},"name":"Featured","maintainers":["Rjnishant530"],"url":"grist.org/","location":"featured.ts"}} />
### Series {#grist-series}
-<Route author="Rjnishant530" example="/grist/series/best-of-grist" path="/grist/series/:series" paramsDesc={['Find in the URL which has /series/']} radar="1" />
+<Route data={{"path":"/series/:series","categories":["new-media"],"example":"/grist/series/best-of-grist","parameters":{"series":"Find in the URL which has /series/"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grist.org/series/:series"]},"name":"Series","maintainers":["Rjnishant530"],"url":"grist.org/articles/","location":"series.ts"}} />
### Topic {#grist-topic}
-<Route author="Rjnishant530" example="/grist/topic/extreme-heat" path="/grist/topic/:topic" paramsDesc={['Any Topic from Table below']} radar="1">
- Topics
-
- | Topic Name | Topic Link |
- | ------------------------ | ------------------ |
- | Accountability | accountability |
- | Agriculture | agriculture |
- | Ask Umbra | ask-umbra-series |
- | Buildings | buildings |
- | Cities | cities |
- | Climate & Energy | climate-energy |
- | Climate Fiction | climate-fiction |
- | Climate of Courage | climate-of-courage |
- | COP26 | cop26 |
- | COP27 | cop27 |
- | Culture | culture |
- | Economics | economics |
- | Energy | energy |
- | Equity | equity |
- | Extreme Weather | extreme-weather |
- | Fix | fix |
- | Food | food |
- | Grist | grist |
- | Grist News | grist-news |
- | Health | health |
- | Housing | housing |
- | Indigenous Affairs | indigenous |
- | International | international |
- | Labor | labor |
- | Language | language |
- | Migration | migration |
- | Opinion | opinion |
- | Politics | politics |
- | Protest | protest |
- | Race | race |
- | Regulation | regulation |
- | Science | science |
- | Shift Happens Newsletter | shift-happens |
- | Solutions | solutions |
- | Spanish | spanish |
- | Sponsored | sponsored |
- | Technology | technology |
- | Temperature Check | temperature-check |
- | Uncategorized | article |
- | Updates | updates |
- | Video | video |
-</Route>
-
-## Grub Street {#grub-street}
-
-### Posts {#grub-street-posts}
-
-<Route author="loganrockmore" example="/grubstreet" path="/grubstreet" />
+<Route data={{"path":"/topic/:topic","categories":["new-media"],"example":"/grist/topic/extreme-heat","parameters":{"topic":"Any Topic from Table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grist.org/:topic"]},"name":"Topic","maintainers":["Rjnishant530"],"url":"grist.org/articles/","description":"Topics\n\n | Topic Name | Topic Link |\n | ------------------------ | ------------------ |\n | Accountability | accountability |\n | Agriculture | agriculture |\n | Ask Umbra | ask-umbra-series |\n | Buildings | buildings |\n | Cities | cities |\n | Climate & Energy | climate-energy |\n | Climate Fiction | climate-fiction |\n | Climate of Courage | climate-of-courage |\n | COP26 | cop26 |\n | COP27 | cop27 |\n | Culture | culture |\n | Economics | economics |\n | Energy | energy |\n | Equity | equity |\n | Extreme Weather | extreme-weather |\n | Fix | fix |\n | Food | food |\n | Grist | grist |\n | Grist News | grist-news |\n | Health | health |\n | Housing | housing |\n | Indigenous Affairs | indigenous |\n | International | international |\n | Labor | labor |\n | Language | language |\n | Migration | migration |\n | Opinion | opinion |\n | Politics | politics |\n | Protest | protest |\n | Race | race |\n | Regulation | regulation |\n | Science | science |\n | Shift Happens Newsletter | shift-happens |\n | Solutions | solutions |\n | Spanish | spanish |\n | Sponsored | sponsored |\n | Technology | technology |\n | Temperature Check | temperature-check |\n | Uncategorized | article |\n | Updates | updates |\n | Video | video |","location":"topic.ts"}} />
+
+Topics
+
+| Topic Name | Topic Link |
+| ------------------------ | ------------------ |
+| Accountability | accountability |
+| Agriculture | agriculture |
+| Ask Umbra | ask-umbra-series |
+| Buildings | buildings |
+| Cities | cities |
+| Climate & Energy | climate-energy |
+| Climate Fiction | climate-fiction |
+| Climate of Courage | climate-of-courage |
+| COP26 | cop26 |
+| COP27 | cop27 |
+| Culture | culture |
+| Economics | economics |
+| Energy | energy |
+| Equity | equity |
+| Extreme Weather | extreme-weather |
+| Fix | fix |
+| Food | food |
+| Grist | grist |
+| Grist News | grist-news |
+| Health | health |
+| Housing | housing |
+| Indigenous Affairs | indigenous |
+| International | international |
+| Labor | labor |
+| Language | language |
+| Migration | migration |
+| Opinion | opinion |
+| Politics | politics |
+| Protest | protest |
+| Race | race |
+| Regulation | regulation |
+| Science | science |
+| Shift Happens Newsletter | shift-happens |
+| Solutions | solutions |
+| Spanish | spanish |
+| Sponsored | sponsored |
+| Technology | technology |
+| Temperature Check | temperature-check |
+| Uncategorized | article |
+| Updates | updates |
+| Video | video |
## Harvard Business Review {#harvard-business-review}
### Topic {#harvard-business-review-topic}
-<Route author="nczitzk" example="/hbr/topic/leadership" path="/hbr/topic/:topic?/:type?" paramsDesc={['Topic, can be found in URL, Leadership by default', 'Type, see below, Latest by default']}>
- | LATEST | POPULAR | FROM THE STORE | FOR YOU |
- | ------ | ------- | -------------- | ------- |
- | Latest | Popular | From the Store | For You |
+<Route data={{"path":"/topic/:topic?/:type?","categories":["new-media"],"example":"/hbr/topic/leadership","parameters":{"topic":"Topic, can be found in URL, Leadership by default","type":"Type, see below, Latest by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hbr.org/topic/:topic?","hbr.org/"]},"name":"Topic","maintainers":["nczitzk"],"description":"| LATEST | POPULAR | FROM THE STORE | FOR YOU |\n | ------ | ------- | -------------- | ------- |\n | Latest | Popular | From the Store | For You |\n\n :::tip\n Click here to view [All Topics](https://hbr.org/topics)\n :::","location":"topic.ts"}} />
+
+| LATEST | POPULAR | FROM THE STORE | FOR YOU |
+| ------ | ------- | -------------- | ------- |
+| Latest | Popular | From the Store | For You |
- :::tip
- Click here to view [All Topics](https://hbr.org/topics)
- :::
-</Route>
+:::tip
+Click here to view [All Topics](https://hbr.org/topics)
+:::
## Harvard Health Publishing {#harvard-health-publishing}
### Health Blog {#harvard-health-publishing-health-blog}
-<Route author="nczitzk" example="/harvard/health/blog" path="/harvard/health/blog" />
+<Route data={{"path":"/health/blog","categories":["new-media"],"example":"/harvard/health/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.health.harvard.edu/blog"]},"name":"Health Blog","maintainers":["nczitzk"],"url":"www.health.harvard.edu/blog","location":"health/blog.ts"}} />
## HKEPC {#hkepc}
### HKEPC 电脑领域 {#hkepc-hkepc-dian-nao-ling-yu}
-<Route author="TonyRL" example="/hkepc/news" path="/hkepc/:category?" paramsDesc={['分类,见下表,默认为最新消息']} anticrawler="1">
- | 专题报导 | 新闻中心 | 新品快递 | 超频领域 | 流动数码 | 生活娱乐 | 会员消息 | 脑场新闻 | 业界资讯 | 最新消息 |
- | ---------- | -------- | -------- | -------- | -------- | ------------- | -------- | -------- | -------- | -------- |
- | coverStory | news | review | ocLab | digital | entertainment | member | price | press | latest |
-</Route>
-
-## HKJunkCall 資訊中心 {#hkjunkcall-zi-xun-zhong-xin}
-
-### 近期資訊 {#hkjunkcall-zi-xun-zhong-xin-jin-qi-zi-xun}
-
-<Route author="nczitzk" example="/hkjunkcall" path="/hkjunkcall" anticrawler="1" />
-
-## iDaily {#idaily}
-
-### 每日环球视野 {#idaily-mei-ri-huan-qiu-shi-ye}
-
-<Route author="zphw nczitzk" example="/idaily" path="/idaily/:language?" paramsDesc={['语言,见下表,默认为简体中文']} radar="1">
- | 简体中文 | 繁体中文 |
- | -------- | -------- |
- | zh-hans | zh-hant |
-</Route>
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/hkepc/news","parameters":{"category":"分类,见下表,默认为最新消息"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hkepc.com/"],"target":""},"name":"HKEPC 电脑领域","maintainers":["TonyRL"],"url":"hkepc.com/","description":"| 专题报导 | 新闻中心 | 新品快递 | 超频领域 | 流动数码 | 生活娱乐 | 会员消息 | 脑场新闻 | 业界资讯 | 最新消息 |\n | ---------- | -------- | -------- | -------- | -------- | ------------- | -------- | -------- | -------- | -------- |\n | coverStory | news | review | ocLab | digital | entertainment | member | price | press | latest |","location":"index.ts"}} />
-## iDownloadBlog {#idownloadblog}
-
-### blog {#idownloadblog-blog}
-
-<Route author="HenryQW" example="/iDownloadBlog" path="/iDownloadBlog/index">
- Provides a better reading experience (full text articles) over the official one.
-</Route>
+| 专题报导 | 新闻中心 | 新品快递 | 超频领域 | 流动数码 | 生活娱乐 | 会员消息 | 脑场新闻 | 业界资讯 | 最新消息 |
+| ---------- | -------- | -------- | -------- | -------- | ------------- | -------- | -------- | -------- | -------- |
+| coverStory | news | review | ocLab | digital | entertainment | member | price | press | latest |
## Indians in Kuwait {#indians-in-kuwait}
### News {#indians-in-kuwait-news}
-<Route author="TonyRL" example="/indiansinkuwait/latest" path="/indiansinkuwait/latest" radar="1" />
+<Route data={{"path":"/latest","categories":["new-media"],"example":"/indiansinkuwait/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["indiansinkuwait.com/latest-news","indiansinkuwait.com/"]},"name":"News","maintainers":["TonyRL"],"url":"indiansinkuwait.com/latest-news","location":"latest.ts"}} />
## InfoQ 中文 {#infoq-zhong-wen}
-### 推荐 {#infoq-zhong-wen-tui-jian}
-
-<Route author="brilon" example="/infoq/recommend" path="/infoq/recommend" />
-
### 话题 {#infoq-zhong-wen-hua-ti}
-<Route author="brilon" example="/infoq/topic/1" path="/infoq/topic/:id" paramsDesc={['话题id,可在 [InfoQ全部话题](https://www.infoq.cn/topics) 页面找到URL里的话题id']} />
-
-## International Mathematical Union {#international-mathematical-union}
-
-### Fields Medal {#international-mathematical-union-fields-medal}
-
-<Route author="nczitzk" example="/mathunion/fields-medal" path="/mathunion/fields-medal" />
+<Route data={{"path":"/topic/:id","categories":["new-media"],"example":"/infoq/topic/1","parameters":{"id":"话题id,可在 [InfoQ全部话题](https://www.infoq.cn/topics) 页面找到URL里的话题id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["infoq.cn/topic/:id"]},"name":"话题","maintainers":["brilon"],"location":"topic.ts"}} />
-## IT 之家 {#it-zhi-jia}
-
-### 分类资讯 {#it-zhi-jia-fen-lei-zi-xun}
-
-<Route author="luyuhuang" example="/ithome/it" path="/ithome/:caty" paramsDesc={['类别']} radar="1">
- | it | soft | win10 | win11 | iphone | ipad | android | digi | next |
- | ------- | -------- | ---------- | ---------- | ----------- | --------- | ------------ | -------- | -------- |
- | IT 资讯 | 软件之家 | win10 之家 | win11 之家 | iphone 之家 | ipad 之家 | android 之家 | 数码之家 | 智能时代 |
-</Route>
-
-### 热榜 {#it-zhi-jia-re-bang}
-
-<Route author="immmortal luyuhuang" example="/ithome/ranking/24h" path="/ithome/ranking/:type" paramsDesc={['类别']} radar="1">
- | 24h | 7days | monthly |
- | ------------- | -------- | ------- |
- | 24 小时阅读榜 | 7 天最热 | 月榜 |
-</Route>
-
-### 专题 {#it-zhi-jia-zhuan-ti}
-
-<Route author="nczitzk" example="/ithome/zt/xijiayi" path="/ithome/zt/:id" paramsDesc={['专题 id']} radar="1">
- 所有专题请见[此处](https://www.ithome.com/zt)
-</Route>
-
-### 标签 {#it-zhi-jia-biao-qian}
+### 推荐 {#infoq-zhong-wen-tui-jian}
-<Route author="Fatpandac" example="/ithome/tag/win11" path="/ithome/tag/:name" paramsDesc={['标签名称,可从网址链接中获取']} radar="1" />
+<Route data={{"path":"/recommend","categories":["new-media"],"example":"/infoq/recommend","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["infoq.cn/"]},"name":"推荐","maintainers":["brilon"],"url":"infoq.cn/","location":"recommend.ts"}} />
## iThome 台灣 {#ithome-tai-wan}
### Feeds {#ithome-tai-wan-feeds}
-<Route author="miles170" example="/ithome/tw/feeds/news" path="/ithome/tw/feeds/:category" paramsDesc={['類別']} radar="1">
- | 新聞 | AI | Cloud | DevOps | 資安 |
- | ---- | -------- | ----- | ------ | -------- |
- | news | big-data | cloud | devops | security |
-</Route>
+<Route data={{"path":"/tw/feeds/:category","categories":["new-media"],"example":"/ithome/tw/feeds/news","parameters":{"category":"類別"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ithome.com.tw/:category","www.ithome.com.tw/:category/feeds"]},"name":"Feeds","maintainers":["miles170"],"description":"| 新聞 | AI | Cloud | DevOps | 資安 |\n | ---- | -------- | ----- | ------ | -------- |\n | news | big-data | cloud | devops | security |","location":"tw/feeds.ts"}} />
-## Kantar Worldpanel {#kantar-worldpanel}
+| 新聞 | AI | Cloud | DevOps | 資安 |
+| ---- | -------- | ----- | ------ | -------- |
+| news | big-data | cloud | devops | security |
-### News Centre {#kantar-worldpanel-news-centre}
+### 标签 {#ithome-tai-wan-biao-qian}
-<Route author="nczitzk" example="/kantarworldpanel/cn-en/news" path="/kantarworldpanel/:region/:category?" paramsDesc={['Region id, see below, Chinese Mainland English by default', 'Category, can be found in URL, News by default']} radar="1">
- | Region | id |
- | ----------- | ----- |
- | China Eng | cn-en |
- | China 中文 | cn |
- | Indonesia | id |
- | Korea | kr |
- | Malaysia | my |
- | Philippines | ph |
- | Taiwan | tw |
- | Thailand | th |
- | Vietnam | vn |
+<Route data={{"path":"/tag/:name","categories":["new-media"],"example":"/ithome/tag/win11","parameters":{"name":"标签名称,可从网址链接中获取"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ithome.com/tag/:name"]},"name":"标签","maintainers":["Fatpandac"],"location":"tag.ts"}} />
- <details>
- <summary>More categories</summary>
+### 分类资讯 {#ithome-tai-wan-fen-lei-zi-xun}
- #### China Eng
+<Route data={{"path":"/:caty","categories":["new-media"],"example":"/ithome/it","parameters":{"caty":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类资讯","maintainers":["luyuhuang"],"description":"| it | soft | win10 | win11 | iphone | ipad | android | digi | next |\n | ------- | -------- | ---------- | ---------- | ----------- | --------- | ------------ | -------- | -------- |\n | IT 资讯 | 软件之家 | win10 之家 | win11 之家 | iphone 之家 | ipad 之家 | android 之家 | 数码之家 | 智能时代 |","location":"index.ts"}} />
- | News | Retail Snapshot | Publications | In the media |
- | ---- | --------------- | -------------------- | ------------ |
- | news | publications | publications/Reports | In-the-media |
+| it | soft | win10 | win11 | iphone | ipad | android | digi | next |
+| ------- | -------- | ---------- | ---------- | ----------- | --------- | ------------ | -------- | -------- |
+| IT 资讯 | 软件之家 | win10 之家 | win11 之家 | iphone 之家 | ipad 之家 | android 之家 | 数码之家 | 智能时代 |
- #### China 中文
+### 热榜 {#ithome-tai-wan-re-bang}
- | 新闻发布 | 零售市场快报 | 市场报告 | 媒体报道 |
- | -------- | ------------ | --------------------------- | -------------- |
- | news | publications | publications/China-Insights | press-releases |
+<Route data={{"path":"/ranking/:type","categories":["new-media"],"example":"/ithome/ranking/24h","parameters":{"type":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热榜","maintainers":["immmortal","luyuhuang"],"description":"| 24h | 7days | monthly |\n | ------------- | -------- | ------- |\n | 24 小时阅读榜 | 7 天最热 | 月榜 |","location":"ranking.ts"}} />
- #### Indonesia
+| 24h | 7days | monthly |
+| ------------- | -------- | ------- |
+| 24 小时阅读榜 | 7 天最热 | 月榜 |
- | News | Kantar Scoop | Video Series | Podcast | Ready, Steady, Shop! | Asia Pulse |
- | ---- | ----------------------------- | ----------------- | ------------ | ------------------------ | --------------- |
- | News | News/Kantar-Worldpanel-Series | News/video-series | News/podcast | News/asia-shopper-series | News/Asia-Pulse |
+### 专题 {#ithome-tai-wan-zhuan-ti}
- #### Korea
+<Route data={{"path":"/zt/:id","categories":["new-media"],"example":"/ithome/zt/xijiayi","parameters":{"id":"专题 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ithome.com/zt/:id"]},"name":"专题","maintainers":["nczitzk"],"description":"所有专题请见[此处](https://www.ithome.com/zt)","location":"zt.ts"}} />
- | News | Insight Reports | In the Media |
- | ---- | --------------- | -------------- |
- | news | publications | press-releases |
-
- #### Malaysia
-
- | News |
- | ---- |
- | news |
-
- #### Philippines
-
- | Latest Insights | In the Media | Events |
- | --------------- | ------------ | ------ |
- | Latest-Insights | In-the-Media | events |
-
- #### Taiwan
-
- | 聚焦台灣 | WOW SPOT | 市場報告 | 媒體報導 | 活動 |
- | ------------------------ | ------------ | ------------ | -------------- | ------ |
- | news/spotlight-on-taiwan | news/wowspot | publications | press-releases | events |
-
- #### Thailand
-
- | News |
- | ---- |
- | news |
-
- #### Vietnam
-
- | Insights | FMCG Monitor | Ready, Steady, Shop! | Asia Pulse | IN THE MEDIA |
- | -------- | ----------------- | ---------------------- | --------------- | ------------ |
- | news | news/FMCG-Monitor | news/ready-steady-shop | news/asia-pulse | In-the-media |
- </details>
-</Route>
+所有专题请见[此处](https://www.ithome.com/zt)
## KBS {#kbs}
### News {#kbs-news}
-<Route author="nczitzk" example="/kbs/news" path="/kbs/news/:category?/:language?" paramsDesc={['Category, can be found in Url as `id`, all by default', 'Language, see below, e as English by default']}>
- | 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |
- | ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |
- | k | a | c | e | f | g | i | j | r | s | v |
-</Route>
-
-### Today {#kbs-today}
-
-<Route author="nczitzk" example="/kbs/today" path="/kbs/today/:language?" paramsDesc={['Language, see below, e as English by default']}>
- | 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |
- | ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |
- | k | a | c | e | f | g | i | j | r | s | v |
-</Route>
-
-## Kotaku {#kotaku}
+<Route data={{"path":"/news/:category?/:language?","categories":["new-media"],"example":"/kbs/news","parameters":{"category":"Category, can be found in Url as `id`, all by default","language":"Language, see below, e as English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["world.kbs.co.kr/"],"target":"/news"},"name":"News","maintainers":["nczitzk"],"url":"world.kbs.co.kr/","description":"| 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |\n | ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |\n | k | a | c | e | f | g | i | j | r | s | v |","location":"news.ts"}} />
-### Story {#kotaku-story}
+| 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |
+| ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |
+| k | a | c | e | f | g | i | j | r | s | v |
-<Route author="CYTMWIA" example="/kotaku/story/news" path="/kotaku/story/:type" paramsDesc={['Story类型']}>
- 可在 url 中找到,例如`https://kotaku.com/c/news`和`https://kotaku.com/c/kotaku-east`中的`news`和`kotaku-east`
+### Today {#kbs-today}
- 注意,无论是`news`还是`kotaku-east`之前都有`/c/`
+<Route data={{"path":"/today/:language?","categories":["new-media"],"example":"/kbs/today","parameters":{"language":"Language, see below, e as English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["world.kbs.co.kr/"],"target":"/today"},"name":"Today","maintainers":["nczitzk"],"url":"world.kbs.co.kr/","description":"| 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |\n | ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |\n | k | a | c | e | f | g | i | j | r | s | v |","location":"today.ts"}} />
- 所以,如果您把`https://kotaku.com/latest`中的`latest`填入,该路由并不会正常工作
-</Route>
+| 한국어 | عربي | 中国语 | English | Français | Deutsch | Bahasa Indonesia | 日本語 | Русский | Español | Tiếng Việt |
+| ------ | ---- | ------ | ------- | -------- | ------- | ---------------- | ------ | ------- | ------- | ---------- |
+| k | a | c | e | f | g | i | j | r | s | v |
## Kuwait Local {#kuwait-local}
-### Latest News {#kuwait-local-latest-news}
-
-<Route author="TonyRL" example="/kuwaitlocal" path="/kuwaitlocal" radar="1" />
-
### Categorised News {#kuwait-local-categorised-news}
-<Route author="TonyRL" example="/kuwaitlocal/article" path="/kuwaitlocal/:category?" paramsDesc={['Category name, can be found in URL, `latest` by default']} radar="1" />
-
-## Letterboxd {#letterboxd}
-
-### User diary {#letterboxd-user-diary}
-
-<Route author="loganrockmore" example="/letterboxd/user/diary/demiadejuyigbe" path="/letterboxd/user/diary/:username" paramsDesc={['username']} />
-
-### Following diary {#letterboxd-following-diary}
-
-<Route author="loganrockmore" example="/letterboxd/user/followingdiary/demiadejuyigbe" path="/letterboxd/user/followingdiary/:username" paramsDesc={['username']} />
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/kuwaitlocal/article","parameters":{"category":"Category name, can be found in URL, `latest` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kuwaitlocal.com/news/categories/:category"],"target":"/:category"},"name":"Categorised News","maintainers":["TonyRL"],"url":"kuwaitlocal.com/news/latest","location":"index.ts"}} />
## LINE {#line}
### TODAY {#line-today}
-<Route author="nczitzk" example="/line/today" path="/line/today/:edition?/:tab?" paramsDesc={['Edition, see below, Taiwan by default', 'Tag, can be found in URL, `top` by default']}>
- Edition
+<Route data={{"path":"/today/:edition?/:tab?","categories":["new-media"],"example":"/line/today","parameters":{"edition":"Edition, see below, Taiwan by default","tab":"Tag, can be found in URL, `top` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["today.line.me/"]},"name":"TODAY","maintainers":["nczitzk"],"url":"today.line.me/","description":"Edition\n\n | Taiwan | Thailand | Hong Kong |\n | ------ | -------- | --------- |\n | tw | th | hk |","location":"today.ts"}} />
- | Taiwan | Thailand | Hong Kong |
- | ------ | -------- | --------- |
- | tw | th | hk |
-</Route>
+Edition
+
+| Taiwan | Thailand | Hong Kong |
+| ------ | -------- | --------- |
+| tw | th | hk |
### TODAY - Channel {#line-today-channel}
-<Route author="TonyRL" example="/line/today/th/publisher/101048" path="/line/today/:edition/publisher/:id" paramsDesc={['Edition, see table above', 'Channel ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/today/:edition/publisher/:id","categories":["new-media"],"example":"/line/today/th/publisher/101048","parameters":{"edition":"Edition, see table above","id":"Channel ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["today.line.me/:edition/v2/publisher/:id"]},"name":"TODAY - Channel","maintainers":["TonyRL"],"location":"publisher.ts"}} />
## Live Universal Awareness Map {#live-universal-awareness-map}
### 实时消息 {#live-universal-awareness-map-shi-shi-xiao-xi}
-<Route author="CoderSherlock" example="/liveuamap" path="/liveuamap/:region?" paramsDesc={['region 热点地区,默认为`ukraine`,其他选项见liveuamap.com的三级域名']} anticrawler="1" />
+<Route data={{"path":"/:region?","categories":["new-media"],"example":"/liveuamap","parameters":{"region":"region 热点地区,默认为`ukraine`,其他选项见liveuamap.com的三级域名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["liveuamap.com/:region*"],"target":"/:region"},"name":"实时消息","maintainers":["CoderSherlock"],"location":"index.ts"}} />
## LVV2 {#lvv2}
-### 频道 {#lvv2-pin-dao}
-
-<Route author="Fatpandac" example="/lvv2/news/sort-score" path="/lvv2/news/:channel/:sort?" paramsDesc={['频道,见下表', '排序方式,仅得分和24小时榜可选填该参数,见下表']} anticrawler="1">
- | 热门 | 最新 | 得分 | 24 小时榜 |
- | :------: | :------: | :--------: | :-----------: |
- | sort-hot | sort-new | sort-score | sort-realtime |
-
- | 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |
- | :------: | :------: | :----: | :------: | :------: |
- | | t-hour | t-day | t-week | t-month |
-</Route>
-
### 24 小时点击排行 Top 10 {#lvv2-24-xiao-shi-dian-ji-pai-hang-top-10}
-<Route author="Fatpandac" example="/lvv2/top/sort-score" path="/lvv2/top/:channel/:sort?" paramsDesc={['频道,见下表', '排序方式,仅得分和24小时榜可选填该参数,见下表']} anticrawler="1">
- | 热门 | 最新 | 得分 | 24 小时榜 |
- | :------: | :------: | :--------: | :-----------: |
- | sort-hot | sort-new | sort-score | sort-realtime |
-
- | 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |
- | :------: | :------: | :----: | :------: | :------: |
- | | t-hour | t-day | t-week | t-month |
-</Route>
-
-## Macfilos {#macfilos}
-
-### Blog {#macfilos-blog}
-
-<Route author="nczitzk" example="/macfilos/blog" path="/macfilos/blog" />
-
-## Matters {#matters}
-
-### Latest, heat, essence {#matters-latest-heat-essence}
-
-<Route author="xyqfer Cerebrater xosdy" example="/matters/latest/heat" path="/matters/latest/:type?" paramsDesc={['Defaults to latest, see table below']} radar="1">
- | 最新 | 热门 | 精华 |
- | ------ | ---- | ------- |
- | latest | heat | essence |
-</Route>
-
-### Tags {#matters-tags}
-
-<Route author="Cerebrater" example="/matters/tags/VGFnOjk3Mg" path="/matters/tags/:tid" paramsDesc={['Tag id, can be found in the url of the tag page']} radar="1" />
-
-### Author {#matters-author}
-
-<Route author="Cerebrater xosdy" example="/matters/author/az" path="/matters/author/:uid" paramsDesc={['Author id, can be found at author\'s homepage url']} radar="1" notOperational="1" />
+<Route data={{"path":"/top/:channel/:sort?","categories":["new-media"],"example":"/lvv2/top/sort-score","parameters":{"channel":"频道,见下表","sort":"排序方式,仅得分和24小时榜可选填该参数,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"24 小时点击排行 Top 10","maintainers":["Fatpandac"],"description":"| 热门 | 最新 | 得分 | 24 小时榜 |\n | :------: | :------: | :--------: | :-----------: |\n | sort-hot | sort-new | sort-score | sort-realtime |\n\n | 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |\n | :------: | :------: | :----: | :------: | :------: |\n | | t-hour | t-day | t-week | t-month |","location":"top.ts"}} />
-## Metacritic {#metacritic}
+| 热门 | 最新 | 得分 | 24 小时榜 |
+| :------: | :------: | :--------: | :-----------: |
+| sort-hot | sort-new | sort-score | sort-realtime |
-### Games {#metacritic-games}
+| 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |
+| :------: | :------: | :----: | :------: | :------: |
+| | t-hour | t-day | t-week | t-month |
-<Route author="HenryQW nczitzk" example="/metacritic/game" path="/metacritic/game/:sort?/:filter?" paramsDesc={['Sort, see below, `new` for Newest Releases by default', 'Filter']} radar="1">
- | Metascore | User Score | Most Popular | Newest Releases |
- | --------- | ---------- | ------------ | --------------- |
- | metascore | userscore | popular | new |
-
- :::tip
- The Filter parameter comes from the corresponding page URL. The following is an example:
-
- The URL of [Action Games to Play on PS5](https://www.metacritic.com/browse/game/all/all/all-time/new/?platform=ps5\&genre=action) is `https://www.metacritic.com/browse/game/all/all/all-time/new/?platform=ps5&genre=action`. The Filter parameter is `platform=ps5&genre=action` and the route is [`/metacritic/game/new/platform=ps5&genre=action`](https://rsshub.app/metacritic/game/new/platform=ps5\&genre=action)
- :::
-</Route>
-
-### Movies {#metacritic-movies}
-
-<Route author="nczitzk" example="/metacritic/movie" path="/metacritic/movie/:sort?/:filter?" paramsDesc={['Sort, see below, `new` for Newest Releases by default', 'Filter']} radar="1">
- | Metascore | User Score | Most Popular | Newest Releases |
- | --------- | ---------- | ------------ | --------------- |
- | metascore | userscore | popular | new |
+### 频道 {#lvv2-pin-dao}
- :::tip
- The Filter parameter comes from the corresponding page URL. The following is an example:
+<Route data={{"path":"/news/:channel/:sort?","categories":["new-media"],"example":"/lvv2/news/sort-score","parameters":{"channel":"频道,见下表","sort":"排序方式,仅得分和24小时榜可选填该参数,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道","maintainers":["Fatpandac"],"description":"| 热门 | 最新 | 得分 | 24 小时榜 |\n | :------: | :------: | :--------: | :-----------: |\n | sort-hot | sort-new | sort-score | sort-realtime |\n\n | 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |\n | :------: | :------: | :----: | :------: | :------: |\n | | t-hour | t-day | t-week | t-month |","location":"news.ts"}} />
- The URL of [Action Movies to Watch on Netflix](https://www.metacritic.com/browse/movie/all/all/all-time/new/?network=netflix\&genre=action) is `https://www.metacritic.com/browse/movie/all/all/all-time/new/?network=netflix&genre=action`. The Filter parameter is `network=netflix&genre=action` and the route is [`/metacritic/movie/new/network=netflix&genre=action`](https://rsshub.app/metacritic/movie/new/network=netflix\&genre=action)
- :::
-</Route>
+| 热门 | 最新 | 得分 | 24 小时榜 |
+| :------: | :------: | :--------: | :-----------: |
+| sort-hot | sort-new | sort-score | sort-realtime |
-### TV Shows {#metacritic-tv-shows}
+| 排序方式 | 一小时内 | 一天内 | 一个周内 | 一个月内 |
+| :------: | :------: | :----: | :------: | :------: |
+| | t-hour | t-day | t-week | t-month |
-<Route author="nczitzk" example="/metacritic/tv" path="/metacritic/tv/:sort?/:filter?" paramsDesc={['Sort, see below, `new` for Newest Releases by default', 'Filter']} radar="1">
- | Metascore | User Score | Most Popular | Newest Releases |
- | --------- | ---------- | ------------ | --------------- |
- | metascore | userscore | popular | new |
+## Macfilos {#macfilos}
- :::tip
- The Filter parameter comes from the corresponding page URL. The following is an example:
+### Blog {#macfilos-blog}
- The URL of [Documentary TV Shows to Watch on Prime Video](https://www.metacritic.com/browse/tv/all/all/all-time/new/?network=prime-video\&genre=documentary) is `https://www.metacritic.com/browse/tv/all/all/all-time/new/?network=prime-video&genre=documentary`. The Filter parameter is `network=prime-video&genre=documentary` and the route is [`/metacritic/tv/new/network=prime-video&genre=documentary`](https://rsshub.app/metacritic/tv/new/network=prime-video\&genre=documentary)
- :::
-</Route>
+<Route data={{"path":"/blog","categories":["new-media"],"example":"/macfilos/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["macfilos.com/blog","macfilos.com/"]},"name":"Blog","maintainers":["nczitzk"],"url":"macfilos.com/blog","location":"blog.ts"}} />
## Mirror {#mirror}
-### User {#mirror-user}
-
-<Route author="fifteen42 rde9 nczitzk" example="/mirror/tingfei.eth" path="/mirror/:id" paramsDesc={['user id']} />
-
-## MyGoPen {#mygopen}
-
-### 分類 {#mygopen-fen-lei}
-
-<Route author="nczitzk" example="/mygopen" path="/mygopen/:label?" paramsDesc={['分類,见下表,默认为首页']}>
- | 謠言 | 詐騙 | 真實資訊 | 教學 |
- | ---- | ---- | -------- | ---- |
-</Route>
-
-## National Association of Colleges and Employers {#national-association-of-colleges-and-employers}
-
-### Blog {#national-association-of-colleges-and-employers-blog}
-
-<Route author="nczitzk" example="/nace/blog" path="/nace/blog/:sort?" paramsDesc={['Sort, see below, Most Recent by default']}>
- | Most Recent | Top Rated | Most Read |
- | ----------- | --------- | ------------- |
- | | top-blogs | mostreadblogs |
-</Route>
-
-## Nautilus {#nautilus}
-
-### Topics {#nautilus-topics}
-
-<Route author="emdoe" example="/nautil/topic/arts" path="/nautil/topic/:tid" paramsDesc={['topic']}>
- This route provides a flexible plan with full text content to subscribe specific topic(s) on the Nautilus. Please visit [nautil.us](https://nautil.us) and click `Topics` to acquire whole topic list.
-</Route>
-
-## Netflix {#netflix}
-
-### Newsroom {#netflix-newsroom}
-
-<Route author="nczitzk" example="/netflix/newsroom" path="/netflix/newsroom/:category?/:region?" paramsDesc={['分类,见下表,默认为 0 即 全部', '地区,可在地区页 URL 中找到,默认为 en 即 英语地区']} anticrawler="1">
- 分类
-
- | 全部报道 | 业务 | 创新 | 娱乐 | 巴西制作 | 社会影响 |
- | -------- | -------- | ------------- | ---------- | -------- | -------- |
- | all | business | entertainment | innovation | brazil | impact |
-</Route>
-
-## NGOCN {#ngocn}
-
-### 首页 {#ngocn-shou-ye}
-
-<Route author="nczitzk" example="/ngocn2" path="/ngocn2/:category?" paramsDesc={['分类,见下表,默认为所有文章']} radar="1">
- | 所有文章 | 早报 | 热点 |
- | -------- | ----------- | -------- |
- | article | daily-brief | trending |
-</Route>
-
-## NL Times {#nl-times}
-
-### News {#nl-times-news}
-
-<Route author="Hivol" example="/nltimes/news/top-stories" path="/nltimes/news/:category?" paramsDesc={['category']}>
- | Top Stories (default) | Health | Crime | Politics | Business | Tech | Culture | Sports | Weird | 1-1-2 |
- | --------------------- | ------ | ----- | -------- | -------- | ---- | ------- | ------ | ----- | ----- |
- | top-stories | health | crime | politics | business | tech | culture | sports | weird | 1-1-2 |
-</Route>
-
-## Oak Ridge National Laboratory {#oak-ridge-national-laboratory}
-
-### News {#oak-ridge-national-laboratory-news}
-
-<Route author="nczitzk" example="/ornl/news" path="/ornl/news" />
-
-## Odaily 星球日报 {#odaily-xing-qiu-ri-bao}
-
-### 快讯 {#odaily-xing-qiu-ri-bao-kuai-xun}
-
-<Route author="ncziztk" example="/odaily/newsflash" path="/odaily/newsflash" />
-
-### 搜索快讯 {#odaily-xing-qiu-ri-bao-sou-suo-kuai-xun}
-
-<Route author="snowraincloud" example="/odaily/search/news/RSS3" path="/odaily/search/news/:keyword" paramsDesc={['搜索关键字']} />
-
-### 文章 {#odaily-xing-qiu-ri-bao-wen-zhang}
-
-<Route author="ncziztk" example="/odaily" path="/odaily/:id?" paramsDesc={['id,见下表,默认为最新']}>
- | 最新 | 新品 | DeFi | NFT | 存储 | 波卡 | 行情 | 活动 |
- | ---- | ---- | ---- | --- | ---- | ---- | ---- | ---- |
- | 280 | 333 | 331 | 334 | 332 | 330 | 297 | 296 |
-</Route>
-
-### 用户文章 {#odaily-xing-qiu-ri-bao-yong-hu-wen-zhang}
-
-<Route author="ncziztk" example="/odaily/user/2147486902" path="/odaily/user/:id" paramsDesc={['用户 id,可在用户页地址栏中找到']} />
-
-### 活动 {#odaily-xing-qiu-ri-bao-huo-dong}
-
-<Route author="ncziztk" example="/odaily/activity" path="/odaily/activity" />
-
-## Onet {#onet}
-
-### News {#onet-news}
-
-<Route author="Vegann" example="/onet/news" path="/onet/news" radar="1">
- This route provides a better reading experience (full text articles) over the official one for `https://wiadomosci.onet.pl`.
-</Route>
-
-## OpenAI {#openai}
-
-### Blog {#openai-blog}
-
-<Route author="ncziztk StevenRCE0" example="/openai/blog" path="/openai/blog/:tag?" paramsDesc={['Tag, see below, All by default']}>
- | All | Announcements | Events | Safety & Alignment | Community | Product | Culture & Careers | Milestones | Research |
- | --- | ------------- | ------ | ------------------ | --------- | ------- | ------------------- | ---------- | -------- |
- | | announcements | events | safety-alignment | community | product | culture-and-careers | milestones | research |
-</Route>
-
-### ChatGPT - Release Notes {#openai-chatgpt-release-notes}
-
-<Route author="ETiV" example="/openai/chatgpt/release-notes" path="/openai/chatgpt/release-notes" />
-
-### Research {#openai-research}
-
-<Route author="yuguorui" example="/openai/research" path="/openai/research" />
-
-## PANews {#panews}
-
-### 深度 {#panews-shen-du}
-
-<Route author="nczitzk" example="/panewslab" path="/panewslab/:category?" paramsDesc={['分类,见下表,默认为精选']}>
- | 精选 | 链游 | 元宇宙 | NFT | DeFi | 监管 | 央行数字货币 | 波卡 | Layer 2 | DAO | 融资 | 活动 |
- | ---- | ---- | ------ | --- | ---- | ---- | ------------ | ---- | ------- | --- | ---- | ---- |
-</Route>
-
-### 快讯 {#panews-kuai-xun}
-
-<Route author="nczitzk" example="/panewslab/news" path="/panewslab/news" />
-
-### 专栏 {#panews-zhuan-lan}
-
-<Route author="nczitzk" example="/panewslab/author/166" path="/panewslab/author/:id" paramsDesc={['专栏 id,可在地址栏 URL 中找到']} />
-
-### 专题 {#panews-zhuan-ti}
-
-<Route author="nczitzk" example="/panewslab/topic/1629365774078402" path="/panewslab/topic/:id" paramsDesc={['专题 id,可在地址栏 URL 中找到']} />
-
-## PeoPo 公民新聞 {#peopo-gong-min-xin-wen}
-
-### 新聞分類 {#peopo-gong-min-xin-wen-xin-wen-fen-lei}
-
-<Route author="TonyRL" example="/peopo/topic/159" path="/peopo/topic/:topicId?" paramsDesc={['分類 ID,見下表,默認為社會關懷']} radar="1">
- | 分類 | ID |
- | -------- | --- |
- | 社會關懷 | 159 |
- | 生態環保 | 113 |
- | 文化古蹟 | 143 |
- | 社區改造 | 160 |
- | 教育學習 | 161 |
- | 農業 | 163 |
- | 生活休閒 | 162 |
- | 媒體觀察 | 164 |
- | 運動科技 | 165 |
- | 政治經濟 | 166 |
- | 北台灣 | 223 |
- | 中台灣 | 224 |
- | 南台灣 | 225 |
- | 東台灣 | 226 |
- | 校園中心 | 167 |
- | 原住民族 | 227 |
- | 天然災害 | 168 |
-</Route>
-
-## Phoronix {#phoronix}
-
-### News & Reviews {#phoronix-news-reviews}
-
-<Route author="oppliate Rongronggg9" example="/phoronix/linux/KDE" path="/phoronix/:category?/:topic?" paramsDesc={['Category', 'Topic. You may find available parameters from their navigator links. E.g. to subscribe to `https://www.phoronix.com/reviews/Operating+Systems`, fill in the path `/phoronix/reviews/Operating+Systems`']} radar="1" />
-
-## PMCAFF {#pmcaff}
-
-### 今日推荐 / 精选 {#pmcaff-jin-ri-tui-jian-jing-xuan}
-
-<Route author="Jeason0228" example="/pmcaff/list/2" path="/pmcaff/list/:typeid" paramsDesc={['分类 id,1=今天推荐,2=精选']} />
-
-### 社区 {#pmcaff-she-qu}
-
-<Route author="WenryXu" example="/pmcaff/feed/1" path="/pmcaff/feed/:typeid" paramsDesc={['分类 id']} />
-
-| 发现 | 待回答 | 最热 | 问答专场 | 投稿 | 深度 | 专栏 |
-| ---- | ------ | ---- | -------- | ---- | ---- | ---- |
-| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
-
-## Quanta Magazine {#quanta-magazine}
-
-### Archive {#quanta-magazine-archive}
-
-<Route author="emdoe" example="/quantamagazine/archive" path="/quantamagazine/archive">
- Compared to the official one, this feed:
-
- 1. supports LaTeX formulas, and
- 2. displays all pictures in the article (except those print-hidden multimedia materials).
-</Route>
-
-## QuestMobile {#questmobile}
-
-### 行业研究报告 {#questmobile-hang-ye-yan-jiu-bao-gao}
-
-<Route author="nczitzk" example="/questmobile/report" path="/questmobile/report/:industry?/:label?" paramsDesc={['行业,见下表,默认为 `-1`,即全部行业', '标签,见下表,默认为 `-1`,即全部标签']} radar="1">
- :::tip
- 若订阅行业 [互联网行业](https://www.questmobile.com.cn/research/reports/1/-1),网址为 `https://www.questmobile.com.cn/research/reports/1/-1`
- 参数 industry 为 `互联网行业` 或 `1`,此时路由为 [`/questmobile/report/互联网行业`](https://rsshub.app/questmobile/report/互联网行业) 或 [`/questmobile/report/1/-1`](https://rsshub.app/questmobile/report/1/-1)。
-
- 若订阅标签 [榜单](https://www.questmobile.com.cn/research/reports/-1/11),网址为 `https://www.questmobile.com.cn/research/reports/-1/11`
- 参数 label 为 `榜单` 或 `11`,此时路由为 [`/questmobile/report/榜单`](https://rsshub.app/questmobile/report/榜单) 或 [`/questmobile/report/-1/11`](https://rsshub.app/questmobile/report/-1/11)。
-
- 若订阅行业和标签 [品牌领域 - 互联网经济](https://www.questmobile.com.cn/research/reports/2/1),网址为 `https://www.questmobile.com.cn/research/reports/2/1`
- 参数 industry 为 `品牌领域` 或 `2`,参数 label 为 `互联网经济` 或 `1`,此时路由为 [`/questmobile/report/品牌领域/互联网经济`](https://rsshub.app/questmobile/report/品牌领域/互联网经济) 或 [`/questmobile/report/2/1`](https://rsshub.app/questmobile/report/2/1),甚至 [`/questmobile/report/品牌领域/1`](https://rsshub.app/questmobile/report/品牌领域/1)。
- :::
-
- <details>
- <summary>全部行业和标签</summary>
-
- #### 行业
-
- | 互联网行业 | 移动社交 | 移动视频 | 移动购物 | 系统工具 |
- | ---------- | -------- | -------- | -------- | -------- |
- | 1 | 1001 | 1002 | 1003 | 1004 |
-
- | 出行服务 | 金融理财 | 生活服务 | 移动音乐 | 新闻资讯 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1005 | 1006 | 1007 | 1008 | 1009 |
-
- | 办公商务 | 手机游戏 | 实用工具 | 数字阅读 | 教育学习 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1010 | 1011 | 1012 | 1013 | 1014 |
-
- | 汽车服务 | 拍摄美化 | 智能设备 | 旅游服务 | 健康美容 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1015 | 1016 | 1017 | 1018 | 1020 |
-
- | 育儿母婴 | 主题美化 | 医疗服务 | 品牌领域 | 美妆品牌 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1022 | 1023 | 1024 | 2 | 2001 |
-
- | 母婴品牌 | 家电品牌 | 食品饮料品牌 | 汽车品牌 | 服饰箱包品牌 |
- | -------- | -------- | ------------ | -------- | ------------ |
- | 2002 | 2003 | 2004 | 2005 | 2006 |
-
- #### 标签
-
- | 互联网经济 | 圈层经济 | 粉丝经济 | 银发经济 | 儿童经济 |
- | ---------- | -------- | -------- | -------- | -------- |
- | 1 | 1001 | 1002 | 1004 | 1005 |
-
- | 萌宠经济 | 她经济 | 他经济 | 泛娱乐经济 | 下沉市场经济 |
- | -------- | ------ | ------ | ---------- | ------------ |
- | 1007 | 1009 | 1010 | 1011 | 1012 |
-
- | 内容经济 | 订阅经济 | 会员经济 | 居家经济 | 到家经济 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1013 | 1014 | 1015 | 1016 | 1017 |
-
- | 颜值经济 | 闲置经济 | 旅游经济 | 人群洞察 | 00 后 |
- | -------- | -------- | ------------------- | -------- | ----- |
- | 1018 | 1020 | 1622842051677753346 | 2 | 2002 |
-
- | Z 世代 | 银发族 | 宝妈宝爸 | 萌宠人群 | 运动达人 |
- | ------ | ------ | -------- | -------- | -------- |
- | 2003 | 2004 | 2005 | 2007 | 2008 |
-
- | 女性消费 | 男性消费 | 游戏人群 | 二次元 | 新中产 |
- | -------- | -------- | -------- | ------ | ------ |
- | 2009 | 2010 | 2012 | 2013 | 2014 |
-
- | 下沉市场用户 | 大学生 | 数字化营销 | 广告效果 | 品牌营销 |
- | ------------ | ------ | ---------- | -------- | -------- |
- | 2018 | 2022 | 3 | 3001 | 3002 |
-
- | 全域营销 | 私域流量 | 新媒体营销 | KOL 生态 | 内容营销 |
- | -------- | -------- | ---------- | -------- | -------- |
- | 3003 | 3004 | 3005 | 3006 | 3008 |
-
- | 直播电商 | 短视频带货 | 娱乐营销 | 营销热点 | 双 11 电商大促 |
- | -------- | ---------- | ------------------- | -------- | -------------- |
- | 3009 | 3010 | 1630464311158738945 | 4 | 4001 |
-
- | 618 电商大促 | 春节营销 | 五一假期营销 | 热点事件盘点 | 消费热点 |
- | ------------ | -------- | ------------ | ------------ | -------- |
- | 4002 | 4003 | 4004 | 4007 | 5 |
-
- | 时尚品牌 | 连锁餐饮 | 新式茶饮 | 智能家电 | 国潮品牌 |
- | -------- | -------- | -------- | -------- | -------- |
- | 5001 | 5002 | 5003 | 5004 | 5007 |
-
- | 白酒品牌 | 精益运营 | 媒介策略 | 用户争夺 | 精细化运营 |
- | ------------------- | -------- | -------- | -------- | ---------- |
- | 1622841828310093825 | 6 | 6001 | 6002 | 6003 |
-
- | 用户分层 | 增长黑马 | 社交裂变 | 新兴领域 | 新能源汽车 |
- | -------- | -------- | -------- | -------- | ---------- |
- | 6004 | 6005 | 6007 | 7 | 7001 |
-
- | 智能汽车 | 新消费 | AIoT | 产业互联网 | AIGC |
- | -------- | ------ | ---- | ---------- | ------------------- |
- | 7002 | 7003 | 7004 | 7005 | 1645677998450511873 |
-
- | OTT 应用 | 智能电视 | 全景数据 | 全景生态 | 微信小程序 |
- | ------------------- | ------------------- | -------- | -------- | ---------- |
- | 1676063510499528705 | 1676063630293045249 | 8 | 8001 | 8002 |
-
- | 支付宝小程序 | 百度智能小程序 | 企业流量 | 抖音小程序 | 手机终端 |
- | ------------ | -------------- | ------------------- | ------------------- | -------- |
- | 8003 | 8004 | 1671052842096496642 | 1676063017220018177 | 9 |
-
- | 智能终端 | 国产终端 | 5G 手机 | 盘点 | 季度报告 |
- | -------- | -------- | ------- | ---- | -------- |
- | 9001 | 9002 | 9003 | 10 | 10001 |
- </details>
-</Route>
-
-## Radio-Canada.ca {#radio-canada-ca}
-
-### Latest News {#radio-canada-ca-latest-news}
-
-<Route author="nczitzk" example="/radio-canada/latest" path="/radio-canada/latest/:language?" paramsDesc={['Language, see below, English by default']}>
- | Français | English | Español | 简体中文 | 繁體中文 | العربية | ਪੰਜਾਬੀ | Tagalog |
- | -------- | ------- | ------- | -------- | -------- | ------- | --- | ------- |
- | fr | en | es | zh-hans | zh-hant | ar | pa | tl |
-</Route>
-
-## Readhub {#readhub}
-
-### 分类 {#readhub-fen-lei}
-
-<Route author="WhiteWorld nczitzk Fatpandac" example="/readhub" path="/readhub/:category?" paramsDesc={['分类,见下表,默认为热门话题']} radar="1">
- | 热门话题 | 科技动态 | 医疗产业 | 财经快讯 |
- | -------- | -------- | -------- | ------------------ |
- | | news | medical | financial\_express |
-</Route>
-
-### 每日早报 {#readhub-mei-ri-zao-bao}
-
-<Route author="nczitzk" example="/readhub/daily" path="/readhub/daily" radar="1" />
-
-## Sakamichi Series 坂道系列官网资讯 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun}
-
-### Nogizaka46 News 乃木坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-nogizaka46-news-nai-mu-ban-46-xin-wen}
-
-<Route author="crispgm Fatpandac" example="/nogizaka46/news" path="/nogizaka46/news" />
-
-### Nogizaka46 Blog 乃木坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-nogizaka46-blog-nai-mu-ban-46-bo-ke}
-
-<Route author="Kasper4649 akashigakki" example="/nogizaka46/blog" path="/nogizaka46/blog/:id?" paramsDesc={['Member ID, see below, `all` by default']}>
- Member ID
-
- | Member ID | Name |
- | --------- | --------------------- |
- | 55401 | 岡本 姫奈 |
- | 55400 | 川﨑 桜 |
- | 55397 | 池田 瑛紗 |
- | 55396 | 五百城 茉央 |
- | 55395 | 中西 アルノ |
- | 55394 | 奥田 いろは |
- | 55393 | 冨里 奈央 |
- | 55392 | 小川 彩 |
- | 55391 | 菅原 咲月 |
- | 55390 | 一ノ瀬 美空 |
- | 55389 | 井上 和 |
- | 55387 | 弓木 奈於 |
- | 55386 | 松尾 美佑 |
- | 55385 | 林 瑠奈 |
- | 55384 | 佐藤 璃果 |
- | 55383 | 黒見 明香 |
- | 48014 | 清宮 レイ |
- | 48012 | 北川 悠理 |
- | 48010 | 金川 紗耶 |
- | 48019 | 矢久保 美緒 |
- | 48018 | 早川 聖来 |
- | 48009 | 掛橋 沙耶香 |
- | 48008 | 賀喜 遥香 |
- | 48017 | 筒井 あやめ |
- | 48015 | 田村 真佑 |
- | 48013 | 柴田 柚菜 |
- | 48006 | 遠藤 さくら |
- | 36760 | 与田 祐希 |
- | 36759 | 吉田 綾乃クリスティー |
- | 36758 | 山下 美月 |
- | 36757 | 向井 葉月 |
- | 36756 | 中村 麗乃 |
- | 36755 | 佐藤 楓 |
- | 36754 | 阪口 珠美 |
- | 36753 | 久保 史緒里 |
- | 36752 | 大園 桃子 |
- | 36751 | 梅澤 美波 |
- | 36750 | 岩本 蓮加 |
- | 36749 | 伊藤 理々杏 |
- | 264 | 齋藤 飛鳥 |
-</Route>
-
-### Keyakizaka46 News 欅坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-keyakizaka46-news-ju-ban-46-xin-wen}
-
-<Route author="crispgm" example="/keyakizaka46/news" path="/keyakizaka46/news" />
-
-### Keyakizaka46 Blog 欅坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-keyakizaka46-blog-ju-ban-46-bo-ke}
-
-<Route author="nwindz" example="/keyakizaka46/blog" path="/keyakizaka46/blog" />
-
-### Sakurazaka46 News 櫻坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-sakurazaka46-news-ying-ban-46-xin-wen}
-
-<Route author="nczitzk" example="/sakurazaka46/news" path="/sakurazaka46/news" />
-
-### Sakurazaka46 Blog 櫻坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-sakurazaka46-blog-ying-ban-46-bo-ke}
-
-<Route author="victor21813 nczitzk akashigakki" example="/sakurazaka46/blog" path="/sakurazaka46/blog/:id?/:page?" paramsDesc={['Member ID, see below, `all` by default', 'Page, `0` by default']}>
- Member ID
-
- | Member ID | Name |
- | --------- | ------------ |
- | 2000 | 三期生リレー |
- | 69 | 山下 瞳月 |
- | 68 | 村山 美羽 |
- | 67 | 村井 優 |
- | 66 | 向井 純葉 |
- | 65 | 的野 美青 |
- | 64 | 中嶋 優月 |
- | 63 | 谷口 愛季 |
- | 62 | 小島 凪紗 |
- | 61 | 小田倉 麗奈 |
- | 60 | 遠藤 理子 |
- | 59 | 石森 璃花 |
- | 58 | 守屋 麗奈 |
- | 57 | 増本 綺良 |
- | 56 | 幸阪 茉里乃 |
- | 55 | 大沼 晶保 |
- | 54 | 大園 玲 |
- | 53 | 遠藤 光莉 |
- | 51 | 山﨑 天 |
- | 50 | 森田 ひかる |
- | 48 | 松田 里奈 |
- | 47 | 藤吉 夏鈴 |
- | 46 | 田村 保乃 |
- | 45 | 武元 唯衣 |
- | 44 | 関 有美子 |
- | 43 | 井上 梨名 |
- | 15 | 原田 葵 |
- | 14 | 土生 瑞穂 |
- | 11 | 菅井 友香 |
- | 08 | 齋藤 冬優花 |
- | 07 | 小林 由依 |
- | 06 | 小池 美波 |
- | 04 | 尾関 梨香 |
- | 03 | 上村 莉菜 |
-</Route>
-
-### Hinatazaka46 News 日向坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-hinatazaka46-news-ri-xiang-ban-46-xin-wen}
-
-<Route author="crispgm akashigakki" example="/hinatazaka46/news" path="/hinatazaka46/news" />
-
-### Hinatazaka46 Blog 日向坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-hinatazaka46-blog-ri-xiang-ban-46-bo-ke}
-
-<Route author="nwindz akashigakki" example="/hinatazaka46/blog" path="/hinatazaka46/blog/:id?/:page?" paramsDesc={['Member ID, see below, `all` by default', 'Page, `0` by default']}>
- Member ID
-
- | Member ID | Name |
- | --------- | ------------ |
- | 2000 | 四期生リレー |
- | 36 | 渡辺 莉奈 |
- | 35 | 山下 葉留花 |
- | 34 | 宮地 すみれ |
- | 33 | 藤嶌 果歩 |
- | 32 | 平岡 海月 |
- | 31 | 平尾 帆夏 |
- | 30 | 竹内 希来里 |
- | 29 | 正源司 陽子 |
- | 28 | 清水 理央 |
- | 27 | 小西 夏菜実 |
- | 26 | 岸 帆夏 |
- | 25 | 石塚 瑶季 |
- | 24 | 山口 陽世 |
- | 23 | 森本 茉莉 |
- | 22 | 髙橋 未来虹 |
- | 21 | 上村 ひなの |
- | 18 | 松田 好花 |
- | 17 | 濱岸 ひより |
- | 16 | 丹生 明里 |
- | 15 | 富田 鈴花 |
- | 14 | 小坂 菜緒 |
- | 13 | 河田 陽菜 |
- | 12 | 金村 美玖 |
- | 11 | 東村 芽依 |
- | 10 | 高本 彩花 |
- | 9 | 高瀬 愛奈 |
- | 8 | 佐々木 美玲 |
- | 7 | 佐々木 久美 |
- | 6 | 齊藤 京子 |
- | 5 | 加藤 史帆 |
- | 4 | 影山 優佳 |
- | 2 | 潮 紗理菜 |
-</Route>
-
-## Samsung {#samsung}
-
-### Research Blog {#samsung-research-blog}
-
-<Route author="nczitzk" example="/samsung/research/blog" path="/samsung/research/blog" />
-
-## Semiconductor Industry Association {#semiconductor-industry-association}
-
-### Latest News {#semiconductor-industry-association-latest-news}
-
-<Route author="nczitzk" example="/semiconductors/latest-news" path="/semiconductors/latest-news" />
-
-## Sensor Tower {#sensor-tower}
-
-### Blog {#sensor-tower-blog}
-
-<Route author="nczitzk" example="/sensortower/blog" path="/sensortower/blog/:language?" paramsDesc={['Language, see below, English by default']}>
- | English | Chinese | Japanese | Korean |
- | ------- | ------- | -------- | ------ |
- | | zh-CN | ja | ko |
-</Route>
-
-## Simons Foundation {#simons-foundation}
-
-### Articles {#simons-foundation-articles}
-
-<Route author="emdoe" example="/simonsfoundation/articles" path="/simonsfoundation/articles" />
-
-### What We’re Reading {#simons-foundation-what-we-re-reading}
-
-<Route author="emdoe" example="/simonsfoundation/recommend" path="/simonsfoundation/recommend" />
-
-## Sky Sports {#sky-sports}
-
-### News {#sky-sports-news}
-
-<Route author="nczitzk" example="/skysports/news/ac-milan" path="/skysports/news/:team" paramsDesc={['Team id, can be found in URL to the team page']} />
-
-## SocialBeta {#socialbeta}
-
-### 首页 {#socialbeta-shou-ye}
-
-<Route author="nczitzk" example="/socialbeta/home" path="/socialbeta/home" />
-
-## SupChina {#supchina}
-
-### Feed {#supchina-feed}
-
-<Route author="nczitzk" example="/supchina" path="/supchina" />
-
-### Podcasts {#supchina-podcasts}
-
-<Route author="nczitzk" example="/supchina/podcasts" path="/supchina/podcasts" />
-
-## swissinfo {#swissinfo}
-
-### Category {#swissinfo-category}
-
-<Route author="nczitzk" example="/swissinfo/eng/latest-news" path="/swissinfo/:language?/:category?" paramsDesc={['Language, eng by default', 'Category, Latest News by default']} />
-
-## TANC 艺术新闻 {#tanc-yi-shu-xin-wen}
-
-### 分类 {#tanc-yi-shu-xin-wen-fen-lei}
-
-<Route author="nczitzk" example="/tanchinese" path="/tanchinese/:category?" paramsDesc={['分类,见下表,默认为 INDEX 首页']}>
- | INDEX 首页 | ENGLISH 英文版 | NEWS 新闻 | MUSEUM 博物馆 | EXHIBITIONS 展览 |
- | ---------- | -------------- | --------- | ------------- | ---------------- |
- | | english | news | museum | exhibitions |
-
- | COMMENTS 评论 | FEATURE 特写 | INTERVIEW 专访 | VIDEO 影像之选 | ART MARKET 艺术市场 |
- | ------------- | ------------ | -------------- | -------------- | ------------------- |
- | comments | feature | interview | video | art-market |
-</Route>
-
-## TechCrunch {#techcrunch}
-
-### News {#techcrunch-news}
-
-<Route author="EthanWng97" example="/techcrunch/news" path="/techcrunch/news" />
-
-## TechPowerUp {#techpowerup}
-
-### Latest Content {#techpowerup-latest-content}
-
-<Route author="TonyRL" example="/techpowerup" path="/techpowerup" radar="1" />
-
-### Reviews {#techpowerup-reviews}
-
-<Route author="TonyRL" example="/techpowerup/review/4090" path="/techpowerup/review/:keyword?" paramsDesc={['Search Keyword']} radar="1" />
-
-## The Brain {#the-brain}
-
-### Blog {#the-brain-blog}
-
-<Route author="nczitzk" example="/thebrain/blog" path="/thebrain/blog/:category?" paramsDesc={['Category, see below, Blog by default']}>
- | Blog | Recorded Events | Big Thinkers |
- | ---- | --------------- | ------------ |
- | blog | recorded-events | big-thinkers |
-</Route>
-
-## The News Lens 關鍵評論 {#the-news-lens-guan-jian-ping-lun}
-
-### 最新 {#the-news-lens-guan-jian-ping-lun-zui-xin}
-
-<Route author="nczitzk" example="/thenewslens/latest-article" path="/thenewslens/latest-article/:sort?" paramsDesc={['排序方式,见下表,可在对应排序页 URL 中找到']}>
- | 最新文章 | 最多觀看 | 最多分享 | 本日 | 本週 | 本月 | 今年 | 去年 | 有史以來 |
- | -------- | -------- | -------- | --------- | -------- | --------- | -------- | ------------ | ----------- |
- | | hot | social | hot/today | hot/week | hot/month | hot/year | hot/lastYear | hot/history |
-</Route>
-
-### 新闻 {#the-news-lens-guan-jian-ping-lun-xin-wen}
-
-<Route author="nczitzk" example="/thenewslens/news" path="/thenewslens/news/:sort?" paramsDesc={['排序方式,见下表,可在对应排序页 URL 中找到']}>
- | 最新文章 | 最多觀看 | 最多分享 |
- | -------- | -------- | -------- |
- | | hot | social |
-</Route>
-
-### 作者 {#the-news-lens-guan-jian-ping-lun-zuo-zhe}
-
-<Route author="nczitzk" example="/thenewslens/author/BBC" path="/thenewslens/author/:id/:sort?" paramsDesc={['作者 id,可在对应作者页 URL 中找到', '排序方式,同上表,可在对应排序页 URL 中找到']} />
-
-### 分类 {#the-news-lens-guan-jian-ping-lun-fen-lei}
-
-<Route author="nczitzk" example="/thenewslens/category/politics" path="/thenewslens/category/:id/:sort?" paramsDesc={['分类 id,可在对应分类页 URL 中找到', '排序方式,同上表,可在对应排序页 URL 中找到']} />
-
-### 标签 {#the-news-lens-guan-jian-ping-lun-biao-qian}
-
-<Route author="nczitzk" example="/thenewslens/tag/中國" path="/thenewslens/tag/:id/:sort?" paramsDesc={['标签 id,可在对应标签页 URL 中找到', '排序方式,同上表,可在对应排序页 URL 中找到']} />
-
-### 频道 {#the-news-lens-guan-jian-ping-lun-pin-dao}
-
-<Route author="nczitzk" example="/thenewslens/channel/hk" path="/thenewslens/channel/:id/:sort?" paramsDesc={['标签 id,可在对应标签页 URL 中找到', '排序方式,同上表,可在对应排序页 URL 中找到']} />
-
-### 评论 {#the-news-lens-guan-jian-ping-lun-ping-lun}
-
-<Route author="nczitzk" example="/thenewslens/review" path="/thenewslens/review/:sort?" paramsDesc={['排序方式,同上表,可在对应排序页 URL 中找到']} />
-
-## The Verge {#the-verge}
-
-### The Verge {#the-verge-the-verge}
-
-<Route author="HenryQW vbali" example="/theverge" path="/theverge/:hub?" paramsDesc={['Hub, see below, All Posts by default']}>
- | Hub | Hub name |
- | ----------- | ------------------- |
- | | All Posts |
- | android | Android |
- | apple | Apple |
- | apps | Apps & Software |
- | blackberry | BlackBerry |
- | culture | Culture |
- | gaming | Gaming |
- | hd | HD & Home |
- | microsoft | Microsoft |
- | photography | Photography & Video |
- | policy | Policy & Law |
- | web | Web & Social |
-
- Provides a better reading experience (full text articles) over the official one.
-</Route>
-
-## ThoughtCo {#thoughtco}
-
-### Category {#thoughtco-category}
-
-<Route author="nczitzk" example="/thoughtco" path="/thoughtco/:category?" paramsDesc={['Category id, see below']} radar="1">
- #### Science, Tech, Math
-
- | category | id |
- | ---------------- | -------------------------- |
- | Science | science-4132464 |
- | Math | math-4133545 |
- | Social Sciences | social-sciences-4133522 |
- | Computer Science | computer-science-4133486 |
- | Animals & Nature | animals-and-nature-4133421 |
-
- #### Humanities
-
- | category | id |
- | ----------------- | --------------------------- |
- | History & Culture | history-and-culture-4133356 |
- | Visual Arts | visual-arts-4132957 |
- | Literature | literature-4133251 |
- | English | english-4688281 |
- | Geography | geography-4133035 |
- | Philosophy | philosophy-4133025 |
- | Issues | issues-4133022 |
-
- #### Languages
-
- | category | id |
- | ---------------------------- | ---------------- |
- | English as a Second Language | esl-4133095 |
- | Spanish | spanish-4133085 |
- | French | french-4133079 |
- | German | german-4133073 |
- | Italian | italian-4133069 |
- | Japanese | japanese-4133062 |
- | Mandarin | mandarin-4133057 |
- | Russian | russian-4175265 |
-
- #### Resources
-
- | category | id |
- | ---------------------- | ---------------------------- |
- | For Students & Parents | for-students-parents-4132588 |
- | For Educators | for-educators-4132509 |
- | For Adult Learners | for-adult-learners-4132469 |
-
- <details>
- <summary>More categories</summary>
-
- #### Science
-
- | category | id |
- | ----------------- | --------------------------- |
- | Chemistry | chemistry-4133594 |
- | Biology | biology-4133580 |
- | Physics | physics-4133571 |
- | Geology | geology-4133564 |
- | Astronomy | astronomy-4133558 |
- | Weather & Climate | weather-and-climate-4133550 |
-
- #### Math
-
- | category | id |
- | --------------------- | ------------------------------- |
- | Math Tutorials | math-tutorials-4133543 |
- | Geometry | geometry-4133540 |
- | Arithmetic | arithmetic-4133542 |
- | Pre Algebra & Algebra | pre-algebra-and-algebra-4133541 |
- | Statistics | statistics-4133539 |
- | Exponential Decay | exponential-decay-4133528 |
- | Worksheets By Grade | worksheets-by-grade-4133526 |
- | Resources | math-resources-4133523 |
-
- #### Social Sciences
-
- | category | id |
- | ----------- | ------------------- |
- | Psychology | psychology-4160512 |
- | Sociology | sociology-4133515 |
- | Archaeology | archaeology-4133504 |
- | Economics | economics-4133521 |
- | Ergonomics | ergonomics-4133492 |
-
- #### Computer Science
-
- | category | id |
- | ---------------------- | -------------------------------- |
- | PHP Programming | php-4133485 |
- | Perl | perl-4133481 |
- | Python | python-4133477 |
- | Java Programming | java-programming-4133478 |
- | Javascript Programming | javascript-programming-4133476 |
- | Delphi Programming | delphi-programming-4133475 |
- | C & C++ Programming | c-and-c-plus-programming-4133470 |
- | Ruby Programming | ruby-programming-4133469 |
- | Visual Basic | visual-basic-4133468 |
-
- #### Animals and Nature
-
- | category | id |
- | ---------------- | ------------------------ |
- | Amphibians | amphibians-4133418 |
- | Birds | birds-4133416 |
- | Habitat Profiles | habitat-profiles-4133412 |
- | Mammals | mammals-4133411 |
- | Reptiles | reptiles-4133408 |
- | Insects | insects-4133406 |
- | Marine Life | marine-life-4133393 |
- | Forestry | forestry-4133386 |
- | Dinosaurs | dinosaurs-4133376 |
- | Evolution | evolution-4133366 |
-
- #### History and Culture
-
- | category | id |
- | ------------------------------ | ---------------------------------------- |
- | American History | american-history-4133354 |
- | African American History | african-american-history-4133344 |
- | African History | african-history-4133338 |
- | Ancient History and Culture | ancient-history-4133336 |
- | Asian History | asian-history-4133325 |
- | European History | european-history-4133316 |
- | Genealogy | genealogy-4133308 |
- | Inventions | inventions-4133303 |
- | Latin American History | latin-american-history-4133296 |
- | Medieval & Renaissance History | medieval-and-renaissance-history-4133289 |
- | Military History | military-history-4133285 |
- | The 20th Century | 20th-century-4133273 |
- | Women's History | womens-history-4133260 |
-
- #### Visual Arts
-
- | category | id |
- | ------------- | -------------------- |
- | Art & Artists | art-4132956 |
- | Architecture | architecture-4132953 |
-
- #### Literature
-
- | category | id |
- | ------------------ | -------------------------- |
- | Best Sellers | best-sellers-4133250 |
- | Classic Literature | classic-literature-4133245 |
- | Plays & Drama | plays-and-drama-4133239 |
- | Poetry | poetry-4133232 |
- | Quotations | quotations-4133229 |
- | Shakespeare | shakespeare-4133223 |
- | Short Stories | short-stories-4133217 |
- | Children's Books | childrens-books-4133216 |
-
- #### English
-
- | category | id |
- | --------------- | ----------------------- |
- | English Grammar | english-grammar-4133049 |
- | Writing | writing-4133048 |
-
- #### Geography
-
- | category | id |
- | ------------------------ | ---------------------------------- |
- | Basics | geography-basics-4133034 |
- | Physical Geography | physical-geography-4133032 |
- | Political Geography | political-geography-4133033 |
- | Population | population-4133031 |
- | Country Information | country-information-4133030 |
- | Key Figures & Milestones | key-figures-and-milestones-4133029 |
- | Maps | maps-4133027 |
- | Urban Geography | urban-geography-4133026 |
-
- #### Philosophy
-
- | category | id |
- | ------------------------------ | ---------------------------------------- |
- | Philosophical Theories & Ideas | philosophical-theories-and-ideas-4133024 |
- | Major Philosophers | major-philosophers-4133023 |
-
- #### Issues
-
- | category | id |
- | --------------------------------- | -------------------------------- |
- | The U. S. Government | us-government-4133021 |
- | U.S. Foreign Policy | us-foreign-policy-4133010 |
- | U.S. Liberal Politics | us-liberal-politics-4133009 |
- | U.S. Conservative Politics | us-conservative-politics-4133006 |
- | Women's Issues | womens-issues-4133002 |
- | Civil Liberties | civil-liberties-4132996 |
- | The Middle East | middle-east-4132989 |
- | Race Relations | race-relations-4132982 |
- | Immigration | immigration-4132977 |
- | Crime & Punishment | crime-and-punishment-4132972 |
- | Canadian Government | canadian-government-4132959 |
- | Understanding Types of Government | types-of-government-5179107 |
-
- #### English as a Second Language
-
- | category | id |
- | ---------------------------- | ------------------------------------------ |
- | Pronunciation & Conversation | esl-pronunciation-and-conversation-4133093 |
- | Vocabulary | esl-vocabulary-4133092 |
- | Writing Skills | esl-writing-skills-4133091 |
- | Reading Comprehension | esl-reading-comprehension-4133090 |
- | Grammar | esl-grammar-4133089 |
- | Business English | esl-business-english-4133088 |
- | Resources for Teachers | resources-for-esl-teachers-4133087 |
-
- #### Spanish
-
- | category | id |
- | ----------------- | ----------------------------------- |
- | History & Culture | spanish-history-and-culture-4133084 |
- | Pronunciation | spanish-pronunciation-4133083 |
- | Vocabulary | spanish-vocabulary-4133082 |
- | Writing Skills | spanish-writing-skills-4133081 |
- | Grammar | spanish-grammar-4133080 |
-
- #### French
-
- | category | id |
- | ---------------------------- | -------------------------------------------- |
- | Pronunciation & Conversation | french-pronunciation-4133075 |
- | Vocabulary | french-vocabulary-4133076 |
- | Grammar | french-grammar-4133074 |
- | Resources For Teachers | french-resources-for-french-teachers-4133077 |
-
- #### German
-
- | category | id |
- | ---------------------------- | ---------------------------------- |
- | History & Culture | german-history-and-culture-4133071 |
- | Pronunciation & Conversation | german-pronunciation-4133070 |
- | Vocabulary | german-vocabulary-4133068 |
- | Grammar | german-grammar-4133067 |
-
- #### Italian
-
- | category | id |
- | ----------------- | ----------------------------------- |
- | History & Culture | italian-history-and-culture-4133065 |
- | Vocabulary | italian-vocabulary-4133061 |
- | Grammar | italian-grammar-4133063 |
-
- #### Japanese
-
- | category | id |
- | ----------------------------- | ------------------------------------ |
- | History & Culture | japanese-history-and-culture-4133058 |
- | Essential Japanese Vocabulary | japanese-vocabulary-4133060 |
- | Japanese Grammar | japanese-grammar-4133056 |
-
- #### Mandarin
-
- | category | id |
- | -------------------------------- | ---------------------------------------- |
- | Mandarin History and Culture | mandarin-history-and-culture-4133054 |
- | Pronunciation | mandarin-pronunciation-4133053 |
- | Vocabulary | mandarin-vocabulary-4133052 |
- | Understanding Chinese Characters | understanding-chinese-characters-4133051 |
-
- #### Russian
-
- | category | id |
- | -------- | --------------- |
- | Russian | russian-4175265 |
-
- #### For Students & Parents
-
- | category | id |
- | ------------------ | -------------------------- |
- | Homework Help | homework-help-4132587 |
- | Private School | private-school-4132514 |
- | Test Prep | test-prep-4132578 |
- | College Admissions | college-admissions-4132565 |
- | College Life | college-life-4132553 |
- | Graduate School | graduate-school-4132543 |
- | Business School | business-school-4132536 |
- | Law School | law-school-4132527 |
- | Distance Learning | distance-learning-4132521 |
-
- #### For Educators
-
- | category | id |
- | -------------------- | ----------------------------- |
- | Becoming A Teacher | becoming-a-teacher-4132510 |
- | Assessments & Tests | assessments-and-tests-4132508 |
- | Elementary Education | elementary-education-4132507 |
- | Secondary Education | secondary-education-4132504 |
- | Special Education | special-education-4132499 |
- | Teaching | teaching-4132488 |
- | Homeschooling | homeschooling-4132480 |
-
- #### For Adult Learners
-
- | category | id |
- | ----------------------- | ------------------------------- |
- | Tips For Adult Students | tips-for-adult-students-4132468 |
- | Getting Your Ged | getting-your-ged-4132466 |
- </details>
-</Route>
-
-## Topbook {#topbook}
-
-### Overview {#topbook-overview}
-
-<Route author="nczitzk" example="/topbook/overview/24" path="/topbook/overview/:id?" paramsDesc={['id,可在对应页面 URL 中找到,默认为今天看什么']} />
-
-### 今天看什么 {#topbook-jin-tian-kan-shen-me}
-
-<Route author="nczitzk" example="/topbook/today" path="/topbook/today" />
-
-## TOPYS {#topys}
-
-### 关键字 {#topys-guan-jian-zi}
-
-<Route author="nczitzk" example="/topys" path="/topys/:keyword?" paramsDesc={['关键字,可在对应结果页的 URL 中找到']}>
- | 创意 | 设计 | 商业 | 艺术 | 文化 | 科技 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
-</Route>
-
-## Tribal Football {#tribal-football}
-
-### Latest News {#tribal-football-latest-news}
-
-<Route author="Rongronggg9" example="/tribalfootball" path="/tribalfootball" />
-
-## UNTAG {#untag}
-
-### 时间线 {#untag-shi-jian-xian}
-
-<Route author="nczitzk" example="/utgd/timeline" path="/utgd/timeline" />
-
-### 分类 {#untag-fen-lei}
-
-<Route author="nczitzk" example="/utgd/method" path="/utgd/:category?" paramsDesc={['分类,可在对应分类页的 URL 中找到,默认为方法']}>
- | 方法 | 观点 |
- | ------ | ------- |
- | method | opinion |
-</Route>
-
-### 专题 {#untag-zhuan-ti}
-
-<Route author="nczitzk" example="/utgd/topic/在线阅读专栏" path="/utgd/topic/:topic?" paramsDesc={['专题,默认为在线阅读专栏']}>
- | 在线阅读专栏 | 卡片笔记专题 |
- | ------------ | ------------ |
-
- 更多专栏请见 [专题广场](https://utgd.net/topic)
-</Route>
-
-## Uwants {#uwants}
-
-### 版塊 {#uwants-ban-kuai}
-
-<Route author="nczitzk" example="/uwants/1520" path="/uwants/:fid" paramsDesc={['fid,可在对应板块页的 URL 中找到']} anticrawler="1" />
-
-## Vulture {#vulture}
-
-### Sub-site {#vulture-sub-site}
-
-<Route author="loganrockmore" example="/vulture/movies" path="/vulture/:type/:excludetags?" paramsDesc={['The sub-site name', 'Comma-delimited list of tags. If an article includes one of these tags, it will be excluded from the RSS feed.']}>
- Supported sub-sites:
-
- | TV | Movies | Comedy | Music | TV Recaps | Books | Theater | Art | Awards | Video |
- | -- | ------ | ------ | ----- | --------- | ----- | ------- | --- | ------ | ----- |
- | tv | movies | comedy | music | tvrecaps | books | theater | art | awards | video |
-</Route>
-
-## Web3Caff {#web3caff}
-
-### 发现 {#web3caff-fa-xian}
-
-<Route author="nczitzk" example="/web3caff" path="/web3caff/:path?" paramsDesc={['路径,默认为首页']}>
- :::tip
- 路径处填写对应页面 URL 中 `https://web3caff.com/` 后的字段。下面是一个例子。
-
- 若订阅 [叙事 - Web3Caff](https://web3caff.com/zh/archives/category/news_zh) 则将对应页面 URL `https://web3caff.com/zh/archives/category/news_zh` 中 `https://web3caff.com/` 后的字段 `zh/archives/category/news_zh` 作为路径填入。此时路由为 [`/web3caff/zh/archives/category/news_zh`](https://rsshub.app/web3caff/zh/archives/category/news_zh)
- :::
-</Route>
-
-## World Happiness {#world-happiness}
-
-### Blog {#world-happiness-blog}
-
-<Route author="nczitzk" example="/worldhappiness/blog" path="/worldhappiness/blog" />
-
-### Archive {#world-happiness-archive}
-
-<Route author="nczitzk" example="/worldhappiness/archive" path="/worldhappiness/archive" />
-
-## Yahoo {#yahoo}
-
-### News {#yahoo-news}
-
-<Route author="KeiLongW" example="/yahoo/news/hk/world" path="/yahoo/news/:region/:category?" paramsDesc={['Region, see the table below','Category, see the table below']}>
- `Region`
-
- | Hong Kong | Taiwan | US |
- | --------- | ------ | -- |
- | hk | tw | en |
-
- <details>
- <summary>`Category` (Hong Kong)</summary>
-
- | 全部 | 港聞 | 兩岸國際 | 財經 | 娛樂 | 體育 | 健康 | 親子 | 副刊 |
- | -------- | --------- | -------- | -------- | ------------- | ------ | ------ | --------- | ---------- |
- | (留空) | hong-kong | world | business | entertainment | sports | health | parenting | supplement |
- </details>
-
- <details>
- <summary>`Category` (Taiwan)</summary>
-
- | 全部 | 政治 | 財經 | 娛樂 | 運動 | 社會地方 | 國際 | 生活 | 健康 | 科技 | 品味 |
- | -------- | -------- | ------- | ------------- | ------ | -------- | ----- | --------- | ------ | ---------- | ----- |
- | (留空) | politics | finance | entertainment | sports | society | world | lifestyle | health | technology | style |
- </details>
-
- <details>
- <summary>`Category` (US)</summary>
-
- | All | World | Business | Entertainment | Sports | Health |
- | ------- | ----- | -------- | ------------- | ------ | ------ |
- | (Empty) | world | business | entertainment | sports | health |
- </details>
-</Route>
-
-### 新聞來源 {#yahoo-xin-wen-lai-yuan}
-
-<Route author="TonyRL" example="/yahoo/news/provider/tw/udn.com" path="/yahoo/news/provider/:region/:providerId" paramsDesc={['地區,見下表', '新聞來源 ID,可透過下方新聞來源列表獲得']} radar="1">
- | 香港 | 台灣 |
- | ---- | ---- |
- | hk | tw |
-</Route>
-
-### 新聞來源列表 {#yahoo-xin-wen-lai-yuan-lie-biao}
-
-<Route author="TonyRL" example="/yahoo/news/providers/tw" path="/yahoo/news/providers/:region" paramsDesc={['地區,見上表']} />
-
-## ZAKER {#zaker}
-
-### 分类 {#zaker-fen-lei}
-
-<Route author="LogicJake kt286 TonyRL" example="/zaker/channel/13" path="/zaker/channel/:id?" paramsDesc={['channel id,可在 URL 中找到,默认为 1']} />
-
-### 精读 {#zaker-jing-du}
-
-<Route author="AlexdanerZe TonyRL" example="/zaker/focusread" path="/zaker/focusread" />
-
-## zyw {#zyw}
-
-### 今日热榜 {#zyw-jin-ri-re-bang}
-
-<Route author="nczitzk" example="/zyw/hot" path="/zyw/hot/:site?" paramsDesc={['站点,见下表,默认为空,即全部']}>
- :::tip
- 全部站点请见 [此处](https://hot.zyw.asia/#/list)
- :::
-
- | 哔哩哔哩 | 微博 | 知乎 | 36 氪 | 百度 | 少数派 | IT 之家 | 澎湃新闻 | 今日头条 | 百度贴吧 | 稀土掘金 | 腾讯新闻 |
- | -------- | ---- | ---- | ----- | ---- | ------ | ------- | -------- | -------- | -------- | -------- | -------- |
-</Route>
-
-## 阿里研究院 {#a-li-yan-jiu-yuan}
-
-### 资讯 {#a-li-yan-jiu-yuan-zi-xun}
-
-<Route author="nczitzk" example="/aliresearch/information" path="/aliresearch/information/:type?" paramsDesc={['类型,见下表,默认为新闻']}>
- | 新闻 | 观点 | 案例 |
- | ---- | ---- | ---- |
-</Route>
-
-## 艾莱资讯 {#ai-lai-zi-xun}
-
-### 世界轨道交通资讯网 {#ai-lai-zi-xun-shi-jie-gui-dao-jiao-tong-zi-xun-wang}
-
-<Route author="Rongronggg9" example="/ally/rail/hyzix/chengguijiaotong/" path="/ally/rail/:category?/:topic?" paramsDesc={['分类,可在 URL 中找到;略去则抓取首页', '话题,可在 URL 中找到;并非所有页面均有此字段']} radar="1">
- :::tip
- 默认抓取前 20 条,可通过 `?limit=` 改变。
- :::
-</Route>
-
-## 爱范儿 ifanr {#ai-fan-er-ifanr}
-
-### 爱范儿频道 {#ai-fan-er-ifanr-ai-fan-er-pin-dao}
-
-<Route author="HenryQW" example="/ifanr/app" path="/ifanr/:channel?" paramsDesc={['默认 app,部分频道如下']}>
- - 频道为单一路径,如 `https://www.ifanr.com/coolbuy` 则为 `/ifanr/coolbuy`.
- - 频道包含多重路径,如 `https://www.ifanr.com/category/intelligentcar` 则替换 `/` 为 `-` `/ifanr/category-intelligentcar`.
-
- | AppSolution | 玩物志 | 董车会 |
- | ----------- | ------- | ----------------------- |
- | app | coolbuy | category-intelligentcar |
-</Route>
-
-## 白话区块链 {#bai-hua-qu-kuai-lian}
-
-### 首页 {#bai-hua-qu-kuai-lian-shou-ye}
-
-<Route author="Fatpandac" example="/hellobtc/information/latest" path="/hellobtc/information/:channel?" paramsDesc={['类型,可填 `latest` 和 `application` 及最新和应用,默认为最新']} />
-
-### 快讯 {#bai-hua-qu-kuai-lian-kuai-xun}
-
-<Route author="Fatpandac" example="/hellobtc/news" path="/hellobtc/news" />
-
-### 科普 {#bai-hua-qu-kuai-lian-ke-pu}
-
-<Route author="Fatpandac" example="/hellobtc/kepu/latest" path="/hellobtc/kepu/:channel?" paramsDesc={['类型,见下表,默认为最新']}>
- | latest | bitcoin | ethereum | defi | inter\_blockchain | mining | safety | satoshi\_nakomoto | public\_blockchain |
- | ------ | ------- | -------- | ---- | ----------------- | ------ | ------ | ----------------- | ------------------ |
- | 最新 | 比特币 | 以太坊 | DeFi | 跨链 | 挖矿 | 安全 | 中本聪 | 公链 |
-</Route>
-
-## 半月谈 {#ban-yue-tan}
-
-### 时事大事库 {#ban-yue-tan-shi-shi-da-shi-ku}
-
-<Route author="nczitzk" example="/banyuetan/byt" path="/banyuetan/byt/:time?" paramsDesc={['时间,见下表,默认为每周']}>
- | 每周 | 每月 |
- | ------------- | ----- |
- | shishidashiku | yiyue |
-</Route>
-
-## 報導者 {#bao-dao-zhe}
-
-### 最新 {#bao-dao-zhe-zui-xin}
-
-<Route author="emdoe" example="/twreporter/newest" path="/twreporter/newest" />
-
-## 北京市科学技术协会 {#bei-jing-shi-ke-xue-ji-shu-xie-hui}
-
-### 通用 {#bei-jing-shi-ke-xue-ji-shu-xie-hui-tong-yong}
-
-<Route author="nczitzk" example="/bast/col/col31266" path="/bast/:path+" paramsDesc={['路径,默认为通知公告']} anticrawler="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://www.bast.net.cn/` 后的字段。下面是两个例子。
-
- 若订阅 [通知公告](https://www.bast.net.cn/col/col31266) 则将对应页面 URL `https://www.bast.net.cn/col/col31266` 中 `https://www.bast.net.cn/` 后的字段 `col/col31266` 作为路径填入。此时路由为 [`/bast/col/col31266`](https://rsshub.app/bast/col/col31266)
-
- 若订阅 [学术动态](https://www.bast.net.cn/col/col31530) 则将对应页面 URL `https://www.bast.net.cn/col/col31530` 中 `https://www.bast.net.cn/` 后的字段 `col/col31530` 作为路径填入。此时路由为 [`/bast/col/col31530`](https://rsshub.app/bast/col/col31530)
-
- 如果路由符合 `/col/colXXXXX` 的格式,可以由 [`/bast/col/col31266`](https://rsshub.app/bast/col/col31266) 精简为 [`/bast/31266`](https://rsshub.app/bast/31266)
- :::
-</Route>
-
-## 本地宝 {#ben-di-bao}
-
-### 焦点资讯 {#ben-di-bao-jiao-dian-zi-xun}
-
-<Route author="nczitzk" example="/bendibao/news/bj" path="/bendibao/news/:city" paramsDesc={['城市缩写,可在该城市页面的 URL 中找到']}>
- | 城市名 | 缩写 |
- | ------ | ---- |
- | 北京 | bj |
- | 上海 | sh |
- | 广州 | gz |
- | 深圳 | sz |
-
- 更多城市请参见 [这里](http://www.bendibao.com/city.htm)
-
- > **香港特别行政区** 和 **澳门特别行政区** 的本地宝城市页面不更新资讯。
-</Route>
-
-## 财富中文网 {#cai-fu-zhong-wen-wang}
-
-### 分类 {#cai-fu-zhong-wen-wang-fen-lei}
-
-<Route author="nczitzk" example="/fortunechina" path="/fortunechina/:category?" paramsDesc={['分类,见下表,默认为首页']}>
- | 商业 | 领导力 | 科技 | 研究 |
- | ------- | --------- | ---- | ------ |
- | shangye | lindgaoli | keji | report |
-</Route>
-
-## 差评 {#cha-ping}
-
-### 图片墙 {#cha-ping-tu-pian-qiang}
-
-<Route author="nczitzk" example="/chaping/banner" path="/chaping/banner" />
-
-### 资讯 {#cha-ping-zi-xun}
-
-<Route author="nczitzk" example="/chaping/news/15" path="/chaping/news/:caty?" paramsDesc={['分类,默认为全部资讯']}>
- | 编号 | 分类 |
- | ---- | ---------- |
- | 15 | 直播 |
- | 3 | 科技新鲜事 |
- | 7 | 互联网槽点 |
- | 5 | 趣味科技 |
- | 6 | DEBUG TIME |
- | 1 | 游戏 |
- | 8 | 视频 |
- | 9 | 公里每小时 |
-</Route>
-
-### 快讯 {#cha-ping-kuai-xun}
-
-<Route author="Fatpandac" example="/chaping/newsflash" path="/chaping/newsflash" />
-
-## 抽屉新热榜 {#chou-ti-xin-re-bang}
-
-### 最新 {#chou-ti-xin-re-bang-zui-xin}
-
-<Route author="xyqfer" example="/chouti/hot" path="/chouti/:subject?" paramsDesc={['主题名称']}>
- | 热榜 | 42 区 | 段子 | 图片 | 挨踢 1024 | 你问我答 |
- | ---- | ----- | ----- | ---- | --------- | -------- |
- | hot | news | scoff | pic | tec | ask |
-</Route>
-
-### 最热榜 TOP10 {#chou-ti-xin-re-bang-zui-re-bang-top10}
-
-<Route author="DIYgod" example="/chouti/top/24" path="/chouti/top/:hour?" paramsDesc={['排行榜周期,可选 24 72 168 三种,默认 24']} />
-
-## 创业邦 {#chuang-ye-bang}
-
-### 资讯 {#chuang-ye-bang-zi-xun}
-
-<Route author="nczitzk" example="/cyzone" path="/cyzone/:id?" paramsDesc={['频道 id,可在对应频道页 URL 中找到,默认为 news,即最新资讯']}>
- | 最新 | 快鲤鱼 | 创投 | 科创板 | 汽车 |
- | ---- | ------ | ---- | ------ | ---- |
- | news | 5 | 14 | 13 | 8 |
-
- | 海外 | 消费 | 科技 | 医疗 | 文娱 |
- | ---- | ---- | ---- | ---- | ---- |
- | 10 | 9 | 7 | 27 | 11 |
-
- | 城市 | 政策 | 特写 | 干货 | 科技股 |
- | ---- | ---- | ---- | ---- | ------ |
- | 16 | 15 | 6 | 12 | 33 |
-</Route>
-
-### 作者 {#chuang-ye-bang-zuo-zhe}
-
-<Route author="xyqfer nczitzk" example="/cyzone/author/1225562" path="/cyzone/author/:id" paramsDesc={['作者 id,可在对应作者页 URL 中找到']} />
-
-### 标签 {#chuang-ye-bang-biao-qian}
-
-<Route author="LogicJake nczitzk" example="/cyzone/label/创业邦周报" path="/cyzone/label/:name" paramsDesc={['标签名称,可在对应标签页 URL 中找到']} />
-
-## 創新拿鐵 {#chuang-xin-na-tie}
-
-### 分类 {#chuang-xin-na-tie-fen-lei}
-
-<Route author="nczitzk" example="/startuplatte" path="/startuplatte/:category?" paramsDesc={['分类,见下表,默认为首頁']}>
- | 首頁 | 大師智慧 | 深度分析 | 新知介紹 |
- | ---- | -------- | -------- | -------- |
- | | quote | analysis | trend |
-</Route>
-
-## 大河财立方 {#da-he-cai-li-fang}
-
-### 新闻 {#da-he-cai-li-fang-xin-wen}
-
-<Route author="linbuxiao" example="/dahecube" path="/dahecube/:type?" paramsDesc={['板块,见下表,默认为推荐']}>
- | 推荐 | 党史 | 豫股 | 财经 | 投教 | 金融 | 科创 | 投融 | 专栏 |
- | --------- | ------- | ----- | -------- | --------- | ------- | ------- | ------ | ------ |
- | recommend | history | stock | business | education | finance | science | invest | column |
-</Route>
-
-## 得到 {#de-dao}
-
-### 首页 {#de-dao-shou-ye}
-
-<Route author="nczitzk" example="/dedao/list/年度日更" path="/dedao/list/:category?" paramsDesc={['分类名,默认为年度日更']} />
-
-### 新闻 {#de-dao-xin-wen}
-
-<Route author="nczitzk" example="/dedao/news" path="/dedao/news" />
-
-### 人物故事 {#de-dao-ren-wu-gu-shi}
-
-<Route author="nczitzk" example="/dedao/figure" path="/dedao/figure" />
-
-### 视频 {#de-dao-shi-pin}
-
-<Route author="nczitzk" example="/dedao/video" path="/dedao/video" />
-
-### 知识城邦 {#de-dao-zhi-shi-cheng-bang}
-
-<Route author="nczitzk" example="/dedao/knowledge" path="/dedao/knowledge/:topic?/:type?" paramsDesc={['话题 id,可在对应话题页 URL 中找到', '分享类型,`true` 指精选,`false` 指最新,默认为精选']} />
-
-### 用户主页 {#de-dao-yong-hu-zhu-ye}
-
-<Route author="nczitzk" example="/dedao/user/VkA5OqLX4RyGxmZRNBMlwBrDaJQ9og" path="/dedao/user/:id/:type?" paramsDesc={['用户 id,可在对应用户主页 URL 中找到', '类型,见下表,默认为`0`,即动态']}>
- | 动态 | 书评 | 视频 |
- | ---- | ---- | ---- |
- | 0 | 7 | 12 |
-</Route>
-
-## 电动邦 {#dian-dong-bang}
-
-### 资讯 {#dian-dong-bang-zi-xun}
-
-<Route author="Fatpandac" example="/diandong/news" path="/diandong/news/:cate?" paramsDesc={['分类,见下表,默认为推荐']}>
- 分类
-
- | 推荐 | 新车 | 导购 | 试驾 | 用车 | 技术 | 政策 | 行业 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 0 | 29 | 61 | 30 | 75 | 22 | 24 | 23 |
-</Route>
-
-## 电獭少女 {#dian-ta-shao-nv}
-
-### 分类 {#dian-ta-shao-nv-fen-lei}
-
-<Route author="TonyRL" example="/agirls/app" path="/agirls/:category?" paramsDesc={['分类,默认为最新文章,可在对应主题页的 URL 中找到,下表仅列出部分']} radar="1">
- | App 评测 | 手机开箱 | 笔电开箱 | 3C 周边 | 教学小技巧 | 科技情报 |
- | -------- | -------- | -------- | ----------- | ---------- | -------- |
- | app | phone | computer | accessories | tutorial | techlife |
-</Route>
-
-### 精选主题 {#dian-ta-shao-nv-jing-xuan-zhu-ti}
-
-<Route author="TonyRL" example="/agirls/topic/AppleWatch" path="/agirls/topic/:topic" paramsDesc={['精选主题,可通过下方精选主题列表获得']} radar="1" />
-
-### 当前精选主题列表 {#dian-ta-shao-nv-dang-qian-jing-xuan-zhu-ti-lie-biao}
-
-<Route author="TonyRL" example="/agirls/topic_list" path="/agirls/topic_list" radar="1" />
-
-## 东西智库 {#dong-xi-zhi-ku}
-
-### 分类 {#dong-xi-zhi-ku-fen-lei}
-
-<Route author="nczitzk" example="/dx2025" path="/dx2025/:type?/:category?" paramsDesc={['内容类别,见下表,默认为空', '行业分类,见下表,默认为空']}>
- 内容类别
-
- | 产业观察 | 行业报告 | 政策 | 数据 |
- | -------------------- | ---------------- | ------ | ---- |
- | industry-observation | industry-reports | policy | data |
-
- 行业分类
-
- | 行业 | 行业名称 |
- | -------------------- | ----------------------------------------------------------------- |
- | 新一代信息技术 | next-generation-information-technology-industry-reports |
- | 高档数控机床和机器人 | high-grade-cnc-machine-tools-and-robots-industry-reports |
- | 航空航天装备 | aerospace-equipment-industry-reports |
- | 海工装备及高技术船舶 | marine-engineering-equipment-and-high-tech-ships-industry-reports |
- | 先进轨道交通装备 | advanced-rail-transportation-equipment-industry-reports |
- | 节能与新能源汽车 | energy-saving-and-new-energy-vehicles-industry-reports |
- | 电力装备 | electric-equipment-industry-reports |
- | 农机装备 | agricultural-machinery-equipment-industry-reports |
- | 新材料 | new-material-industry-reports |
- | 生物医药及医疗器械 | biomedicine-and-medical-devices-industry-reports |
- | 现代服务业 | modern-service-industry-industry-reports |
- | 制造业人才 | manufacturing-talent-industry-reports |
-</Route>
-
-## 懂球帝 {#dong-qiu-di}
-
-:::tip
-- 可以通过头条新闻 + 参数过滤的形式获得早报、专题等内容。
-:::
-
-### 新闻 {#dong-qiu-di-xin-wen}
-
-<Route author="HendricksZheng" example="/dongqiudi/top_news/1" path="/dongqiudi/top_news/:id?" paramsDesc={['类别 id,不填默认头条新闻']} anticrawler="1">
- | 头条 | 深度 | 闲情 | D 站 | 中超 | 国际 | 英超 | 西甲 | 意甲 | 德甲 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 1 | 55 | 37 | 219 | 56 | 120 | 3 | 5 | 4 | 6 |
-</Route>
-
-### 专题 {#dong-qiu-di-zhuan-ti}
-
-<Route author="dxmpalb" example="/dongqiudi/special/41" path="/dongqiudi/special/:id" paramsDesc={['专题 id, 可自行通过 https://www.dongqiudi.com/special/+数字匹配']} anticrawler="1">
- | 新闻大爆炸 | 懂球帝十佳球 | 懂球帝本周 MVP |
- | ---------- | ------------ | -------------- |
- | 41 | 52 | 53 |
-</Route>
-
-### 早报 {#dong-qiu-di-zao-bao}
-
-<Route author="HenryQW" example="/dongqiudi/daily" path="/dongqiudi/daily" anticrawler="1" />
-
-:::tip
-部分球队和球员可能会有两个 id, 正确 id 应该由 `5000` 开头.
-:::
-
-### 足球赛果 {#dong-qiu-di-zu-qiu-sai-guo}
-
-<Route author="HenryQW" example="/dongqiudi/result/50001755" path="/dongqiudi/result/:team" paramsDesc={['球队 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中找到']} anticrawler="1" />
-
-### 球队新闻 {#dong-qiu-di-qiu-dui-xin-wen}
-
-<Route author="HenryQW" example="/dongqiudi/team_news/50001755" path="/dongqiudi/team_news/:team" paramsDesc={['球队 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中找到']} anticrawler="1" />
-
-### 球员新闻 {#dong-qiu-di-qiu-yuan-xin-wen}
-
-<Route author="HenryQW" example="/dongqiudi/player_news/50000339" path="/dongqiudi/player_news/:id" paramsDesc={['球员 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中通过其队伍找到']} anticrawler="1" />
-
-## 端传媒 {#duan-chuan-mei}
-
-通过提取文章全文,以提供比官方源更佳的阅读体验。
-
-:::warning
-付费内容全文可能需要登陆获取,详情见部署页面的配置模块。
-:::
-
-### 专题・栏目 {#duan-chuan-mei-zhuan-ti-lan-mu}
-
-<Route author="prnake" example="/theinitium/channel/latest/zh-hans" path="/theinitium/channel/:type?/:language?" paramsDesc={['栏目,缺省为最新', '语言,简体`zh-hans`,繁体`zh-hant`,缺省为简体']}>
- Type 栏目:
-
- | 最新 | 深度 | What’s New | 广场 | 科技 | 风物 | 特约 | ... |
- | ------ | ------- | ---------- | ----------------- | ---------- | ------- | -------- | --- |
- | latest | feature | news-brief | notes-and-letters | technology | culture | pick\_up | ... |
-
- 更多栏目名称可通过 [https://theinitium.com/section/special/](https://theinitium.com/section/special/) 及 [https://theinitium.com/section/hot\_channel/](https://theinitium.com/section/hot_channel/) 获取。
-</Route>
-
-### 话题・标签 {#duan-chuan-mei-hua-ti-biao-qian}
-
-<Route author="AgFlore" example="/theinitium/tags/2019_10/zh-hans" path="/theinitium/tags/:type/:language?" paramsDesc={['话题 ID,可从话题页 URL 中获取,如 `https://theinitium.com/tags/2019_10/`', '语言,简体`zh-hans`,繁体`zh-hant`,缺省为简体']} />
-
-### 作者 {#duan-chuan-mei-zuo-zhe}
-
-<Route author="AgFlore" example="/theinitium/author/ninghuilulu/zh-hans" path="/theinitium/author/:type/:language?" paramsDesc={['作者 ID,可从作者主页 URL 中获取,如`https://theinitium.com/author/ninghuilulu/`','语言,简体`zh-hans`,繁体`zh-hant`,缺省为简体']} />
-
-### 个人订阅追踪动态 {#duan-chuan-mei-ge-ren-ding-yue-zhui-zong-dong-tai}
-
-<Route author="AgFlore" example="/theinitium/follow/articles/zh-hans" path="/theinitium/follow/articles/:language?" paramsDesc={['语言,简体`zh-hans`,繁体`zh-hant`,缺省为简体']} configRequired="1">
- :::warning
- 需要自建,详情见部署页面的配置模块。
- :::
-</Route>
-
-## 多知网 {#duo-zhi-wang}
-
-### 首页 {#duo-zhi-wang-shou-ye}
-
-<Route author="WenryXu" example="/duozhi" path="/duozhi" />
-
-## 樊登读书 {#fan-deng-du-shu}
-
-### 樊登福州运营中心 {#fan-deng-du-shu-fan-deng-fu-zhou-yun-ying-zhong-xin}
-
-<Route author="Fatpandac" example="/dushu/fuzhou" path="/dushu/fuzhou" />
-
-## 仮面ライダ {#fan-mian-%E3%83%A9%E3%82%A4%E3%83%80}
-
-### 最新情報 {#fan-mian-%E3%83%A9%E3%82%A4%E3%83%80-zui-xin-qing-bao}
-
-<Route author="nczitzk" example="/kamen-rider-official/news" path="/kamen-rider-official/news/:category?" paramsDesc={['Category, see below, すべて by default']} radar="1">
- | Category |
- | -------------------------------------- |
- | すべて |
- | テレビ |
- | 映画・V シネマ等 |
- | Blu-ray・DVD、配信等 |
- | 20 作記念グッズ・東映 EC 商品 |
- | 石ノ森章太郎生誕 80 周年記念商品 |
- | 玩具・カード |
- | 食品・飲料・菓子 |
- | 子供生活雑貨 |
- | アパレル・大人向け雑貨 |
- | フィギュア・ホビー・一番くじ・プライズ |
- | ゲーム・デジタル |
- | 雑誌・書籍・漫画 |
- | 音楽 |
- | 映像 |
- | イベント |
- | ホテル・レストラン等 |
- | キャンペーン・タイアップ等 |
- | その他 |
- | KAMEN RIDER STORE |
- | THE 鎧武祭り |
- | 鎧武外伝 |
- | 仮面ライダーリバイス |
- | ファイナルステージ |
- | THE50 周年展 |
- | 風都探偵 |
- | 仮面ライダーギーツ |
- | 仮面ライダーアウトサイダーズ |
- | 仮面ライダーガッチャード |
- | 仮面ライダー BLACK SUN |
-</Route>
-
-## 封面新闻 {#feng-mian-xin-wen}
-
-### 频道 {#feng-mian-xin-wen-pin-dao}
-
-<Route author="yuxinliu-alex" example="/thecover/channel/3560" path="/thecover/channel/:id?" paramsDesc={['对应id,可在频道链接中获取,默认为3892']}>
- | 天下 | 四川 | 辟谣 | 国际 | 云招考 | 30 秒 | 拍客 | 体育 | 国内 | 帮扶铁军 | 文娱 | 宽窄 | 商业 | 千面 | 封面号 |
- | ---- | ---- | ---- | ---- | ------ | ----- | ---- | ---- | ---- | -------- | ---- | ---- | ---- | ---- | ------ |
- | 3892 | 3560 | 3909 | 3686 | 11 | 3902 | 3889 | 3689 | 1 | 4002 | 12 | 46 | 4 | 21 | 17 |
-</Route>
-
-## 風傳媒 {#feng-chuan-mei}
-
-### 分类 {#feng-chuan-mei-fen-lei}
-
-<Route author="nczitzk" example="/storm" path="/storm/:category?/:id?" paramsDesc={['分类,见下表,默认为新聞總覽', '子分类 ID,可在 URL 中找到']}>
- | 新聞總覽 | 地方新聞 | 歷史頻道 | 評論總覽 |
- | -------- | ------------- | -------- | ----------- |
- | articles | localarticles | history | all-comment |
-
- :::tip
- 支持形如 `https://www.storm.mg/category/118` 的路由,即 [`/storm/category/118`](https://rsshub.app/storm/category/118)
-
- 支持形如 `https://www.storm.mg/localarticle-category/s149845` 的路由,即 [`/storm/localarticle-category/s149845`](https://rsshub.app/storm/localarticle-category/s149845)
- :::
-</Route>
-
-## 凤凰网 {#feng-huang-wang}
-
-### 资讯 {#feng-huang-wang-zi-xun}
-
-<Route author="nczitzk" example="/ifeng/news" path="/ifeng/news/:path?" paramsDesc={['路径,对应分类资讯页 URL 路径,默认为空']}>
- :::tip
- 路径处填写对应页面 URL 中 `https://news.ifeng.com/` 后的字段。下面是一个例子。
-
- 若订阅 [大湾区\_资讯\_凤凰网](https://news.ifeng.com/shanklist/3-305565-) 则将对应页面 URL `https://news.ifeng.com/shanklist/3-305565-` 中 `https://news.ifeng.com/` 后的字段 `shanklist/3-305565-` 作为路径填入。此时路由为 [`/ifeng/news/shanklist/3-305565-`](https://rsshub.app/ifeng/news/shanklist/3-305565-)
- :::
-</Route>
-
-### 大风号 {#feng-huang-wang-da-feng-hao}
-
-<Route author="Jamch" example="/ifeng/feng/2583/doc" path="/ifeng/feng/:id/:type" paramsDesc={['对应 id,可在 大风号作者页面 找到','类型,见下表']}>
- | 文章 | 视频 |
- | ---- | ----- |
- | doc | video |
-</Route>
-
-## 福利吧 {#fu-li-ba}
-
-### 最新 {#fu-li-ba-zui-xin}
-
-<Route author="shinemoon" example="/fuliba/latest" path="/fuliba/latest" />
-
-## 高科技行业门户 {#gao-ke-ji-hang-ye-men-hu}
-
-### 新闻 {#gao-ke-ji-hang-ye-men-hu-xin-wen}
-
-<Route author="luyuhuang" example="/ofweek/news" path="/ofweek/news" />
-
-## 观察者网 {#guan-cha-zhe-wang}
-
-### 头条 {#guan-cha-zhe-wang-tou-tiao}
-
-<Route author="nczitzk" example="/guancha/headline" path="/guancha/headline" />
-
-### 首页 {#guan-cha-zhe-wang-shou-ye}
-
-<Route author="nczitzk Jeason0228" example="/guancha" path="/guancha/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- | 全部 | 评论 & 研究 | 要闻 | 风闻 | 热点新闻 | 滚动新闻 |
- | ---- | ----------- | ----- | ------- | -------- | -------- |
- | all | review | story | fengwen | redian | gundong |
-
- home = 评论 & 研究 + 要闻 + 风闻
-
- others = 热点新闻 + 滚动新闻
-
- :::tip
- 观察者网首页左中右的三个 column 分别对应 **评论 & 研究**、**要闻**、**风闻** 三个部分。
- :::
-</Route>
-
-### 观学院 {#guan-cha-zhe-wang-guan-xue-yuan}
-
-<Route author="nczitzk" example="/guancha/member/recommend" path="/guancha/member/:category?" paramsDesc={['分类,见下表']}>
- | 精选 | 观书堂 | 在线课 | 观学院 |
- | --------- | ------ | ------- | -------- |
- | recommend | books | courses | huodongs |
-</Route>
-
-### 风闻话题 {#guan-cha-zhe-wang-feng-wen-hua-ti}
-
-<Route author="occupy5 nczitzk" example="/guancha/topic/110/1" path="/guancha/topic/:id?/:order?" paramsDesc={['话题 id,可在URL中找到,默认为全部,即为 `0`', '排序参数,见下表']}>
- | 最新回复 | 最新发布 | 24 小时最热 | 3 天最热 | 7 天最热 | 3 个月最热 | 专栏文章 |
- | -------- | -------- | ----------- | -------- | -------- | ---------- | -------- |
- | 1 | 2 | 3 | 6 | 7 | 8 | 5 |
-
- :::tip
- 仅在话题 id 为 0,即选择 全部 时,**3 个月最热**、**24 小时最热**、**3 天最热**、**7 天最热** 和 **专栏文章** 参数生效。
- :::
-</Route>
-
-### 个人主页文章 {#guan-cha-zhe-wang-ge-ren-zhu-ye-wen-zhang}
-
-<Route author="Jeason0228" example="/guancha/personalpage/243983" path="/guancha/personalpage/:uid" paramsDesc={['用户id, 可在URL中找到']} />
-
-## 观海新闻 {#guan-hai-xin-wen}
-
-### 首页 {#guan-hai-xin-wen-shou-ye}
-
-<Route author="TonyRL" example="/guanhai" path="/guanhai" radar="1" />
-
-## 广告门 {#guang-gao-men}
-
-### 板块 {#guang-gao-men-ban-kuai}
-
-<Route author="nczitzk" example="/adquan/info" path="/adquan/:type?" paramsDesc={['分类, 置空为首页']}>
- | 行业观察 | 案例库 |
- | -------- | -------- |
- | info | creative |
-</Route>
-
-## 国家高端智库 / 综合开发研究院 {#guo-jia-gao-duan-zhi-ku-zong-he-kai-fa-yan-jiu-yuan}
-
-### 栏目 {#guo-jia-gao-duan-zhi-ku-zong-he-kai-fa-yan-jiu-yuan-lan-mu}
-
-<Route author="nczitzk" example="/cdi" path="/cdi/:id?" paramsDesc={['分类,见下表,默认为综研国策']}>
- | 樊纲观点 | 综研国策 | 综研观察 | 综研专访 | 综研视点 | 银湖新能源 |
- | -------- | -------- | -------- | -------- | -------- | ---------- |
- | 102 | 152 | 150 | 153 | 154 | 151 |
-</Route>
-
-## 果壳网 {#guo-ke-wang}
-
-### 科学人 {#guo-ke-wang-ke-xue-ren}
-
-<Route author="alphardex nczitzk" example="/guokr/scientific" path="/guokr/scientific" />
-
-### 果壳网专栏 {#guo-ke-wang-guo-ke-wang-zhuan-lan}
-
-<Route author="DHPO hoilc" example="/guokr/calendar" path="/guokr/:channel" paramsDesc={['专栏类别']}>
- | 物种日历 | 吃货研究所 | 美丽也是技术活 |
- | -------- | ---------- | -------------- |
- | calendar | institute | beauty |
-</Route>
+### User {#mirror-user}
-## 后续 {#hou-xu}
+<Route data={{"path":"/:id","categories":["new-media"],"example":"/mirror/tingfei.eth","parameters":{"id":"user id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User","maintainers":["fifteen42","rde9","nczitzk"],"location":"index.ts"}} />
-### 热点 {#hou-xu-re-dian}
+## MyGoPen {#mygopen}
-<Route author="nczitzk" example="/houxu" path="/houxu" />
+### 分類 {#mygopen-fen-lei}
-### 跟踪 {#hou-xu-gen-zong}
+<Route data={{"path":"/:label?","categories":["new-media"],"example":"/mygopen","parameters":{"label":"分類,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mygopen.com/search/label/:label","mygopen.com/"]},"name":"分類","maintainers":["nczitzk"],"description":"| 謠言 | 詐騙 | 真實資訊 | 教學 |\n | ---- | ---- | -------- | ---- |","location":"index.ts"}} />
-<Route author="nczitzk" example="/houxu/memory" path="/houxu/memory" />
+| 謠言 | 詐騙 | 真實資訊 | 教學 |
+| ---- | ---- | -------- | ---- |
-### 专栏 {#hou-xu-zhuan-lan}
+## Nautilus {#nautilus}
-<Route author="ciaranchen nczitzk" example="/houxu/events" path="/houxu/events" />
+### Topics {#nautilus-topics}
-### Live {#hou-xu-live}
+<Route data={{"path":"/topic/:tid","categories":["new-media"],"example":"/nautil/topic/arts","parameters":{"tid":"topic"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nautil.us/topics/:tid"]},"name":"Topics","maintainers":["emdoe"],"description":"This route provides a flexible plan with full text content to subscribe specific topic(s) on the Nautilus. Please visit [nautil.us](https://nautil.us) and click `Topics` to acquire whole topic list.","location":"topics.ts"}} />
-<Route author="ciaranchen sanmmm nczitzk" example="/houxu/lives/33899" path="/houxu/lives/:id" paramsDesc={['编号,可在对应 Live 页面的 URL 中找到']} />
+This route provides a flexible plan with full text content to subscribe specific topic(s) on the Nautilus. Please visit [nautil.us](https://nautil.us) and click `Topics` to acquire whole topic list.
-## 虎嗅 {#hu-xiu}
+## NGOCN {#ngocn}
-### 资讯 {#hu-xiu-zi-xun}
+### 首页 {#ngocn-shou-ye}
-<Route author="HenryQW nczitzk" example="/huxiu/article" path="/huxiu/article" radar="1" supportBT="1" supportPodcast="1" />
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/ngocn2","parameters":{"category":"分类,见下表,默认为所有文章"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ngocn2.org/"]},"name":"首页","maintainers":["nczitzk"],"url":"ngocn2.org/","description":"| 所有文章 | 早报 | 热点 |\n | -------- | ----------- | -------- |\n | article | daily-brief | trending |","location":"index.ts"}} />
-### 频道 {#hu-xiu-pin-dao}
+| 所有文章 | 早报 | 热点 |
+| -------- | ----------- | -------- |
+| article | daily-brief | trending |
-<Route author="nczitzk" example="/huxiu/channel/10" path="/huxiu/channel/:id?" paramsDesc={['频道 id,可在对应频道页 URL 中找到,见下表,默认为最新']} radar="1" supportBT="1" supportPodcast="1">
- | 视频 | 车与出行 | 年轻一代 | 十亿消费者 | 前沿科技 |
- | ---- | -------- | -------- | ---------- | -------- |
- | 10 | 21 | 106 | 103 | 105 |
+## NL Times {#nl-times}
- | 财经 | 娱乐淘金 | 医疗健康 | 文化教育 | 出海 |
- | ---- | -------- | -------- | -------- | ---- |
- | 115 | 22 | 111 | 113 | 114 |
+### News {#nl-times-news}
- | 金融地产 | 企业服务 | 创业维艰 | 社交通讯 | 全球热点 | 生活腔调 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 102 | 110 | 2 | 112 | 107 | 4 |
-</Route>
+<Route data={{"path":"/news/:category?","categories":["new-media"],"example":"/nltimes/news/top-stories","parameters":{"category":"category"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nltimes.nl/categories/:category"],"target":"/news/:category"},"name":"News","maintainers":["Hivol"],"description":"| Top Stories (default) | Health | Crime | Politics | Business | Tech | Culture | Sports | Weird | 1-1-2 |\n | --------------------- | ------ | ----- | -------- | -------- | ---- | ------- | ------ | ----- | ----- |\n | top-stories | health | crime | politics | business | tech | culture | sports | weird | 1-1-2 |","location":"news.ts"}} />
-### 24 小时 {#hu-xiu-24-xiao-shi}
+| Top Stories (default) | Health | Crime | Politics | Business | Tech | Culture | Sports | Weird | 1-1-2 |
+| --------------------- | ------ | ----- | -------- | -------- | ---- | ------- | ------ | ----- | ----- |
+| top-stories | health | crime | politics | business | tech | culture | sports | weird | 1-1-2 |
-<Route author="nczitzk" example="/huxiu/moment" path="/huxiu/moment" radar="1" supportBT="1" supportPodcast="1" />
+## Odaily 星球日报 {#odaily-xing-qiu-ri-bao}
-### 源流 {#hu-xiu-yuan-liu}
+### 活动 {#odaily-xing-qiu-ri-bao-huo-dong}
-<Route author="nczitzk" example="/huxiu/club/1000" path="/huxiu/club/:id?" paramsDesc={['源流 id,可在对应源流页 URL 中找到']} radar="1" supportBT="1" supportPodcast="1">
- 更多源流请参见 [源流广场](https://www.huxiu.com/club)
-</Route>
+<Route data={{"path":"/activity","categories":["new-media"],"example":"/odaily/activity","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["0daily.com/activityPage","0daily.com/"]},"name":"活动","maintainers":["nczitzk"],"url":"0daily.com/activityPage","location":"activity.ts"}} />
-### 标签 {#hu-xiu-biao-qian}
+### 快讯 {#odaily-xing-qiu-ri-bao-kuai-xun}
-<Route author="xyqfer HenryQW nczitzk" example="/huxiu/tag/291" path="/huxiu/tag/:id" paramsDesc={['标签 id,可在对应标签页 URL 中找到']} radar="1" supportBT="1" supportPodcast="1">
- 更多标签请参见 [标签](https://www.huxiu.com/tags)
-</Route>
+<Route data={{"path":"/newsflash","categories":["new-media"],"example":"/odaily/newsflash","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["0daily.com/newsflash","0daily.com/"]},"name":"快讯","maintainers":["nczitzk"],"url":"0daily.com/newsflash","location":"newsflash.ts"}} />
-### 搜索 {#hu-xiu-sou-suo}
+### 搜索快讯 {#odaily-xing-qiu-ri-bao-sou-suo-kuai-xun}
-<Route author="xyqfer HenryQW nczitzk" example="/huxiu/search/生活" path="/huxiu/search/:keyword" paramsDesc={['关键字']} radar="1" supportBT="1" supportPodcast="1" />
+<Route data={{"path":"/search/news/:keyword","categories":["new-media"],"example":"/odaily/search/news/RSS3","parameters":{"keyword":"搜索关键字"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["0daily.com/search/:keyword"]},"name":"搜索快讯","maintainers":["snowraincloud"],"location":"search-news.ts"}} />
-### 作者 {#hu-xiu-zuo-zhe}
+### 文章 {#odaily-xing-qiu-ri-bao-wen-zhang}
-<Route author="HenryQW nczitzk" example="/huxiu/member/29318" path="/huxiu/member/:id/:type?" paramsDesc={['用户 id,可在对应用户页 URL 中找到', '类型,可在对应用户页 URL 中找到']} radar="1" supportBT="1" supportPodcast="1">
- | TA 的文章 | TA 的 24 小时 |
- | --------- | ------------- |
- | article | moment |
-</Route>
+<Route data={{"path":"/:id?","categories":["new-media"],"example":"/odaily","parameters":{"id":"id,见下表,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["0daily.com/"]},"name":"文章","maintainers":["nczitzk"],"url":"0daily.com/","description":"| 最新 | 新品 | DeFi | NFT | 存储 | 波卡 | 行情 | 活动 |\n | ---- | ---- | ---- | --- | ---- | ---- | ---- | ---- |\n | 280 | 333 | 331 | 334 | 332 | 330 | 297 | 296 |","location":"post.ts"}} />
-### 文集 {#hu-xiu-wen-ji}
+| 最新 | 新品 | DeFi | NFT | 存储 | 波卡 | 行情 | 活动 |
+| ---- | ---- | ---- | --- | ---- | ---- | ---- | ---- |
+| 280 | 333 | 331 | 334 | 332 | 330 | 297 | 296 |
-<Route author="AlexdanerZe nczitzk" example="/huxiu/collection/212" path="/huxiu/collection/:id" paramsDesc={['文集 id,可在对应文集页 URL 中找到']} radar="1" supportBT="1" supportPodcast="1">
- 更多文集请参见 [文集](https://www.huxiu.com/collection)
-</Route>
+### 用户文章 {#odaily-xing-qiu-ri-bao-yong-hu-wen-zhang}
-### 简报 {#hu-xiu-jian-bao}
+<Route data={{"path":"/user/:id","categories":["new-media"],"example":"/odaily/user/2147486902","parameters":{"id":"用户 id,可在用户页地址栏中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["0daily.com/user/:id","0daily.com/"]},"name":"用户文章","maintainers":["nczitzk"],"location":"user.ts"}} />
-<Route author="Fatpandac nczitzk" example="/huxiu/briefcolumn/1" path="/huxiu/briefcolumn/:id" paramsDesc={['简报 id,可在对应简报页 URL 中找到']} radar="1" supportBT="1" supportPodcast="1" />
+## Onet {#onet}
-## 互动吧 {#hu-dong-ba}
+### News {#onet-news}
-### 活动 {#hu-dong-ba-huo-dong}
+<Route data={{"path":"/news","categories":["new-media"],"example":"/onet/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wiadomosci.onet.pl/"]},"name":"News","maintainers":["Vegann"],"url":"wiadomosci.onet.pl/","description":"This route provides a better reading experience (full text articles) over the official one for `https://wiadomosci.onet.pl`.","location":"news.ts"}} />
-<Route author="nczitzk" example="/hudongba/beijing/98-0-2-0-1-1" path="/hudongba/:city/:id" paramsDesc={['城市,可在选定所在城市后的页面 URL 中找到', '编号,可在选定筛选条件后的页面 URL 中找到']}>
- 如例子 `/hudongba/beijing/98-0-2-0-1-1` 对应的网址 `https://www.hudongba.com/beijing/98-0-2-0-0-1` 中,`beijing` 即所在城市为北京;`98-0-2-0-0-1` 则是所选择的分类编号,指分类不限、时间不限、综合排序的所有亲子活动。
-</Route>
+This route provides a better reading experience (full text articles) over the official one for `https://wiadomosci.onet.pl`.
-## 机核网 {#ji-he-wang}
+## OpenAI {#openai}
-### 分类 {#ji-he-wang-fen-lei}
+### Blog {#openai-blog}
-<Route author="MoguCloud" example="/gcores/category/news" path="/gcores/category/:category" paramsDesc={['分类名']} radar="1">
- | 资讯 | 视频 | 电台 | 文章 |
- | ---- | ------ | ------ | -------- |
- | news | videos | radios | articles |
-</Route>
+<Route data={{"path":"/blog/:tag?","categories":["new-media"],"example":"/openai/blog","parameters":{"tag":"Tag, see below, All by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Blog","maintainers":["StevenRCE0","nczitzk"],"description":"| All | Announcements | Events | Safety & Alignment | Community | Product | Culture & Careers | Milestones | Research |\n | --- | ------------- | ------ | ------------------ | --------- | ------- | ------------------- | ---------- | -------- |\n | | announcements | events | safety-alignment | community | product | culture-and-careers | milestones | research |","location":"blog.ts"}} />
-### 标签 {#ji-he-wang-biao-qian}
+| All | Announcements | Events | Safety & Alignment | Community | Product | Culture & Careers | Milestones | Research |
+| --- | ------------- | ------ | ------------------ | --------- | ------- | ------------------- | ---------- | -------- |
+| | announcements | events | safety-alignment | community | product | culture-and-careers | milestones | research |
-<Route author="StevenRCE0" example="/gcores/tag/42/articles" path="/gcores/tag/:tag/:category?" paramsDesc={['标签名,可在选定标签分类页面的 URL 中找到,如视觉动物——42', '分类名']} radar="1">
- 分类名同上。
-</Route>
+### ChatGPT - Release Notes {#openai-chatgpt-release-notes}
-### 专题文章 {#ji-he-wang-zhuan-ti-wen-zhang}
+<Route data={{"path":"/chatgpt/release-notes","categories":["new-media"],"example":"/openai/chatgpt/release-notes","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"ChatGPT - Release Notes","maintainers":[],"location":"chatgpt.ts"}} />
-<Route author="kudryavka1013" example="/gcores/collections/64" path="/gcores/collections/:collection" paramsDesc={['专题id,可在专题页面的 URL 中找到,如 游戏开发设计心得分享 -- 64']} radar="1" anticrawler="1" />
+### Research {#openai-research}
-### 播客 {#ji-he-wang-bo-ke}
+<Route data={{"path":"/research","categories":["new-media"],"example":"/openai/research","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Research","maintainers":["yuguorui"],"location":"research.ts"}} />
-<Route author="eternasuno" example="/gcores/radios/45" path="/gcores/radios/:category?" paramsDesc={['分类名,默认为全部,可在分类页面的 URL 中找到,如 Gadio News -- 45']} radar="1" supportPodcast="1" />
+## PANews {#panews}
-## 纪妖 {#ji-yao}
+### 快讯 {#panews-kuai-xun}
-### 通用 {#ji-yao-tong-yong}
+<Route data={{"path":["/news","/newsflash"],"categories":["new-media"],"example":"/panewslab/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"快讯","maintainers":["nczitzk"],"url":"panewslab.com/","location":"news.ts"}} />
-<Route author="nczitzk" example="/cbaigui" path="/cbaigui/:path+" paramsDesc={['路径,默认为首页']}>
- :::tip
- 若订阅 [标签:妖](https://www.cbaigui.com/post-tag/妖),网址为 [https://www.cbaigui.com/post-tag/ 妖](https://www.cbaigui.com/post-tag/妖)。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-tag/妖` 作为参数,此时路由为 [`/cbaigui/post-tag/妖`](https://rsshub.app/cbaigui/post-tag/妖)。
+### 快讯 {#panews-kuai-xun}
- 若订阅 [分类:埃及](https://www.cbaigui.com/post-category/世界/非洲/埃及),网址为 [https://www.cbaigui.com/post-category/ 世界 / 非洲 / 埃及](https://www.cbaigui.com/post-category/世界/非洲/埃及)。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-category/世界/非洲/埃及` 作为参数,此时路由为 [`/cbaigui/post-category/世界/非洲/埃及`](https://rsshub.app/cbaigui/post-category/世界/非洲/埃及)。
+<Route data={{"path":["/news","/newsflash"],"categories":["new-media"],"example":"/panewslab/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"快讯","maintainers":["nczitzk"],"url":"panewslab.com/","location":"news.ts"}} />
- 若订阅 [词条:白泽图](https://www.cbaigui.com/post-category/词条/白泽图),网址为 [https://www.cbaigui.com/post-category/ 词条 / 白泽图](https://www.cbaigui.com/post-category/词条/白泽图)。截取 `https://www.cbaigui.com` 到末尾的部分 `/post-category/词条/白泽图` 作为参数,此时路由为 [`/cbaigui/post-category/词条/白泽图`](https://rsshub.app/cbaigui/post-category/词条/白泽图)。
- :::
-</Route>
+### 深度 {#panews-shen-du}
-## 加美财经 {#jia-mei-cai-jing}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/panewslab","parameters":{"category":"分类,见下表,默认为精选"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"深度","maintainers":["nczitzk"],"url":"panewslab.com/","description":"| 精选 | 链游 | 元宇宙 | NFT | DeFi | 监管 | 央行数字货币 | 波卡 | Layer 2 | DAO | 融资 | 活动 |\n | ---- | ---- | ------ | --- | ---- | ---- | ------------ | ---- | ------- | --- | ---- | ---- |","location":"index.ts"}} />
-### 分类 {#jia-mei-cai-jing-fen-lei}
+| 精选 | 链游 | 元宇宙 | NFT | DeFi | 监管 | 央行数字货币 | 波卡 | Layer 2 | DAO | 融资 | 活动 |
+| ---- | ---- | ------ | --- | ---- | ---- | ------------ | ---- | ------- | --- | ---- | ---- |
-<Route author="nczitzk" example="/caus" path="/caus/:category?" paramsDesc={['分类,见下表,默认为全部']} radar="1">
- | 全部 | 要闻 | 商业 | 快讯 | 财富 | 生活 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 0 | 1 | 2 | 3 | 8 | 6 |
-</Route>
+### 专栏 {#panews-zhuan-lan}
-## 簡訊設計 {#jian-xun-she-ji}
+<Route data={{"path":["/author/:id","/column/:id"],"categories":["new-media"],"example":"/panewslab/author/166","parameters":{"id":"专栏 id,可在地址栏 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"专栏","maintainers":["nczitzk"],"url":"panewslab.com/","location":"author.ts"}} />
-### 志祺七七 {#jian-xun-she-ji-zhi-qi-qi-qi}
+### 专栏 {#panews-zhuan-lan}
-<Route author="haukeng" example="/simpleinfo" path="/simpleinfo/:category?" radar="1" paramsDesc={['分类名']}>
- | 夥伴聊聊 | 專案設計 |
- | -------- | -------- |
- | work | talk |
+<Route data={{"path":["/author/:id","/column/:id"],"categories":["new-media"],"example":"/panewslab/author/166","parameters":{"id":"专栏 id,可在地址栏 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"专栏","maintainers":["nczitzk"],"url":"panewslab.com/","location":"author.ts"}} />
- | 國內外新聞 | 政治百分百 | 社會觀察家 | 心理與哲學 |
- | ---------- | ---------- | ---------- | --------------------- |
- | news | politics | society | psychology-philosophy |
+### 专题 {#panews-zhuan-ti}
- | 科學大探索 | 環境與健康 | ACG 快樂聊 | 好書籍分享 | 其它主題 |
- | ---------- | ------------------ | ---------- | ------------ | ------------ |
- | science | environment-health | acg | book-sharing | other-topics |
-</Route>
+<Route data={{"path":"/topic/:id","categories":["new-media"],"example":"/panewslab/topic/1629365774078402","parameters":{"id":"专题 id,可在地址栏 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["panewslab.com/"]},"name":"专题","maintainers":["nczitzk"],"url":"panewslab.com/","location":"topic.ts"}} />
-## 健康界 {#jian-kang-jie}
+## PeoPo 公民新聞 {#peopo-gong-min-xin-wen}
-### 首页 {#jian-kang-jie-shou-ye}
+### 新聞分類 {#peopo-gong-min-xin-wen-xin-wen-fen-lei}
-<Route author="qnloft" example="/cn-healthcare/index" path="/cn-healthcare/index" />
+<Route data={{"path":"/topic/:topicId?","categories":["new-media"],"example":"/peopo/topic/159","parameters":{"topicId":"分類 ID,見下表,默認為社會關懷"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["peopo.org/topic/:topicId"],"target":"/topic/:topicId"},"name":"新聞分類","maintainers":[],"description":"| 分類 | ID |\n | -------- | --- |\n | 社會關懷 | 159 |\n | 生態環保 | 113 |\n | 文化古蹟 | 143 |\n | 社區改造 | 160 |\n | 教育學習 | 161 |\n | 農業 | 163 |\n | 生活休閒 | 162 |\n | 媒體觀察 | 164 |\n | 運動科技 | 165 |\n | 政治經濟 | 166 |\n | 北台灣 | 223 |\n | 中台灣 | 224 |\n | 南台灣 | 225 |\n | 東台灣 | 226 |\n | 校園中心 | 167 |\n | 原住民族 | 227 |\n | 天然災害 | 168 |","location":"topic.ts"}} />
+
+| 分類 | ID |
+| -------- | --- |
+| 社會關懷 | 159 |
+| 生態環保 | 113 |
+| 文化古蹟 | 143 |
+| 社區改造 | 160 |
+| 教育學習 | 161 |
+| 農業 | 163 |
+| 生活休閒 | 162 |
+| 媒體觀察 | 164 |
+| 運動科技 | 165 |
+| 政治經濟 | 166 |
+| 北台灣 | 223 |
+| 中台灣 | 224 |
+| 南台灣 | 225 |
+| 東台灣 | 226 |
+| 校園中心 | 167 |
+| 原住民族 | 227 |
+| 天然災害 | 168 |
-## 今日热榜 {#jin-ri-re-bang}
+## Phoronix {#phoronix}
-:::warning
-由于需要登录后的 Cookie 值才能获取原始链接,所以需要自建,需要在环境变量中配置 `TOPHUB_COOKIE`,详情见部署页面的配置模块。
-:::
+### News & Reviews {#phoronix-news-reviews}
-### 榜单 {#jin-ri-re-bang-bang-dan}
+<Route data={{"path":"/:category?/:topic?","categories":["new-media"],"example":"/phoronix/linux/KDE","parameters":{"category":"Category","topic":"Topic. You may find available parameters from their navigator links. E.g. to subscribe to `https://www.phoronix.com/reviews/Operating+Systems`, fill in the path `/phoronix/reviews/Operating+Systems`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["phoronix.com/:category?/:topic?"]},"name":"News & Reviews","maintainers":["oppliate","Rongronggg9"],"location":"index.ts"}} />
-<Route author="LogicJake" example="/tophub/Om4ejxvxEN" path="/tophub/:id" paramsDesc={['榜单id,可在 URL 中找到']} configRequired="1" />
+## QuestMobile {#questmobile}
-### 榜单列表 {#jin-ri-re-bang-bang-dan-lie-biao}
+### 行业研究报告 {#questmobile-hang-ye-yan-jiu-bao-gao}
-<Route author="akynazh" example="/tophub/list/Om4ejxvxEN" path="/tophub/list/:id" paramsDesc={['榜单id,可在 URL 中找到']} configRequired="1" />
+<Route data={{"path":"/report/:industry?/:label?","categories":["new-media"],"example":"/questmobile/report","parameters":{"industry":"行业,见下表,默认为 `-1`,即全部行业","label":"标签,见下表,默认为 `-1`,即全部标签"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"行业研究报告","maintainers":["nczitzk"],"description":":::tip\n 若订阅行业 [互联网行业](https://www.questmobile.com.cn/research/reports/1/-1),网址为 `https://www.questmobile.com.cn/research/reports/1/-1`\n 参数 industry 为 `互联网行业` 或 `1`,此时路由为 [`/questmobile/report/互联网行业`](https://rsshub.app/questmobile/report/互联网行业) 或 [`/questmobile/report/1/-1`](https://rsshub.app/questmobile/report/1/-1)。\n\n 若订阅标签 [榜单](https://www.questmobile.com.cn/research/reports/-1/11),网址为 `https://www.questmobile.com.cn/research/reports/-1/11`\n 参数 label 为 `榜单` 或 `11`,此时路由为 [`/questmobile/report/榜单`](https://rsshub.app/questmobile/report/榜单) 或 [`/questmobile/report/-1/11`](https://rsshub.app/questmobile/report/-1/11)。\n\n 若订阅行业和标签 [品牌领域 - 互联网经济](https://www.questmobile.com.cn/research/reports/2/1),网址为 `https://www.questmobile.com.cn/research/reports/2/1`\n 参数 industry 为 `品牌领域` 或 `2`,参数 label 为 `互联网经济` 或 `1`,此时路由为 [`/questmobile/report/品牌领域/互联网经济`](https://rsshub.app/questmobile/report/品牌领域/互联网经济) 或 [`/questmobile/report/2/1`](https://rsshub.app/questmobile/report/2/1),甚至 [`/questmobile/report/品牌领域/1`](https://rsshub.app/questmobile/report/品牌领域/1)。\n :::\n\n <details>\n <summary>全部行业和标签</summary>\n\n #### 行业\n\n | 互联网行业 | 移动社交 | 移动视频 | 移动购物 | 系统工具 |\n | ---------- | -------- | -------- | -------- | -------- |\n | 1 | 1001 | 1002 | 1003 | 1004 |\n\n | 出行服务 | 金融理财 | 生活服务 | 移动音乐 | 新闻资讯 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1005 | 1006 | 1007 | 1008 | 1009 |\n\n | 办公商务 | 手机游戏 | 实用工具 | 数字阅读 | 教育学习 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1010 | 1011 | 1012 | 1013 | 1014 |\n\n | 汽车服务 | 拍摄美化 | 智能设备 | 旅游服务 | 健康美容 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1015 | 1016 | 1017 | 1018 | 1020 |\n\n | 育儿母婴 | 主题美化 | 医疗服务 | 品牌领域 | 美妆品牌 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1022 | 1023 | 1024 | 2 | 2001 |\n\n | 母婴品牌 | 家电品牌 | 食品饮料品牌 | 汽车品牌 | 服饰箱包品牌 |\n | -------- | -------- | ------------ | -------- | ------------ |\n | 2002 | 2003 | 2004 | 2005 | 2006 |\n\n #### 标签\n\n | 互联网经济 | 圈层经济 | 粉丝经济 | 银发经济 | 儿童经济 |\n | ---------- | -------- | -------- | -------- | -------- |\n | 1 | 1001 | 1002 | 1004 | 1005 |\n\n | 萌宠经济 | 她经济 | 他经济 | 泛娱乐经济 | 下沉市场经济 |\n | -------- | ------ | ------ | ---------- | ------------ |\n | 1007 | 1009 | 1010 | 1011 | 1012 |\n\n | 内容经济 | 订阅经济 | 会员经济 | 居家经济 | 到家经济 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1013 | 1014 | 1015 | 1016 | 1017 |\n\n | 颜值经济 | 闲置经济 | 旅游经济 | 人群洞察 | 00 后 |\n | -------- | -------- | ------------------- | -------- | ----- |\n | 1018 | 1020 | 1622842051677753346 | 2 | 2002 |\n\n | Z 世代 | 银发族 | 宝妈宝爸 | 萌宠人群 | 运动达人 |\n | ------ | ------ | -------- | -------- | -------- |\n | 2003 | 2004 | 2005 | 2007 | 2008 |\n\n | 女性消费 | 男性消费 | 游戏人群 | 二次元 | 新中产 |\n | -------- | -------- | -------- | ------ | ------ |\n | 2009 | 2010 | 2012 | 2013 | 2014 |\n\n | 下沉市场用户 | 大学生 | 数字化营销 | 广告效果 | 品牌营销 |\n | ------------ | ------ | ---------- | -------- | -------- |\n | 2018 | 2022 | 3 | 3001 | 3002 |\n\n | 全域营销 | 私域流量 | 新媒体营销 | KOL 生态 | 内容营销 |\n | -------- | -------- | ---------- | -------- | -------- |\n | 3003 | 3004 | 3005 | 3006 | 3008 |\n\n | 直播电商 | 短视频带货 | 娱乐营销 | 营销热点 | 双 11 电商大促 |\n | -------- | ---------- | ------------------- | -------- | -------------- |\n | 3009 | 3010 | 1630464311158738945 | 4 | 4001 |\n\n | 618 电商大促 | 春节营销 | 五一假期营销 | 热点事件盘点 | 消费热点 |\n | ------------ | -------- | ------------ | ------------ | -------- |\n | 4002 | 4003 | 4004 | 4007 | 5 |\n\n | 时尚品牌 | 连锁餐饮 | 新式茶饮 | 智能家电 | 国潮品牌 |\n | -------- | -------- | -------- | -------- | -------- |\n | 5001 | 5002 | 5003 | 5004 | 5007 |\n\n | 白酒品牌 | 精益运营 | 媒介策略 | 用户争夺 | 精细化运营 |\n | ------------------- | -------- | -------- | -------- | ---------- |\n | 1622841828310093825 | 6 | 6001 | 6002 | 6003 |\n\n | 用户分层 | 增长黑马 | 社交裂变 | 新兴领域 | 新能源汽车 |\n | -------- | -------- | -------- | -------- | ---------- |\n | 6004 | 6005 | 6007 | 7 | 7001 |\n\n | 智能汽车 | 新消费 | AIoT | 产业互联网 | AIGC |\n | -------- | ------ | ---- | ---------- | ------------------- |\n | 7002 | 7003 | 7004 | 7005 | 1645677998450511873 |\n\n | OTT 应用 | 智能电视 | 全景数据 | 全景生态 | 微信小程序 |\n | ------------------- | ------------------- | -------- | -------- | ---------- |\n | 1676063510499528705 | 1676063630293045249 | 8 | 8001 | 8002 |\n\n | 支付宝小程序 | 百度智能小程序 | 企业流量 | 抖音小程序 | 手机终端 |\n | ------------ | -------------- | ------------------- | ------------------- | -------- |\n | 8003 | 8004 | 1671052842096496642 | 1676063017220018177 | 9 |\n\n | 智能终端 | 国产终端 | 5G 手机 | 盘点 | 季度报告 |\n | -------- | -------- | ------- | ---- | -------- |\n | 9001 | 9002 | 9003 | 10 | 10001 |\n </details>","location":"report.ts"}} />
:::tip
-将榜单条目集合到一个列表中,可避免推送大量条目,更符合阅读习惯且有热度排序,推荐使用。
-:::
+若订阅行业 [互联网行业](https://www.questmobile.com.cn/research/reports/1/-1),网址为 `https://www.questmobile.com.cn/research/reports/1/-1`
+参数 industry 为 `互联网行业` 或 `1`,此时路由为 [`/questmobile/report/互联网行业`](https://rsshub.app/questmobile/report/互联网行业) 或 [`/questmobile/report/1/-1`](https://rsshub.app/questmobile/report/1/-1)。
-## 巨潮资讯 {#ju-chao-zi-xun}
+若订阅标签 [榜单](https://www.questmobile.com.cn/research/reports/-1/11),网址为 `https://www.questmobile.com.cn/research/reports/-1/11`
+参数 label 为 `榜单` 或 `11`,此时路由为 [`/questmobile/report/榜单`](https://rsshub.app/questmobile/report/榜单) 或 [`/questmobile/report/-1/11`](https://rsshub.app/questmobile/report/-1/11)。
-### 公告 {#ju-chao-zi-xun-gong-gao}
+若订阅行业和标签 [品牌领域 - 互联网经济](https://www.questmobile.com.cn/research/reports/2/1),网址为 `https://www.questmobile.com.cn/research/reports/2/1`
+参数 industry 为 `品牌领域` 或 `2`,参数 label 为 `互联网经济` 或 `1`,此时路由为 [`/questmobile/report/品牌领域/互联网经济`](https://rsshub.app/questmobile/report/品牌领域/互联网经济) 或 [`/questmobile/report/2/1`](https://rsshub.app/questmobile/report/2/1),甚至 [`/questmobile/report/品牌领域/1`](https://rsshub.app/questmobile/report/品牌领域/1)。
+:::
-<Route author="LogicJake hillerliao laampui nczitzk" example="/cninfo/announcement/szse/000002/gssz0000002/category_ndbg_szsh" path="/cninfo/announcement/:column/:code/:orgId/:category?/:search?" paramsDesc={['szse 深圳证券交易所; sse 上海证券交易所; third 新三板; hke 港股; fund 基金', '股票或基金代码', 'orgId 组织 id', '公告分类,A 股及新三板,见下表,默认为全部', '标题关键字,默认为空']}>
- column 为 szse 或 sse 时可选的 category:
+<details>
+ <summary>全部行业和标签</summary>
- | 全部 | 年报 | 半年报 | 一季报 | 三季报 | 业绩预告 | 权益分派 | 董事会 | 监事会 | 股东大会 | 日常经营 | 公司治理 | 中介报告 | 首发 | 增发 | 股权激励 | 配股 | 解禁 | 公司债 | 可转债 | 其他融资 | 股权变动 | 补充更正 | 澄清致歉 | 风险提示 | 特别处理和退市 | 退市整理期 |
- | ---- | -------------------- | --------------------- | --------------------- | --------------------- | ----------------------- | ------------------------ | --------------------- | --------------------- | -------------------- | -------------------- | -------------------- | ------------------ | ------------------ | ------------------ | -------------------- | ------------------ | ------------------ | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- | ---------------------- | --------------------- |
- | all | category\_ndbg\_szsh | category\_bndbg\_szsh | category\_yjdbg\_szsh | category\_sjdbg\_szsh | category\_yjygjxz\_szsh | category\_qyfpxzcs\_szsh | category\_dshgg\_szsh | category\_jshgg\_szsh | category\_gddh\_szsh | category\_rcjy\_szsh | category\_gszl\_szsh | category\_zj\_szsh | category\_sf\_szsh | category\_zf\_szsh | category\_gqjl\_szsh | category\_pg\_szsh | category\_jj\_szsh | category\_gszq\_szsh | category\_kzzq\_szsh | category\_qtrz\_szsh | category\_gqbd\_szsh | category\_bcgz\_szsh | category\_cqdq\_szsh | category\_fxts\_szsh | category\_tbclts\_szsh | category\_tszlq\_szsh |
+ #### 行业
- column 为 third 时可选的 category:
+ | 互联网行业 | 移动社交 | 移动视频 | 移动购物 | 系统工具 |
+ | ---------- | -------- | -------- | -------- | -------- |
+ | 1 | 1001 | 1002 | 1003 | 1004 |
- | 全部 | 临时公告 | 定期公告 | 中介机构公告 | 持续信息披露 | 首次信息披露 |
- | ---- | -------------- | -------------- | -------------- | -------------- | -------------- |
- | all | category\_lsgg | category\_dqgg | category\_zjjg | category\_cxpl | category\_scpl |
+ | 出行服务 | 金融理财 | 生活服务 | 移动音乐 | 新闻资讯 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 1005 | 1006 | 1007 | 1008 | 1009 |
- :::tip
- 需要筛选多个 category 时,应使用 `;` 将多个字段连接起来。
+ | 办公商务 | 手机游戏 | 实用工具 | 数字阅读 | 教育学习 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 1010 | 1011 | 1012 | 1013 | 1014 |
- 如 “年报 + 半年报” 即 `category_ndbg_szsh;category_bndbg_szsh`
- :::
-</Route>
+ | 汽车服务 | 拍摄美化 | 智能设备 | 旅游服务 | 健康美容 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 1015 | 1016 | 1017 | 1018 | 1020 |
-## 卡卡洛普 {#ka-ka-luo-pu}
+ | 育儿母婴 | 主题美化 | 医疗服务 | 品牌领域 | 美妆品牌 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 1022 | 1023 | 1024 | 2 | 2001 |
-### 宅宅新聞 - 分類 {#ka-ka-luo-pu-zhai-zhai-xin-wen-fen-lei}
+ | 母婴品牌 | 家电品牌 | 食品饮料品牌 | 汽车品牌 | 服饰箱包品牌 |
+ | -------- | -------- | ------------ | -------- | ------------ |
+ | 2002 | 2003 | 2004 | 2005 | 2006 |
-<Route author="TonyRL" example="/gamme/news" path="/gamme/news/:category?" paramsDesc={['分類名,可在 URL 找到,預設為 `all`']} radar="1" />
+ #### 标签
-### 宅宅新聞 - 標籤 {#ka-ka-luo-pu-zhai-zhai-xin-wen-biao-qian}
+ | 互联网经济 | 圈层经济 | 粉丝经济 | 银发经济 | 儿童经济 |
+ | ---------- | -------- | -------- | -------- | -------- |
+ | 1 | 1001 | 1002 | 1004 | 1005 |
-<Route author="TonyRL" example="/gamme/news/tag/歐派" path="/gamme/news/tag/:tag" paramsDesc={['標籤,可在 URL 找到']} radar="1" />
+ | 萌宠经济 | 她经济 | 他经济 | 泛娱乐经济 | 下沉市场经济 |
+ | -------- | ------ | ------ | ---------- | ------------ |
+ | 1007 | 1009 | 1010 | 1011 | 1012 |
-### 西斯新聞 - 分類 {#ka-ka-luo-pu-xi-si-xin-wen-fen-lei}
+ | 内容经济 | 订阅经济 | 会员经济 | 居家经济 | 到家经济 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 1013 | 1014 | 1015 | 1016 | 1017 |
-<Route author="TonyRL" example="/gamme/sexynews" path="/gamme/sexynews/:category?" paramsDesc={['分類名,可在 URL 找到,預設為 `all`']} radar="1" />
+ | 颜值经济 | 闲置经济 | 旅游经济 | 人群洞察 | 00 后 |
+ | -------- | -------- | ------------------- | -------- | ----- |
+ | 1018 | 1020 | 1622842051677753346 | 2 | 2002 |
-### 西斯新聞 - 標籤 {#ka-ka-luo-pu-xi-si-xin-wen-biao-qian}
+ | Z 世代 | 银发族 | 宝妈宝爸 | 萌宠人群 | 运动达人 |
+ | ------ | ------ | -------- | -------- | -------- |
+ | 2003 | 2004 | 2005 | 2007 | 2008 |
-<Route author="TonyRL" example="/gamme/sexynews/tag/歐派" path="/gamme/sexynews/tag/:tag" paramsDesc={['標籤,可在 URL 找到']} radar="1" />
+ | 女性消费 | 男性消费 | 游戏人群 | 二次元 | 新中产 |
+ | -------- | -------- | -------- | ------ | ------ |
+ | 2009 | 2010 | 2012 | 2013 | 2014 |
-## 科技島讀 {#ke-ji-dao-du}
+ | 下沉市场用户 | 大学生 | 数字化营销 | 广告效果 | 品牌营销 |
+ | ------------ | ------ | ---------- | -------- | -------- |
+ | 2018 | 2022 | 3 | 3001 | 3002 |
-### 分類 {#ke-ji-dao-du-fen-lei}
+ | 全域营销 | 私域流量 | 新媒体营销 | KOL 生态 | 内容营销 |
+ | -------- | -------- | ---------- | -------- | -------- |
+ | 3003 | 3004 | 3005 | 3006 | 3008 |
-<Route author="nczitzk" example="/daodu" path="/daodu/:caty?" paramsDesc={['分類,默認為全部']}>
- | 全部 | 文章 | Podcast |
- | ---- | ------- | ------- |
- | all | article | podcast |
-</Route>
+ | 直播电商 | 短视频带货 | 娱乐营销 | 营销热点 | 双 11 电商大促 |
+ | -------- | ---------- | ------------------- | -------- | -------------- |
+ | 3009 | 3010 | 1630464311158738945 | 4 | 4001 |
-## 科学网 {#ke-xue-wang}
+ | 618 电商大促 | 春节营销 | 五一假期营销 | 热点事件盘点 | 消费热点 |
+ | ------------ | -------- | ------------ | ------------ | -------- |
+ | 4002 | 4003 | 4004 | 4007 | 5 |
-### 精选博客 {#ke-xue-wang-jing-xuan-bo-ke}
+ | 时尚品牌 | 连锁餐饮 | 新式茶饮 | 智能家电 | 国潮品牌 |
+ | -------- | -------- | -------- | -------- | -------- |
+ | 5001 | 5002 | 5003 | 5004 | 5007 |
-<Route author="nczitzk" example="/sciencenet/blog" path="/sciencenet/blog/:type?/:time?/:sort?" paramsDesc={['类型,见下表,默认为推荐', '时间,见下表,默认为所有时间', '排序,见下表,默认为按发表时间排序']}>
- 类型
+ | 白酒品牌 | 精益运营 | 媒介策略 | 用户争夺 | 精细化运营 |
+ | ------------------- | -------- | -------- | -------- | ---------- |
+ | 1622841828310093825 | 6 | 6001 | 6002 | 6003 |
- | 精选 | 最新 | 热门 |
- | --------- | ---- | ---- |
- | recommend | new | hot |
+ | 用户分层 | 增长黑马 | 社交裂变 | 新兴领域 | 新能源汽车 |
+ | -------- | -------- | -------- | -------- | ---------- |
+ | 6004 | 6005 | 6007 | 7 | 7001 |
- 时间
+ | 智能汽车 | 新消费 | AIoT | 产业互联网 | AIGC |
+ | -------- | ------ | ---- | ---------- | ------------------- |
+ | 7002 | 7003 | 7004 | 7005 | 1645677998450511873 |
- | 36 小时内精选博文 | 一周内精选博文 | 一月内精选博文 | 半年内精选博文 | 所有时间精选博文 |
- | ----------------- | -------------- | -------------- | -------------- | ---------------- |
- | 1 | 2 | 3 | 4 | 5 |
+ | OTT 应用 | 智能电视 | 全景数据 | 全景生态 | 微信小程序 |
+ | ------------------- | ------------------- | -------- | -------- | ---------- |
+ | 1676063510499528705 | 1676063630293045249 | 8 | 8001 | 8002 |
- 排序
+ | 支付宝小程序 | 百度智能小程序 | 企业流量 | 抖音小程序 | 手机终端 |
+ | ------------ | -------------- | ------------------- | ------------------- | -------- |
+ | 8003 | 8004 | 1671052842096496642 | 1676063017220018177 | 9 |
- | 按发表时间排序 | 按评论数排序 | 按点击数排序 |
- | -------------- | ------------ | ------------ |
- | 1 | 2 | 3 |
-</Route>
+ | 智能终端 | 国产终端 | 5G 手机 | 盘点 | 季度报告 |
+ | -------- | -------- | ------- | ---- | -------- |
+ | 9001 | 9002 | 9003 | 10 | 10001 |
+</details>
-### 用户博客 {#ke-xue-wang-yong-hu-bo-ke}
+## Radio-Canada.ca {#radio-canada-ca}
-<Route author="nczitzk" example="/sciencenet/user/tony8310" path="/sciencenet/user/:id" paramsDesc={['用户 id,可在对用户博客页 URL 中找到']} />
+### Latest News {#radio-canada-ca-latest-news}
-## 快科技 {#kuai-ke-ji}
+<Route data={{"path":"/latest/:language?","categories":["new-media"],"example":"/radio-canada/latest","parameters":{"language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ici.radio-canada.ca/rci/:lang","ici.radio-canada.ca/"]},"name":"Latest News","maintainers":["nczitzk"],"description":"| Français | English | Español | 简体中文 | 繁體中文 | العربية | ਪੰਜਾਬੀ | Tagalog |\n | -------- | ------- | ------- | -------- | -------- | ------- | --- | ------- |\n | fr | en | es | zh-hans | zh-hant | ar | pa | tl |","location":"latest.ts"}} />
-### 最新 {#kuai-ke-ji-zui-xin}
+| Français | English | Español | 简体中文 | 繁體中文 | العربية | ਪੰਜਾਬੀ | Tagalog |
+| -------- | ------- | ------- | -------- | -------- | ------- | --- | ------- |
+| fr | en | es | zh-hans | zh-hant | ar | pa | tl |
-<Route author="kt286 nczitzk" example="/mydrivers/new" path="/mydrivers/new" radar="1" />
+## Readhub {#readhub}
-### 热门 {#kuai-ke-ji-re-men}
+### 分类 {#readhub-fen-lei}
-<Route author="nczitzk" example="/mydrivers/hot" path="/mydrivers/hot" radar="1" />
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/readhub","parameters":{"category":"分类,见下表,默认为热门话题"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["WhiteWorld","nczitzk","Fatpandac"],"description":"| 热门话题 | 科技动态 | 医疗产业 | 财经快讯 |\n | -------- | -------- | -------- | ------------------ |\n | | news | medical | financial_express |","location":"index.ts"}} />
-### 发布会 {#kuai-ke-ji-fa-bu-hui}
+| 热门话题 | 科技动态 | 医疗产业 | 财经快讯 |
+| -------- | -------- | -------- | ------------------ |
+| | news | medical | financial\_express |
-<Route author="nczitzk" example="/mydrivers/zhibo" path="/mydrivers/zhibo" radar="1" />
+### 每日早报 {#readhub-mei-ri-zao-bao}
-### 排行 {#kuai-ke-ji-pai-hang}
+<Route data={{"path":"/daily","categories":["new-media"],"example":"/readhub/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["readhub.cn/daily"]},"name":"每日早报","maintainers":["nczitzk"],"url":"readhub.cn/daily","location":"daily.ts"}} />
-<Route author="nczitzk" example="/mydrivers/rank" path="/mydrivers/rank/:range?" paramsDesc={['时间范围,见下表,默认为24小时最热']} radar="1">
- | 24 小时最热 | 本周最热 | 本月最热 |
- | ----------- | -------- | -------- |
- | 0 | 1 | 2 |
-</Route>
+## Sakamichi Series 坂道系列官网资讯 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun}
-### 分类 {#kuai-ke-ji-fen-lei}
+### Hinatazaka46 Blog 日向坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-hinatazaka46-blog-ri-xiang-ban-46-bo-ke}
-<Route author="nczitzk" example="/mydrivers/bcid/801" path="/mydrivers/:category?" paramsDesc={['分类,见下表,默认为最新']} radar="1">
- #### 板块
+<Route data={{"path":"/blog/:id?/:page?","categories":["new-media"],"example":"/hinatazaka46/blog","parameters":{"id":"Member ID, see below, `all` by default","page":"Page, `0` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Hinatazaka46 Blog 日向坂 46 博客","maintainers":[],"description":"Member ID\n\n | Member ID | Name |\n | --------- | ------------ |\n | 2000 | 四期生リレー |\n | 36 | 渡辺 莉奈 |\n | 35 | 山下 葉留花 |\n | 34 | 宮地 すみれ |\n | 33 | 藤嶌 果歩 |\n | 32 | 平岡 海月 |\n | 31 | 平尾 帆夏 |\n | 30 | 竹内 希来里 |\n | 29 | 正源司 陽子 |\n | 28 | 清水 理央 |\n | 27 | 小西 夏菜実 |\n | 26 | 岸 帆夏 |\n | 25 | 石塚 瑶季 |\n | 24 | 山口 陽世 |\n | 23 | 森本 茉莉 |\n | 22 | 髙橋 未来虹 |\n | 21 | 上村 ひなの |\n | 18 | 松田 好花 |\n | 17 | 濱岸 ひより |\n | 16 | 丹生 明里 |\n | 15 | 富田 鈴花 |\n | 14 | 小坂 菜緒 |\n | 13 | 河田 陽菜 |\n | 12 | 金村 美玖 |\n | 11 | 東村 芽依 |\n | 10 | 高本 彩花 |\n | 9 | 高瀬 愛奈 |\n | 8 | 佐々木 美玲 |\n | 7 | 佐々木 久美 |\n | 6 | 齊藤 京子 |\n | 5 | 加藤 史帆 |\n | 4 | 影山 優佳 |\n | 2 | 潮 紗理菜 |","location":"blog.ts"}} />
+
+Member ID
+
+| Member ID | Name |
+| --------- | ------------ |
+| 2000 | 四期生リレー |
+| 36 | 渡辺 莉奈 |
+| 35 | 山下 葉留花 |
+| 34 | 宮地 すみれ |
+| 33 | 藤嶌 果歩 |
+| 32 | 平岡 海月 |
+| 31 | 平尾 帆夏 |
+| 30 | 竹内 希来里 |
+| 29 | 正源司 陽子 |
+| 28 | 清水 理央 |
+| 27 | 小西 夏菜実 |
+| 26 | 岸 帆夏 |
+| 25 | 石塚 瑶季 |
+| 24 | 山口 陽世 |
+| 23 | 森本 茉莉 |
+| 22 | 髙橋 未来虹 |
+| 21 | 上村 ひなの |
+| 18 | 松田 好花 |
+| 17 | 濱岸 ひより |
+| 16 | 丹生 明里 |
+| 15 | 富田 鈴花 |
+| 14 | 小坂 菜緒 |
+| 13 | 河田 陽菜 |
+| 12 | 金村 美玖 |
+| 11 | 東村 芽依 |
+| 10 | 高本 彩花 |
+| 9 | 高瀬 愛奈 |
+| 8 | 佐々木 美玲 |
+| 7 | 佐々木 久美 |
+| 6 | 齊藤 京子 |
+| 5 | 加藤 史帆 |
+| 4 | 影山 優佳 |
+| 2 | 潮 紗理菜 |
- | 电脑 | 手机 | 汽车 | 业界 | 游戏 |
- | -------- | -------- | -------- | -------- | -------- |
- | bcid/801 | bcid/802 | bcid/807 | bcid/803 | bcid/806 |
+### Hinatazaka46 News 日向坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-hinatazaka46-news-ri-xiang-ban-46-xin-wen}
- #### 话题
+<Route data={{"path":"/news","categories":["new-media"],"example":"/hinatazaka46/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hinatazaka46.com/s/official/news/list","hinatazaka46.com/"]},"name":"Hinatazaka46 News 日向坂 46 新闻","maintainers":["crispgm","akashigakki"],"url":"hinatazaka46.com/s/official/news/list","location":"news.ts"}} />
- | 科学 | 排行 | 评测 | 一图 |
- | -------- | -------- | -------- | -------- |
- | tid/1000 | tid/1001 | tid/1002 | tid/1003 |
+## Sakamichi Series 坂道系列官网资讯 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun}
- #### 品牌
+### Nogizaka46 Blog 乃木坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-nogizaka46-blog-nai-mu-ban-46-bo-ke}
- | 安卓 | 阿里 | 微软 | 百度 | PS5 | Xbox | 华为 |
- | -------- | -------- | ------- | ------- | --------- | -------- | -------- |
- | icid/121 | icid/270 | icid/90 | icid/67 | icid/6950 | icid/194 | icid/136 |
+<Route data={{"path":"/blog/:id?","categories":["new-media"],"example":"/nogizaka46/blog","parameters":{"id":"Member ID, see below, `all` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["blog.nogizaka46.com/s/n46/diary/MEMBER"],"target":"/blog"},"name":"Nogizaka46 Blog 乃木坂 46 博客","maintainers":["Kasper4649","akashigakki"],"url":"blog.nogizaka46.com/s/n46/diary/MEMBER","description":"Member ID\n\n | Member ID | Name |\n | --------- | --------------------- |\n | 55401 | 岡本 姫奈 |\n | 55400 | 川﨑 桜 |\n | 55397 | 池田 瑛紗 |\n | 55396 | 五百城 茉央 |\n | 55395 | 中西 アルノ |\n | 55394 | 奥田 いろは |\n | 55393 | 冨里 奈央 |\n | 55392 | 小川 彩 |\n | 55391 | 菅原 咲月 |\n | 55390 | 一ノ瀬 美空 |\n | 55389 | 井上 和 |\n | 55387 | 弓木 奈於 |\n | 55386 | 松尾 美佑 |\n | 55385 | 林 瑠奈 |\n | 55384 | 佐藤 璃果 |\n | 55383 | 黒見 明香 |\n | 48014 | 清宮 レイ |\n | 48012 | 北川 悠理 |\n | 48010 | 金川 紗耶 |\n | 48019 | 矢久保 美緒 |\n | 48018 | 早川 聖来 |\n | 48009 | 掛橋 沙耶香 |\n | 48008 | 賀喜 遥香 |\n | 48017 | 筒井 あやめ |\n | 48015 | 田村 真佑 |\n | 48013 | 柴田 柚菜 |\n | 48006 | 遠藤 さくら |\n | 36760 | 与田 祐希 |\n | 36759 | 吉田 綾乃クリスティー |\n | 36758 | 山下 美月 |\n | 36757 | 向井 葉月 |\n | 36756 | 中村 麗乃 |\n | 36755 | 佐藤 楓 |\n | 36754 | 阪口 珠美 |\n | 36753 | 久保 史緒里 |\n | 36752 | 大園 桃子 |\n | 36751 | 梅澤 美波 |\n | 36750 | 岩本 蓮加 |\n | 36749 | 伊藤 理々杏 |\n | 264 | 齋藤 飛鳥 |","location":"blog.ts"}} />
+
+Member ID
+
+| Member ID | Name |
+| --------- | --------------------- |
+| 55401 | 岡本 姫奈 |
+| 55400 | 川﨑 桜 |
+| 55397 | 池田 瑛紗 |
+| 55396 | 五百城 茉央 |
+| 55395 | 中西 アルノ |
+| 55394 | 奥田 いろは |
+| 55393 | 冨里 奈央 |
+| 55392 | 小川 彩 |
+| 55391 | 菅原 咲月 |
+| 55390 | 一ノ瀬 美空 |
+| 55389 | 井上 和 |
+| 55387 | 弓木 奈於 |
+| 55386 | 松尾 美佑 |
+| 55385 | 林 瑠奈 |
+| 55384 | 佐藤 璃果 |
+| 55383 | 黒見 明香 |
+| 48014 | 清宮 レイ |
+| 48012 | 北川 悠理 |
+| 48010 | 金川 紗耶 |
+| 48019 | 矢久保 美緒 |
+| 48018 | 早川 聖来 |
+| 48009 | 掛橋 沙耶香 |
+| 48008 | 賀喜 遥香 |
+| 48017 | 筒井 あやめ |
+| 48015 | 田村 真佑 |
+| 48013 | 柴田 柚菜 |
+| 48006 | 遠藤 さくら |
+| 36760 | 与田 祐希 |
+| 36759 | 吉田 綾乃クリスティー |
+| 36758 | 山下 美月 |
+| 36757 | 向井 葉月 |
+| 36756 | 中村 麗乃 |
+| 36755 | 佐藤 楓 |
+| 36754 | 阪口 珠美 |
+| 36753 | 久保 史緒里 |
+| 36752 | 大園 桃子 |
+| 36751 | 梅澤 美波 |
+| 36750 | 岩本 蓮加 |
+| 36749 | 伊藤 理々杏 |
+| 264 | 齋藤 飛鳥 |
- | 小米 | VIVO | 三星 | 魅族 | 一加 | 比亚迪 | 小鹏 |
- | --------- | -------- | -------- | -------- | -------- | -------- | --------- |
- | icid/9355 | icid/288 | icid/154 | icid/140 | icid/385 | icid/770 | icid/7259 |
+### Nogizaka46 News 乃木坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-nogizaka46-news-nai-mu-ban-46-xin-wen}
- | 蔚来 | 理想 | 奔驰 | 宝马 | 大众 |
- | --------- | ---------- | -------- | -------- | -------- |
- | icid/7318 | icid/12947 | icid/429 | icid/461 | icid/481 |
+<Route data={{"path":"/news","categories":["new-media"],"example":"/nogizaka46/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.nogizaka46.com/s/n46/news/list"]},"name":"Nogizaka46 News 乃木坂 46 新闻","maintainers":["crispgm","Fatpandac"],"url":"news.nogizaka46.com/s/n46/news/list","location":"news.ts"}} />
- <details>
- <summary>更多分类</summary>
+## Sakamichi Series 坂道系列官网资讯 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun}
- | 电脑配件 | 手机之家 | 家用电器 | 网络设备 | 办公外设 | 游戏之家 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/2 | cid/3 | cid/4 | cid/5 | cid/6 | cid/7 |
+### Sakurazaka46 Blog 櫻坂 46 博客 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-sakurazaka46-blog-ying-ban-46-bo-ke}
- | 电脑软件 | 业内动向 | 品牌整机 | 其它资讯 | 显卡 | CPU |
- | -------- | -------- | -------- | -------- | ------ | ------ |
- | cid/8 | cid/9 | cid/10 | cid/11 | cid/12 | cid/13 |
+<Route data={{"path":"/blog/:id?/:page?","categories":["new-media"],"example":"/sakurazaka46/blog","parameters":{"id":"Member ID, see below, `all` by default","page":"Page, `0` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Sakurazaka46 Blog 櫻坂 46 博客","maintainers":["victor21813","nczitzk","akashigakki"],"description":"Member ID\n\n | Member ID | Name |\n | --------- | ------------ |\n | 2000 | 三期生リレー |\n | 69 | 山下 瞳月 |\n | 68 | 村山 美羽 |\n | 67 | 村井 優 |\n | 66 | 向井 純葉 |\n | 65 | 的野 美青 |\n | 64 | 中嶋 優月 |\n | 63 | 谷口 愛季 |\n | 62 | 小島 凪紗 |\n | 61 | 小田倉 麗奈 |\n | 60 | 遠藤 理子 |\n | 59 | 石森 璃花 |\n | 58 | 守屋 麗奈 |\n | 57 | 増本 綺良 |\n | 56 | 幸阪 茉里乃 |\n | 55 | 大沼 晶保 |\n | 54 | 大園 玲 |\n | 53 | 遠藤 光莉 |\n | 51 | 山﨑 天 |\n | 50 | 森田 ひかる |\n | 48 | 松田 里奈 |\n | 47 | 藤吉 夏鈴 |\n | 46 | 田村 保乃 |\n | 45 | 武元 唯衣 |\n | 44 | 関 有美子 |\n | 43 | 井上 梨名 |\n | 15 | 原田 葵 |\n | 14 | 土生 瑞穂 |\n | 11 | 菅井 友香 |\n | 08 | 齋藤 冬優花 |\n | 07 | 小林 由依 |\n | 06 | 小池 美波 |\n | 04 | 尾関 梨香 |\n | 03 | 上村 莉菜 |","location":"blog.ts"}} />
+
+Member ID
+
+| Member ID | Name |
+| --------- | ------------ |
+| 2000 | 三期生リレー |
+| 69 | 山下 瞳月 |
+| 68 | 村山 美羽 |
+| 67 | 村井 優 |
+| 66 | 向井 純葉 |
+| 65 | 的野 美青 |
+| 64 | 中嶋 優月 |
+| 63 | 谷口 愛季 |
+| 62 | 小島 凪紗 |
+| 61 | 小田倉 麗奈 |
+| 60 | 遠藤 理子 |
+| 59 | 石森 璃花 |
+| 58 | 守屋 麗奈 |
+| 57 | 増本 綺良 |
+| 56 | 幸阪 茉里乃 |
+| 55 | 大沼 晶保 |
+| 54 | 大園 玲 |
+| 53 | 遠藤 光莉 |
+| 51 | 山﨑 天 |
+| 50 | 森田 ひかる |
+| 48 | 松田 里奈 |
+| 47 | 藤吉 夏鈴 |
+| 46 | 田村 保乃 |
+| 45 | 武元 唯衣 |
+| 44 | 関 有美子 |
+| 43 | 井上 梨名 |
+| 15 | 原田 葵 |
+| 14 | 土生 瑞穂 |
+| 11 | 菅井 友香 |
+| 08 | 齋藤 冬優花 |
+| 07 | 小林 由依 |
+| 06 | 小池 美波 |
+| 04 | 尾関 梨香 |
+| 03 | 上村 莉菜 |
- | 主板 | 内存 | 硬盘 | 机箱 | 电源 | 散热器 |
- | ------ | ------ | ------ | ------ | ------ | ------ |
- | cid/14 | cid/15 | cid/16 | cid/17 | cid/18 | cid/19 |
+### Sakurazaka46 News 櫻坂 46 新闻 {#sakamichi-series-ban-dao-xi-lie-guan-wang-zi-xun-sakurazaka46-news-ying-ban-46-xin-wen}
- | 光驱 | 声卡 | 键鼠 | 音箱 | 手机厂商 | 手机配件 |
- | ------ | ------ | ------ | ------ | -------- | -------- |
- | cid/20 | cid/21 | cid/22 | cid/23 | cid/24 | cid/25 |
+<Route data={{"path":"/news","categories":["new-media"],"example":"/sakurazaka46/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sakurazaka46.com/s/s46/news/list","sakurazaka46.com/"]},"name":"Sakurazaka46 News 櫻坂 46 新闻","maintainers":["nczitzk"],"url":"sakurazaka46.com/s/s46/news/list","location":"news.ts"}} />
- | PDA | MP3/MP4 | 摄像机 | 数码相机 | 摄像头 | 数码配件 |
- | ------ | ------- | ------ | -------- | ------ | -------- |
- | cid/26 | cid/27 | cid/29 | cid/30 | cid/31 | cid/32 |
+## Samsung {#samsung}
- | 电子书 | 导航产品 | 录音笔 | 交换机 | 路由器 | 防火墙 |
- | ------ | -------- | ------ | ------ | ------ | ------ |
- | cid/33 | cid/34 | cid/35 | cid/37 | cid/38 | cid/40 |
+### Research Blog {#samsung-research-blog}
- | 网卡 | 网络存储 | UPS | 打印机 | 复印机 | 复合机 |
- | ------ | -------- | ------ | ------ | ------ | ------ |
- | cid/41 | cid/43 | cid/44 | cid/45 | cid/46 | cid/47 |
+<Route data={{"path":"/research/blog","categories":["new-media"],"example":"/samsung/research/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["research.samsung.com/blog","research.samsung.com/"]},"name":"Research Blog","maintainers":["nczitzk"],"url":"research.samsung.com/blog","location":"research/blog.ts"}} />
- | 投影仪 | 扫描仪 | 传真机 | 电脑游戏 | 主机游戏 | 游戏主机 |
- | ------ | ------ | ------ | -------- | -------- | -------- |
- | cid/48 | cid/49 | cid/51 | cid/52 | cid/53 | cid/54 |
+## Sensor Tower {#sensor-tower}
- | 掌机游戏 | 电脑驱动 | 桌面系统 | 视点人物 | 数据报告 | 科技前沿 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/55 | cid/57 | cid/58 | cid/62 | cid/63 | cid/65 |
+### Blog {#sensor-tower-blog}
- | 笔记本 | 台式机 | 服务器 | 一体机 | 其他 | PC 硬件 |
- | ------ | ------ | ------ | ------ | ------ | ------- |
- | cid/66 | cid/67 | cid/68 | cid/69 | cid/73 | cid/74 |
+<Route data={{"path":"/blog/:language?","categories":["new-media"],"example":"/sensortower/blog","parameters":{"language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sensortower.com/blog","sensortower.com/zh-CN/blog","sensortower.com/ja/blog","sensortower.com/ko/blog","sensortower.com/"],"target":"/blog"},"name":"Blog","maintainers":["nczitzk"],"url":"sensortower.com/blog","description":"| English | Chinese | Japanese | Korean |\n | ------- | ------- | -------- | ------ |\n | | zh-CN | ja | ko |","location":"blog.ts"}} />
- | 时尚数码 | 软件驱动 | 显示器 | 音箱耳机 | 投影机 | 便携机 |
- | -------- | -------- | ------ | -------- | ------- | ------- |
- | cid/78 | cid/79 | cid/80 | cid/92 | cid/100 | cid/108 |
+| English | Chinese | Japanese | Korean |
+| ------- | ------- | -------- | ------ |
+| | zh-CN | ja | ko |
- | 手机 | MP3 | MP4 | 闪存盘 | DV 摄像机 | U 盘 |
- | ------- | ------- | ------- | ------- | --------- | ------- |
- | cid/109 | cid/112 | cid/113 | cid/114 | cid/115 | cid/116 |
+## Sky Sports {#sky-sports}
- | GPS | 移动硬盘 | 操作系统 | 驱动 | 软件 | 软件更新 |
- | ------- | -------- | -------- | ------- | ------- | -------- |
- | cid/117 | cid/119 | cid/120 | cid/121 | cid/122 | cid/123 |
+### News {#sky-sports-news}
- | 新软推荐 | 业界动态 | 软件评测 | 软件技巧 | 游戏相关 | 驱动研究 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/124 | cid/125 | cid/126 | cid/127 | cid/128 | cid/130 |
+<Route data={{"path":"/news/:team","categories":["new-media"],"example":"/skysports/news/ac-milan","parameters":{"team":"Team id, can be found in URL to the team page"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["nczitzk"],"location":"news.ts"}} />
- | 游戏试玩 | 硬件学堂 | 实用技巧 | 新软体验 | 资讯教程 | 软件横评 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/131 | cid/132 | cid/133 | cid/134 | cid/135 | cid/136 |
+## SupChina {#supchina}
- | Windows | Mac | Linux | 其它 | 使用技巧 | 深入研究 |
- | ------- | ------- | ------- | ------- | -------- | -------- |
- | cid/137 | cid/138 | cid/139 | cid/140 | cid/141 | cid/142 |
+### Podcasts {#supchina-podcasts}
- | 游戏机 | 显示 | 存储 | 音频 | 外设 | 数码 |
- | ------- | ------- | ------- | ------- | ------- | ------- |
- | cid/144 | cid/145 | cid/146 | cid/147 | cid/148 | cid/151 |
+<Route data={{"path":"/podcasts","categories":["new-media"],"example":"/supchina/podcasts","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["supchina.com/podcasts","supchina.com/"]},"name":"Podcasts","maintainers":["nczitzk"],"url":"supchina.com/podcasts","location":"podcasts.ts"}} />
- | 网络 | 办公 | 维修 | 安全 | 聊天 | 影音 |
- | ------- | ------- | ------- | ------- | ------- | ------- |
- | cid/152 | cid/154 | cid/155 | cid/156 | cid/157 | cid/158 |
+## swissinfo {#swissinfo}
- | 国内 | 国外 | 办公应用 | 设计创意 | 基础知识 | 程序 |
- | ------- | ------- | -------- | -------- | -------- | ------- |
- | cid/159 | cid/160 | cid/161 | cid/162 | cid/163 | cid/164 |
+### Category {#swissinfo-category}
- | 其他硬件 | 电视卡 / 盒 | 游戏体验 | 平板电视 | 企业动态 | 天文航天 |
- | -------- | ----------- | -------- | -------- | -------- | -------- |
- | cid/166 | cid/170 | cid/172 | cid/173 | cid/174 | cid/175 |
+<Route data={{"path":"/:language?/:category?","categories":["new-media"],"example":"/swissinfo/eng/latest-news","parameters":{"language":"Language, eng by default","category":"Category, Latest News by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swissinfo.ch/:language/:category","swissinfo.ch/"]},"name":"Category","maintainers":["nczitzk"],"location":"index.ts"}} />
- | MID 设备 | 数码相框 | 耳机 | 通讯运营商 | 电视盒 | 线材线缆 |
- | -------- | -------- | ------- | ---------- | ------- | -------- |
- | cid/176 | cid/177 | cid/179 | cid/180 | cid/182 | cid/183 |
+## TechCrunch {#techcrunch}
- | 小家电 | 网络游戏 | 行情信息 | 科学动态 | 生物世界 | 历史考古 |
- | ------- | -------- | -------- | -------- | -------- | -------- |
- | cid/184 | cid/186 | cid/188 | cid/192 | cid/193 | cid/194 |
+### News {#techcrunch-news}
- | 生科医学 | 地理自然 | 工程建筑 | 苹果手机 | 谷歌 Android | 塞班手机 |
- | -------- | -------- | -------- | -------- | ------------ | -------- |
- | cid/195 | cid/196 | cid/197 | cid/201 | cid/202 | cid/203 |
+<Route data={{"path":"/news","categories":["new-media"],"example":"/techcrunch/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["techcrunch.com/"]},"name":"News","maintainers":["EthanWng97"],"url":"techcrunch.com/","location":"news.ts"}} />
- | 黑莓手机 | 微软手机 | 移动处理器 | 山寨机 | 手机游戏 | 安卓应用 |
- | -------- | -------- | ---------- | ------- | -------- | -------- |
- | cid/204 | cid/205 | cid/206 | cid/208 | cid/209 | cid/210 |
+## TechPowerUp {#techpowerup}
- | 娱乐生活 | 明星全接触 | 电影影讯 | 电视节目 | 音乐戏曲 | 国际风云 |
- | -------- | ---------- | -------- | -------- | -------- | -------- |
- | cid/212 | cid/213 | cid/214 | cid/215 | cid/216 | cid/217 |
+### Reviews {#techpowerup-reviews}
- | 国内传真 | 社会民生 | 生活百态 | 医药健康 | 家居尚品 | 星座旅游 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/218 | cid/219 | cid/220 | cid/221 | cid/222 | cid/223 |
+<Route data={{"path":"/review/:keyword?","categories":["new-media"],"example":"/techpowerup/review/4090","parameters":{"keyword":"Search Keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["techpowerup.com/"],"target":""},"name":"Reviews","maintainers":["TonyRL"],"url":"techpowerup.com/","location":"review.ts"}} />
- | 评论分析 | 体育竞技 | IT 八卦 | 科技动态 | 游戏动态 | 手机系统 |
- | -------- | -------- | ------- | -------- | -------- | -------- |
- | cid/224 | cid/225 | cid/226 | cid/227 | cid/228 | cid/232 |
+## The Verge {#the-verge}
- | 智能设备 | 生活电器 | 汽车相关 | 飞机航空 | 手机周边 | 网络运营商 |
- | -------- | -------- | -------- | -------- | -------- | ---------- |
- | cid/233 | cid/234 | cid/235 | cid/236 | cid/237 | cid/238 |
+### The Verge {#the-verge-the-verge}
- | 平板电脑 | 苹果 iPad | 安卓平板 | Windows 平板 | 创业路上 | 网友热议 |
- | -------- | --------- | -------- | ------------ | -------- | -------- |
- | cid/239 | cid/240 | cid/241 | cid/242 | cid/243 | cid/244 |
+<Route data={{"path":"/:hub?","categories":["new-media"],"example":"/theverge","parameters":{"hub":"Hub, see below, All Posts by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["theverge.com/:hub","theverge.com/"]},"name":"The Verge","maintainers":["HenryQW","vbali"],"description":"| Hub | Hub name |\n | ----------- | ------------------- |\n | | All Posts |\n | android | Android |\n | apple | Apple |\n | apps | Apps & Software |\n | blackberry | BlackBerry |\n | culture | Culture |\n | gaming | Gaming |\n | hd | HD & Home |\n | microsoft | Microsoft |\n | photography | Photography & Video |\n | policy | Policy & Law |\n | web | Web & Social |\n\n Provides a better reading experience (full text articles) over the official one.","location":"index.ts"}} />
+
+| Hub | Hub name |
+| ----------- | ------------------- |
+| | All Posts |
+| android | Android |
+| apple | Apple |
+| apps | Apps & Software |
+| blackberry | BlackBerry |
+| culture | Culture |
+| gaming | Gaming |
+| hd | HD & Home |
+| microsoft | Microsoft |
+| photography | Photography & Video |
+| policy | Policy & Law |
+| web | Web & Social |
+
+Provides a better reading experience (full text articles) over the official one.
- | IT 圈 | 数码周边 | 智能手环 | 智能眼镜 | 智能手表 | iOS 应用 |
- | ------- | -------- | -------- | -------- | -------- | -------- |
- | cid/246 | cid/247 | cid/248 | cid/249 | cid/250 | cid/251 |
+## ThoughtCo {#thoughtco}
- | 壁纸主题 | 游戏厂商 | 数理化学 | 科普知识 | 奇趣探险 | 汽车世界 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/252 | cid/253 | cid/254 | cid/255 | cid/256 | cid/257 |
+### Category {#thoughtco-category}
- | 传统汽车 | 电动汽车 | 新能源汽车 | 无人驾驶汽车 | 车载系统 | 车载配件 |
- | -------- | -------- | ---------- | ------------ | -------- | -------- |
- | cid/258 | cid/259 | cid/260 | cid/261 | cid/262 | cid/263 |
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/thoughtco","parameters":{"category":"Category id, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"description":"#### Science, Tech, Math\n\n | category | id |\n | ---------------- | -------------------------- |\n | Science | science-4132464 |\n | Math | math-4133545 |\n | Social Sciences | social-sciences-4133522 |\n | Computer Science | computer-science-4133486 |\n | Animals & Nature | animals-and-nature-4133421 |\n\n #### Humanities\n\n | category | id |\n | ----------------- | --------------------------- |\n | History & Culture | history-and-culture-4133356 |\n | Visual Arts | visual-arts-4132957 |\n | Literature | literature-4133251 |\n | English | english-4688281 |\n | Geography | geography-4133035 |\n | Philosophy | philosophy-4133025 |\n | Issues | issues-4133022 |\n\n #### Languages\n\n | category | id |\n | ---------------------------- | ---------------- |\n | English as a Second Language | esl-4133095 |\n | Spanish | spanish-4133085 |\n | French | french-4133079 |\n | German | german-4133073 |\n | Italian | italian-4133069 |\n | Japanese | japanese-4133062 |\n | Mandarin | mandarin-4133057 |\n | Russian | russian-4175265 |\n\n #### Resources\n\n | category | id |\n | ---------------------- | ---------------------------- |\n | For Students & Parents | for-students-parents-4132588 |\n | For Educators | for-educators-4132509 |\n | For Adult Learners | for-adult-learners-4132469 |\n\n <details>\n <summary>More categories</summary>\n\n #### Science\n\n | category | id |\n | ----------------- | --------------------------- |\n | Chemistry | chemistry-4133594 |\n | Biology | biology-4133580 |\n | Physics | physics-4133571 |\n | Geology | geology-4133564 |\n | Astronomy | astronomy-4133558 |\n | Weather & Climate | weather-and-climate-4133550 |\n\n #### Math\n\n | category | id |\n | --------------------- | ------------------------------- |\n | Math Tutorials | math-tutorials-4133543 |\n | Geometry | geometry-4133540 |\n | Arithmetic | arithmetic-4133542 |\n | Pre Algebra & Algebra | pre-algebra-and-algebra-4133541 |\n | Statistics | statistics-4133539 |\n | Exponential Decay | exponential-decay-4133528 |\n | Worksheets By Grade | worksheets-by-grade-4133526 |\n | Resources | math-resources-4133523 |\n\n #### Social Sciences\n\n | category | id |\n | ----------- | ------------------- |\n | Psychology | psychology-4160512 |\n | Sociology | sociology-4133515 |\n | Archaeology | archaeology-4133504 |\n | Economics | economics-4133521 |\n | Ergonomics | ergonomics-4133492 |\n\n #### Computer Science\n\n | category | id |\n | ---------------------- | -------------------------------- |\n | PHP Programming | php-4133485 |\n | Perl | perl-4133481 |\n | Python | python-4133477 |\n | Java Programming | java-programming-4133478 |\n | Javascript Programming | javascript-programming-4133476 |\n | Delphi Programming | delphi-programming-4133475 |\n | C & C++ Programming | c-and-c-plus-programming-4133470 |\n | Ruby Programming | ruby-programming-4133469 |\n | Visual Basic | visual-basic-4133468 |\n\n #### Animals and Nature\n\n | category | id |\n | ---------------- | ------------------------ |\n | Amphibians | amphibians-4133418 |\n | Birds | birds-4133416 |\n | Habitat Profiles | habitat-profiles-4133412 |\n | Mammals | mammals-4133411 |\n | Reptiles | reptiles-4133408 |\n | Insects | insects-4133406 |\n | Marine Life | marine-life-4133393 |\n | Forestry | forestry-4133386 |\n | Dinosaurs | dinosaurs-4133376 |\n | Evolution | evolution-4133366 |\n\n #### History and Culture\n\n | category | id |\n | ------------------------------ | ---------------------------------------- |\n | American History | american-history-4133354 |\n | African American History | african-american-history-4133344 |\n | African History | african-history-4133338 |\n | Ancient History and Culture | ancient-history-4133336 |\n | Asian History | asian-history-4133325 |\n | European History | european-history-4133316 |\n | Genealogy | genealogy-4133308 |\n | Inventions | inventions-4133303 |\n | Latin American History | latin-american-history-4133296 |\n | Medieval & Renaissance History | medieval-and-renaissance-history-4133289 |\n | Military History | military-history-4133285 |\n | The 20th Century | 20th-century-4133273 |\n | Women's History | womens-history-4133260 |\n\n #### Visual Arts\n\n | category | id |\n | ------------- | -------------------- |\n | Art & Artists | art-4132956 |\n | Architecture | architecture-4132953 |\n\n #### Literature\n\n | category | id |\n | ------------------ | -------------------------- |\n | Best Sellers | best-sellers-4133250 |\n | Classic Literature | classic-literature-4133245 |\n | Plays & Drama | plays-and-drama-4133239 |\n | Poetry | poetry-4133232 |\n | Quotations | quotations-4133229 |\n | Shakespeare | shakespeare-4133223 |\n | Short Stories | short-stories-4133217 |\n | Children's Books | childrens-books-4133216 |\n\n #### English\n\n | category | id |\n | --------------- | ----------------------- |\n | English Grammar | english-grammar-4133049 |\n | Writing | writing-4133048 |\n\n #### Geography\n\n | category | id |\n | ------------------------ | ---------------------------------- |\n | Basics | geography-basics-4133034 |\n | Physical Geography | physical-geography-4133032 |\n | Political Geography | political-geography-4133033 |\n | Population | population-4133031 |\n | Country Information | country-information-4133030 |\n | Key Figures & Milestones | key-figures-and-milestones-4133029 |\n | Maps | maps-4133027 |\n | Urban Geography | urban-geography-4133026 |\n\n #### Philosophy\n\n | category | id |\n | ------------------------------ | ---------------------------------------- |\n | Philosophical Theories & Ideas | philosophical-theories-and-ideas-4133024 |\n | Major Philosophers | major-philosophers-4133023 |\n\n #### Issues\n\n | category | id |\n | --------------------------------- | -------------------------------- |\n | The U. S. Government | us-government-4133021 |\n | U.S. Foreign Policy | us-foreign-policy-4133010 |\n | U.S. Liberal Politics | us-liberal-politics-4133009 |\n | U.S. Conservative Politics | us-conservative-politics-4133006 |\n | Women's Issues | womens-issues-4133002 |\n | Civil Liberties | civil-liberties-4132996 |\n | The Middle East | middle-east-4132989 |\n | Race Relations | race-relations-4132982 |\n | Immigration | immigration-4132977 |\n | Crime & Punishment | crime-and-punishment-4132972 |\n | Canadian Government | canadian-government-4132959 |\n | Understanding Types of Government | types-of-government-5179107 |\n\n #### English as a Second Language\n\n | category | id |\n | ---------------------------- | ------------------------------------------ |\n | Pronunciation & Conversation | esl-pronunciation-and-conversation-4133093 |\n | Vocabulary | esl-vocabulary-4133092 |\n | Writing Skills | esl-writing-skills-4133091 |\n | Reading Comprehension | esl-reading-comprehension-4133090 |\n | Grammar | esl-grammar-4133089 |\n | Business English | esl-business-english-4133088 |\n | Resources for Teachers | resources-for-esl-teachers-4133087 |\n\n #### Spanish\n\n | category | id |\n | ----------------- | ----------------------------------- |\n | History & Culture | spanish-history-and-culture-4133084 |\n | Pronunciation | spanish-pronunciation-4133083 |\n | Vocabulary | spanish-vocabulary-4133082 |\n | Writing Skills | spanish-writing-skills-4133081 |\n | Grammar | spanish-grammar-4133080 |\n\n #### French\n\n | category | id |\n | ---------------------------- | -------------------------------------------- |\n | Pronunciation & Conversation | french-pronunciation-4133075 |\n | Vocabulary | french-vocabulary-4133076 |\n | Grammar | french-grammar-4133074 |\n | Resources For Teachers | french-resources-for-french-teachers-4133077 |\n\n #### German\n\n | category | id |\n | ---------------------------- | ---------------------------------- |\n | History & Culture | german-history-and-culture-4133071 |\n | Pronunciation & Conversation | german-pronunciation-4133070 |\n | Vocabulary | german-vocabulary-4133068 |\n | Grammar | german-grammar-4133067 |\n\n #### Italian\n\n | category | id |\n | ----------------- | ----------------------------------- |\n | History & Culture | italian-history-and-culture-4133065 |\n | Vocabulary | italian-vocabulary-4133061 |\n | Grammar | italian-grammar-4133063 |\n\n #### Japanese\n\n | category | id |\n | ----------------------------- | ------------------------------------ |\n | History & Culture | japanese-history-and-culture-4133058 |\n | Essential Japanese Vocabulary | japanese-vocabulary-4133060 |\n | Japanese Grammar | japanese-grammar-4133056 |\n\n #### Mandarin\n\n | category | id |\n | -------------------------------- | ---------------------------------------- |\n | Mandarin History and Culture | mandarin-history-and-culture-4133054 |\n | Pronunciation | mandarin-pronunciation-4133053 |\n | Vocabulary | mandarin-vocabulary-4133052 |\n | Understanding Chinese Characters | understanding-chinese-characters-4133051 |\n\n #### Russian\n\n | category | id |\n | -------- | --------------- |\n | Russian | russian-4175265 |\n\n #### For Students & Parents\n\n | category | id |\n | ------------------ | -------------------------- |\n | Homework Help | homework-help-4132587 |\n | Private School | private-school-4132514 |\n | Test Prep | test-prep-4132578 |\n | College Admissions | college-admissions-4132565 |\n | College Life | college-life-4132553 |\n | Graduate School | graduate-school-4132543 |\n | Business School | business-school-4132536 |\n | Law School | law-school-4132527 |\n | Distance Learning | distance-learning-4132521 |\n\n #### For Educators\n\n | category | id |\n | -------------------- | ----------------------------- |\n | Becoming A Teacher | becoming-a-teacher-4132510 |\n | Assessments & Tests | assessments-and-tests-4132508 |\n | Elementary Education | elementary-education-4132507 |\n | Secondary Education | secondary-education-4132504 |\n | Special Education | special-education-4132499 |\n | Teaching | teaching-4132488 |\n | Homeschooling | homeschooling-4132480 |\n\n #### For Adult Learners\n\n | category | id |\n | ----------------------- | ------------------------------- |\n | Tips For Adult Students | tips-for-adult-students-4132468 |\n | Getting Your Ged | getting-your-ged-4132466 |\n </details>","location":"index.ts"}} />
- | 汽车厂商 | 影音动漫 | 精彩影视 | 电影动画 | 艺术设计 | 摄影达人 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/264 | cid/265 | cid/266 | cid/267 | cid/269 | cid/270 |
+#### Science, Tech, Math {#thoughtco-category-science-tech-math}
- | 固件 | 样张赏析 | 创意摄影 | WP 应用 | 教育未来 | 安卓手机 |
- | ------- | -------- | -------- | ------- | -------- | -------- |
- | cid/272 | cid/273 | cid/274 | cid/284 | cid/285 | cid/288 |
+| category | id |
+| ---------------- | -------------------------- |
+| Science | science-4132464 |
+| Math | math-4133545 |
+| Social Sciences | social-sciences-4133522 |
+| Computer Science | computer-science-4133486 |
+| Animals & Nature | animals-and-nature-4133421 |
- | 智能穿戴 | 移动应用 | 电子竞技 | 游戏八卦 | 游戏评测 | 生活百科 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/290 | cid/292 | cid/297 | cid/298 | cid/299 | cid/301 |
+#### Humanities {#thoughtco-category-humanities}
- | 智能家居 | 智能插座 | 智能摄像头 | 智能路由器 | 智能体重秤 | 智能血压计 |
- | -------- | -------- | ---------- | ---------- | ---------- | ---------- |
- | cid/302 | cid/303 | cid/304 | cid/305 | cid/306 | cid/307 |
+| category | id |
+| ----------------- | --------------------------- |
+| History & Culture | history-and-culture-4133356 |
+| Visual Arts | visual-arts-4132957 |
+| Literature | literature-4133251 |
+| English | english-4688281 |
+| Geography | geography-4133035 |
+| Philosophy | philosophy-4133025 |
+| Issues | issues-4133022 |
- | 空气净化器 | 智能净水器 | 电动两轮车 | 公司财报 | 智能行车记录仪 | 网络影视 |
- | ---------- | ---------- | ---------- | -------- | -------------- | -------- |
- | cid/308 | cid/309 | cid/310 | cid/311 | cid/312 | cid/313 |
+#### Languages {#thoughtco-category-languages}
- | 多轴无人机 | 摩托车 | 自行车 | 共享经济 | 生活周边 | 网络安全 |
- | ---------- | ------- | ------- | -------- | -------- | -------- |
- | cid/314 | cid/316 | cid/317 | cid/320 | cid/321 | cid/322 |
+| category | id |
+| ---------------------------- | ---------------- |
+| English as a Second Language | esl-4133095 |
+| Spanish | spanish-4133085 |
+| French | french-4133079 |
+| German | german-4133073 |
+| Italian | italian-4133069 |
+| Japanese | japanese-4133062 |
+| Mandarin | mandarin-4133057 |
+| Russian | russian-4175265 |
- | 考勤机 | 网络红人 | 火车高铁 | 机器人 | 其他网络 | 快递物流 |
- | ------- | -------- | -------- | ------- | -------- | -------- |
- | cid/323 | cid/324 | cid/325 | cid/326 | cid/327 | cid/328 |
+#### Resources {#thoughtco-category-resources}
- | 科技资讯 | 好货推荐 | 日常用品 | 餐饮零食 | 化妆品 | 运动健康 |
- | -------- | -------- | -------- | -------- | ------- | -------- |
- | cid/329 | cid/334 | cid/335 | cid/336 | cid/339 | cid/340 |
+| category | id |
+| ---------------------- | ---------------------------- |
+| For Students & Parents | for-students-parents-4132588 |
+| For Educators | for-educators-4132509 |
+| For Adult Learners | for-adult-learners-4132469 |
- | 酒水饮料 | 个人洗护 | 电子产品 | 服装鞋帽 | 会员卡 | 用户投稿 |
- | -------- | -------- | -------- | -------- | ------- | -------- |
- | cid/341 | cid/342 | cid/343 | cid/345 | cid/346 | cid/351 |
+<details>
+ <summary>More categories</summary>
- | APP 投稿 | PC 投稿 | 视频快讯 | 新品开箱 | 技巧教程 | 科技快讯 |
- | -------- | ------- | -------- | -------- | -------- | -------- |
- | cid/352 | cid/353 | cid/354 | cid/355 | cid/356 | cid/357 |
+ #### Science
- | 产品评测 | 人物专访 | 会议活动 | 数码影音 | 数码影像 | 游戏周边 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | cid/358 | cid/359 | cid/360 | cid/361 | cid/362 | cid/368 |
+ | category | id |
+ | ----------------- | --------------------------- |
+ | Chemistry | chemistry-4133594 |
+ | Biology | biology-4133580 |
+ | Physics | physics-4133571 |
+ | Geology | geology-4133564 |
+ | Astronomy | astronomy-4133558 |
+ | Weather & Climate | weather-and-climate-4133550 |
+
+ #### Math
+
+ | category | id |
+ | --------------------- | ------------------------------- |
+ | Math Tutorials | math-tutorials-4133543 |
+ | Geometry | geometry-4133540 |
+ | Arithmetic | arithmetic-4133542 |
+ | Pre Algebra & Algebra | pre-algebra-and-algebra-4133541 |
+ | Statistics | statistics-4133539 |
+ | Exponential Decay | exponential-decay-4133528 |
+ | Worksheets By Grade | worksheets-by-grade-4133526 |
+ | Resources | math-resources-4133523 |
+
+ #### Social Sciences
+
+ | category | id |
+ | ----------- | ------------------- |
+ | Psychology | psychology-4160512 |
+ | Sociology | sociology-4133515 |
+ | Archaeology | archaeology-4133504 |
+ | Economics | economics-4133521 |
+ | Ergonomics | ergonomics-4133492 |
+
+ #### Computer Science
+
+ | category | id |
+ | ---------------------- | -------------------------------- |
+ | PHP Programming | php-4133485 |
+ | Perl | perl-4133481 |
+ | Python | python-4133477 |
+ | Java Programming | java-programming-4133478 |
+ | Javascript Programming | javascript-programming-4133476 |
+ | Delphi Programming | delphi-programming-4133475 |
+ | C & C++ Programming | c-and-c-plus-programming-4133470 |
+ | Ruby Programming | ruby-programming-4133469 |
+ | Visual Basic | visual-basic-4133468 |
+
+ #### Animals and Nature
+
+ | category | id |
+ | ---------------- | ------------------------ |
+ | Amphibians | amphibians-4133418 |
+ | Birds | birds-4133416 |
+ | Habitat Profiles | habitat-profiles-4133412 |
+ | Mammals | mammals-4133411 |
+ | Reptiles | reptiles-4133408 |
+ | Insects | insects-4133406 |
+ | Marine Life | marine-life-4133393 |
+ | Forestry | forestry-4133386 |
+ | Dinosaurs | dinosaurs-4133376 |
+ | Evolution | evolution-4133366 |
+
+ #### History and Culture
+
+ | category | id |
+ | ------------------------------ | ---------------------------------------- |
+ | American History | american-history-4133354 |
+ | African American History | african-american-history-4133344 |
+ | African History | african-history-4133338 |
+ | Ancient History and Culture | ancient-history-4133336 |
+ | Asian History | asian-history-4133325 |
+ | European History | european-history-4133316 |
+ | Genealogy | genealogy-4133308 |
+ | Inventions | inventions-4133303 |
+ | Latin American History | latin-american-history-4133296 |
+ | Medieval & Renaissance History | medieval-and-renaissance-history-4133289 |
+ | Military History | military-history-4133285 |
+ | The 20th Century | 20th-century-4133273 |
+ | Women's History | womens-history-4133260 |
+
+ #### Visual Arts
+
+ | category | id |
+ | ------------- | -------------------- |
+ | Art & Artists | art-4132956 |
+ | Architecture | architecture-4132953 |
+
+ #### Literature
+
+ | category | id |
+ | ------------------ | -------------------------- |
+ | Best Sellers | best-sellers-4133250 |
+ | Classic Literature | classic-literature-4133245 |
+ | Plays & Drama | plays-and-drama-4133239 |
+ | Poetry | poetry-4133232 |
+ | Quotations | quotations-4133229 |
+ | Shakespeare | shakespeare-4133223 |
+ | Short Stories | short-stories-4133217 |
+ | Children's Books | childrens-books-4133216 |
+
+ #### English
+
+ | category | id |
+ | --------------- | ----------------------- |
+ | English Grammar | english-grammar-4133049 |
+ | Writing | writing-4133048 |
+
+ #### Geography
+
+ | category | id |
+ | ------------------------ | ---------------------------------- |
+ | Basics | geography-basics-4133034 |
+ | Physical Geography | physical-geography-4133032 |
+ | Political Geography | political-geography-4133033 |
+ | Population | population-4133031 |
+ | Country Information | country-information-4133030 |
+ | Key Figures & Milestones | key-figures-and-milestones-4133029 |
+ | Maps | maps-4133027 |
+ | Urban Geography | urban-geography-4133026 |
+
+ #### Philosophy
+
+ | category | id |
+ | ------------------------------ | ---------------------------------------- |
+ | Philosophical Theories & Ideas | philosophical-theories-and-ideas-4133024 |
+ | Major Philosophers | major-philosophers-4133023 |
+
+ #### Issues
+
+ | category | id |
+ | --------------------------------- | -------------------------------- |
+ | The U. S. Government | us-government-4133021 |
+ | U.S. Foreign Policy | us-foreign-policy-4133010 |
+ | U.S. Liberal Politics | us-liberal-politics-4133009 |
+ | U.S. Conservative Politics | us-conservative-politics-4133006 |
+ | Women's Issues | womens-issues-4133002 |
+ | Civil Liberties | civil-liberties-4132996 |
+ | The Middle East | middle-east-4132989 |
+ | Race Relations | race-relations-4132982 |
+ | Immigration | immigration-4132977 |
+ | Crime & Punishment | crime-and-punishment-4132972 |
+ | Canadian Government | canadian-government-4132959 |
+ | Understanding Types of Government | types-of-government-5179107 |
+
+ #### English as a Second Language
+
+ | category | id |
+ | ---------------------------- | ------------------------------------------ |
+ | Pronunciation & Conversation | esl-pronunciation-and-conversation-4133093 |
+ | Vocabulary | esl-vocabulary-4133092 |
+ | Writing Skills | esl-writing-skills-4133091 |
+ | Reading Comprehension | esl-reading-comprehension-4133090 |
+ | Grammar | esl-grammar-4133089 |
+ | Business English | esl-business-english-4133088 |
+ | Resources for Teachers | resources-for-esl-teachers-4133087 |
+
+ #### Spanish
+
+ | category | id |
+ | ----------------- | ----------------------------------- |
+ | History & Culture | spanish-history-and-culture-4133084 |
+ | Pronunciation | spanish-pronunciation-4133083 |
+ | Vocabulary | spanish-vocabulary-4133082 |
+ | Writing Skills | spanish-writing-skills-4133081 |
+ | Grammar | spanish-grammar-4133080 |
+
+ #### French
+
+ | category | id |
+ | ---------------------------- | -------------------------------------------- |
+ | Pronunciation & Conversation | french-pronunciation-4133075 |
+ | Vocabulary | french-vocabulary-4133076 |
+ | Grammar | french-grammar-4133074 |
+ | Resources For Teachers | french-resources-for-french-teachers-4133077 |
+
+ #### German
+
+ | category | id |
+ | ---------------------------- | ---------------------------------- |
+ | History & Culture | german-history-and-culture-4133071 |
+ | Pronunciation & Conversation | german-pronunciation-4133070 |
+ | Vocabulary | german-vocabulary-4133068 |
+ | Grammar | german-grammar-4133067 |
+
+ #### Italian
+
+ | category | id |
+ | ----------------- | ----------------------------------- |
+ | History & Culture | italian-history-and-culture-4133065 |
+ | Vocabulary | italian-vocabulary-4133061 |
+ | Grammar | italian-grammar-4133063 |
+
+ #### Japanese
+
+ | category | id |
+ | ----------------------------- | ------------------------------------ |
+ | History & Culture | japanese-history-and-culture-4133058 |
+ | Essential Japanese Vocabulary | japanese-vocabulary-4133060 |
+ | Japanese Grammar | japanese-grammar-4133056 |
+
+ #### Mandarin
+
+ | category | id |
+ | -------------------------------- | ---------------------------------------- |
+ | Mandarin History and Culture | mandarin-history-and-culture-4133054 |
+ | Pronunciation | mandarin-pronunciation-4133053 |
+ | Vocabulary | mandarin-vocabulary-4133052 |
+ | Understanding Chinese Characters | understanding-chinese-characters-4133051 |
+
+ #### Russian
+
+ | category | id |
+ | -------- | --------------- |
+ | Russian | russian-4175265 |
+
+ #### For Students & Parents
+
+ | category | id |
+ | ------------------ | -------------------------- |
+ | Homework Help | homework-help-4132587 |
+ | Private School | private-school-4132514 |
+ | Test Prep | test-prep-4132578 |
+ | College Admissions | college-admissions-4132565 |
+ | College Life | college-life-4132553 |
+ | Graduate School | graduate-school-4132543 |
+ | Business School | business-school-4132536 |
+ | Law School | law-school-4132527 |
+ | Distance Learning | distance-learning-4132521 |
+
+ #### For Educators
+
+ | category | id |
+ | -------------------- | ----------------------------- |
+ | Becoming A Teacher | becoming-a-teacher-4132510 |
+ | Assessments & Tests | assessments-and-tests-4132508 |
+ | Elementary Education | elementary-education-4132507 |
+ | Secondary Education | secondary-education-4132504 |
+ | Special Education | special-education-4132499 |
+ | Teaching | teaching-4132488 |
+ | Homeschooling | homeschooling-4132480 |
+
+ #### For Adult Learners
+
+ | category | id |
+ | ----------------------- | ------------------------------- |
+ | Tips For Adult Students | tips-for-adult-students-4132468 |
+ | Getting Your Ged | getting-your-ged-4132466 |
+</details>
- | 汽车周边 | 个人交通 | 其他交通 |
- | -------- | -------- | -------- |
- | cid/369 | cid/370 | cid/371 |
- </details>
-</Route>
+## TOPYS {#topys}
-## 快媒体 {#kuai-mei-ti}
+### 关键字 {#topys-guan-jian-zi}
-### 首页更新 {#kuai-mei-ti-shou-ye-geng-xin}
+<Route data={{"path":"/:keyword?","categories":["new-media"],"example":"/topys","parameters":{"keyword":"关键字,可在对应结果页的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["topys.cn/search/:keyword","topys.cn/"]},"name":"关键字","maintainers":["nczitzk"],"description":"| 创意 | 设计 | 商业 | 艺术 | 文化 | 科技 |\n | ---- | ---- | ---- | ---- | ---- | ---- |","location":"index.ts"}} />
-<Route author="xfangbao" example="/kuai" path="/kuai" />
+| 创意 | 设计 | 商业 | 艺术 | 文化 | 科技 |
+| ---- | ---- | ---- | ---- | ---- | ---- |
-### 具体栏目更新 {#kuai-mei-ti-ju-ti-lan-mu-geng-xin}
+## UNTAG {#untag}
-<Route author="xfangbao" example="/kuai/38" path="/kuai/:id" notOperational="1" />
+### 分类 {#untag-fen-lei}
-具体栏目编号,去网站上看标签
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/utgd/method","parameters":{"category":"分类,可在对应分类页的 URL 中找到,默认为方法"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["utgd.net/category/s/:category","utgd.net/"],"target":"/:category"},"name":"分类","maintainers":["nczitzk"],"description":"| 方法 | 观点 |\n | ------ | ------- |\n | method | opinion |","location":"category.ts"}} />
-| 网址 | 对应路由 |
-| --------------------------------------------------------------------------------------------------- | -------- |
-| kuai.media | /kuai |
-| [www.kuai.media/portal.php?mod=list\&catid=38](http://www.kuai.media/portal.php?mod=list\&catid=38) | /kuai/38 |
+| 方法 | 观点 |
+| ------ | ------- |
+| method | opinion |
-## 老司机 {#lao-si-ji}
+### 时间线 {#untag-shi-jian-xian}
-### 首页 {#lao-si-ji-shou-ye}
+<Route data={{"path":"/timeline","categories":["new-media"],"example":"/utgd/timeline","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["utgd.net/"]},"name":"时间线","maintainers":["nczitzk"],"url":"utgd.net/","location":"timeline.ts"}} />
-<Route author="xyqfer" example="/laosiji/feed" path="/laosiji/feed" />
+### 专题 {#untag-zhuan-ti}
-### 24 小时热门 {#lao-si-ji-24-xiao-shi-re-men}
+<Route data={{"path":"/topic/:topic?","categories":["new-media"],"example":"/utgd/topic/在线阅读专栏","parameters":{"topic":"专题,默认为在线阅读专栏"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["utgd.net/topic","utgd.net/"],"target":"/topic/:topic"},"name":"专题","maintainers":["nczitzk"],"url":"utgd.net/topic","description":"| 在线阅读专栏 | 卡片笔记专题 |\n | ------------ | ------------ |\n\n 更多专栏请见 [专题广场](https://utgd.net/topic)","location":"topic.ts"}} />
-<Route author="xyqfer" example="/laosiji/hot" path="/laosiji/hot" />
+| 在线阅读专栏 | 卡片笔记专题 |
+| ------------ | ------------ |
-### 节目 {#lao-si-ji-jie-mu}
+更多专栏请见 [专题广场](https://utgd.net/topic)
-<Route author="xyqfer" example="/laosiji/hotshow/128" path="/laosiji/hotshow/:id" paramsDesc={['节目 id']} />
+## Yahoo {#yahoo}
-## 雷峰网 {#lei-feng-wang}
+### News {#yahoo-news}
-### 最新文章 {#lei-feng-wang-zui-xin-wen-zhang}
+<Route data={{"path":"/news/:region/:category?","categories":["new-media"],"example":"/yahoo/news/hk/world","parameters":{"region":"Region, see the table below","category":"Category, see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yahoo.com/"]},"name":"News","maintainers":["KeiLongW"],"url":"yahoo.com/","description":"`Region`\n\n | Hong Kong | Taiwan | US |\n | --------- | ------ | -- |\n | hk | tw | en |\n\n <details>\n <summary>`Category` (Hong Kong)</summary>\n\n | 全部 | 港聞 | 兩岸國際 | 財經 | 娛樂 | 體育 | 健康 | 親子 | 副刊 |\n | -------- | --------- | -------- | -------- | ------------- | ------ | ------ | --------- | ---------- |\n | (留空) | hong-kong | world | business | entertainment | sports | health | parenting | supplement |\n </details>\n\n <details>\n <summary>`Category` (Taiwan)</summary>\n\n | 全部 | 政治 | 財經 | 娛樂 | 運動 | 社會地方 | 國際 | 生活 | 健康 | 科技 | 品味 |\n | -------- | -------- | ------- | ------------- | ------ | -------- | ----- | --------- | ------ | ---------- | ----- |\n | (留空) | politics | finance | entertainment | sports | society | world | lifestyle | health | technology | style |\n </details>\n\n <details>\n <summary>`Category` (US)</summary>\n\n | All | World | Business | Entertainment | Sports | Health |\n | ------- | ----- | -------- | ------------- | ------ | ------ |\n | (Empty) | world | business | entertainment | sports | health |\n </details>","location":"news/tw/index.ts"}} />
-<Route author="vlcheng" example="/leiphone" path="/leiphone" />
+`Region`
-### 业界资讯 {#lei-feng-wang-ye-jie-zi-xun}
+| Hong Kong | Taiwan | US |
+| --------- | ------ | -- |
+| hk | tw | en |
-<Route author="vlcheng" example="/leiphone/newsflash" path="/leiphone/newsflash" />
+<details>
+ <summary>`Category` (Hong Kong)</summary>
-### 栏目 {#lei-feng-wang-lan-mu}
+ | 全部 | 港聞 | 兩岸國際 | 財經 | 娛樂 | 體育 | 健康 | 親子 | 副刊 |
+ | -------- | --------- | -------- | -------- | ------------- | ------ | ------ | --------- | ---------- |
+ | (留空) | hong-kong | world | business | entertainment | sports | health | parenting | supplement |
+</details>
-<Route author="vlcheng" example="/leiphone/category/industrynews" path="/leiphone/category/:catname" paramsDesc={['网站顶部分类栏目']}>
- - 主栏目
+<details>
+ <summary>`Category` (Taiwan)</summary>
- | 业界 | 人工智能 | 智能驾驶 | 数智化 | 金融科技 | 医疗科技 | 芯片 | 政企安全 | 智慧城市 | 行业云 | 工业互联网 | AIoT |
- | ------------ | -------- | -------------- | --------------- | -------- | -------- | ----- | ---------- | --------- | ------------- | ------------------ | ---- |
- | industrynews | ai | transportation | digitalindustry | fintech | aihealth | chips | gbsecurity | smartcity | industrycloud | IndustrialInternet | iot |
+ | 全部 | 政治 | 財經 | 娛樂 | 運動 | 社會地方 | 國際 | 生活 | 健康 | 科技 | 品味 |
+ | -------- | -------- | ------- | ------------- | ------ | -------- | ----- | --------- | ------ | ---------- | ----- |
+ | (留空) | politics | finance | entertainment | sports | society | world | lifestyle | health | technology | style |
+</details>
- - 子栏目
+<details>
+ <summary>`Category` (US)</summary>
- - 人工智能
+ | All | World | Business | Entertainment | Sports | Health |
+ | ------- | ----- | -------- | ------------- | ------ | ------ |
+ | (Empty) | world | business | entertainment | sports | health |
+</details>
- | 学术 | 开发者 |
- | -------- | -------- |
- | academic | yanxishe |
+### 新聞來源 {#yahoo-xin-wen-lai-yuan}
- - 数智化
+<Route data={{"path":"/news/provider/:region/:providerId","categories":["new-media"],"example":"/yahoo/news/provider/tw/udn.com","parameters":{"region":"地區,見下表","providerId":"新聞來源 ID,可透過下方新聞來源列表獲得"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新聞來源","maintainers":["TonyRL"],"description":"| 香港 | 台灣 |\n | ---- | ---- |\n | hk | tw |","location":"news/tw/provider.ts"}} />
- | 零售数智化 | 金融数智化 | 工业数智化 | 医疗数智化 | 城市数智化 |
- | ---------- | ---------- | ---------- | ---------- | ----------- |
- | redigital | findigital | mandigital | medigital | citydigital |
+| 香港 | 台灣 |
+| ---- | ---- |
+| hk | tw |
- - 金融科技
+### 新聞來源列表 {#yahoo-xin-wen-lai-yuan-lie-biao}
- | 科技巨头 | 银行 AI | 金融云 | 风控与安全 |
- | -------- | ------- | ------------ | ------------ |
- | BigTech | bank | FinanceCloud | DataSecurity |
+<Route data={{"path":"/news/providers/:region","categories":["new-media"],"example":"/yahoo/news/providers/tw","parameters":{"region":"地區,見上表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新聞來源列表","maintainers":["TonyRL"],"location":"news/tw/provider-helper.ts"}} />
- - 医疗科技
+## zyw {#zyw}
- | 医疗 AI | 投融资 | 医疗器械 | 互联网医疗 | 生物医药 | 健康险 |
- | -------- | ------ | -------- | ---------------- | ------------ | ------------ |
- | healthai | touzi | qixie | hulianwangyiliao | shengwuyiyao | jiankangxian |
+### 今日热榜 {#zyw-jin-ri-re-bang}
- - 芯片
+<Route data={{"path":"/hot/:site?","categories":["new-media"],"example":"/zyw/hot","parameters":{"site":"站点,见下表,默认为空,即全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"今日热榜","maintainers":["nczitzk"],"description":":::tip\n 全部站点请见 [此处](https://hot.zyw.asia/#/list)\n :::\n\n | 哔哩哔哩 | 微博 | 知乎 | 36 氪 | 百度 | 少数派 | IT 之家 | 澎湃新闻 | 今日头条 | 百度贴吧 | 稀土掘金 | 腾讯新闻 |\n | -------- | ---- | ---- | ----- | ---- | ------ | ------- | -------- | -------- | -------- | -------- | -------- |","location":"hot.ts"}} />
- | 材料设备 | 芯片设计 | 晶圆代工 | 封装测试 |
- | --------- | ---------- | ------------- | --------- |
- | materials | chipdesign | manufacturing | packaging |
+:::tip
+全部站点请见 [此处](https://hot.zyw.asia/#/list)
+:::
- - 智慧城市
+| 哔哩哔哩 | 微博 | 知乎 | 36 氪 | 百度 | 少数派 | IT 之家 | 澎湃新闻 | 今日头条 | 百度贴吧 | 稀土掘金 | 腾讯新闻 |
+| -------- | ---- | ---- | ----- | ---- | ------ | ------- | -------- | -------- | -------- | -------- | -------- |
- | 智慧安防 | 智慧教育 | 智慧交通 | 智慧社区 | 智慧零售 | 智慧政务 | 智慧地产 |
- | ------------- | -------------- | ------------------- | -------------- | -------------- | --------------- | -------- |
- | smartsecurity | smarteducation | smarttransportation | smartcommunity | smartretailing | smartgovernment | proptech |
+## 阿里研究院 {#a-li-yan-jiu-yuan}
- - 工业互联网
+### 资讯 {#a-li-yan-jiu-yuan-zi-xun}
- | 工业软件 | 工业安全 | 5G 工业互联网 | 工业转型实践 |
- | ---------- | -------- | ------------- | ------------ |
- | gysoftware | gysafety | 5ggy | gypratice |
+<Route data={{"path":"/information/:type?","categories":["new-media"],"example":"/aliresearch/information","parameters":{"type":"类型,见下表,默认为新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aliresearch.com/cn/information","aliresearch.com/"],"target":"/information"},"name":"资讯","maintainers":["nczitzk"],"url":"aliresearch.com/cn/information","description":"| 新闻 | 观点 | 案例 |\n | ---- | ---- | ---- |","location":"information.ts"}} />
- - AIoT
+| 新闻 | 观点 | 案例 |
+| ---- | ---- | ---- |
- | 物联网 | 智能硬件 | 机器人 | 智能家居 |
- | ------ | -------- | ------ | --------- |
- | 5G | arvr | robot | smarthome |
-</Route>
+## 艾莱资讯 {#ai-lai-zi-xun}
-## 理想生活实验室 {#li-xiang-sheng-huo-shi-yan-shi}
+### 世界轨道交通资讯网 {#ai-lai-zi-xun-shi-jie-gui-dao-jiao-tong-zi-xun-wang}
-### 滚动 {#li-xiang-sheng-huo-shi-yan-shi-gun-dong}
+<Route data={{"path":"/rail/:category?/:topic?","categories":["new-media"],"example":"/ally/rail/hyzix/chengguijiaotong/","parameters":{"category":"分类,可在 URL 中找到;略去则抓取首页","topic":"话题,可在 URL 中找到;并非所有页面均有此字段"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rail.ally.net.cn/","rail.ally.net.cn/html/:category?/:topic?"]},"name":"世界轨道交通资讯网","maintainers":["Rongronggg9"],"url":"rail.ally.net.cn/","description":":::tip\n 默认抓取前 20 条,可通过 `?limit=` 改变。\n :::","location":"rail.ts"}} />
-<Route author="nczitzk" example="/toodaylab/posts" path="/toodaylab/posts" radar="1" />
+:::tip
+默认抓取前 20 条,可通过 `?limit=` 改变。
+:::
-### 最热 {#li-xiang-sheng-huo-shi-yan-shi-zui-re}
+## 白话区块链 {#bai-hua-qu-kuai-lian}
-<Route author="nczitzk" example="/toodaylab/hot" path="/toodaylab/hot" radar="1" />
+### 科普 {#bai-hua-qu-kuai-lian-ke-pu}
-### 专栏 {#li-xiang-sheng-huo-shi-yan-shi-zhuan-lan}
+<Route data={{"path":"/kepu/:channel?","categories":["new-media"],"example":"/hellobtc/kepu/latest","parameters":{"channel":"类型,见下表,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"科普","maintainers":["Fatpandac"],"description":"| latest | bitcoin | ethereum | defi | inter_blockchain | mining | safety | satoshi_nakomoto | public_blockchain |\n | ------ | ------- | -------- | ---- | ----------------- | ------ | ------ | ----------------- | ------------------ |\n | 最新 | 比特币 | 以太坊 | DeFi | 跨链 | 挖矿 | 安全 | 中本聪 | 公链 |","location":"kepu.ts"}} />
-<Route author="nczitzk" example="/toodaylab/column/299" path="/toodaylab/column/:id" paramsDesc={['专栏 id,见下表,可在对应专栏页 URL 中找到']} radar="1">
- | 专题 | 攻略 |
- | ---- | ---- |
- | 299 | 300 |
-</Route>
+| latest | bitcoin | ethereum | defi | inter\_blockchain | mining | safety | satoshi\_nakomoto | public\_blockchain |
+| ------ | ------- | -------- | ---- | ----------------- | ------ | ------ | ----------------- | ------------------ |
+| 最新 | 比特币 | 以太坊 | DeFi | 跨链 | 挖矿 | 安全 | 中本聪 | 公链 |
-### 领域 {#li-xiang-sheng-huo-shi-yan-shi-ling-yu}
+### 快讯 {#bai-hua-qu-kuai-lian-kuai-xun}
-<Route author="nczitzk" example="/toodaylab/field/308" path="/toodaylab/field/:id" paramsDesc={['领域 id,见下表,可在对应领域页 URL 中找到']} radar="1">
- | 快消 | 时尚 | 智能 | 娱乐 | 运动 | 生活 | 设计 | 出行 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 308 | 307 | 306 | 305 | 304 | 303 | 302 | 301 |
-</Route>
+<Route data={{"path":"/news","categories":["new-media"],"example":"/hellobtc/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hellobtc.com/news"]},"name":"快讯","maintainers":["Fatpandac"],"url":"hellobtc.com/news","location":"news.ts"}} />
-### 话题 {#li-xiang-sheng-huo-shi-yan-shi-hua-ti}
+### 首页 {#bai-hua-qu-kuai-lian-shou-ye}
-<Route author="nczitzk" example="/toodaylab/topic/309" path="/toodaylab/topic/:id" paramsDesc={['话题 id,见下表,可在对应话题页 URL 中找到']} radar="1" anticrawler="1">
- | 今日消费资讯 | 实验室带你过周末 | 实验室带你过假期 | 每日一图 | 每周一书 | 实验室数字 | 新鲜社会人 | 实验室 TV |
- | ------------ | ---------------- | ---------------- | -------- | -------- | ---------- | ---------- | --------- |
- | 309 | 37 | 40 | 32 | 33 | 310 | 316 | 476 |
-</Route>
+<Route data={{"path":"/information/:channel?","categories":["new-media"],"example":"/hellobtc/information/latest","parameters":{"channel":"类型,可填 `latest` 和 `application` 及最新和应用,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["Fatpandac"],"location":"information.ts"}} />
-## 链捕手 ChainCatcher {#lian-bu-shou-chaincatcher}
+## 報導者 {#bao-dao-zhe}
-### 首页 {#lian-bu-shou-chaincatcher-shou-ye}
+### 最新 {#bao-dao-zhe-zui-xin}
-<Route author="TonyRL" example="/chaincatcher" path="/chaincatcher" notOperational="1" radar="1" />
+<Route data={{"path":"/newest","categories":["new-media"],"example":"/twreporter/newest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["twreporter.org/"]},"name":"最新","maintainers":["emdoe"],"url":"twreporter.org/","location":"newest.ts"}} />
-### 快讯 {#lian-bu-shou-chaincatcher-kuai-xun}
+## 本地宝 {#ben-di-bao}
-<Route author="TonyRL" example="/chaincatcher/news" path="/chaincatcher/news" notOperational="1" radar="1" />
+### 焦点资讯 {#ben-di-bao-jiao-dian-zi-xun}
-## 链新闻 ABMedia {#lian-xin-wen-abmedia}
+<Route data={{"path":"/news/:city","categories":["new-media"],"example":"/bendibao/news/bj","parameters":{"city":"城市缩写,可在该城市页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bendibao.com/"]},"name":"焦点资讯","maintainers":["nczitzk"],"url":"bendibao.com/","description":"| 城市名 | 缩写 |\n | ------ | ---- |\n | 北京 | bj |\n | 上海 | sh |\n | 广州 | gz |\n | 深圳 | sz |\n\n 更多城市请参见 [这里](http://www.bendibao.com/city.htm)\n\n > **香港特别行政区** 和 **澳门特别行政区** 的本地宝城市页面不更新资讯。","location":"news.ts"}} />
-### 首页最新新闻 {#lian-xin-wen-abmedia-shou-ye-zui-xin-xin-wen}
+| 城市名 | 缩写 |
+| ------ | ---- |
+| 北京 | bj |
+| 上海 | sh |
+| 广州 | gz |
+| 深圳 | sz |
-<Route author="Fatpandac" example="/abmedia/index" path="/abmedia/index" />
+更多城市请参见 [这里](http://www.bendibao.com/city.htm)
-### 类别 {#lian-xin-wen-abmedia-lei-bie}
+> **香港特别行政区** 和 **澳门特别行政区** 的本地宝城市页面不更新资讯。
-<Route author="Fatpandac" example="/abmedia/technology-development" path="/abmedia/:category?" paramsDesc={['类别,默认为产品技术']}>
- 参数可以从链接中拿到,如:
+## 财富中文网 {#cai-fu-zhong-wen-wang}
- `https://www.abmedia.io/category/technology-development` 对应 `/abmedia/technology-development`
-</Route>
+### 分类 {#cai-fu-zhong-wen-wang-fen-lei}
-## 量子位 {#liang-zi-wei}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/fortunechina","parameters":{"category":"分类,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fortunechina.com/:category","fortunechina.com/"]},"name":"分类","maintainers":["nczitzk"],"description":"| 商业 | 领导力 | 科技 | 研究 |\n | ------- | --------- | ---- | ------ |\n | shangye | lindgaoli | keji | report |","location":"index.ts"}} />
-### 分类 {#liang-zi-wei-fen-lei}
+| 商业 | 领导力 | 科技 | 研究 |
+| ------- | --------- | ---- | ------ |
+| shangye | lindgaoli | keji | report |
-<Route author="FuryMartin" example="/qbitai/category/资讯" path="/qbitai/category/:category" paramsDesc={['分类名,见下表']} />
+## 差评 {#cha-ping}
-| 资讯 | 数码 | 智能车 | 智库 | 活动 |
-| ---- | -------- | ------ | ----- | ------- |
-| 资讯 | ebandeng | auto | zhiku | huodong |
+### 快讯 {#cha-ping-kuai-xun}
-### 标签 {#liang-zi-wei-biao-qian}
+<Route data={{"path":"/newsflash","categories":["new-media"],"example":"/chaping/newsflash","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chaping.cn/newsflash"]},"name":"快讯","maintainers":["Fatpandac"],"url":"chaping.cn/newsflash","location":"newsflash.ts"}} />
-<Route author="FuryMartin" example="/qbitai/tag/大语言模型" path="/qbitai/tag/:tag" paramsDesc={['标签名']} />
+### 图片墙 {#cha-ping-tu-pian-qiang}
-## 留园网 {#liu-yuan-wang}
+<Route data={{"path":"/banner","categories":["new-media"],"example":"/chaping/banner","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chaping.cn/"]},"name":"图片墙","maintainers":["nczitzk"],"url":"chaping.cn/","location":"banner.ts"}} />
-### 分站 {#liu-yuan-wang-fen-zhan}
+### 资讯 {#cha-ping-zi-xun}
-<Route author="nczitzk" example="/6park" path="/6park/:id?" paramsDesc={['分站,见下表,默认为史海钩沉']}>
- | 婚姻家庭 | 魅力时尚 | 女性频道 | 生活百态 | 美食厨房 | 非常影音 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | life9 | life1 | chan10 | life2 | life6 | fr |
+<Route data={{"path":"/news/:caty?","categories":["new-media"],"example":"/chaping/news/15","parameters":{"caty":"分类,默认为全部资讯"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"资讯","maintainers":["nczitzk"],"description":"| 编号 | 分类 |\n | ---- | ---------- |\n | 15 | 直播 |\n | 3 | 科技新鲜事 |\n | 7 | 互联网槽点 |\n | 5 | 趣味科技 |\n | 6 | DEBUG TIME |\n | 1 | 游戏 |\n | 8 | 视频 |\n | 9 | 公里每小时 |","location":"news.ts"}} />
- | 车迷沙龙 | 游戏天地 | 卡通漫画 | 体坛纵横 | 运动健身 | 电脑前线 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | enter7 | enter3 | enter6 | enter5 | sport | know1 |
+| 编号 | 分类 |
+| ---- | ---------- |
+| 15 | 直播 |
+| 3 | 科技新鲜事 |
+| 7 | 互联网槽点 |
+| 5 | 趣味科技 |
+| 6 | DEBUG TIME |
+| 1 | 游戏 |
+| 8 | 视频 |
+| 9 | 公里每小时 |
- | 数码家电 | 旅游风向 | 摄影部落 | 奇珍异宝 | 笑口常开 | 娱乐八卦 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | chan6 | life7 | chan8 | page | enter1 | enter8 |
+## 创业邦 {#chuang-ye-bang}
- | 吃喝玩乐 | 文化长廊 | 军事纵横 | 百家论坛 | 科技频道 | 爱子情怀 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | netstar | life10 | nz | other | chan2 | chan5 |
+### 标签 {#chuang-ye-bang-biao-qian}
- | 健康人生 | 博论天下 | 史海钩沉 | 网际谈兵 | 经济观察 | 谈股论金 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | life5 | bolun | chan1 | military | finance | chan4 |
+<Route data={{"path":"/label/:name","categories":["new-media"],"example":"/cyzone/label/创业邦周报","parameters":{"name":"标签名称,可在对应标签页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cyzone.cn/label/:name","cyzone.cn/"]},"name":"标签","maintainers":["nczitzk"],"location":"label.ts"}} />
- | 杂论闲侃 | 唯美乐园 | 学习园地 | 命理玄机 | 宠物情缘 | 网络歌坛 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | pk | gz1 | gz2 | gz3 | life8 | chan7 |
+### 作者 {#chuang-ye-bang-zuo-zhe}
- | 音乐殿堂 | 情感世界 |
- | -------- | -------- |
- | enter4 | life3 |
+<Route data={{"path":"/author/:id","categories":["new-media"],"example":"/cyzone/author/1225562","parameters":{"id":"作者 id,可在对应作者页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cyzone.cn/author/:id","cyzone.cn/"]},"name":"作者","maintainers":["nczitzk"],"location":"author.ts"}} />
- :::tip
- 酷 18 文档参见 [此处](https://docs.rsshub.app/picture#ku-18)
+## 創新拿鐵 {#chuang-xin-na-tie}
- 禁忌书屋文档参见 [此处](https://docs.rsshub.app/routes/reading#jin-ji-shu-wu)
- :::
-</Route>
+### 分类 {#chuang-xin-na-tie-fen-lei}
-### 精华区 {#liu-yuan-wang-jing-hua-qu}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/startuplatte","parameters":{"category":"分类,见下表,默认为首頁"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["startuplatte.com/category/:category","startuplatte.com/"]},"name":"分类","maintainers":["nczitzk"],"description":"| 首頁 | 大師智慧 | 深度分析 | 新知介紹 |\n | ---- | -------- | -------- | -------- |\n | | quote | analysis | trend |","location":"index.ts"}} />
-<Route author="nczitzk" example="/6park/chan1/gold" path="/6park/:id/gold" paramsDesc={['分站,见上表']} />
+| 首頁 | 大師智慧 | 深度分析 | 新知介紹 |
+| ---- | -------- | -------- | -------- |
+| | quote | analysis | trend |
-### 搜索关键字 {#liu-yuan-wang-sou-suo-guan-jian-zi}
+## 大河财立方 {#da-he-cai-li-fang}
-<Route author="nczitzk" example="/6park/chan1/keywords/都市" path="/6park/:id/keywords/:keyword?" paramsDesc={['分站,见上表', '关键字']} />
+### 新闻 {#da-he-cai-li-fang-xin-wen}
-### 新闻栏目 {#liu-yuan-wang-xin-wen-lan-mu}
+<Route data={{"path":"/:type?","categories":["new-media"],"example":"/dahecube","parameters":{"type":"板块,见下表,默认为推荐"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["linbuxiao"],"description":"| 推荐 | 党史 | 豫股 | 财经 | 投教 | 金融 | 科创 | 投融 | 专栏 |\n | --------- | ------- | ----- | -------- | --------- | ------- | ------- | ------ | ------ |\n | recommend | history | stock | business | education | finance | science | invest | column |","location":"index.ts"}} />
-<Route author="nczitzk" example="/6park/news" path="/6park/news/:site?/:id?" paramsDesc={['分站,见下表,默认为 newspark', '栏目 id']}>
- 分站
+| 推荐 | 党史 | 豫股 | 财经 | 投教 | 金融 | 科创 | 投融 | 专栏 |
+| --------- | ------- | ----- | -------- | --------- | ------- | ------- | ------ | ------ |
+| recommend | history | stock | business | education | finance | science | invest | column |
- | newspark | local |
- | -------- | ----- |
+## 得到 {#de-dao}
- :::tip
- 若订阅 [时政](https://www.6parknews.com/newspark/index.php?type=1),其网址为 `https://www.6parknews.com/newspark/index.php?type=1`,其中 `newspark` 为分站,`1` 为栏目 id。
+### 首页 {#de-dao-shou-ye}
- 若订阅 [美国](https://local.6parknews.com/index.php?type_id=1),其网址为 `https://local.6parknews.com/index.php?type_id=1`,其中 `local` 为分站,`1` 为栏目 id。
- :::
-</Route>
+<Route data={{"path":"/list/:category?","categories":["new-media"],"example":"/dedao/list/年度日更","parameters":{"category":"分类名,默认为年度日更"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["igetget.com/"]},"name":"首页","maintainers":["nczitzk"],"url":"igetget.com/","location":"list.ts"}} />
-### 头条精选 {#liu-yuan-wang-tou-tiao-jing-xuan}
+### 用户主页 {#de-dao-yong-hu-zhu-ye}
-<Route author="nczitzk" example="/6park/news/newspark/gold" path="/6park/news/newspark/gold" />
+<Route data={{"path":"/user/:id/:type?","categories":["new-media"],"example":"/dedao/user/VkA5OqLX4RyGxmZRNBMlwBrDaJQ9og","parameters":{"id":"用户 id,可在对应用户主页 URL 中找到","type":"类型,见下表,默认为`0`,即动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户主页","maintainers":["nczitzk"],"description":"| 动态 | 书评 | 视频 |\n | ---- | ---- | ---- |\n | 0 | 7 | 12 |","location":"user.ts"}} />
-### 新闻搜索 {#liu-yuan-wang-xin-wen-sou-suo}
+| 动态 | 书评 | 视频 |
+| ---- | ---- | ---- |
+| 0 | 7 | 12 |
-<Route author="nczitzk" example="/6park/news/newspark/keywords/搜索" path="/6park/news/newspark/keywords/:keyword?" paramsDesc={['关键字']} />
+### 知识城邦 {#de-dao-zhi-shi-cheng-bang}
-## 隆众资讯 {#long-zhong-zi-xun}
+<Route data={{"path":"/knowledge/:topic?/:type?","categories":["new-media"],"example":"/dedao/knowledge","parameters":{"topic":"话题 id,可在对应话题页 URL 中找到","type":"分享类型,`true` 指精选,`false` 指最新,默认为精选"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dedao.cn/knowledge/topic/:topic","dedao.cn/knowledge","dedao.cn/"]},"name":"知识城邦","maintainers":["nczitzk"],"location":"knowledge.ts"}} />
-### 资讯 {#long-zhong-zi-xun-zi-xun}
+## 电动邦 {#dian-dong-bang}
-<Route author="nczitzk" example="/oilchem/list/140/18263" path="/oilchem/:type?/:category?/:subCategory?" paramsDesc={['类别 id,可在对应类别页中找到,默认为首页', '分类 id,可在对应分类页中找到', '子分类 id,可在对应分类页中找到']}>
- 以下是几个例子:
+### 资讯 {#dian-dong-bang-zi-xun}
- [**化工**](https://chem.oilchem.net) `https://chem.oilchem.net` 中,类别 id 为 `chem`,分类 id 为空,子分类 id 为空,对应路由即为 [`/oilchem/chem`](https://rsshub.app/oilchem/list/140/18263)
+<Route data={{"path":"/news/:cate?","categories":["new-media"],"example":"/diandong/news","parameters":{"cate":"分类,见下表,默认为推荐"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["diandong.com/news"],"target":"/news/:cate"},"name":"资讯","maintainers":["Fatpandac"],"url":"diandong.com/news","description":"分类\n\n | 推荐 | 新车 | 导购 | 试驾 | 用车 | 技术 | 政策 | 行业 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | 0 | 29 | 61 | 30 | 75 | 22 | 24 | 23 |","location":"news.ts"}} />
- [**甲醇**](https://chem.oilchem.net/chemical/methanol.shtml) 的相关资讯有两个页面入口:其一 `https://chem.oilchem.net/chemical/methanol.shtml` 中,类别 id 为 `chem`,分类 id 为 `chemical`,子分类 id 为 `methanol`,对应路由即为 [`/oilchem/chem/chemical/methanol`](https://rsshub.app/oilchem/chem/chemical/methanol) 或其二 `https://list.oilchem.net/140` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为空,对应路由即为 [`/oilchem/list/140`](https://rsshub.app/oilchem/list/140);
+分类
- [**甲醇热点聚焦**](https://list.oilchem.net/140/18263) `https://list.oilchem.net/140/18263` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为 `18263`,对应路由即为 [`/oilchem/list/140/18263`](https://rsshub.app/oilchem/list/140/18263)
-</Route>
+| 推荐 | 新车 | 导购 | 试驾 | 用车 | 技术 | 政策 | 行业 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| 0 | 29 | 61 | 30 | 75 | 22 | 24 | 23 |
-## 論盡媒體 AllAboutMacau Media {#lun-jin-mei-ti-allaboutmacau-media}
+## 电獭少女 {#dian-ta-shao-nv}
-### 话题 {#lun-jin-mei-ti-allaboutmacau-media-hua-ti}
+### 当前精选主题列表 {#dian-ta-shao-nv-dang-qian-jing-xuan-zhu-ti-lie-biao}
-<Route author="nczitzk" example="/aamacau" path="/aamacau/:category?/:id?" paramsDesc={['分类,见下表,默认为即時報道', 'id,可在对应页面 URL 中找到,默认为空']}>
- | 即時報道 | 每週專題 | 藝文爛鬼樓 | 論盡紙本 | 新聞事件 | 特別企劃 |
- | ------------ | ----------- | ---------- | -------- | -------- | -------- |
- | breakingnews | weeklytopic | culture | press | case | special |
+<Route data={{"path":"/topic_list","categories":["new-media"],"example":"/agirls/topic_list","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agirls.aotter.net/","agirls.aotter.net/topic"]},"name":"当前精选主题列表","maintainers":["TonyRL"],"url":"agirls.aotter.net/","location":"topic-list.ts"}} />
- :::tip
- 除了直接订阅分类全部文章(如 [每週專題](https://aamacau.com/topics/weeklytopic) 的对应路由为 [/aamacau/weeklytopic](https://rsshub.app/aamacau/weeklytopic)),你也可以订阅特定的专题,如 [【9-12】2021 澳門立法會選舉](https://aamacau.com/topics/【9-12】2021澳門立法會選舉) 的对应路由为 [/【9-12】2021 澳門立法會選舉](https://rsshub.app/aamacau/【9-12】2021澳門立法會選舉)。
+### 分类 {#dian-ta-shao-nv-fen-lei}
- 分类中的专题也可以单独订阅,如 [新聞事件](https://aamacau.com/topics/case) 中的 [「武漢肺炎」新聞檔案](https://aamacau.com/topics/case/「武漢肺炎」新聞檔案) 对应路由为 [/case/「武漢肺炎」新聞檔案](https://rsshub.app/aamacau/case/「武漢肺炎」新聞檔案)。
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/agirls/app","parameters":{"category":"分类,默认为最新文章,可在对应主题页的 URL 中找到,下表仅列出部分"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agirls.aotter.net/posts/:category"],"target":"/:category"},"name":"分类","maintainers":["TonyRL"],"description":"| App 评测 | 手机开箱 | 笔电开箱 | 3C 周边 | 教学小技巧 | 科技情报 |\n | -------- | -------- | -------- | ----------- | ---------- | -------- |\n | app | phone | computer | accessories | tutorial | techlife |","location":"index.ts"}} />
- 同理,其他分类同上例子也可以订阅特定的单独专题。
- :::
-</Route>
+| App 评测 | 手机开箱 | 笔电开箱 | 3C 周边 | 教学小技巧 | 科技情报 |
+| -------- | -------- | -------- | ----------- | ---------- | -------- |
+| app | phone | computer | accessories | tutorial | techlife |
-## 罗戈网 {#luo-ge-wang}
+### 精选主题 {#dian-ta-shao-nv-jing-xuan-zhu-ti}
-### 资讯 {#luo-ge-wang-zi-xun}
+<Route data={{"path":"/topic/:topic","categories":["new-media"],"example":"/agirls/topic/AppleWatch","parameters":{"topic":"精选主题,可通过下方精选主题列表获得"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["agirls.aotter.net/topic/:topic"]},"name":"精选主题","maintainers":["TonyRL"],"location":"topic.ts"}} />
-<Route author="nczitzk" example="/logclub/news" path="/logclub/news/:id?" paramsDesc={['资讯 id,见下表,可在对应资讯页 URL 中找到,默认为全部']} radar="1">
- | 供应链 | 快递 | 快运 / 运输 | 仓储 / 地产 | 物流综合 | 国际与跨境物流 | 科技创新 |
- | ------ | ---- | ----------- | ----------- | -------- | -------------- | -------- |
- | 10-16 | 11 | 30 | 9 | 32 | 114 | 107 |
+## 东西智库 {#dong-xi-zhi-ku}
- | 绿色供应链 | 低碳物流 | 碳中和碳达峰 |
- | ---------- | -------- | ------------ |
- | 213 | 214 | 215 |
-</Route>
+### 分类 {#dong-xi-zhi-ku-fen-lei}
-### 招聘 {#luo-ge-wang-zhao-pin}
+<Route data={{"path":"/:type?/:category?","categories":["new-media"],"example":"/dx2025","parameters":{"type":"内容类别,见下表,默认为空","category":"行业分类,见下表,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"内容类别\n\n | 产业观察 | 行业报告 | 政策 | 数据 |\n | -------------------- | ---------------- | ------ | ---- |\n | industry-observation | industry-reports | policy | data |\n\n 行业分类\n\n | 行业 | 行业名称 |\n | -------------------- | ----------------------------------------------------------------- |\n | 新一代信息技术 | next-generation-information-technology-industry-reports |\n | 高档数控机床和机器人 | high-grade-cnc-machine-tools-and-robots-industry-reports |\n | 航空航天装备 | aerospace-equipment-industry-reports |\n | 海工装备及高技术船舶 | marine-engineering-equipment-and-high-tech-ships-industry-reports |\n | 先进轨道交通装备 | advanced-rail-transportation-equipment-industry-reports |\n | 节能与新能源汽车 | energy-saving-and-new-energy-vehicles-industry-reports |\n | 电力装备 | electric-equipment-industry-reports |\n | 农机装备 | agricultural-machinery-equipment-industry-reports |\n | 新材料 | new-material-industry-reports |\n | 生物医药及医疗器械 | biomedicine-and-medical-devices-industry-reports |\n | 现代服务业 | modern-service-industry-industry-reports |\n | 制造业人才 | manufacturing-talent-industry-reports |","location":"index.ts"}} />
-<Route author="nczitzk" example="/logclub/recruit" path="/logclub/recruit" radar="1" />
+内容类别
-### 报告 {#luo-ge-wang-bao-gao}
+| 产业观察 | 行业报告 | 政策 | 数据 |
+| -------------------- | ---------------- | ------ | ---- |
+| industry-observation | industry-reports | policy | data |
-<Route author="nczitzk" example="/logclub/lc_report" path="/logclub/lc_report/:id?" paramsDesc={['报告 id,见下表,默认为罗戈研究出品']} radar="1">
- | 罗戈研究出品 | 物流报告 | 绿色双碳报告 |
- | ------------ | -------------- | --------------------- |
- | Report | IndustryReport | GreenDualCarbonReport |
-</Route>
+行业分类
-### 招投标 {#luo-ge-wang-zhao-tou-biao}
+| 行业 | 行业名称 |
+| -------------------- | ----------------------------------------------------------------- |
+| 新一代信息技术 | next-generation-information-technology-industry-reports |
+| 高档数控机床和机器人 | high-grade-cnc-machine-tools-and-robots-industry-reports |
+| 航空航天装备 | aerospace-equipment-industry-reports |
+| 海工装备及高技术船舶 | marine-engineering-equipment-and-high-tech-ships-industry-reports |
+| 先进轨道交通装备 | advanced-rail-transportation-equipment-industry-reports |
+| 节能与新能源汽车 | energy-saving-and-new-energy-vehicles-industry-reports |
+| 电力装备 | electric-equipment-industry-reports |
+| 农机装备 | agricultural-machinery-equipment-industry-reports |
+| 新材料 | new-material-industry-reports |
+| 生物医药及医疗器械 | biomedicine-and-medical-devices-industry-reports |
+| 现代服务业 | modern-service-industry-industry-reports |
+| 制造业人才 | manufacturing-talent-industry-reports |
-<Route author="nczitzk" example="/logclub/tender" path="/logclub/tender" radar="1" />
+## 懂球帝 {#dong-qiu-di}
-### 原创 {#luo-ge-wang-yuan-chuang}
+:::tip
+- 可以通过头条新闻 + 参数过滤的形式获得早报、专题等内容。
+:::
-<Route author="nczitzk" example="/logclub/original" path="/logclub/original" radar="1" />
+### 球队新闻 {#dong-qiu-di-qiu-dui-xin-wen}
-### 大企业 {#luo-ge-wang-da-qi-ye}
+<Route data={{"path":"/team_news/:team","categories":["new-media"],"example":"/dongqiudi/team_news/50001755","parameters":{"team":"球队 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"球队新闻","maintainers":["HenryQW"],"location":"team-news.ts"}} />
-<Route author="nczitzk" example="/logclub/company/14" path="/logclub/company/:id" paramsDesc={['企业 id,见下表,可在对应企业页 URL 中找到']} radar="1" anticrawler="1">
- #### 明星企业
+### 球员新闻 {#dong-qiu-di-qiu-yuan-xin-wen}
- | 顺丰 | 菜鸟 | 京东物流 | 德邦快递 / 德邦股份 |
- | ---- | ---- | -------- | ------------------- |
- | 14 | 56 | 453 | 145 |
+<Route data={{"path":"/player_news/:id","categories":["new-media"],"example":"/dongqiudi/player_news/50000339","parameters":{"id":"球员 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中通过其队伍找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"球员新闻","maintainers":["HenryQW"],"location":"player-news.ts"}} />
- | 百世集团 | 中国物流集团 | 极兔速递 | 中通快递 |
- | -------- | ------------ | -------- | -------- |
- | 116 | 6807 | 3246 | 132 |
+### 新闻 {#dong-qiu-di-xin-wen}
- 前往 [更多](https://www.logclub.com/columnist/more/star) 查看更多企业
+<Route data={{"path":"/top_news/:id?","categories":["new-media"],"example":"/dongqiudi/top_news/1","parameters":{"id":"类别 id,不填默认头条新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.dongqiudi.com/home/:id"],"target":"/top_news/:id"},"name":"新闻","maintainers":["HendricksZheng"],"description":"| 头条 | 深度 | 闲情 | D 站 | 中超 | 国际 | 英超 | 西甲 | 意甲 | 德甲 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | 1 | 55 | 37 | 219 | 56 | 120 | 3 | 5 | 4 | 6 |","location":"top-news.ts"}} />
- #### 综合物流 / 供应链企业
+| 头条 | 深度 | 闲情 | D 站 | 中超 | 国际 | 英超 | 西甲 | 意甲 | 德甲 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| 1 | 55 | 37 | 219 | 56 | 120 | 3 | 5 | 4 | 6 |
- | 锐特信息 | 中国物流与采购网 | 则一 | 普路通 |
- | -------- | ---------------- | ---- | ------ |
- | 716 | 525 | 524 | 464 |
+### 早报 {#dong-qiu-di-zao-bao}
- | 安得智联 | 集保中国 | 上汽安吉物流 | 苏宁物流 |
- | -------- | -------- | ------------ | -------- |
- | 215 | 147 | 15 | 12 |
+<Route data={{"path":"/daily","categories":["new-media"],"example":"/dongqiudi/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.dongqiudi.com/special/48"]},"name":"早报","maintainers":["HenryQW"],"url":"www.dongqiudi.com/special/48","description":":::tip\n部分球队和球员可能会有两个 id, 正确 id 应该由 `5000` 开头.\n:::","location":"daily.ts"}} />
- | 准时达 | 深国际 | 益邦控股 | 卓志跨境供应链 |
- | ------ | ------ | -------- | -------------- |
- | 158 | 167 | 758 | 130 |
+:::tip
+部分球队和球员可能会有两个 id, 正确 id 应该由 `5000` 开头.
+:::
- | 日日顺 | 传化智联 | CJ 荣庆物流 | 江苏飞力达 |
- | ------ | -------- | ----------- | ---------- |
- | 179 | 166 | 770 | 548 |
+### 专题 {#dong-qiu-di-zhuan-ti}
- 前往 [更多](https://www.logclub.com/columnist/more/integrated_logistics) 查看更多企业
+<Route data={{"path":"/special/:id","categories":["new-media"],"example":"/dongqiudi/special/41","parameters":{"id":"专题 id, 可自行通过 https://www.dongqiudi.com/special/+数字匹配"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.dongqiudi.com/special/:id"]},"name":"专题","maintainers":["dxmpalb"],"description":"| 新闻大爆炸 | 懂球帝十佳球 | 懂球帝本周 MVP |\n | ---------- | ------------ | -------------- |\n | 41 | 52 | 53 |","location":"special.ts"}} />
- #### 快递 / 快运企业
+| 新闻大爆炸 | 懂球帝十佳球 | 懂球帝本周 MVP |
+| ---------- | ------------ | -------------- |
+| 41 | 52 | 53 |
- | 盛丰物流 | 跨越速运 | 顺心捷达 | 中国邮政 |
- | -------- | -------- | -------- | -------- |
- | 819 | 372 | 327 | 134 |
+### 足球赛果 {#dong-qiu-di-zu-qiu-sai-guo}
- | 韵达 | 申通快递 | 圆通 | 壹米滴答集团 |
- | ---- | -------- | ---- | ------------ |
- | 113 | 137 | 143 | 97 |
+<Route data={{"path":"/result/:team","categories":["new-media"],"example":"/dongqiudi/result/50001755","parameters":{"team":"球队 id, 可在[懂球帝数据](https://www.dongqiudi.com/data)中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"足球赛果","maintainers":["HenryQW"],"location":"result.ts"}} />
- | 安能物流 | 联邦快递 FedEx | UPS | DHL |
- | -------- | -------------- | --- | --- |
- | 151 | 104 | 388 | 219 |
+## 樊登读书 {#fan-deng-du-shu}
- | 优速快递 | 中铁快运 | 德坤物流 | 商桥物流 |
- | -------- | -------- | -------- | -------- |
- | 1243 | 1015 | 2254 | 99 |
+### 樊登福州运营中心 {#fan-deng-du-shu-fan-deng-fu-zhou-yun-ying-zhong-xin}
- 前往 [更多](https://www.logclub.com/columnist/more/express) 查看更多企业
+<Route data={{"path":"/fuzhou","categories":["new-media"],"example":"/dushu/fuzhou","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.dushu365.com*"]},"name":"樊登福州运营中心","maintainers":["Fatpandac"],"url":"www.dushu365.com*","location":"fuzhou/index.ts"}} />
- #### 系统 / 智能平台 / 智能硬件 / 设施企业
+## 仮面ライダ {#fan-mian-%E3%83%A9%E3%82%A4%E3%83%80}
- | 甲子光年 | 炬星科技 | 斑马智行 | 智行者 |
- | -------- | -------- | -------- | ------ |
- | 700 | 665 | 540 | 510 |
+### 最新情報 {#fan-mian-%E3%83%A9%E3%82%A4%E3%83%80-zui-xin-qing-bao}
- | 纵行科技 | 行深智能 | 地上铁 | 图森未来 |
- | -------- | -------- | ------ | -------- |
- | 509 | 508 | 500 | 445 |
+<Route data={{"path":"/news/:category?","categories":["new-media"],"example":"/kamen-rider-official/news","parameters":{"category":"Category, see below, すべて by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新情報","maintainers":["nczitzk"],"description":"| Category |\n | -------------------------------------- |\n | すべて |\n | テレビ |\n | 映画・V シネマ等 |\n | Blu-ray・DVD、配信等 |\n | 20 作記念グッズ・東映 EC 商品 |\n | 石ノ森章太郎生誕 80 周年記念商品 |\n | 玩具・カード |\n | 食品・飲料・菓子 |\n | 子供生活雑貨 |\n | アパレル・大人向け雑貨 |\n | フィギュア・ホビー・一番くじ・プライズ |\n | ゲーム・デジタル |\n | 雑誌・書籍・漫画 |\n | 音楽 |\n | 映像 |\n | イベント |\n | ホテル・レストラン等 |\n | キャンペーン・タイアップ等 |\n | その他 |\n | KAMEN RIDER STORE |\n | THE 鎧武祭り |\n | 鎧武外伝 |\n | 仮面ライダーリバイス |\n | ファイナルステージ |\n | THE50 周年展 |\n | 風都探偵 |\n | 仮面ライダーギーツ |\n | 仮面ライダーアウトサイダーズ |\n | 仮面ライダーガッチャード |\n | 仮面ライダー BLACK SUN |","location":"news.ts"}} />
+
+| Category |
+| -------------------------------------- |
+| すべて |
+| テレビ |
+| 映画・V シネマ等 |
+| Blu-ray・DVD、配信等 |
+| 20 作記念グッズ・東映 EC 商品 |
+| 石ノ森章太郎生誕 80 周年記念商品 |
+| 玩具・カード |
+| 食品・飲料・菓子 |
+| 子供生活雑貨 |
+| アパレル・大人向け雑貨 |
+| フィギュア・ホビー・一番くじ・プライズ |
+| ゲーム・デジタル |
+| 雑誌・書籍・漫画 |
+| 音楽 |
+| 映像 |
+| イベント |
+| ホテル・レストラン等 |
+| キャンペーン・タイアップ等 |
+| その他 |
+| KAMEN RIDER STORE |
+| THE 鎧武祭り |
+| 鎧武外伝 |
+| 仮面ライダーリバイス |
+| ファイナルステージ |
+| THE50 周年展 |
+| 風都探偵 |
+| 仮面ライダーギーツ |
+| 仮面ライダーアウトサイダーズ |
+| 仮面ライダーガッチャード |
+| 仮面ライダー BLACK SUN |
- | oTMS 运输管理云平台 | 聚龄供应链 | 博科资讯 | 富勒 FLUX |
- | ------------------- | ---------- | -------- | --------- |
- | 53 | 5806 | 6870 | 122 |
+## 封面新闻 {#feng-mian-xin-wen}
- | 科箭软件 | 通天晓软件 | 嬴彻科技 | 货车宝 |
- | -------- | ---------- | -------- | ------ |
- | 180 | 503 | 462 | 129 |
+### 频道 {#feng-mian-xin-wen-pin-dao}
- 前往 [更多](https://www.logclub.com/columnist/more/intellectualization) 查看更多企业
+<Route data={{"path":"/channel/:id?","categories":["new-media"],"example":"/thecover/channel/3560","parameters":{"id":"对应id,可在频道链接中获取,默认为3892"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道","maintainers":["yuxinliu-alex"],"description":"| 天下 | 四川 | 辟谣 | 国际 | 云招考 | 30 秒 | 拍客 | 体育 | 国内 | 帮扶铁军 | 文娱 | 宽窄 | 商业 | 千面 | 封面号 |\n | ---- | ---- | ---- | ---- | ------ | ----- | ---- | ---- | ---- | -------- | ---- | ---- | ---- | ---- | ------ |\n | 3892 | 3560 | 3909 | 3686 | 11 | 3902 | 3889 | 3689 | 1 | 4002 | 12 | 46 | 4 | 21 | 17 |","location":"channel.ts"}} />
- #### 货运 / 配送平台 / 仓储 / 地产企业
+| 天下 | 四川 | 辟谣 | 国际 | 云招考 | 30 秒 | 拍客 | 体育 | 国内 | 帮扶铁军 | 文娱 | 宽窄 | 商业 | 千面 | 封面号 |
+| ---- | ---- | ---- | ---- | ------ | ----- | ---- | ---- | ---- | -------- | ---- | ---- | ---- | ---- | ------ |
+| 3892 | 3560 | 3909 | 3686 | 11 | 3902 | 3889 | 3689 | 1 | 4002 | 12 | 46 | 4 | 21 | 17 |
- | 卡力互联 | 想乐送 | 宝湾物流 | 卡车之家 |
- | -------- | ------ | -------- | -------- |
- | 1660 | 1558 | 1031 | 365 |
+## 風傳媒 {#feng-chuan-mei}
- | 罗宾升 | 好多车 | 饿了么 | 闪送 |
- | ------ | ------ | ------ | ---- |
- | 308 | 269 | 172 | 80 |
+### 分类 {#feng-chuan-mei-fen-lei}
- | 宏昌物流园 | 路歌互联网物流平台 | 福佑卡车 | 普洛斯 |
- | ---------- | ------------------ | -------- | ------ |
- | 6816 | 182 | 18 | 150 |
+<Route data={{"path":"/:category?/:id?","categories":["new-media"],"example":"/storm","parameters":{"category":"分类,见下表,默认为新聞總覽","id":"子分类 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["storm.mg/:category/:id"]},"name":"分类","maintainers":["nczitzk"],"description":"| 新聞總覽 | 地方新聞 | 歷史頻道 | 評論總覽 |\n | -------- | ------------- | -------- | ----------- |\n | articles | localarticles | history | all-comment |\n\n :::tip\n 支持形如 `https://www.storm.mg/category/118` 的路由,即 [`/storm/category/118`](https://rsshub.app/storm/category/118)\n\n 支持形如 `https://www.storm.mg/localarticle-category/s149845` 的路由,即 [`/storm/localarticle-category/s149845`](https://rsshub.app/storm/localarticle-category/s149845)\n :::","location":"index.ts"}} />
- | 菜鸟速递 | 达达集团 | 满帮集团 | 货拉拉 |
- | -------- | -------- | -------- | ------ |
- | 1972 | 748 | 193 | 79 |
+| 新聞總覽 | 地方新聞 | 歷史頻道 | 評論總覽 |
+| -------- | ------------- | -------- | ----------- |
+| articles | localarticles | history | all-comment |
- 前往 [更多](https://www.logclub.com/columnist/more/freight_transport) 查看更多企业
+:::tip
+支持形如 `https://www.storm.mg/category/118` 的路由,即 [`/storm/category/118`](https://rsshub.app/storm/category/118)
- #### 证券交运 / 咨询机构
+支持形如 `https://www.storm.mg/localarticle-category/s149845` 的路由,即 [`/storm/localarticle-category/s149845`](https://rsshub.app/storm/localarticle-category/s149845)
+:::
- | 罗戈网 | 物流沙龙 | 罗戈研究 | 招商证券 |
- | ------ | -------- | -------- | -------- |
- | 17 | 21 | 26 | 51 |
+## 凤凰网 {#feng-huang-wang}
- | 兴业证券 | 环球物流咨询规划 | 华创证券 | 艾瑞咨询 |
- | -------- | ---------------- | -------- | -------- |
- | 161 | 29 | 1287 | 58 |
+### 大风号 {#feng-huang-wang-da-feng-hao}
- | 安信证券 | 天风证券 | 方正证券 | 中信证券 |
- | -------- | -------- | -------- | -------- |
- | 1295 | 1136 | 1169 | 469 |
+<Route data={{"path":"/feng/:id/:type","categories":["new-media"],"example":"/ifeng/feng/2583/doc","parameters":{"id":"对应 id,可在 大风号作者页面 找到","type":"类型,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"大风号","maintainers":["Jamch"],"description":"| 文章 | 视频 |\n | ---- | ----- |\n | doc | video |","location":"feng.ts"}} />
- | 申万宏源证券 | 国海证券 | 华泰证券 | 东方证券 |
- | ------------ | -------- | -------- | -------- |
- | 1296 | 6381 | 2119 | 1772 |
+| 文章 | 视频 |
+| ---- | ----- |
+| doc | video |
- 前往 [更多](https://www.logclub.com/columnist/more/securities_delivery) 查看更多企业
+## 福利吧 {#fu-li-ba}
- #### 资本
+### 最新 {#fu-li-ba-zui-xin}
- | 源码资本 | 华兴资本 | IDG 资本 | 元赋资本 |
- | -------- | -------- | -------- | -------- |
- | 1037 | 931 | 787 | 393 |
+<Route data={{"path":"/latest","categories":["new-media"],"example":"/fuliba/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fuliba2023.net/"]},"name":"最新","maintainers":["shinemoon"],"url":"fuliba2023.net/","location":"latest.ts"}} />
- | 钟鼎资本 | 红杉资本 |
- | -------- | -------- |
- | 159 | 5265 |
+## 观察者网 {#guan-cha-zhe-wang}
- 前往 [更多](https://www.logclub.com/columnist/more/capital) 查看更多企业
-</Route>
+### 个人主页文章 {#guan-cha-zhe-wang-ge-ren-zhu-ye-wen-zhang}
-### 专家说 {#luo-ge-wang-zhuan-jia-shuo}
+<Route data={{"path":"/personalpage/:uid","categories":["new-media"],"example":"/guancha/personalpage/243983","parameters":{"uid":"用户id, 可在URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"个人主页文章","maintainers":["Jeason0228"],"location":"personalpage.ts"}} />
-<Route author="nczitzk" example="/logclub/columnist/articleList/27" path="/logclub/columnist/articleList/:id?" paramsDesc={['专家 id,见下表,可在对应企业页 URL 中找到']} radar="1">
- #### 精选专家
+### 观学院 {#guan-cha-zhe-wang-guan-xue-yuan}
- | 潘永刚 | Tracy | 唐隆基 | 褚建新 |
- | ------ | ----- | ------ | ------ |
- | 27 | 157 | 91 | 9749 |
+<Route data={{"path":"/member/:category?","categories":["new-media"],"example":"/guancha/member/recommend","parameters":{"category":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guancha.cn/"],"target":"/:category?"},"name":"观学院","maintainers":["nczitzk"],"url":"guancha.cn/","description":"| 精选 | 观书堂 | 在线课 | 观学院 |\n | --------- | ------ | ------- | -------- |\n | recommend | books | courses | huodongs |","location":"member.ts"}} />
- 前往 [更多](https://www.logclub.com/columnist/authorMore/experts) 查看更多专家
+| 精选 | 观书堂 | 在线课 | 观学院 |
+| --------- | ------ | ------- | -------- |
+| recommend | books | courses | huodongs |
- #### 资深作者
+### 首页 {#guan-cha-zhe-wang-shou-ye}
- | 物流麻将胡 | 小周伯通 | 郭嘉 | 周艳青 |
- | ---------- | -------- | ---- | ------ |
- | 10 | 19 | 7 | 559 |
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/guancha","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guancha.cn/"]},"name":"首页","maintainers":["nczitzk","Jeason0228"],"url":"guancha.cn/","description":"| 全部 | 评论 & 研究 | 要闻 | 风闻 | 热点新闻 | 滚动新闻 |\n | ---- | ----------- | ----- | ------- | -------- | -------- |\n | all | review | story | fengwen | redian | gundong |\n\n home = 评论 & 研究 + 要闻 + 风闻\n\n others = 热点新闻 + 滚动新闻\n\n :::tip\n 观察者网首页左中右的三个 column 分别对应 **评论 & 研究**、**要闻**、**风闻** 三个部分。\n :::","location":"index.ts"}} />
- 前往 [更多](https://www.logclub.com/columnist/authorMore/author) 查看更多专家
+| 全部 | 评论 & 研究 | 要闻 | 风闻 | 热点新闻 | 滚动新闻 |
+| ---- | ----------- | ----- | ------- | -------- | -------- |
+| all | review | story | fengwen | redian | gundong |
- #### 综合物流
+home = 评论 & 研究 + 要闻 + 风闻
- | 韩雪峰 | 李赛赛 | 陈晓曦 | 李长宏 |
- | ------ | ------ | ------ | ------ |
- | 41 | 12378 | 1495 | 110 |
+others = 热点新闻 + 滚动新闻
- 前往 [更多](https://www.logclub.com/columnist/authorMore/integrated_logistics) 查看更多专家
+:::tip
+观察者网首页左中右的三个 column 分别对应 **评论 & 研究**、**要闻**、**风闻** 三个部分。
+:::
- #### 数字化
+### 头条 {#guan-cha-zhe-wang-tou-tiao}
- | 秦愉 | 冯雷 | 卢立新 | 段琰 |
- | ---- | ---- | ------ | ---- |
- | 160 | 147 | 95 | 284 |
+<Route data={{"path":"/headline","categories":["new-media"],"example":"/guancha/headline","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guancha.cn/GuanChaZheTouTiao","guancha.cn/"]},"name":"头条","maintainers":["nczitzk"],"url":"guancha.cn/GuanChaZheTouTiao","location":"headline.ts"}} />
- 前往 [更多](https://www.logclub.com/columnist/authorMore/digitization) 查看更多专家
+## 国家高端智库 / 综合开发研究院 {#guo-jia-gao-duan-zhi-ku-zong-he-kai-fa-yan-jiu-yuan}
- #### 智能化
+### 栏目 {#guo-jia-gao-duan-zhi-ku-zong-he-kai-fa-yan-jiu-yuan-lan-mu}
- | 曾志宏 | 亦橙 | 马荣 | 陈晓春 |
- | ------ | ---- | ---- | ------ |
- | 34 | 201 | 130 | 123 |
+<Route data={{"path":"/:id?","categories":["new-media"],"example":"/cdi","parameters":{"id":"分类,见下表,默认为综研国策"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["nczitzk"],"description":"| 樊纲观点 | 综研国策 | 综研观察 | 综研专访 | 综研视点 | 银湖新能源 |\n | -------- | -------- | -------- | -------- | -------- | ---------- |\n | 102 | 152 | 150 | 153 | 154 | 151 |","location":"index.ts"}} />
- 前往 [更多](https://www.logclub.com/columnist/authorMore/intellectualization) 查看更多专家
+| 樊纲观点 | 综研国策 | 综研观察 | 综研专访 | 综研视点 | 银湖新能源 |
+| -------- | -------- | -------- | -------- | -------- | ---------- |
+| 102 | 152 | 150 | 153 | 154 | 151 |
- #### 快运
+## 果壳网 {#guo-ke-wang}
- | 王坚 | 王拥军 | 靖晟 | 廖文明 |
- | ---- | ------ | ---- | ------ |
- | 172 | 252 | 84 | 50 |
+### 果壳网专栏 {#guo-ke-wang-guo-ke-wang-zhuan-lan}
- 前往 [更多](https://www.logclub.com/columnist/authorMore/express_transportation) 查看更多专家
+<Route data={{"path":"/:channel","categories":["new-media"],"example":"/guokr/calendar","parameters":{"channel":"专栏类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guokr.com/"]},"name":"果壳网专栏","maintainers":["DHPO","hoilc"],"url":"guokr.com/","description":"| 物种日历 | 吃货研究所 | 美丽也是技术活 |\n | -------- | ---------- | -------------- |\n | calendar | institute | beauty |","location":"channel.ts"}} />
- #### 合同物流
+| 物种日历 | 吃货研究所 | 美丽也是技术活 |
+| -------- | ---------- | -------------- |
+| calendar | institute | beauty |
- | 非红 | 王鹏飞 | 周海 | 王伟 |
- | ---- | ------ | ---- | ---- |
- | 40 | 2274 | 168 | 158 |
+### 科学人 {#guo-ke-wang-ke-xue-ren}
- 前往 [更多](https://www.logclub.com/columnist/authorMore/contract_logistics) 查看更多专家
+<Route data={{"path":"/scientific","categories":["new-media"],"example":"/guokr/scientific","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guokr.com/scientific","guokr.com/"]},"name":"科学人","maintainers":["alphardex","nczitzk"],"url":"guokr.com/scientific","location":"scientific.ts"}} />
- #### 供应链
+## 后续 {#hou-xu}
- | 黄尧笛 | 卓弘毅 | 胡珉 | 雷文军 Jason |
- | ------ | ------ | ---- | ------------ |
- | 26 | 35 | 188 | 303 |
+### Live {#hou-xu-live}
- 前往 [更多](https://www.logclub.com/columnist/authorMore/supply_chain) 查看更多专家
+<Route data={{"path":"/lives/:id","categories":["new-media"],"example":"/houxu/lives/33899","parameters":{"id":"编号,可在对应 Live 页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["houxu.app/lives/:id","houxu.app/"]},"name":"Live","maintainers":["nczitzk"],"url":"houxu.app/","location":"lives.ts"}} />
- #### 快递
+### 跟踪 {#hou-xu-gen-zong}
- | 致快递 | 中通之声 | 科技中通 | 明兴 |
- | ------ | -------- | -------- | ---- |
- | 9633 | 618 | 385 | 265 |
+<Route data={{"path":"/memory","categories":["new-media"],"example":"/houxu/memory","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["houxu.app/memory","houxu.app/"]},"name":"跟踪","maintainers":["nczitzk"],"url":"houxu.app/memory","location":"memory.ts"}} />
- 前往 [更多](https://www.logclub.com/columnist/authorMore/express) 查看更多专家
+### 专栏 {#hou-xu-zhuan-lan}
- #### 城配
+<Route data={{"path":"/events","categories":["new-media"],"example":"/houxu/events","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["houxu.app/events","houxu.app/"]},"name":"专栏","maintainers":["nczitzk"],"url":"houxu.app/events","location":"events.ts"}} />
- | 张春鑫 (荡漾哥) | 梁佳 | 赵波 | 王行广 |
- | --------------- | ---- | ---- | ------ |
- | 1527 | 3374 | 49 | 75 |
+## 虎嗅 {#hu-xiu}
- 前往 [更多](https://www.logclub.com/columnist/authorMore/urban_distribution) 查看更多专家
+### 24 小时 {#hu-xiu-24-xiao-shi}
- #### 仓储
+<Route data={{"path":"/moment","categories":["new-media"],"example":"/huxiu/moment","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"radar":{"source":["huxiu.com/moment"]},"name":"24 小时","maintainers":["nczitzk"],"url":"huxiu.com/moment","location":"moment.ts"}} />
- | 叶剑 | 木棉 | 陈艺 | 冯银川 |
- | ---- | ---- | ---- | ------ |
- | 1881 | 59 | 1637 | 215 |
+### 标签 {#hu-xiu-biao-qian}
- 前往 [更多](https://www.logclub.com/columnist/authorMore/storage) 查看更多专家
-</Route>
+<Route data={{"path":"/tag/:id","categories":["new-media"],"example":"/huxiu/tag/291","parameters":{"id":"标签 id,可在对应标签页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"name":"标签","maintainers":["xyqfer","HenryQW","nczitzk"],"description":"更多标签请参见 [标签](https://www.huxiu.com/tags)","location":"tag.ts"}} />
-## 妈咪帮 {#ma-mi-bang}
+更多标签请参见 [标签](https://www.huxiu.com/tags)
-### 文章 {#ma-mi-bang-wen-zhang}
+### 简报 {#hu-xiu-jian-bao}
-<Route author="nczitzk" example="/mamibuy" path="/mamibuy/:caty?/:age?/:sort?" paramsDesc={['分类,见下表,默认为全分類', '岁数,见下表,默认为不限', '排序,见下表,默认为最新']}>
- 分类
+<Route data={{"path":"/briefcolumn/:id","categories":["new-media"],"example":"/huxiu/briefcolumn/1","parameters":{"id":"简报 id,可在对应简报页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"name":"简报","maintainers":["Fatpandac","nczitzk"],"location":"brief-column.ts"}} />
- | 全分類 | 小兒醫護 | 幼兒教育 | 育兒成長 | 母乳餵哺 | 寶寶飲食 | 用品交流 | 女人聊天 | 居家生活 | 親子旅遊 / 好去處 | 媽咪扮靚 | 生活閒談 | 懷孕交流 |
- | ------ | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ----------------- | -------- | -------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
+### 搜索 {#hu-xiu-sou-suo}
- 岁数
+<Route data={{"path":"/search/:keyword","categories":["new-media"],"example":"/huxiu/search/生活","parameters":{"keyword":"关键字"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"radar":{"source":["huxiu.com/"]},"name":"搜索","maintainers":["xyqfer","HenryQW","nczitzk"],"url":"huxiu.com/","location":"search.ts"}} />
- | 不限 | 懷孕中 | 生產後 | 0\~1 歲 | 1\~3 歲 | 3\~6 歲 | 6 歲以上 |
- | ---- | ------ | ------ | ------- | ------- | ------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
+### 文集 {#hu-xiu-wen-ji}
- 排序
+<Route data={{"path":"/collection/:id","categories":["new-media"],"example":"/huxiu/collection/212","parameters":{"id":"文集 id,可在对应文集页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"name":"文集","maintainers":["AlexdanerZe","nczitzk"],"description":"更多文集请参见 [文集](https://www.huxiu.com/collection)","location":"collection.ts"}} />
- | 最新 | 推薦 | 熱門 |
- | ---- | ---- | ---- |
- | 1 | 2 | 3 |
-</Route>
+更多文集请参见 [文集](https://www.huxiu.com/collection)
-## 麻省理工科技评论 {#ma-sheng-li-gong-ke-ji-ping-lun}
+### 资讯 {#hu-xiu-zi-xun}
-### 首页 {#ma-sheng-li-gong-ke-ji-ping-lun-shou-ye}
+<Route data={{"path":["/article","/channel/:id?"],"categories":["new-media"],"example":"/huxiu/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"radar":{"source":["huxiu.com/article"]},"name":"资讯","maintainers":["HenryQW","nczitzk"],"description":"| 视频 | 车与出行 | 年轻一代 | 十亿消费者 | 前沿科技 |\n | ---- | -------- | -------- | ---------- | -------- |\n | 10 | 21 | 106 | 103 | 105 |\n\n | 财经 | 娱乐淘金 | 医疗健康 | 文化教育 | 出海 |\n | ---- | -------- | -------- | -------- | ---- |\n | 115 | 22 | 111 | 113 | 114 |\n\n | 金融地产 | 企业服务 | 创业维艰 | 社交通讯 | 全球热点 | 生活腔调 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 102 | 110 | 2 | 112 | 107 | 4 |","url":"huxiu.com/article","location":"channel.ts"}} />
-<Route author="EsuRt queensferryme" example="/mittrchina/index" path="/mittrchina/:type?" paramsDesc={['类型,见下表,默认为首页资讯']} radar="1">
- | 快讯 | 本周热文 | 首页资讯 | 视频 |
- | -------- | -------- | -------- | ----- |
- | breaking | hot | index | video |
-</Route>
+| 视频 | 车与出行 | 年轻一代 | 十亿消费者 | 前沿科技 |
+| ---- | -------- | -------- | ---------- | -------- |
+| 10 | 21 | 106 | 103 | 105 |
-## 慢雾科技 {#man-wu-ke-ji}
+| 财经 | 娱乐淘金 | 医疗健康 | 文化教育 | 出海 |
+| ---- | -------- | -------- | -------- | ---- |
+| 115 | 22 | 111 | 113 | 114 |
-### 动态 {#man-wu-ke-ji-dong-tai}
+| 金融地产 | 企业服务 | 创业维艰 | 社交通讯 | 全球热点 | 生活腔调 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 102 | 110 | 2 | 112 | 107 | 4 |
-<Route author="AtlasQuan" example="/slowmist/research" path="/slowmist/:type?" paramsDesc={['分类,见下表,默认为公司新闻']}>
- | 公司新闻 | 漏洞披露 | 技术研究 |
- | -------- | -------- | -------- |
- | news | vul | research |
-</Route>
+### 资讯 {#hu-xiu-zi-xun}
-## 貓奴日常 {#mao-nu-ri-chang}
+<Route data={{"path":["/article","/channel/:id?"],"categories":["new-media"],"example":"/huxiu/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"radar":{"source":["huxiu.com/article"]},"name":"资讯","maintainers":["HenryQW","nczitzk"],"description":"| 视频 | 车与出行 | 年轻一代 | 十亿消费者 | 前沿科技 |\n | ---- | -------- | -------- | ---------- | -------- |\n | 10 | 21 | 106 | 103 | 105 |\n\n | 财经 | 娱乐淘金 | 医疗健康 | 文化教育 | 出海 |\n | ---- | -------- | -------- | -------- | ---- |\n | 115 | 22 | 111 | 113 | 114 |\n\n | 金融地产 | 企业服务 | 创业维艰 | 社交通讯 | 全球热点 | 生活腔调 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 102 | 110 | 2 | 112 | 107 | 4 |","url":"huxiu.com/article","location":"channel.ts"}} />
-### 分類 {#mao-nu-ri-chang-fen-lei}
+| 视频 | 车与出行 | 年轻一代 | 十亿消费者 | 前沿科技 |
+| ---- | -------- | -------- | ---------- | -------- |
+| 10 | 21 | 106 | 103 | 105 |
-<Route author="TonyRL" example="/thecatcity" path="/thecatcity/:term?" paramsDesc={['見下表,留空為全部文章']} radar="1">
- | 貓物分享 | 貓咪新聞 | 養貓大全 | 貓奴景點 | 新手養貓教學 |
- | -------- | -------- | -------- | -------- | ------------ |
- | 1 | 2 | 3 | 4 | 5 |
-</Route>
+| 财经 | 娱乐淘金 | 医疗健康 | 文化教育 | 出海 |
+| ---- | -------- | -------- | -------- | ---- |
+| 115 | 22 | 111 | 113 | 114 |
-## 梅花网 {#mei-hua-wang}
+| 金融地产 | 企业服务 | 创业维艰 | 社交通讯 | 全球热点 | 生活腔调 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 102 | 110 | 2 | 112 | 107 | 4 |
-### 作品 {#mei-hua-wang-zuo-pin}
+## 机核网 {#ji-he-wang}
-<Route author="nczitzk" example="/meihua/shots/latest" path="/meihua/shots/:caty">
- | 最新 | 热门 | 推荐 |
- | ------ | ---- | --------- |
- | latest | hot | recommend |
-</Route>
+### 标签 {#ji-he-wang-biao-qian}
-### 文章 {#mei-hua-wang-wen-zhang}
+<Route data={{"path":"/tag/:tag/:category?","categories":["new-media"],"example":"/gcores/tag/42/articles","parameters":{"tag":"标签名,可在选定标签分类页面的 URL 中找到,如视觉动物——42","category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gcores.com/categories/:tag","gcores.com/"],"target":"/tag/:tag"},"name":"标签","maintainers":["StevenRCE0"],"description":"分类名同上。","location":"tag.ts"}} />
-<Route author="nczitzk" example="/meihua/article/latest" path="/meihua/article/:caty">
- | 最新 | 热门 |
- | ------ | ---- |
- | latest | hot |
-</Route>
+分类名同上。
-## 梅斯医学 MedSci {#mei-si-yi-xue-medsci}
+### 播客 {#ji-he-wang-bo-ke}
-### 资讯 {#mei-si-yi-xue-medsci-zi-xun}
+<Route data={{"path":"/radios/:category?","categories":["new-media"],"example":"/gcores/radios/45","parameters":{"category":"分类名,默认为全部,可在分类页面的 URL 中找到,如 Gadio News -- 45"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["gcores.com/categories/:category"],"target":"/radios/:category"},"name":"播客","maintainers":["eternasuno"],"url":"gcores.com/radios","location":"radio.ts"}} />
-<Route author="nczitzk" example="/medsci" path="/medsci/:sid?/:tid?" paramsDesc={['科室,见下表,默认为推荐', '亚专业,可在对应科室页 URL 中找到,默认为该科室的全部']}>
- :::tip
- 下表为科室对应的 sid,若想获得 tid,可以到对应科室页面 URL 中寻找 `t_id` 字段的值,下面是一个例子:
+### 分类 {#ji-he-wang-fen-lei}
- 如 [肿瘤 - NSCLC](https://www.medsci.cn/department/details?s_id=5\&t_id=277) 的 URL 为 `https://www.medsci.cn/department/details?s_id=5&t_id=277`,可以看到此时 `s_id` 对应 `sid` 的值为 5, `t_id` 对应 `tid` 的值为 277,所以可以得到路由 [`/medsci/5/277`](https://rsshub.app/medsci/5/277)
- :::
+<Route data={{"path":"/category/:category","categories":["new-media"],"example":"/gcores/category/news","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gcores.com/:category"]},"name":"分类","maintainers":["MoguCloud","StevenRCE0"],"description":"| 资讯 | 视频 | 电台 | 文章 |\n | ---- | ------ | ------ | -------- |\n | news | videos | radios | articles |","location":"category.ts"}} />
- | 心血管 | 内分泌 | 消化 | 呼吸 | 神经科 |
- | ------ | ------ | ---- | ---- | ------ |
- | 2 | 6 | 4 | 12 | 17 |
+| 资讯 | 视频 | 电台 | 文章 |
+| ---- | ------ | ------ | -------- |
+| news | videos | radios | articles |
- | 传染科 | 精神心理 | 肾内科 | 风湿免疫 | 血液科 |
- | ------ | -------- | ------ | -------- | ------ |
- | 9 | 13 | 14 | 15 | 21 |
+### 专题文章 {#ji-he-wang-zhuan-ti-wen-zhang}
- | 老年医学 | 胃肠外科 | 血管外科 | 肝胆胰外 | 骨科 |
- | -------- | -------- | -------- | -------- | ---- |
- | 19 | 76 | 92 | 91 | 10 |
+<Route data={{"path":"/collections/:collection","categories":["new-media"],"example":"/gcores/collections/64","parameters":{"collection":"专题id,可在专题页面的 URL 中找到,如 游戏开发设计心得分享 -- 64"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gcores.com/collections/:collection"]},"name":"专题文章","maintainers":["kudryavka1013"],"location":"collection.ts"}} />
- | 普通外科 | 胸心外科 | 神经外科 | 泌尿外科 | 烧伤科 |
- | -------- | -------- | -------- | -------- | ------ |
- | 23 | 24 | 25 | 26 | 27 |
+## 加美财经 {#jia-mei-cai-jing}
- | 整形科 | 麻醉疼痛 | 罕见病 | 康复医学 | 药械 |
- | ------ | -------- | ------ | -------- | ---- |
- | 28 | 29 | 304 | 95 | 11 |
+### 分类 {#jia-mei-cai-jing-fen-lei}
- | 儿科 | 耳鼻咽喉 | 口腔科 | 眼科 | 政策人文 |
- | ---- | -------- | ------ | ---- | -------- |
- | 18 | 30 | 31 | 32 | 33 |
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/caus","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 全部 | 要闻 | 商业 | 快讯 | 财富 | 生活 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n | 0 | 1 | 2 | 3 | 8 | 6 |","location":"index.ts"}} />
- | 营养全科 | 预防公卫 | 妇产科 | 中医科 | 急重症 |
- | -------- | -------- | ------ | ------ | ------ |
- | 34 | 35 | 36 | 37 | 38 |
+| 全部 | 要闻 | 商业 | 快讯 | 财富 | 生活 |
+| ---- | ---- | ---- | ---- | ---- | ---- |
+| 0 | 1 | 2 | 3 | 8 | 6 |
- | 皮肤性病 | 影像放射 | 转化医学 | 检验病理 | 护理 |
- | -------- | -------- | -------- | -------- | ---- |
- | 39 | 40 | 42 | 69 | 79 |
+## 簡訊設計 {#jian-xun-she-ji}
- | 糖尿病 | 冠心病 | 肝病 | 乳腺癌 |
- | ------ | ------ | ---- | ------ |
- | 8 | 43 | 22 | 89 |
-</Route>
+### 志祺七七 {#jian-xun-she-ji-zhi-qi-qi-qi}
-## 镁客网 im2maker {#mei-ke-wang-im2maker}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/simpleinfo","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["blog.simpleinfo.cc/blog/:category"],"target":"/:category"},"name":"志祺七七","maintainers":["haukeng"],"description":"| 夥伴聊聊 | 專案設計 |\n | -------- | -------- |\n | work | talk |\n\n | 國內外新聞 | 政治百分百 | 社會觀察家 | 心理與哲學 |\n | ---------- | ---------- | ---------- | --------------------- |\n | news | politics | society | psychology-philosophy |\n\n | 科學大探索 | 環境與健康 | ACG 快樂聊 | 好書籍分享 | 其它主題 |\n | ---------- | ------------------ | ---------- | ------------ | ------------ |\n | science | environment-health | acg | book-sharing | other-topics |","location":"index.ts"}} />
-### 镁客网频道 {#mei-ke-wang-im2maker-mei-ke-wang-pin-dao}
+| 夥伴聊聊 | 專案設計 |
+| -------- | -------- |
+| work | talk |
-<Route author="jin12180000" example="/im2maker/" path="/im2maker/:channel?" paramsDesc={['默认不填为 最新文章 ,频道如下']}>
- | 最新文章 | 行业快讯 | 行业观察 | 镁客请讲 | 硬科技 100 人 | 投融界 | 万象 |
- | -------- | -------- | -------- | -------- | ------------- | -------- | ---------- |
- | 默认空 | fresh | industry | talk | intech | investor | everything |
-</Route>
+| 國內外新聞 | 政治百分百 | 社會觀察家 | 心理與哲學 |
+| ---------- | ---------- | ---------- | --------------------- |
+| news | politics | society | psychology-philosophy |
-## 米课 {#mi-ke}
+| 科學大探索 | 環境與健康 | ACG 快樂聊 | 好書籍分享 | 其它主題 |
+| ---------- | ------------------ | ---------- | ------------ | ------------ |
+| science | environment-health | acg | book-sharing | other-topics |
-### 米课圈精华 {#mi-ke-mi-ke-quan-jing-hua}
+## 健康界 {#jian-kang-jie}
-<Route author="nczitzk" example="/imiker/ask/jinghua" path="/imiker/ask/jinghua" radar="1" />
+### 首页 {#jian-kang-jie-shou-ye}
-## 摩点 {#mo-dian}
+<Route data={{"path":"/index","categories":["new-media"],"example":"/cn-healthcare/index","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cn-healthcare.com/"]},"name":"首页","maintainers":["qnloft"],"url":"cn-healthcare.com/","location":"index.ts"}} />
-### 众筹 {#mo-dian-zhong-chou}
+## 今日热榜 {#jin-ri-re-bang}
-<Route author="nczitzk" example="/modian/zhongchou" path="/modian/zhongchou/:category?/:sort?/:status?" paramsDesc={['分类,见下表,默认为全部', '排序,见下表,默认为最新上线', '状态,见下表,默认为全部']}>
- 分类
+:::warning
+由于需要登录后的 Cookie 值才能获取原始链接,所以需要自建,需要在环境变量中配置 `TOPHUB_COOKIE`,详情见部署页面的配置模块。
+:::
- | 全部 | 游戏 | 动漫 | 出版 | 桌游 |
- | ---- | ----- | ------ | ---------- | ---------- |
- | all | games | comics | publishing | tablegames |
+### 榜单 {#jin-ri-re-bang-bang-dan}
- | 卡牌 | 潮玩模型 | 影视 | 音乐 | 活动 |
- | ----- | -------- | ---------- | ----- | ---------- |
- | cards | toys | film-video | music | activities |
+<Route data={{"path":"/:id","categories":["new-media"],"example":"/tophub/Om4ejxvxEN","parameters":{"id":"榜单id,可在 URL 中找到"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tophub.today/n/:id"]},"name":"榜单","maintainers":["LogicJake"],"location":"index.ts"}} />
- | 设计 | 科技 | 食品 | 爱心通道 | 动物救助 |
- | ------ | ---------- | ---- | -------- | -------- |
- | design | technology | food | charity | animals |
+### 榜单列表 {#jin-ri-re-bang-bang-dan-lie-biao}
- | 个人愿望 | 其他 |
- | -------- | ------ |
- | wishes | others |
+<Route data={{"path":"/list/:id","categories":["new-media"],"example":"/tophub/list/Om4ejxvxEN","parameters":{"id":"榜单id,可在 URL 中找到"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tophub.today/n/:id"]},"name":"榜单列表","maintainers":["akynazh"],"description":":::tip\n将榜单条目集合到一个列表中,可避免推送大量条目,更符合阅读习惯且有热度排序,推荐使用。\n:::","location":"list.ts"}} />
- 排序
+:::tip
+将榜单条目集合到一个列表中,可避免推送大量条目,更符合阅读习惯且有热度排序,推荐使用。
+:::
- | 最新上线 | 金额最高 | 评论最多 |
- | --------- | ---------- | ------------ |
- | top\_time | top\_money | top\_comment |
+## 科学网 {#ke-xue-wang}
- 状态
+### 精选博客 {#ke-xue-wang-jing-xuan-bo-ke}
- | 全部 | 创意 | 预热 | 众筹中 | 众筹成功 |
- | ---- | ---- | ------- | ------ | -------- |
- | all | idea | preheat | going | success |
-</Route>
+<Route data={{"path":"/blog/:type?/:time?/:sort?","categories":["new-media"],"example":"/sciencenet/blog","parameters":{"type":"类型,见下表,默认为推荐","time":"时间,见下表,默认为所有时间","sort":"排序,见下表,默认为按发表时间排序"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"精选博客","maintainers":["nczitzk"],"description":"类型\n\n | 精选 | 最新 | 热门 |\n | --------- | ---- | ---- |\n | recommend | new | hot |\n\n 时间\n\n | 36 小时内精选博文 | 一周内精选博文 | 一月内精选博文 | 半年内精选博文 | 所有时间精选博文 |\n | ----------------- | -------------- | -------------- | -------------- | ---------------- |\n | 1 | 2 | 3 | 4 | 5 |\n\n 排序\n\n | 按发表时间排序 | 按评论数排序 | 按点击数排序 |\n | -------------- | ------------ | ------------ |\n | 1 | 2 | 3 |","location":"blog.ts"}} />
-## 摩根大通研究所 {#mo-gen-da-tong-yan-jiu-suo}
+类型
-### 新闻 {#mo-gen-da-tong-yan-jiu-suo-xin-wen}
+| 精选 | 最新 | 热门 |
+| --------- | ---- | ---- |
+| recommend | new | hot |
-<Route author="howel52" example="/jpmorganchase" path="/jpmorganchase" />
+时间
-## 木木博客 {#mu-mu-bo-ke}
+| 36 小时内精选博文 | 一周内精选博文 | 一月内精选博文 | 半年内精选博文 | 所有时间精选博文 |
+| ----------------- | -------------- | -------------- | -------------- | ---------------- |
+| 1 | 2 | 3 | 4 | 5 |
-### 频道 {#mu-mu-bo-ke-pin-dao}
+排序
-<Route author="nczitzk" example="/liulinblog" path="/liulinblog/:channel?" paramsDesc={['频道 id,可在对应频道页 URL 中找到,见下表,默认为最新']} radar="1">
- | 最新 | 60 秒读懂世界 | 精品资源 | 视频资源 | 音频资源 |
- | ---- | ------------- | -------- | -------- | -------- |
- | | kuaixun | ziyuan | video | yinpin |
+| 按发表时间排序 | 按评论数排序 | 按点击数排序 |
+| -------------- | ------------ | ------------ |
+| 1 | 2 | 3 |
- | 绝版资源 | 实用文档 | PPT 素材 | 后期素材 | 技能教程 |
- | -------- | -------- | --------- | -------- | --------- |
- | jueban | wendang | ppt-sucai | sucai | jiaocheng |
+### 用户博客 {#ke-xue-wang-yong-hu-bo-ke}
- | 创业副业 | 单机游戏 | 冒险解谜 | 竞技格斗 | 赛车竞技 |
- | -------- | -------- | -------- | ----------- | -------- |
- | money | game | mxjm | jingjigedou | saiche |
+<Route data={{"path":"/user/:id","categories":["new-media"],"example":"/sciencenet/user/tony8310","parameters":{"id":"用户 id,可在对用户博客页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["blog.sciencenet.cn/u/:id","blog.sciencenet.cn/"]},"name":"用户博客","maintainers":["nczitzk"],"location":"user.ts"}} />
- | 模拟经营 | 角色扮演 | 飞行游戏 | 塔防策略 | 射击游戏 |
- | -------- | -------- | -------- | -------- | -------- |
- | moni | jiaose | feixing | tafang | sheji |
+## 快科技 {#kuai-ke-ji}
- | 恐怖冒险 | 策略生存 | 动作冒险 | 电商运营 | 互联网早报 |
- | -------- | -------- | -------- | --------- | ---------- |
- | kongbu | celve | dongzuo | dianshang | internet |
+### 排行 {#kuai-ke-ji-pai-hang}
- | 站长圈 | 自媒体运营 | 短视频 |
- | ------ | ---------- | ----------- |
- | seo | zimeiti | duan-shipin |
-</Route>
+<Route data={{"path":"/rank/:range?","categories":["new-media"],"example":"/mydrivers/rank","parameters":{"range":"时间范围,见下表,默认为24小时最热"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.mydrivers.com/newsclass.aspx"],"target":"/rank"},"name":"排行","maintainers":["nczitzk"],"url":"m.mydrivers.com/newsclass.aspx","description":"| 24 小时最热 | 本周最热 | 本月最热 |\n | ----------- | -------- | -------- |\n | 0 | 1 | 2 |","location":"rank.ts"}} />
-### 标签 {#mu-mu-bo-ke-biao-qian}
+| 24 小时最热 | 本周最热 | 本月最热 |
+| ----------- | -------- | -------- |
+| 0 | 1 | 2 |
-<Route author="nczitzk" example="/liulinblog/tag/qukuailian" path="/liulinblog/tag/:id" paramsDesc={['标签 id,可在对应标签页 URL 中找到,见下表']} radar="1">
- | 区块链 | 小红书 | 小说项目 | 微信公众号 | 微信营销 |
- | ---------- | ----------- | -------- | ---------- | -------- |
- | qukuailian | xiaohongshu | xiaoshuo | 微信公众号 | we-chat |
+## 雷峰网 {#lei-feng-wang}
- | 抖音 | 抖音直播 | 拼多多 | 支付宝 | 教育 |
- | ---- | -------- | --------- | ------ | ---- |
- | 抖音 | 抖音直播 | pinduoduo | alipay | 教育 |
+### 业界资讯 {#lei-feng-wang-ye-jie-zi-xun}
- | chrome 插件 | galgame 汉化游戏 | honeyselect 汉化游戏 | PSD 笔刷素材 | ps 插件 |
- | ----------- | ---------------- | -------------------- | ------------ | ---------- |
- | chrome 插件 | galgame | honey-select | psd-bishua | ps-chajian |
+<Route data={{"path":"/newsflash","categories":["new-media"],"example":"/leiphone/newsflash","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["leiphone.com/"]},"name":"业界资讯","maintainers":[],"url":"leiphone.com/","location":"newsflash.ts"}} />
- | vip 视频 | windows 实用技巧 | 下载软件 | 丝袜玉足 | 免费字体下载 |
- | ---------- | ---------------- | -------- | -------- | ------------ |
- | vip-shipin | computer | download | siwa | ziti |
+## 链捕手 ChainCatcher {#lian-bu-shou-chaincatcher}
- | 二战游戏下载 | 冒险解谜游戏 | 动作游戏下载 | 安卓游戏 | 策略游戏 |
- | ------------ | ------------ | ------------ | ------------ | ---------- |
- | war-games | 冒险解谜游戏 | 动作游戏下载 | android-game | game-celve |
+### 快讯 {#lian-bu-shou-chaincatcher-kuai-xun}
- | Pr 插件 | Python | seo 优化 | VLOG | wordpress | word 技巧 |
- | ------- | ------ | -------- | ---- | --------- | --------- |
- | pr 插件 | python | seo | vlog | wordpress | word |
-</Route>
+<Route data={{"path":"/news","categories":["new-media"],"example":"/chaincatcher/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chaincatcher.com/news","chaincatcher.com/"]},"name":"快讯","maintainers":["TonyRL"],"url":"chaincatcher.com/news","location":"news.ts"}} />
-### 专题 {#mu-mu-bo-ke-zhuan-ti}
+## 链新闻 ABMedia {#lian-xin-wen-abmedia}
-<Route author="nczitzk" example="/liulinblog/series/xunlei" path="/liulinblog/series/:id" paramsDesc={['专题 id,可在对应标签页 URL 中找到,见下表']} radar="1">
- | 【免费速存】迅雷资源合集 | 直播带货教程 | 电商培训课程 | 拼多多运营培训 | 小红书运营 | 抖音运营 | 闲鱼运营 | 短视频运营 |
- | ------------------------ | ------------ | --------------- | -------------- | ----------- | ------------- | ------------- | ----------------- |
- | xunlei | zhibodaihuo | dianshangpeixun | pinduoduo | xiaohongshu | douyinyunying | xianyuyunying | duanshipinyunying |
-</Route>
+### 类别 {#lian-xin-wen-abmedia-lei-bie}
-### 搜索 {#mu-mu-bo-ke-sou-suo}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/abmedia/technology-development","parameters":{"category":"类别,默认为产品技术"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.abmedia.io/category/:catehory"],"target":"/:category"},"name":"类别","maintainers":[],"description":"参数可以从链接中拿到,如:\n\n `https://www.abmedia.io/category/technology-development` 对应 `/abmedia/technology-development`","location":"category.ts"}} />
-<Route author="nczitzk" example="/liulinblog/search/单机游戏" path="/liulinblog/search/:keyword" paramsDesc={['关键字']} radar="1" />
+参数可以从链接中拿到,如:
-### 60 秒读懂世界 {#mu-mu-bo-ke-60-miao-du-dong-shi-jie}
+`https://www.abmedia.io/category/technology-development` 对应 `/abmedia/technology-development`
-<Route author="Fatpandac nczitzk" example="/liulinblog/kuaixun" path="/liulinblog/kuaixun" />
+### 首页最新新闻 {#lian-xin-wen-abmedia-shou-ye-zui-xin-xin-wen}
-### 网络营销 {#mu-mu-bo-ke-wang-luo-ying-xiao}
+<Route data={{"path":"/index","categories":["new-media"],"example":"/abmedia/index","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.abmedia.io/"]},"name":"首页最新新闻","maintainers":[],"url":"www.abmedia.io/","location":"index.ts"}} />
-<Route author="Fatpandac nczitzk" example="/liulinblog/itnews" path="/liulinblog/itnews/:channel?" paramsDesc={['频道,默认为网络营销']}>
- | 网络营销 | 电商运营 | 互联网早报 | 站长圈 |
- | -------- | --------- | ---------- | ------ |
- | | dianshang | internet | seo |
-</Route>
+## 量子位 {#liang-zi-wei}
-## 鸟哥笔记 {#niao-ge-bi-ji}
+### 标签 {#liang-zi-wei-biao-qian}
-### 首页 {#niao-ge-bi-ji-shou-ye}
+<Route data={{"path":"/tag/:tag","categories":["new-media"],"example":"/qbitai/tag/大语言模型","parameters":{"tag":"标签名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qbitai.com/tag/:tag"]},"name":"标签","maintainers":["FuryMartin"],"location":"tag.ts"}} />
-<Route author="WenryXu" example="/niaogebiji" path="/niaogebiji" radar="1" />
+### 分类 {#liang-zi-wei-fen-lei}
-### 今日事 {#niao-ge-bi-ji-jin-ri-shi}
+<Route data={{"path":"/category/:category","categories":["new-media"],"example":"/qbitai/category/资讯","parameters":{"category":"分类名,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qbitai.com/category/:category"]},"name":"分类","maintainers":["FuryMartin"],"description":"| 资讯 | 数码 | 智能车 | 智库 | 活动 |\n| ---- | -------- | ------ | ----- | ------- |\n| 资讯 | ebandeng | auto | zhiku | huodong |","location":"category.ts"}} />
-<Route author="KotoriK" example="/niaogebiji/today" path="/niaogebiji/today" radar="1" />
+| 资讯 | 数码 | 智能车 | 智库 | 活动 |
+| ---- | -------- | ------ | ----- | ------- |
+| 资讯 | ebandeng | auto | zhiku | huodong |
-### 分类目录 {#niao-ge-bi-ji-fen-lei-mu-lu}
+## 隆众资讯 {#long-zhong-zi-xun}
-<Route author="KotoriK" example="/niaogebiji/cat/103" path="/niaogebiji/cat/:cat" paramsDesc={['如 https://www.niaogebiji.com/cat/103,最后的数字就是id']} radar="1" />
+### 资讯 {#long-zhong-zi-xun-zi-xun}
-## 跑野大爆炸 {#pao-ye-da-bao-zha}
+<Route data={{"path":"/:type?/:category?/:subCategory?","categories":["new-media"],"example":"/oilchem/list/140/18263","parameters":{"type":"类别 id,可在对应类别页中找到,默认为首页","category":"分类 id,可在对应分类页中找到","subCategory":"子分类 id,可在对应分类页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"资讯","maintainers":["nczitzk"],"description":"以下是几个例子:\n\n [**化工**](https://chem.oilchem.net) `https://chem.oilchem.net` 中,类别 id 为 `chem`,分类 id 为空,子分类 id 为空,对应路由即为 [`/oilchem/chem`](https://rsshub.app/oilchem/list/140/18263)\n\n [**甲醇**](https://chem.oilchem.net/chemical/methanol.shtml) 的相关资讯有两个页面入口:其一 `https://chem.oilchem.net/chemical/methanol.shtml` 中,类别 id 为 `chem`,分类 id 为 `chemical`,子分类 id 为 `methanol`,对应路由即为 [`/oilchem/chem/chemical/methanol`](https://rsshub.app/oilchem/chem/chemical/methanol) 或其二 `https://list.oilchem.net/140` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为空,对应路由即为 [`/oilchem/list/140`](https://rsshub.app/oilchem/list/140);\n\n [**甲醇热点聚焦**](https://list.oilchem.net/140/18263) `https://list.oilchem.net/140/18263` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为 `18263`,对应路由即为 [`/oilchem/list/140/18263`](https://rsshub.app/oilchem/list/140/18263)","location":"index.ts"}} />
-### 最新文章 {#pao-ye-da-bao-zha-zui-xin-wen-zhang}
+以下是几个例子:
-<Route author="TonyRL" example="/runtrail" path="/runtrail" radar="1" />
+[**化工**](https://chem.oilchem.net) `https://chem.oilchem.net` 中,类别 id 为 `chem`,分类 id 为空,子分类 id 为空,对应路由即为 [`/oilchem/chem`](https://rsshub.app/oilchem/list/140/18263)
-## 品玩 {#pin-wan}
+[**甲醇**](https://chem.oilchem.net/chemical/methanol.shtml) 的相关资讯有两个页面入口:其一 `https://chem.oilchem.net/chemical/methanol.shtml` 中,类别 id 为 `chem`,分类 id 为 `chemical`,子分类 id 为 `methanol`,对应路由即为 [`/oilchem/chem/chemical/methanol`](https://rsshub.app/oilchem/chem/chemical/methanol) 或其二 `https://list.oilchem.net/140` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为空,对应路由即为 [`/oilchem/list/140`](https://rsshub.app/oilchem/list/140);
-### 实时要闻 {#pin-wan-shi-shi-yao-wen}
+[**甲醇热点聚焦**](https://list.oilchem.net/140/18263) `https://list.oilchem.net/140/18263` 中,类别 id 为 `list`,分类 id 为 `140`,子分类 id 为 `18263`,对应路由即为 [`/oilchem/list/140/18263`](https://rsshub.app/oilchem/list/140/18263)
-<Route author="sanmmm" example="/pingwest/status" path="/pingwest/status" />
+## 論盡媒體 AllAboutMacau Media {#lun-jin-mei-ti-allaboutmacau-media}
-### 话题动态 {#pin-wan-hua-ti-dong-tai}
+### 话题 {#lun-jin-mei-ti-allaboutmacau-media-hua-ti}
-<Route author="sanmmm" path="/pingwest/tag/:tag/:type/:option?" example="/pingwest/tag/ChinaJoy/1" paramsDesc={['话题名或话题id, 可从话题页url中得到', '内容类型', '参数, 默认无']}>
- 内容类型
+<Route data={{"path":"/:category?/:id?","categories":["new-media"],"example":"/aamacau","parameters":{"category":"分类,见下表,默认为即時報道","id":"id,可在对应页面 URL 中找到,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aamacau.com/"]},"name":"话题","maintainers":[],"url":"aamacau.com/","description":"| 即時報道 | 每週專題 | 藝文爛鬼樓 | 論盡紙本 | 新聞事件 | 特別企劃 |\n | ------------ | ----------- | ---------- | -------- | -------- | -------- |\n | breakingnews | weeklytopic | culture | press | case | special |\n\n :::tip\n 除了直接订阅分类全部文章(如 [每週專題](https://aamacau.com/topics/weeklytopic) 的对应路由为 [/aamacau/weeklytopic](https://rsshub.app/aamacau/weeklytopic)),你也可以订阅特定的专题,如 [【9-12】2021 澳門立法會選舉](https://aamacau.com/topics/【9-12】2021澳門立法會選舉) 的对应路由为 [/【9-12】2021 澳門立法會選舉](https://rsshub.app/aamacau/【9-12】2021澳門立法會選舉)。\n\n 分类中的专题也可以单独订阅,如 [新聞事件](https://aamacau.com/topics/case) 中的 [「武漢肺炎」新聞檔案](https://aamacau.com/topics/case/「武漢肺炎」新聞檔案) 对应路由为 [/case/「武漢肺炎」新聞檔案](https://rsshub.app/aamacau/case/「武漢肺炎」新聞檔案)。\n\n 同理,其他分类同上例子也可以订阅特定的单独专题。\n :::","location":"index.ts"}} />
- | 最新 | 热门 |
- | ---- | ---- |
- | 1 | 2 |
+| 即時報道 | 每週專題 | 藝文爛鬼樓 | 論盡紙本 | 新聞事件 | 特別企劃 |
+| ------------ | ----------- | ---------- | -------- | -------- | -------- |
+| breakingnews | weeklytopic | culture | press | case | special |
- 参数
+:::tip
+除了直接订阅分类全部文章(如 [每週專題](https://aamacau.com/topics/weeklytopic) 的对应路由为 [/aamacau/weeklytopic](https://rsshub.app/aamacau/weeklytopic)),你也可以订阅特定的专题,如 [【9-12】2021 澳門立法會選舉](https://aamacau.com/topics/【9-12】2021澳門立法會選舉) 的对应路由为 [/【9-12】2021 澳門立法會選舉](https://rsshub.app/aamacau/【9-12】2021澳門立法會選舉)。
- - `fulltext`,全文输出,例如:`/pingwest/tag/ChinaJoy/1/fulltext`
+分类中的专题也可以单独订阅,如 [新聞事件](https://aamacau.com/topics/case) 中的 [「武漢肺炎」新聞檔案](https://aamacau.com/topics/case/「武漢肺炎」新聞檔案) 对应路由为 [/case/「武漢肺炎」新聞檔案](https://rsshub.app/aamacau/case/「武漢肺炎」新聞檔案)。
- :::tip
- 该路由一次最多显示 30 条文章
- :::
-</Route>
+同理,其他分类同上例子也可以订阅特定的单独专题。
+:::
-### 用户 {#pin-wan-yong-hu}
+## 罗戈网 {#luo-ge-wang}
-<Route author="sanmmm" path="/pingwest/user/:uid/:type?/:option?" example="/pingwest/user/7781550877/article" paramsDesc={['用户id, 可从用户主页中得到', '内容类型, 默认为`article`', '参数']}>
- 内容类型
+### 报告 {#luo-ge-wang-bao-gao}
- | 文章 | 动态 |
- | ------- | ----- |
- | article | state |
+<Route data={{"path":["/lc_report/:id?","/report/:id?"],"categories":["new-media"],"example":"/logclub/lc_report","parameters":{"id":"报告 id,见下表,默认为罗戈研究出品"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"报告","maintainers":["nczitzk"],"description":"| 罗戈研究出品 | 物流报告 | 绿色双碳报告 |\n | ------------ | -------------- | --------------------- |\n | Report | IndustryReport | GreenDualCarbonReport |","location":"report.ts"}} />
- 参数
+| 罗戈研究出品 | 物流报告 | 绿色双碳报告 |
+| ------------ | -------------- | --------------------- |
+| Report | IndustryReport | GreenDualCarbonReport |
- - `fulltext`,全文输出,例如:`/pingwest/user/7781550877/article/fulltext`
-</Route>
+### 报告 {#luo-ge-wang-bao-gao}
-## 千篇网 {#qian-pian-wang}
+<Route data={{"path":["/lc_report/:id?","/report/:id?"],"categories":["new-media"],"example":"/logclub/lc_report","parameters":{"id":"报告 id,见下表,默认为罗戈研究出品"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"报告","maintainers":["nczitzk"],"description":"| 罗戈研究出品 | 物流报告 | 绿色双碳报告 |\n | ------------ | -------------- | --------------------- |\n | Report | IndustryReport | GreenDualCarbonReport |","location":"report.ts"}} />
-### 知识库 / 资讯 {#qian-pian-wang-zhi-shi-ku-zi-xun}
+| 罗戈研究出品 | 物流报告 | 绿色双碳报告 |
+| ------------ | -------------- | --------------------- |
+| Report | IndustryReport | GreenDualCarbonReport |
-<Route author="TonyRL" example="/qianp/news" path="/qianp/news/:path*" paramsDesc={['路径,可在URL中找到,默认为 `news/recommend`']} radar="1" />
+## 麻省理工科技评论 {#ma-sheng-li-gong-ke-ji-ping-lun}
-## 求是网 {#qiu-shi-wang}
+### 首页 {#ma-sheng-li-gong-ke-ji-ping-lun-shou-ye}
-### 分类 {#qiu-shi-wang-fen-lei}
+<Route data={{"path":"/:type?","categories":["new-media"],"example":"/mittrchina/index","parameters":{"type":"类型,见下表,默认为首页资讯"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"首页","maintainers":["EsuRt","queensferryme"],"description":"| 快讯 | 本周热文 | 首页资讯 | 视频 |\n | -------- | -------- | -------- | ----- |\n | breaking | hot | index | video |","location":"index.ts"}} />
-<Route author="nczitzk" example="/qstheory" path="/qstheory/:category?" paramsDesc={['分类,见下表']}>
- | 网评 | 视频 | 原创 | 经济 | 政治 | 文化 | 社会 | 党建 | 科教 | 生态 | 国防 | 国际 | 图书 | 学习笔记 |
- | ---- | ---- | ------ | ------- | -------- | ------- | ------- | ---- | ------- | ------- | ------- | ------------- | ----- | -------- |
- | qswp | qssp | qslgxd | economy | politics | culture | society | cpc | science | zoology | defense | international | books | xxbj |
-</Route>
+| 快讯 | 本周热文 | 首页资讯 | 视频 |
+| -------- | -------- | -------- | ----- |
+| breaking | hot | index | video |
-## 趨勢科技防詐達人 {#qu-shi-ke-ji-fang-zha-da-ren}
+## 慢雾科技 {#man-wu-ke-ji}
-### 最新詐騙情報 {#qu-shi-ke-ji-fang-zha-da-ren-zui-xin-zha-pian-qing-bao}
+### 动态 {#man-wu-ke-ji-dong-tai}
-<Route author="nczitzk" example="/getdr" path="/getdr" />
+<Route data={{"path":"/:type?","categories":["new-media"],"example":"/slowmist/research","parameters":{"type":"分类,见下表,默认为公司新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["slowmist.com/zh/news.html"]},"name":"动态","maintainers":["AtlasQuan"],"url":"slowmist.com/zh/news.html","description":"| 公司新闻 | 漏洞披露 | 技术研究 |\n | -------- | -------- | -------- |\n | news | vul | research |","location":"slowmist.ts"}} />
-## 趣头条 {#qu-tou-tiao}
+| 公司新闻 | 漏洞披露 | 技术研究 |
+| -------- | -------- | -------- |
+| news | vul | research |
-### 分类 {#qu-tou-tiao-fen-lei}
+## 貓奴日常 {#mao-nu-ri-chang}
-<Route author="alphardex LogicJake" example="/qutoutiao/category/1" path="/qutoutiao/category/:cid" paramsDesc={['分类 id']}>
- | 推荐 | 热点 | 娱乐 | 健康 | 养生 | 励志 | 科技 | ... |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | --- |
- | 255 | 1 | 6 | 42 | 5 | 4 | 7 | ... |
+### 分類 {#mao-nu-ri-chang-fen-lei}
- 更多的 cid 可通过访问[官网](http://home.qutoutiao.net)切换分类,观察 url 获得。
-</Route>
+<Route data={{"path":"/:term?","categories":["new-media"],"example":"/thecatcity","parameters":{"term":"見下表,留空為全部文章"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["thecatcity.com/"],"target":""},"name":"分類","maintainers":["TonyRL"],"url":"thecatcity.com/","description":"| 貓物分享 | 貓咪新聞 | 養貓大全 | 貓奴景點 | 新手養貓教學 |\n | -------- | -------- | -------- | -------- | ------------ |\n | 1 | 2 | 3 | 4 | 5 |","location":"index.ts"}} />
-## 全国港澳研究会 {#quan-guo-gang-ao-yan-jiu-hui}
+| 貓物分享 | 貓咪新聞 | 養貓大全 | 貓奴景點 | 新手養貓教學 |
+| -------- | -------- | -------- | -------- | ------------ |
+| 1 | 2 | 3 | 4 | 5 |
-### 分类 {#quan-guo-gang-ao-yan-jiu-hui-fen-lei}
+## 梅斯医学 MedSci {#mei-si-yi-xue-medsci}
-<Route author="nczitzk" example="/cahkms" path="/cahkms/:category?" paramsDesc={['分类,见下表,默认为重要新闻']}>
- | 关于我们 | 港澳新闻 | 重要新闻 | 顾问点评、会员观点 | 专题汇总 |
- | -------- | -------- | -------- | ------------------ | -------- |
- | 01 | 02 | 03 | 04 | 05 |
+### 资讯 {#mei-si-yi-xue-medsci-zi-xun}
- | 港澳时评 | 图片新闻 | 视频中心 | 港澳研究 | 最新书讯 | 研究资讯 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 06 | 07 | 08 | 09 | 10 | 11 |
-</Route>
+<Route data={{"path":"/:sid?/:tid?","categories":["new-media"],"example":"/medsci","parameters":{"sid":"科室,见下表,默认为推荐","tid":"亚专业,可在对应科室页 URL 中找到,默认为该科室的全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"资讯","maintainers":["nczitzk"],"description":":::tip\n 下表为科室对应的 sid,若想获得 tid,可以到对应科室页面 URL 中寻找 `t_id` 字段的值,下面是一个例子:\n\n 如 [肿瘤 - NSCLC](https://www.medsci.cn/department/details?s_id=5&t_id=277) 的 URL 为 `https://www.medsci.cn/department/details?s_id=5&t_id=277`,可以看到此时 `s_id` 对应 `sid` 的值为 5, `t_id` 对应 `tid` 的值为 277,所以可以得到路由 [`/medsci/5/277`](https://rsshub.app/medsci/5/277)\n :::\n\n | 心血管 | 内分泌 | 消化 | 呼吸 | 神经科 |\n | ------ | ------ | ---- | ---- | ------ |\n | 2 | 6 | 4 | 12 | 17 |\n\n | 传染科 | 精神心理 | 肾内科 | 风湿免疫 | 血液科 |\n | ------ | -------- | ------ | -------- | ------ |\n | 9 | 13 | 14 | 15 | 21 |\n\n | 老年医学 | 胃肠外科 | 血管外科 | 肝胆胰外 | 骨科 |\n | -------- | -------- | -------- | -------- | ---- |\n | 19 | 76 | 92 | 91 | 10 |\n\n | 普通外科 | 胸心外科 | 神经外科 | 泌尿外科 | 烧伤科 |\n | -------- | -------- | -------- | -------- | ------ |\n | 23 | 24 | 25 | 26 | 27 |\n\n | 整形科 | 麻醉疼痛 | 罕见病 | 康复医学 | 药械 |\n | ------ | -------- | ------ | -------- | ---- |\n | 28 | 29 | 304 | 95 | 11 |\n\n | 儿科 | 耳鼻咽喉 | 口腔科 | 眼科 | 政策人文 |\n | ---- | -------- | ------ | ---- | -------- |\n | 18 | 30 | 31 | 32 | 33 |\n\n | 营养全科 | 预防公卫 | 妇产科 | 中医科 | 急重症 |\n | -------- | -------- | ------ | ------ | ------ |\n | 34 | 35 | 36 | 37 | 38 |\n\n | 皮肤性病 | 影像放射 | 转化医学 | 检验病理 | 护理 |\n | -------- | -------- | -------- | -------- | ---- |\n | 39 | 40 | 42 | 69 | 79 |\n\n | 糖尿病 | 冠心病 | 肝病 | 乳腺癌 |\n | ------ | ------ | ---- | ------ |\n | 8 | 43 | 22 | 89 |","location":"index.ts"}} />
-## 全民健康网 {#quan-min-jian-kang-wang}
+:::tip
+下表为科室对应的 sid,若想获得 tid,可以到对应科室页面 URL 中寻找 `t_id` 字段的值,下面是一个例子:
-### 新闻 {#quan-min-jian-kang-wang-xin-wen}
+如 [肿瘤 - NSCLC](https://www.medsci.cn/department/details?s_id=5\&t_id=277) 的 URL 为 `https://www.medsci.cn/department/details?s_id=5&t_id=277`,可以看到此时 `s_id` 对应 `sid` 的值为 5, `t_id` 对应 `tid` 的值为 277,所以可以得到路由 [`/medsci/5/277`](https://rsshub.app/medsci/5/277)
+:::
-<Route author="nczitzk" example="/qm120/news" path="/qm120/news/:category?" paramsDesc={['分类,见下表,默认为健康焦点']}>
- | 健康焦点 | 行业动态 | 医学前沿 | 法规动态 |
- | -------- | -------- | -------- | -------- |
- | jdxw | hydt | yxqy | fgdt |
+| 心血管 | 内分泌 | 消化 | 呼吸 | 神经科 |
+| ------ | ------ | ---- | ---- | ------ |
+| 2 | 6 | 4 | 12 | 17 |
- | 食品安全 | 医疗事故 | 医药会展 | 医药信息 |
- | -------- | -------- | -------- | -------- |
- | spaq | ylsg | yyhz | yyxx |
+| 传染科 | 精神心理 | 肾内科 | 风湿免疫 | 血液科 |
+| ------ | -------- | ------ | -------- | ------ |
+| 9 | 13 | 14 | 15 | 21 |
- | 新闻专题 | 行业新闻 |
- | -------- | -------- |
- | zhuanti | xyxw |
-</Route>
+| 老年医学 | 胃肠外科 | 血管外科 | 肝胆胰外 | 骨科 |
+| -------- | -------- | -------- | -------- | ---- |
+| 19 | 76 | 92 | 91 | 10 |
-## 全球化智库 {#quan-qiu-hua-zhi-ku}
+| 普通外科 | 胸心外科 | 神经外科 | 泌尿外科 | 烧伤科 |
+| -------- | -------- | -------- | -------- | ------ |
+| 23 | 24 | 25 | 26 | 27 |
-### 分类 {#quan-qiu-hua-zhi-ku-fen-lei}
+| 整形科 | 麻醉疼痛 | 罕见病 | 康复医学 | 药械 |
+| ------ | -------- | ------ | -------- | ---- |
+| 28 | 29 | 304 | 95 | 11 |
-<Route author="nczitzk" example="/ccg" path="/ccg/:category?" paramsDesc={['分类,见下表']}>
- | 新闻动态 | 媒体报道 | 观点 |
- | -------- | -------- | ---- |
- | news | mtbd | view |
-</Route>
+| 儿科 | 耳鼻咽喉 | 口腔科 | 眼科 | 政策人文 |
+| ---- | -------- | ------ | ---- | -------- |
+| 18 | 30 | 31 | 32 | 33 |
-## 人民论坛网 {#ren-min-lun-tan-wang}
+| 营养全科 | 预防公卫 | 妇产科 | 中医科 | 急重症 |
+| -------- | -------- | ------ | ------ | ------ |
+| 34 | 35 | 36 | 37 | 38 |
-### 思想理论 {#ren-min-lun-tan-wang-si-xiang-li-lun}
+| 皮肤性病 | 影像放射 | 转化医学 | 检验病理 | 护理 |
+| -------- | -------- | -------- | -------- | ---- |
+| 39 | 40 | 42 | 69 | 79 |
-<Route author="nczitzk" example="/rmlt/idea" path="/rmlt/idea/:category?" paramsDesc={['分类,见下表,默认为首页']}>
- | 首页 | 独家连线 | 深度原创 | 中外思潮 | 时事洞察 |
- | ---- | ---------- | ---------- | -------- | -------- |
- | | connection | yuanchuang | sichao | dongcha |
+| 糖尿病 | 冠心病 | 肝病 | 乳腺癌 |
+| ------ | ------ | ---- | ------ |
+| 8 | 43 | 22 | 89 |
- | 中国声音 | 全球观察 | 思想名人堂 | 学术人生 |
- | -------- | -------- | ----------- | -------- |
- | shengyin | guancha | mingrentang | xueshu |
+## 米课 {#mi-ke}
- | 前沿理论 | 比较研究 |
- | -------- | -------- |
- | lilun | yanjiu |
-</Route>
+### 米课圈精华 {#mi-ke-mi-ke-quan-jing-hua}
-## 人人都是产品经理 {#ren-ren-dou-shi-chan-pin-jing-li}
+<Route data={{"path":"/ask/jinghua","categories":["new-media"],"example":"/imiker/ask/jinghua","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["imiker.com/explore/find"]},"name":"米课圈精华","maintainers":["nczitzk"],"url":"imiker.com/explore/find","location":"jinghua.ts"}} />
-### 热门文章 {#ren-ren-dou-shi-chan-pin-jing-li-re-men-wen-zhang}
+## 鸟哥笔记 {#niao-ge-bi-ji}
-<Route author="WenryXu" example="/woshipm/popular" path="/woshipm/popular/:range?" paramsDesc={['时间,见下表,默认为 `daily`']} radar="1">
- | 日榜 | 周榜 | 月榜 |
- | ----- | ------ | ------- |
- | daily | weekly | monthly |
-</Route>
+### 分类目录 {#niao-ge-bi-ji-fen-lei-mu-lu}
-### 天天问 {#ren-ren-dou-shi-chan-pin-jing-li-tian-tian-wen}
+<Route data={{"path":"/cat/:cat","categories":["new-media"],"example":"/niaogebiji/cat/103","parameters":{"cat":"如 https://www.niaogebiji.com/cat/103,最后的数字就是id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["niaogebiji.com/cat/:cat"]},"name":"分类目录","maintainers":["cKotoriKat"],"url":"niaogebiji.com/","location":"cat.ts"}} />
-<Route author="WenryXu" example="/woshipm/wen" path="/woshipm/wen" radar="1" />
+### 今日事 {#niao-ge-bi-ji-jin-ri-shi}
-### 用户文章 {#ren-ren-dou-shi-chan-pin-jing-li-yong-hu-wen-zhang}
+<Route data={{"path":"/today","categories":["new-media"],"example":"/niaogebiji/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["niaogebiji.com/","niaogebiji.com/bulletin"],"target":""},"name":"今日事","maintainers":["KotoriK"],"url":"niaogebiji.com/","location":"today.ts"}} />
-<Route author="LogicJake" example="/woshipm/user_article/324696" path="/woshipm/user_article/:id" paramsDesc={['用户 id']} radar="1" />
+## 品玩 {#pin-wan}
-## 人人都是自媒体 {#ren-ren-dou-shi-zi-mei-ti}
+### 话题动态 {#pin-wan-hua-ti-dong-tai}
-### 发现 {#ren-ren-dou-shi-zi-mei-ti-fa-xian}
+<Route data={{"path":"/tag/:tag/:type/:option?","categories":["new-media"],"example":"/pingwest/tag/ChinaJoy/1","parameters":{"tag":"话题名或话题id, 可从话题页url中得到","type":"内容类型","option":"参数, 默认无"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"话题动态","maintainers":["sanmmm"],"description":"内容类型\n\n | 最新 | 热门 |\n | ---- | ---- |\n | 1 | 2 |\n\n 参数\n\n - `fulltext`,全文输出,例如:`/pingwest/tag/ChinaJoy/1/fulltext`\n\n :::tip\n 该路由一次最多显示 30 条文章\n :::","location":"tag.ts"}} />
-<Route author="Joey" example="/iiilab" path="/iiilab" radar="1" />
+内容类型
-## 软餐 {#ruan-can}
+| 最新 | 热门 |
+| ---- | ---- |
+| 1 | 2 |
-### 首页 {#ruan-can-shou-ye}
+参数
-<Route author="nczitzk" example="/ruancan" path="/ruancan" />
+- `fulltext`,全文输出,例如:`/pingwest/tag/ChinaJoy/1/fulltext`
-### 分类 {#ruan-can-fen-lei}
+:::tip
+该路由一次最多显示 30 条文章
+:::
-<Route author="nczitzk" example="/ruancan/category/news" path="/ruancan/category/:category?" paramsDesc={['分类 id,可在对应分类页 URL 中找到,默认为业界']} />
+### 实时要闻 {#pin-wan-shi-shi-yao-wen}
-### 搜索 {#ruan-can-sou-suo}
+<Route data={{"path":"/status","categories":["new-media"],"example":"/pingwest/status","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pingwest.com/status","pingwest.com/"]},"name":"实时要闻","maintainers":["sanmmm"],"url":"pingwest.com/status","location":"status.ts"}} />
-<Route author="nczitzk" example="/ruancan/search/Windows" path="/ruancan/search/:keyword?" paramsDesc={['关键字,默认为空']} anticrawler="1" />
+### 用户 {#pin-wan-yong-hu}
-### 用户文章 {#ruan-can-yong-hu-wen-zhang}
+<Route data={{"path":"/user/:uid/:type?/:option?","categories":["new-media"],"example":"/pingwest/user/7781550877/article","parameters":{"uid":"用户id, 可从用户主页中得到","type":"内容类型, 默认为`article`","option":"参数"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pingwest.com/user/:uid/:type","pingwest.com/"],"target":"/user/:uid/:type"},"name":"用户","maintainers":["sanmmm"],"description":"内容类型\n\n | 文章 | 动态 |\n | ------- | ----- |\n | article | state |\n\n 参数\n\n - `fulltext`,全文输出,例如:`/pingwest/user/7781550877/article/fulltext`","location":"user.ts"}} />
-<Route author="nczitzk" example="/ruancan/user/72" path="/ruancan/user/:id?" paramsDesc={['用户 id,可在对应用户页 URL 中找到']} anticrawler="1" />
+内容类型
-## 上下游 News\&Market {#shang-xia-you-news-market}
+| 文章 | 动态 |
+| ------- | ----- |
+| article | state |
-### 分類 {#shang-xia-you-news-market-fen-lei}
+参数
-<Route author="nczitzk" example="/newsmarket" path="/newsmarket/:category?" paramsDesc={['分类,见下表,默认为首页']}>
- | 時事。政策 | 食安 | 新知 | 愛地方 | 種好田 | 好吃。好玩 |
- | ----------- | ----------- | --------- | ------------ | ------------ | ------------- |
- | news-policy | food-safety | knowledge | country-life | good-farming | good-food-fun |
+- `fulltext`,全文输出,例如:`/pingwest/user/7781550877/article/fulltext`
- | 食農教育 | 人物 | 漁業。畜牧 | 綠生活。國際 | 評論 |
- | -------------- | ------------------ | -------------------- | ------------------- | ------- |
- | food-education | people-and-history | raising-and-breeding | living-green-travel | opinion |
-</Route>
+## 全国港澳研究会 {#quan-guo-gang-ao-yan-jiu-hui}
-## 少数派 sspai {#shao-shu-pai-sspai}
+### 分类 {#quan-guo-gang-ao-yan-jiu-hui-fen-lei}
-### 首页 {#shao-shu-pai-sspai-shou-ye}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/cahkms","parameters":{"category":"分类,见下表,默认为重要新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cahkms.org/"]},"name":"分类","maintainers":["nczitzk"],"url":"cahkms.org/","description":"| 关于我们 | 港澳新闻 | 重要新闻 | 顾问点评、会员观点 | 专题汇总 |\n | -------- | -------- | -------- | ------------------ | -------- |\n | 01 | 02 | 03 | 04 | 05 |\n\n | 港澳时评 | 图片新闻 | 视频中心 | 港澳研究 | 最新书讯 | 研究资讯 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 06 | 07 | 08 | 09 | 10 | 11 |","location":"index.ts"}} />
-<Route author="HenryQW" example="/sspai/index" path="/sspai/index" radar="1" />
+| 关于我们 | 港澳新闻 | 重要新闻 | 顾问点评、会员观点 | 专题汇总 |
+| -------- | -------- | -------- | ------------------ | -------- |
+| 01 | 02 | 03 | 04 | 05 |
-### 最新上架付费专栏 {#shao-shu-pai-sspai-zui-xin-shang-jia-fu-fei-zhuan-lan}
+| 港澳时评 | 图片新闻 | 视频中心 | 港澳研究 | 最新书讯 | 研究资讯 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 06 | 07 | 08 | 09 | 10 | 11 |
-<Route author="HenryQW" example="/sspai/series" path="/sspai/series" radar="1">
- > 少数派专栏需要付费订阅,RSS 仅做更新提醒,不含付费内容.
-</Route>
+## 全民健康网 {#quan-min-jian-kang-wang}
-### 付费专栏文章更新 {#shao-shu-pai-sspai-fu-fei-zhuan-lan-wen-zhang-geng-xin}
+### 新闻 {#quan-min-jian-kang-wang-xin-wen}
-<Route author="TonyRL" example="/sspai/series/77" path="/sspai/series/:id" paramsDesc={['专栏 id']} radar="1" />
+<Route data={{"path":"/news/:category?","categories":["new-media"],"example":"/qm120/news","parameters":{"category":"分类,见下表,默认为健康焦点"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qm120.com/"]},"name":"新闻","maintainers":["nczitzk"],"url":"qm120.com/","description":"| 健康焦点 | 行业动态 | 医学前沿 | 法规动态 |\n | -------- | -------- | -------- | -------- |\n | jdxw | hydt | yxqy | fgdt |\n\n | 食品安全 | 医疗事故 | 医药会展 | 医药信息 |\n | -------- | -------- | -------- | -------- |\n | spaq | ylsg | yyhz | yyxx |\n\n | 新闻专题 | 行业新闻 |\n | -------- | -------- |\n | zhuanti | xyxw |","location":"news.ts"}} />
-### Shortcuts Gallery {#shao-shu-pai-sspai-shortcuts-gallery}
+| 健康焦点 | 行业动态 | 医学前沿 | 法规动态 |
+| -------- | -------- | -------- | -------- |
+| jdxw | hydt | yxqy | fgdt |
-<Route author="Andiedie" example="/sspai/shortcuts" path="/sspai/shortcuts" radar="1" />
+| 食品安全 | 医疗事故 | 医药会展 | 医药信息 |
+| -------- | -------- | -------- | -------- |
+| spaq | ylsg | yyhz | yyxx |
-### Matrix {#shao-shu-pai-sspai-matrix}
+| 新闻专题 | 行业新闻 |
+| -------- | -------- |
+| zhuanti | xyxw |
-<Route author="feigaoxyz" example="/sspai/matrix" path="/sspai/matrix" radar="1" />
+## 人人都是产品经理 {#ren-ren-dou-shi-chan-pin-jing-li}
-### 专栏 {#shao-shu-pai-sspai-zhuan-lan}
+### 热门文章 {#ren-ren-dou-shi-chan-pin-jing-li-re-men-wen-zhang}
-<Route author="LogicJake" example="/sspai/column/262" path="/sspai/column/:id" paramsDesc={['专栏 id']} radar="1" anticrawler="1" />
+<Route data={{"path":"/popular/:range?","categories":["new-media"],"example":"/woshipm/popular","parameters":{"range":"时间,见下表,默认为 `daily`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["woshipm.com/"],"target":"/popular"},"name":"热门文章","maintainers":["WenryXu"],"url":"woshipm.com/","description":"| 日榜 | 周榜 | 月榜 |\n | ----- | ------ | ------- |\n | daily | weekly | monthly |","location":"popular.ts"}} />
-### 作者 {#shao-shu-pai-sspai-zuo-zhe}
+| 日榜 | 周榜 | 月榜 |
+| ----- | ------ | ------- |
+| daily | weekly | monthly |
-<Route author="SunShinenny hoilc" example="/sspai/author/796518" path="/sspai/author/:id" paramsDesc={['作者 slug 或 id,slug 可在作者主页URL中找到,id 不易查找,仅作兼容']} radar="1" />
+### 天天问 {#ren-ren-dou-shi-chan-pin-jing-li-tian-tian-wen}
-### 作者动态 {#shao-shu-pai-sspai-zuo-zhe-dong-tai}
+<Route data={{"path":"/wen","categories":["new-media"],"example":"/woshipm/wen","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wen.woshipm.com/"]},"name":"天天问","maintainers":["WenryXu"],"url":"wen.woshipm.com/","location":"wen.ts"}} />
-<Route author="umm233" example="/sspai/activity/urfp0d9i" path="/sspai/activity/:slug" paramsDesc={['作者 slug,可在作者主页URL中找到']} radar="1" anticrawler="1" />
+### 用户文章 {#ren-ren-dou-shi-chan-pin-jing-li-yong-hu-wen-zhang}
-### 用户收藏 {#shao-shu-pai-sspai-yong-hu-shou-cang}
+<Route data={{"path":"/user_article/:id","categories":["new-media"],"example":"/woshipm/user_article/324696","parameters":{"id":"用户 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["woshipm.com/u/:id"]},"name":"用户文章","maintainers":["LogicJake"],"location":"user-article.ts"}} />
-<Route author="curly210102" example="/sspai/bookmarks/urfp0d9i" path="/sspai/bookmarks/:slug" paramsDesc={['用户 slug,可在个人主页URL中找到']} radar="1" />
+## 软餐 {#ruan-can}
-### 专题 {#shao-shu-pai-sspai-zhuan-ti}
+### 分类 {#ruan-can-fen-lei}
-<Route author="SunShinenny" example="/sspai/topics" path="/sspai/topics" radar="1">
- 此为专题广场更新提示 => 集合型而非单篇文章。与下方 "专题内文章更新" 存在明显区别!
-</Route>
+<Route data={{"path":"/category/:category?","categories":["new-media"],"example":"/ruancan/category/news","parameters":{"category":"分类 id,可在对应分类页 URL 中找到,默认为业界"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ruancan.com/cat/:category","ruancan.com/"],"target":"/category/:category"},"name":"分类","maintainers":[],"url":"ruancan.com/","location":"category.ts"}} />
-### 专题内文章更新 {#shao-shu-pai-sspai-zhuan-ti-nei-wen-zhang-geng-xin}
+### 搜索 {#ruan-can-sou-suo}
-<Route author="SunShinenny" example="/sspai/topic/250" path="/sspai/topic/:id" paramsDesc={['专题 id,可在专题主页URL中找到']} radar="1" />
+<Route data={{"path":"/search/:keyword?","categories":["new-media"],"example":"/ruancan/search/Windows","parameters":{"keyword":"关键字,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ruancan.com/"],"target":""},"name":"搜索","maintainers":[],"url":"ruancan.com/","location":"search.ts"}} />
-### 标签订阅 {#shao-shu-pai-sspai-biao-qian-ding-yue}
+## 上下游 News\&Market {#shang-xia-you-news-market}
-<Route author="Jeason0228" example="/sspai/tag/apple" path="/sspai/tag/:keyword" paramsDesc={['关键词']} radar="1" />
+### 分類 {#shang-xia-you-news-market-fen-lei}
-## 深圳新闻网 {#shen-zhen-xin-wen-wang}
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/newsmarket","parameters":{"category":"分类,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["newsmarket.com.tw/blog/category/:category","newsmarket.com.tw/"]},"name":"分類","maintainers":["nczitzk"],"description":"| 時事。政策 | 食安 | 新知 | 愛地方 | 種好田 | 好吃。好玩 |\n | ----------- | ----------- | --------- | ------------ | ------------ | ------------- |\n | news-policy | food-safety | knowledge | country-life | good-farming | good-food-fun |\n\n | 食農教育 | 人物 | 漁業。畜牧 | 綠生活。國際 | 評論 |\n | -------------- | ------------------ | -------------------- | ------------------- | ------- |\n | food-education | people-and-history | raising-and-breeding | living-green-travel | opinion |","location":"index.ts"}} />
-### 深圳市政府新闻发布厅 {#shen-zhen-xin-wen-wang-shen-zhen-shi-zheng-fu-xin-wen-fa-bu-ting}
+| 時事。政策 | 食安 | 新知 | 愛地方 | 種好田 | 好吃。好玩 |
+| ----------- | ----------- | --------- | ------------ | ------------ | ------------- |
+| news-policy | food-safety | knowledge | country-life | good-farming | good-food-fun |
-<Route author="nczitzk" example="/sznews/press" path="/sznews/press" />
+| 食農教育 | 人物 | 漁業。畜牧 | 綠生活。國際 | 評論 |
+| -------------- | ------------------ | -------------------- | ------------------- | ------- |
+| food-education | people-and-history | raising-and-breeding | living-green-travel | opinion |
-### 排行榜 {#shen-zhen-xin-wen-wang-pai-hang-bang}
+## 少数派 sspai {#shao-shu-pai-sspai}
-<Route author="nczitzk" example="/sznews/ranking" path="/sznews/ranking" />
+### Matrix {#shao-shu-pai-sspai-matrix}
-## 生命时报 {#sheng-ming-shi-bao}
+<Route data={{"path":"/matrix","categories":["new-media"],"example":"/sspai/matrix","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/matrix"]},"name":"Matrix","maintainers":["feigaoxyz"],"url":"sspai.com/matrix","location":"matrix.ts"}} />
-### 栏目 {#sheng-ming-shi-bao-lan-mu}
+### Shortcuts Gallery {#shao-shu-pai-sspai-shortcuts-gallery}
-<Route author="nczitzk" example="/lifetimes" path="/lifetimes/:category?" paramsDesc={['栏目,见下表,默认为新闻']}>
- | 新闻 | 医药 | 养生 | 生活 | 母亲行动 | 长寿 | 视频 | 时评 | 调查 | 产业经济 |
- | ---- | -------- | --------------- | ---- | -------- | --------- | ----- | ------------ | ------- | -------- |
- | news | medicine | healthpromotion | life | mothers | longevity | video | news-comment | hotspot | industry |
-</Route>
+<Route data={{"path":"/shortcuts","categories":["new-media"],"example":"/sspai/shortcuts","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["shortcuts.sspai.com/*"]},"name":"Shortcuts Gallery","maintainers":["Andiedie"],"url":"shortcuts.sspai.com/*","location":"shortcuts-gallery.ts"}} />
-## 时刻新闻 {#shi-ke-xin-wen}
+### 标签订阅 {#shao-shu-pai-sspai-biao-qian-ding-yue}
-### 新闻 {#shi-ke-xin-wen-xin-wen}
+<Route data={{"path":"/tag/:keyword","categories":["new-media"],"example":"/sspai/tag/apple","parameters":{"keyword":"关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/tag/:keyword"]},"name":"标签订阅","maintainers":["Jeason0228"],"location":"tag.ts"}} />
-<Route author="linbuxiao" example="/timednews/news" path="/timednews/news/:type?" paramsDesc={['子分类,见下表,默认为全部']}>
- 子分类
+### 付费专栏文章更新 {#shao-shu-pai-sspai-fu-fei-zhuan-lan-wen-zhang-geng-xin}
- | 全部 | 时政 | 财经 | 科技 | 社会 | 体娱 | 国际 | 美国 | 中国 | 欧洲 | 评论 |
- | ---- | -------------- | ------- | ---------- | ------ | ------ | ------------- | ---- | ---- | ------ | -------- |
- | all | currentAffairs | finance | technology | social | sports | international | usa | cn | europe | comments |
-</Route>
+<Route data={{"path":"/series/:id","categories":["new-media"],"example":"/sspai/series/77","parameters":{"id":"专栏 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/series/:id","sspai.com/series/:id/list","sspai.com/series/:id/metadata"]},"name":"付费专栏文章更新","maintainers":["TonyRL"],"url":"sspai.com/series","location":"series-update.ts"}} />
-## 时事一点通 {#shi-shi-yi-dian-tong}
+### 首页 {#shao-shu-pai-sspai-shou-ye}
-### 资讯 {#shi-shi-yi-dian-tong-zi-xun}
+<Route data={{"path":"/index","categories":["new-media"],"example":"/sspai/index","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/index"]},"name":"首页","maintainers":["HenryQW"],"url":"sspai.com/index","location":"index.ts"}} />
-<Route author="nczitzk" example="/ssydt/article" path="/ssydt/article/:id?" paramsDesc={['id,见下表,默认为推荐']}>
- | 推荐 | 时事日报 | 时事专题 | 备考技巧 | 招考信息 | 时事月报 | 重要会议 | 领导讲话 | 时事周刊 | 官网公告 | 时事评论 |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 3 | 6 | 13 | 12 | 4 | 10 | 11 | 5 | 8 | 7 |
-</Route>
+### 用户收藏 {#shao-shu-pai-sspai-yong-hu-shou-cang}
-## 世界新聞網 {#shi-jie-xin-wen-wang}
+<Route data={{"path":"/bookmarks/:slug","categories":["new-media"],"example":"/sspai/bookmarks/urfp0d9i","parameters":{"slug":"用户 slug,可在个人主页URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/u/:slug/bookmark_posts"]},"name":"用户收藏","maintainers":["curly210102"],"location":"bookmarks.ts"}} />
-### 新聞 {#shi-jie-xin-wen-wang-xin-wen}
+### 专栏 {#shao-shu-pai-sspai-zhuan-lan}
-<Route author="TonyRL" example="/worldjournal" path="/worldjournal/:path*" paramsDesc={['URL 中 `/wj/` 後的路徑,預設為 `cate/breaking`']} radar="1" />
+<Route data={{"path":"/column/:id","categories":["new-media"],"example":"/sspai/column/262","parameters":{"id":"专栏 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/column/:id"]},"name":"专栏","maintainers":["LogicJake"],"location":"column.ts"}} />
-## 数英网 {#shu-ying-wang}
+### 专题 {#shao-shu-pai-sspai-zhuan-ti}
-### 数英网最新文章 {#shu-ying-wang-shu-ying-wang-zui-xin-wen-zhang}
+<Route data={{"path":"/topics","categories":["new-media"],"example":"/sspai/topics","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/topics"]},"name":"专题","maintainers":["SunShinenny"],"url":"sspai.com/topics","description":"此为专题广场更新提示 => 集合型而非单篇文章。与下方 \"专题内文章更新\" 存在明显区别!","location":"topics.ts"}} />
-<Route author="occupy5" example="/digitaling/index" path="/digitaling/index" paramsDesc={['首页最新文章,数英网']} />
+此为专题广场更新提示 => 集合型而非单篇文章。与下方 "专题内文章更新" 存在明显区别!
-### 数英网文章专题 {#shu-ying-wang-shu-ying-wang-wen-zhang-zhuan-ti}
+### 专题内文章更新 {#shao-shu-pai-sspai-zhuan-ti-nei-wen-zhang-geng-xin}
-<Route author="occupy5" example="/digitaling/articles/latest" path="/digitaling/articles/:category/:subcate?" paramsDesc={['文章专题分类','hot 分类下的子类']}>
- | 最新文章 | 头条 | 热文 | 精选 |
- | -------- | -------- | ---- | ------ |
- | latest | headline | hot | choice |
+<Route data={{"path":"/topic/:id","categories":["new-media"],"example":"/sspai/topic/250","parameters":{"id":"专题 id,可在专题主页URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/topic/:id"]},"name":"专题内文章更新","maintainers":["SunShinenny"],"location":"topic.ts"}} />
- 分类`hot`下的子类
+### 最新上架付费专栏 {#shao-shu-pai-sspai-zui-xin-shang-jia-fu-fei-zhuan-lan}
- | 近期热门文章 | 近期最多收藏 | 近期最多赞 |
- | ------------ | ------------ | ---------- |
- | views | collects | zan |
-</Route>
+<Route data={{"path":"/series","categories":["new-media"],"example":"/sspai/series","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/series"]},"name":"最新上架付费专栏","maintainers":["HenryQW"],"url":"sspai.com/series","description":"> 少数派专栏需要付费订阅,RSS 仅做更新提醒,不含付费内容.","location":"series.ts"}} />
-### 数英网项目专题 {#shu-ying-wang-shu-ying-wang-xiang-mu-zhuan-ti}
+> 少数派专栏需要付费订阅,RSS 仅做更新提醒,不含付费内容.
-<Route author="occupy5" example="/digitaling/projects/all" path="/digitaling/projects/:category" paramsDesc={['项目专题分类 ']}>
- | 全部 | 每周项目精选 | 每月项目精选 | 海外项目精选 | 近期热门项目 | 近期最多收藏 |
- | ---- | ------------ | ------------ | ------------- | ------------ | ------------ |
- | all | weekly | monthly | international | hot | favorite |
-</Route>
+### 作者 {#shao-shu-pai-sspai-zuo-zhe}
-## 水果派 {#shui-guo-pai}
+<Route data={{"path":"/author/:id","categories":["new-media"],"example":"/sspai/author/796518","parameters":{"id":"作者 slug 或 id,slug 可在作者主页URL中找到,id 不易查找,仅作兼容"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/u/:id/posts"]},"name":"作者","maintainers":["SunShinenny","hoilc"],"location":"author.ts"}} />
-### 首页 {#shui-guo-pai-shou-ye}
+### 作者动态 {#shao-shu-pai-sspai-zuo-zhe-dong-tai}
-<Route author="nczitzk" example="/shuiguopai" path="/shuiguopai" radar="1" />
+<Route data={{"path":"/activity/:slug","categories":["new-media"],"example":"/sspai/activity/urfp0d9i","parameters":{"slug":"作者 slug,可在作者主页URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sspai.com/u/:id/updates"],"target":"/activity/:id"},"name":"作者动态","maintainers":["umm233"],"location":"activity.ts"}} />
-## 四月网 {#si-yue-wang}
+## 时刻新闻 {#shi-ke-xin-wen}
-### 要闻 {#si-yue-wang-yao-wen}
+### 新闻 {#shi-ke-xin-wen-xin-wen}
-<Route author="nczitzk" example="/m4/news/china" path="/m4/news/:category?" paramsDesc={['分类,见下表,默认为国内新闻']} radar="1">
- | 分类 | ID |
- | ------------------------------------- | ---------- |
- | [国内新闻](http://news.m4.cn/china/) | china |
- | [国际新闻](http://news.m4.cn/world/) | world |
- | [民生](http://news.m4.cn/livelihood/) | livelihood |
- | [社会](http://news.m4.cn/society/) | society |
- | [财经](http://news.m4.cn/finance/) | finance |
- | [科技](http://news.m4.cn/tech/) | tech |
-</Route>
+<Route data={{"path":"/news/:type?","categories":["new-media"],"example":"/timednews/news","parameters":{"type":"子分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["linbuxiao"],"description":"子分类\n\n | 全部 | 时政 | 财经 | 科技 | 社会 | 体娱 | 国际 | 美国 | 中国 | 欧洲 | 评论 |\n | ---- | -------------- | ------- | ---------- | ------ | ------ | ------------- | ---- | ---- | ------ | -------- |\n | all | currentAffairs | finance | technology | social | sports | international | usa | cn | europe | comments |","location":"news.ts"}} />
-### 军事 {#si-yue-wang-jun-shi}
+子分类
-<Route author="nczitzk" example="/m4/mil/china" path="/m4/mil/:category?" paramsDesc={['分类,见下表,默认为中国军情']} radar="1">
- | 分类 | ID |
- | ------------------------------------- | ------- |
- | [中国军情](http://mil.m4.cn/china/) | china |
- | [国际军情](http://mil.m4.cn/world/) | world |
- | [军事评论](http://mil.m4.cn/views/) | views |
- | [军事历史](http://mil.m4.cn/history/) | history |
- | [军迷说](http://mil.m4.cn/talk/) | talk |
- | [武器库](http://mil.m4.cn/arms/) | arms |
-</Route>
+| 全部 | 时政 | 财经 | 科技 | 社会 | 体娱 | 国际 | 美国 | 中国 | 欧洲 | 评论 |
+| ---- | -------------- | ------- | ---------- | ------ | ------ | ------------- | ---- | ---- | ------ | -------- |
+| all | currentAffairs | finance | technology | social | sports | international | usa | cn | europe | comments |
## 搜狐号 {#sou-hu-hao}
### 更新 {#sou-hu-hao-geng-xin}
-<Route author="HenryQW" example="/sohu/mp/119097" path="/sohu/mp/:id" paramsDesc={['搜狐号 ID', '见如下说明']}>
- 1. 通过浏览器搜索相关搜狐号 `果壳 site: mp.sohu.com`。
- 2. 通过浏览器控制台执行 `contentData.mkey`,返回的即为搜狐号 ID。
-</Route>
+<Route data={{"path":"/mp/:id","categories":["new-media"],"example":"/sohu/mp/119097","parameters":{"id":"搜狐号 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"更新","maintainers":["HenryQW"],"description":"1. 通过浏览器搜索相关搜狐号 `果壳 site: mp.sohu.com`。\n 2. 通过浏览器控制台执行 `contentData.mkey`,返回的即为搜狐号 ID。","location":"mp.ts"}} />
+
+1. 通过浏览器搜索相关搜狐号 `果壳 site: mp.sohu.com`。
+2. 通过浏览器控制台执行 `contentData.mkey`,返回的即为搜狐号 ID。
## 唐书房 {#tang-shu-fang}
### 分类 {#tang-shu-fang-fen-lei}
-<Route author="nczitzk" example="/tangshufang" path="/tangshufang/:category?" paramsDesc={['分类,见下表,默认为首页']}>
- | 首页 | 老唐实盘 | 书房拾遗 | 理念 & 估值 | 经典陪读 | 财务套利 |
- | ---- | -------- | -------- | ----------- | -------- | -------- |
- | | shipan | wenda | linian | peidu | taoli |
-
- | 企业分析 | 白酒企业 | 腾讯控股 | 分众传媒 | 海康威视 | 其他企业 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | qiye | baijiu | tengxun | fenzhong | haikang | qita |
-
- | 核心五篇 | 读者投稿 | 读书随笔 | 财报浅析 | 出行游记 | 巴芒连载 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | hexin | tougao | suibi | caibao | youji | bamang |
-</Route>
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/tangshufang","parameters":{"category":"分类,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tangshufang.com/:category","tangshufang.com/"]},"name":"分类","maintainers":["nczitzk"],"description":"| 首页 | 老唐实盘 | 书房拾遗 | 理念 & 估值 | 经典陪读 | 财务套利 |\n | ---- | -------- | -------- | ----------- | -------- | -------- |\n | | shipan | wenda | linian | peidu | taoli |\n\n | 企业分析 | 白酒企业 | 腾讯控股 | 分众传媒 | 海康威视 | 其他企业 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | qiye | baijiu | tengxun | fenzhong | haikang | qita |\n\n | 核心五篇 | 读者投稿 | 读书随笔 | 财报浅析 | 出行游记 | 巴芒连载 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | hexin | tougao | suibi | caibao | youji | bamang |","location":"index.ts"}} />
-## 腾讯企鹅号 {#teng-xun-qi-e-hao}
+| 首页 | 老唐实盘 | 书房拾遗 | 理念 & 估值 | 经典陪读 | 财务套利 |
+| ---- | -------- | -------- | ----------- | -------- | -------- |
+| | shipan | wenda | linian | peidu | taoli |
-### 更新 {#teng-xun-qi-e-hao-geng-xin}
+| 企业分析 | 白酒企业 | 腾讯控股 | 分众传媒 | 海康威视 | 其他企业 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| qiye | baijiu | tengxun | fenzhong | haikang | qita |
-<Route author="LogicJake" example="/tencent/news/author/5933889" path="/tencent/news/author/:mid" paramsDesc={['企鹅号 ID']} radar="1" />
+| 核心五篇 | 读者投稿 | 读书随笔 | 财报浅析 | 出行游记 | 巴芒连载 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| hexin | tougao | suibi | caibao | youji | bamang |
## 腾讯研究院 {#teng-xun-yan-jiu-yuan}
### 最近更新 {#teng-xun-yan-jiu-yuan-zui-jin-geng-xin}
-<Route author="Fatpandac" example="/tisi/latest" path="/tisi/latest" />
+<Route data={{"path":"/latest","categories":["new-media"],"example":"/tisi/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最近更新","maintainers":["Fatpandac"],"location":"index.ts"}} />
## 通識・現代中國 {#tong-shi-xian-dai-zhong-guo}
### 議題熱話 {#tong-shi-xian-dai-zhong-guo-yi-ti-re-hua}
-<Route author="nczitzk" example="/chiculture/topic" path="/chiculture/topic/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- | 全部 | 現代中國 | 今日香港 | 全球化 | 一周時事通識 |
- | ---- | -------- | -------- | ------ | ------------ |
- | | 76 | 479 | 480 | 379 |
-</Route>
+<Route data={{"path":"/topic/:category?","categories":["new-media"],"example":"/chiculture/topic","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"議題熱話","maintainers":["nczitzk"],"description":"| 全部 | 現代中國 | 今日香港 | 全球化 | 一周時事通識 |\n | ---- | -------- | -------- | ------ | ------------ |\n | | 76 | 479 | 480 | 379 |","location":"topic.ts"}} />
+
+| 全部 | 現代中國 | 今日香港 | 全球化 | 一周時事通識 |
+| ---- | -------- | -------- | ------ | ------------ |
+| | 76 | 479 | 480 | 379 |
## 投中网 {#tou-zhong-wang}
### 分类 {#tou-zhong-wang-fen-lei}
-<Route author="yunxinliu-alex" example="/chinaventure/news/78" path="/chinaventure/news/:id?" paramsDesc={['分类,见下表,默认为推荐']}>
- | 推荐 | 商业深度 | 资本市场 | 5G | 健康 | 教育 | 地产 | 金融 | 硬科技 | 新消费 |
- | ---- | -------- | -------- | -- | ---- | ---- | ---- | ---- | ------ | ------ |
- | | 78 | 80 | 83 | 111 | 110 | 112 | 113 | 114 | 116 |
-</Route>
-
-## 歪脑 wainao.me {#wai-nao-wainao-me}
+<Route data={{"path":"/news/:id?","categories":["new-media"],"example":"/chinaventure/news/78","parameters":{"id":"分类,见下表,默认为推荐"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chinaventure.com.cn/"],"target":""},"name":"分类","maintainers":["yuxinliu-alex"],"url":"chinaventure.com.cn/","description":"| 推荐 | 商业深度 | 资本市场 | 5G | 健康 | 教育 | 地产 | 金融 | 硬科技 | 新消费 |\n | ---- | -------- | -------- | -- | ---- | ---- | ---- | ---- | ------ | ------ |\n | | 78 | 80 | 83 | 111 | 110 | 112 | 113 | 114 | 116 |","location":"index.ts"}} />
-### 所有文章 {#wai-nao-wainao-me-suo-you-wen-zhang}
-
-<Route author="shuiRong" example="/wainao-reads/all-articles" path="/wainao-reads/all-articles" />
+| 推荐 | 商业深度 | 资本市场 | 5G | 健康 | 教育 | 地产 | 金融 | 硬科技 | 新消费 |
+| ---- | -------- | -------- | -- | ---- | ---- | ---- | ---- | ------ | ------ |
+| | 78 | 80 | 83 | 111 | 110 | 112 | 113 | 114 | 116 |
## 湾区日报 {#wan-qu-ri-bao}
### 最新推荐 {#wan-qu-ri-bao-zui-xin-tui-jian}
-<Route author="Fatpandac" example="/wanqu/news" path="/wanqu/news" radar="1" />
+<Route data={{"path":"/news","categories":["new-media"],"example":"/wanqu/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wanqu.co/"]},"name":"最新推荐","maintainers":["Fatpandac"],"url":"wanqu.co/","location":"news.ts"}} />
## 晚点 LatePost {#wan-dian-latepost}
### 报道 {#wan-dian-latepost-bao-dao}
-<Route author="HaitianLiu nczitzk" example="/latepost" path="/latepost/:proma?" paramsDesc={['栏目 id,见下表,默认为最新报道']}>
- | 最新报道 | 晚点独家 | 人物访谈 | 晚点早知道 | 长报道 |
- | -------- | -------- | -------- | ---------- | ------ |
- | | 1 | 2 | 3 | 4 |
-</Route>
-
-## 万联网 {#wan-lian-wang}
-
-### 资讯 {#wan-lian-wang-zi-xun}
-
-<Route author="kt286" example="/10000link/news/My01" path="/10000link/news/:category?" paramsDesc={['栏目代码, 默认为全部']}>
- | 全部 | 天下大势 | 企业动态 | 专家观点 | 研究报告 |
- | ---- | -------- | -------- | -------- | -------- |
- | (空) | My01 | My02 | My03 | My04 |
-</Route>
-
-## 网易独家 {#wang-yi-du-jia}
-
-### 栏目 {#wang-yi-du-jia-lan-mu}
-
-<Route author="nczitzk" example="/163/exclusive/qsyk" path="/163/exclusive/:id?" paramsDesc={['栏目, 默认为首页']}>
- | 分类 | 编号 |
- | -------- | ---- |
- | 首页 | |
- | 轻松一刻 | qsyk |
- | 槽值 | cz |
- | 人间 | rj |
- | 大国小民 | dgxm |
- | 三三有梗 | ssyg |
- | 数读 | sd |
- | 看客 | kk |
- | 下划线 | xhx |
- | 谈心社 | txs |
- | 哒哒 | dd |
- | 胖编怪聊 | pbgl |
- | 曲一刀 | qyd |
- | 今日之声 | jrzs |
- | 浪潮 | lc |
- | 沸点 | fd |
-</Route>
-
-## 网易号 {#wang-yi-hao}
-
-### 更新 {#wang-yi-hao-geng-xin}
-
-<Route author="HendricksZheng" example="/163/dy/W4983108759592548559" path="/163/dy/:id" paramsDesc={['网易号 ID', '见如下说明']}>
- 1. 在[网易号搜索页面](https://dy.163.com/v2/media/tosearch.html) 搜索想要订阅的网易号。
- 2. 打开网易号的任意文章。
- 3. 查看源代码,搜索 `data-wemediaid`,查看紧随其后的引号内的属性值(类似 `W1966190042455428950`)即为网易号 ID。
-</Route>
-
-### 网易号(通用) {#wang-yi-hao-wang-yi-hao-tong-yong}
-
-<Route author="mjysci" example="/163/dy2/T1555591616739" path="/163/dy2/:id" paramsDesc={['id,该网易号主页网址最后一项html的文件名']} anticrawler="1" />
-
-优先使用方法一,若是网易号搜索页面搜不到的小众网易号(文章页面不含`data-wemediaid`)则可使用此法。
-触发反爬会只抓取到标题,建议自建。
-
-## 网易新闻 {#wang-yi-xin-wen}
-
-:::warning
-若视频因防盗链而无法播放,请参考 [通用参数 -> 多媒体处理](/parameter#多媒体处理) 配置 `multimedia_hotlink_template` **或** `wrap_multimedia_in_iframe`。
-:::
-
-### 今日关注 {#wang-yi-xin-wen-jin-ri-guan-zhu}
-
-<Route author="nczitzk" example="/163/today" path="/163/today/:need_content?" paramsDesc={['需要获取全文,填写 true/yes 表示需要,默认需要']}>
- :::tip
- 参数 **需要获取全文** 设置为 `true` `yes` `t` `y` 等值后,RSS 会携带该新闻条目的对应全文。
- :::
-</Route>
+<Route data={{"path":"/:proma?","categories":["new-media"],"example":"/latepost","parameters":{"proma":"栏目 id,见下表,默认为最新报道"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"报道","maintainers":["nczitzk"],"description":"| 最新报道 | 晚点独家 | 人物访谈 | 晚点早知道 | 长报道 |\n | -------- | -------- | -------- | ---------- | ------ |\n | | 1 | 2 | 3 | 4 |","location":"index.ts"}} />
-### 排行榜 {#wang-yi-xin-wen-pai-hang-bang}
+| 最新报道 | 晚点独家 | 人物访谈 | 晚点早知道 | 长报道 |
+| -------- | -------- | -------- | ---------- | ------ |
+| | 1 | 2 | 3 | 4 |
-<Route author="nczitzk" example="/163/news/rank/whole/click/day" path="/163/news/rank/:category?/:type?/:time?" paramsDesc={['新闻分类,参见下表,默认为“全站”','排行榜类型,“点击榜”对应`click`,“跟贴榜”对应`follow`,默认为“点击榜”','统计时间,“1小时”对应`hour`,“24小时”对应`day`,“本周”对应`week`,“本月”对应`month`,默认为“24小时”']}>
- :::tip
- 全站新闻 **点击榜** 的统计时间仅包含 “24 小时”、“本周”、“本月”,不包含 “1 小时”。即可用的`time`参数为`day`、`week`、`month`。
+## 王者荣耀 {#wang-zhe-rong-yao}
- 其他分类 **点击榜** 的统计时间仅包含 “1 小时”、“24 小时”、“本周”。即可用的`time`参数为`hour`、`day`、`week`。
+### 更新 {#wang-zhe-rong-yao-geng-xin}
- 而所有分类(包括全站)的 **跟贴榜** 的统计时间皆仅包含 “24 小时”、“本周”、“本月”。即可用的`time`参数为`day`、`week`、`month`。
- :::
+<Route data={{"path":"/news/author/:mid","categories":["new-media"],"example":"/tencent/news/author/5933889","parameters":{"mid":"企鹅号 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["new.qq.com/omn/author/:mid"]},"name":"更新","maintainers":["LogicJake","miles170"],"location":"news/author.ts"}} />
- 新闻分类:
+## 网易公开课 {#wang-yi-gong-kai-ke}
- | 全站 | 新闻 | 娱乐 | 体育 | 财经 | 科技 | 汽车 | 女人 | 房产 | 游戏 | 旅游 | 教育 |
- | ----- | ---- | ------------- | ------ | ----- | ---- | ---- | ---- | ----- | ---- | ------ | ---- |
- | whole | news | entertainment | sports | money | tech | auto | lady | house | game | travel | edu |
-</Route>
+:::tip
+部分歌单及听歌排行信息为登陆后可见,自建时将环境变量`NCM_COOKIES`设为登陆后的 Cookie 值,即可正常获取。
+:::
-### 专栏 {#wang-yi-xin-wen-zhuan-lan}
+### 更新 {#wang-yi-gong-kai-ke-geng-xin}
-<Route author="Solist-X" example="/163/news/special/1" path="/163/news/special/:type?" paramsDesc={['栏目']}>
- | 轻松一刻 | 槽值 | 人间 | 大国小民 | 三三有梗 | 数读 | 看客 | 下划线 | 谈心社 | 哒哒 | 胖编怪聊 | 曲一刀 | 今日之声 | 浪潮 | 沸点 |
- | -------- | ---- | ---- | -------- | -------- | ---- | ---- | ------ | ------ | ---- | -------- | ------ | -------- | ---- | ---- |
- | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
-</Route>
+<Route data={{"path":"/dy/:id","categories":["new-media"],"example":"/163/dy/W4983108759592548559","parameters":{"id":"网易号 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"更新","maintainers":["HendricksZheng"],"description":"1. 在[网易号搜索页面](https://dy.163.com/v2/media/tosearch.html) 搜索想要订阅的网易号。\n 2. 打开网易号的任意文章。\n 3. 查看源代码,搜索 `data-wemediaid`,查看紧随其后的引号内的属性值(类似 `W1966190042455428950`)即为网易号 ID。","location":"dy.ts"}} />
-### 人间 {#wang-yi-xin-wen-ren-jian}
+1. 在[网易号搜索页面](https://dy.163.com/v2/media/tosearch.html) 搜索想要订阅的网易号。
+2. 打开网易号的任意文章。
+3. 查看源代码,搜索 `data-wemediaid`,查看紧随其后的引号内的属性值(类似 `W1966190042455428950`)即为网易号 ID。
-<Route author="nczitzk" example="/163/renjian/texie" path="/163/renjian/:category?" paramsDesc={['分类,见下表,默认为特写']}>
- | 特写 | 记事 | 大写 | 好读 | 看客 |
- | ----- | ----- | ----- | ----- | ----- |
- | texie | jishi | daxie | haodu | kanke |
-</Route>
+### 今日关注 {#wang-yi-gong-kai-ke-jin-ri-guan-zhu}
-## 微信 {#wei-xin}
+<Route data={{"path":"/today/:need_content?","categories":["new-media"],"example":"/163/today","parameters":{"need_content":"需要获取全文,填写 true/yes 表示需要,默认需要"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wp.m.163.com/163/html/newsapp/todayFocus/index.html","wp.m.163.com/"],"target":"/today"},"name":"今日关注","maintainers":["nczitzk"],"url":"wp.m.163.com/163/html/newsapp/todayFocus/index.html","description":":::tip\n 参数 **需要获取全文** 设置为 `true` `yes` `t` `y` 等值后,RSS 会携带该新闻条目的对应全文。\n :::","location":"today.ts"}} />
:::tip
-公众号直接抓取困难,故目前提供几种间接抓取方案,请自行选择
+参数 **需要获取全文** 设置为 `true` `yes` `t` `y` 等值后,RSS 会携带该新闻条目的对应全文。
:::
-### 公众号(CareerEngine 来源) {#wei-xin-gong-zhong-hao-careerengine-lai-yuan}
-
-<Route author="HenryQW" example="/wechat/ce/595a5b14d7164e53908f1606" path="/wechat/ce/:id" paramsDesc={['公众号 id,在 [CareerEngine](https://search.careerengine.us/) 搜索公众号,通过 URL 中找到对应的公众号 id']} anticrawler="1" />
+### 栏目 {#wang-yi-gong-kai-ke-lan-mu}
+
+<Route data={{"path":"/exclusive/:id?","categories":["new-media"],"example":"/163/exclusive/qsyk","parameters":{"id":"栏目, 默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["3g.163.com/touch/exclusive/sub/:id"]},"name":"栏目","maintainers":["nczitzk"],"description":"| 分类 | 编号 |\n | -------- | ---- |\n | 首页 | |\n | 轻松一刻 | qsyk |\n | 槽值 | cz |\n | 人间 | rj |\n | 大国小民 | dgxm |\n | 三三有梗 | ssyg |\n | 数读 | sd |\n | 看客 | kk |\n | 下划线 | xhx |\n | 谈心社 | txs |\n | 哒哒 | dd |\n | 胖编怪聊 | pbgl |\n | 曲一刀 | qyd |\n | 今日之声 | jrzs |\n | 浪潮 | lc |\n | 沸点 | fd |","location":"exclusive.ts"}} />
+
+| 分类 | 编号 |
+| -------- | ---- |
+| 首页 | |
+| 轻松一刻 | qsyk |
+| 槽值 | cz |
+| 人间 | rj |
+| 大国小民 | dgxm |
+| 三三有梗 | ssyg |
+| 数读 | sd |
+| 看客 | kk |
+| 下划线 | xhx |
+| 谈心社 | txs |
+| 哒哒 | dd |
+| 胖编怪聊 | pbgl |
+| 曲一刀 | qyd |
+| 今日之声 | jrzs |
+| 浪潮 | lc |
+| 沸点 | fd |
+
+### 排行榜 {#wang-yi-gong-kai-ke-pai-hang-bang}
+
+<Route data={{"path":"/news/rank/:category?/:type?/:time?","categories":["new-media"],"example":"/163/news/rank/whole/click/day","parameters":{"category":"新闻分类,参见下表,默认为“全站”","type":"排行榜类型,“点击榜”对应`click`,“跟贴榜”对应`follow`,默认为“点击榜”","time":"统计时间,“1小时”对应`hour`,“24小时”对应`day`,“本周”对应`week`,“本月”对应`month`,默认为“24小时”"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"排行榜","maintainers":["nczitzk"],"description":":::tip\n 全站新闻 **点击榜** 的统计时间仅包含 “24 小时”、“本周”、“本月”,不包含 “1 小时”。即可用的`time`参数为`day`、`week`、`month`。\n\n 其他分类 **点击榜** 的统计时间仅包含 “1 小时”、“24 小时”、“本周”。即可用的`time`参数为`hour`、`day`、`week`。\n\n 而所有分类(包括全站)的 **跟贴榜** 的统计时间皆仅包含 “24 小时”、“本周”、“本月”。即可用的`time`参数为`day`、`week`、`month`。\n :::\n\n 新闻分类:\n\n | 全站 | 新闻 | 娱乐 | 体育 | 财经 | 科技 | 汽车 | 女人 | 房产 | 游戏 | 旅游 | 教育 |\n | ----- | ---- | ------------- | ------ | ----- | ---- | ---- | ---- | ----- | ---- | ------ | ---- |\n | whole | news | entertainment | sports | money | tech | auto | lady | house | game | travel | edu |","location":"news/rank.ts"}} />
-### 公众号(二十次幂来源) {#wei-xin-gong-zhong-hao-er-shi-ci-mi-lai-yuan}
+:::tip
+全站新闻 **点击榜** 的统计时间仅包含 “24 小时”、“本周”、“本月”,不包含 “1 小时”。即可用的`time`参数为`day`、`week`、`month`。
-<Route author="sanmmm" example="/wechat/ershicimi/813oxJOl" path="/wechat/ershicimi/:id" paramsDesc={['公众号id,打开公众号页,在 URL 中找到 id']} anticrawler="1" />
+其他分类 **点击榜** 的统计时间仅包含 “1 小时”、“24 小时”、“本周”。即可用的`time`参数为`hour`、`day`、`week`。
-### 公众号(Telegram 频道来源) {#wei-xin-gong-zhong-hao-telegram-pin-dao-lai-yuan}
+而所有分类(包括全站)的 **跟贴榜** 的统计时间皆仅包含 “24 小时”、“本周”、“本月”。即可用的`time`参数为`day`、`week`、`month`。
+:::
-<Route author="LogicJake Rongronggg9" example="/wechat/tgchannel/lifeweek" path="/wechat/tgchannel/:id/:mpName?/:searchQueryType?" paramsDesc={['公众号绑定频道 id', '欲筛选的公众号全名(URL-encoded,精确匹配),在频道订阅了多个公众号时可选用', '搜索查询类型,见下表']}>
- | 搜索查询类型 | 将使用的搜索关键字 | 适用于 |
- | :----------: | :----------------: | :-------------------------: |
- | `0` | (禁用搜索) | 所有情况 (默认) |
- | `1` | 公众号全名 | 未启用 efb-patch-middleware |
- | `2` | #公众号全名 | 已启用 efb-patch-middleware |
+新闻分类:
- :::tip
- 启用搜索有助于在订阅了过多公众号的频道里有效筛选,不易因为大量公众号同时推送导致一些公众号消息被遗漏,但必须正确选择搜索查询类型,否则会搜索失败。
- :::
+| 全站 | 新闻 | 娱乐 | 体育 | 财经 | 科技 | 汽车 | 女人 | 房产 | 游戏 | 旅游 | 教育 |
+| ----- | ---- | ------------- | ------ | ----- | ---- | ---- | ---- | ----- | ---- | ------ | ---- |
+| whole | news | entertainment | sports | money | tech | auto | lady | house | game | travel | edu |
- :::warning
- 该方法需要通过 efb 进行频道绑定,具体操作见 [https://github.com/DIYgod/RSSHub/issues/2172](https://github.com/DIYgod/RSSHub/issues/2172)
- :::
-</Route>
+### 人间 {#wang-yi-gong-kai-ke-ren-jian}
-### 公众号(自由微信来源) {#wei-xin-gong-zhong-hao-zi-you-wei-xin-lai-yuan}
+<Route data={{"path":"/renjian/:category?","categories":["new-media"],"example":"/163/renjian/texie","parameters":{"category":"分类,见下表,默认为特写"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["renjian.163.com/:category","renjian.163.com/"]},"name":"人间","maintainers":["nczitzk"],"description":"| 特写 | 记事 | 大写 | 好读 | 看客 |\n | ----- | ----- | ----- | ----- | ----- |\n | texie | jishi | daxie | haodu | kanke |","location":"renjian.ts"}} />
-见 [#自由微信](#zi-you-wei-xin)
+| 特写 | 记事 | 大写 | 好读 | 看客 |
+| ----- | ----- | ----- | ----- | ----- |
+| texie | jishi | daxie | haodu | kanke |
-### 公众号(Wechat2RSS 来源) {#wei-xin-gong-zhong-hao-wechat2rss-lai-yuan}
+### 网易号(通用) {#wang-yi-gong-kai-ke-wang-yi-hao-tong-yong}
-<Route author="TonyRL" example="/wechat/wechat2rss/5b925323244e9737c39285596c53e3a2f4a30774" path="/wechat/wechat2rss/:id" paramsDesc={['公众号 id,打开 `https://wechat2rss.xlab.app/posts/list/`,在 URL 中找到 id;注意不是公众号页的 id,而是订阅的 id']} radar="1" />
+<Route data={{"path":"/dy2/:id","categories":["new-media"],"example":"/163/dy2/T1555591616739","parameters":{"id":"id,该网易号主页网址最后一项html的文件名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"网易号(通用)","maintainers":["mjysci"],"description":"优先使用方法一,若是网易号搜索页面搜不到的小众网易号(文章页面不含`data-wemediaid`)则可使用此法。\n触发反爬会只抓取到标题,建议自建。","location":"dy2.ts"}} />
-### 公众号栏目 (非推送 & 历史消息) {#wei-xin-gong-zhong-hao-lan-mu-fei-tui-song-li-shi-xiao-xi}
+优先使用方法一,若是网易号搜索页面搜不到的小众网易号(文章页面不含`data-wemediaid`)则可使用此法。
+触发反爬会只抓取到标题,建议自建。
-<Route author="MisteryMonster" example="/wechat/mp/homepage/MzA3MDM3NjE5NQ==/16" path="/wechat/mp/homepage/:biz/:hid/:cid?" paramsDesc={['公众号id', '分页id', '页内栏目']} radar="1" anticrawler="1">
- 只适用拥有首页模板 (分享链接带有 homepage) 的公众号。例如从公众号分享出来的链接为 `https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==&hid=4`,`biz` 为 `MzA3MDM3NjE5NQ==`,`hid` 为 `4`。
+### 专栏 {#wang-yi-gong-kai-ke-zhuan-lan}
- 有些页面里会有分栏, `cid` 可以通过元素选择器选中栏目查看`data-index`。如[链接](https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==\&hid=4)里的 `京都职人` 栏目的 `cid` 为 `0`,`文艺时光` 栏目的 `cid` 为 `2`。如果不清楚的话最左边的栏目为`0`,其右方栏目依次递增 `1`。
-</Route>
+<Route data={{"path":"/news/special/:type?","categories":["new-media"],"example":"/163/news/special/1","parameters":{"type":"栏目"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专栏","maintainers":["nczitzk"],"description":"| 轻松一刻 | 槽值 | 人间 | 大国小民 | 三三有梗 | 数读 | 看客 | 下划线 | 谈心社 | 哒哒 | 胖编怪聊 | 曲一刀 | 今日之声 | 浪潮 | 沸点 |\n | -------- | ---- | ---- | -------- | -------- | ---- | ---- | ------ | ------ | ---- | -------- | ------ | -------- | ---- | ---- |\n | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |","location":"news/special.ts"}} />
-### 公众号文章话题 Tag {#wei-xin-gong-zhong-hao-wen-zhang-hua-ti-tag}
+| 轻松一刻 | 槽值 | 人间 | 大国小民 | 三三有梗 | 数读 | 看客 | 下划线 | 谈心社 | 哒哒 | 胖编怪聊 | 曲一刀 | 今日之声 | 浪潮 | 沸点 |
+| -------- | ---- | ---- | -------- | -------- | ---- | ---- | ------ | ------ | ---- | -------- | ------ | -------- | ---- | ---- |
+| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
-<Route author="MisteryMonster" example="/wechat/mp/msgalbum/MzA3MDM3NjE5NQ==/1375870284640911361" path="/wechat/mp/msgalbum/:biz/:aid" paramsDesc={['公众号id', 'Tag id', ]} radar="1" anticrawler="1">
- 一些公众号(如看理想)会在微信文章里添加 Tag ,点入 Tag 的链接如 `https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzA3MDM3NjE5NQ==&action=getalbum&album_id=1375870284640911361`,其中`biz` 为 `MzA3MDM3NjE5NQ==`,`aid` 为 `1375870284640911361`。
-</Route>
+## 微信小程序 {#wei-xin-xiao-cheng-xu}
-### 公众号(优读来源) {#wei-xin-gong-zhong-hao-you-du-lai-yuan}
+:::tip
+公众号直接抓取困难,故目前提供几种间接抓取方案,请自行选择
+:::
-<Route author="kt286" example="/wechat/uread/shensing" path="/wechat/uread/:userid" paramsDesc={['公众号的微信号, 可在 微信-公众号-更多资料 中找到。并不是所有的都支持,能不能用随缘']} notOperational="1" />
+### 公众号(二十次幂来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-er-shi-ci-mi-lai-yuan}
-### 公众号(微阅读来源) {#wei-xin-gong-zhong-hao-wei-yue-du-lai-yuan}
+<Route data={{"path":"/ershicimi/:id","categories":["new-media"],"example":"/wechat/ershicimi/813oxJOl","parameters":{"id":"公众号id,打开公众号页,在 URL 中找到 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号(二十次幂来源)","maintainers":["sanmmm"],"location":"ershcimi.ts"}} />
-<Route author="Rongronggg9" example="/wechat/data258/gh_cbbad4c1d33c" path="/data258/:id?" paramsDesc={['公众号 id 或分类 id,可在公众号页或分类页 URL 中找到;若略去,则抓取首页']} anticrawler="1" radar="1" notOperational="1">
- :::warning
- 由于使用了一些针对反爬的缓解措施,本路由响应较慢。默认只抓取前 5 条,可通过 `?limit=` 改变(不推荐,容易被反爬)。\
- 该网站使用 IP 甄别访客,且应用严格的每日阅读量限额(约 15 次),请自建并确保正确配置缓存;如使用内存缓存而非 Redis 缓存,请增大缓存容量。该限额足够订阅至少 3 个公众号 (假设公众号每日仅更新一次);首页 / 分类页更新相当频繁,不推荐订阅。
- :::
-</Route>
+### 公众号(搜狗来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-sou-gou-lai-yuan}
-### 公众号(搜狗来源) {#wei-xin-gong-zhong-hao-sou-gou-lai-yuan}
+<Route data={{"path":"/sogou/:id","categories":["new-media"],"example":"/wechat/sogou/qimao0908","parameters":{"id":"公众号 id, 打开 weixin.sogou.com 并搜索相应公众号, 在 URL 中找到 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号(搜狗来源)","maintainers":["EthanWng97"],"location":"sogou.ts"}} />
-<Route author="EthanWng97" example="/wechat/sogou/qimao0908" path="/wechat/sogou/:id" paramsDesc={['公众号 id, 打开 weixin.sogou.com 并搜索相应公众号, 在 URL 中找到 id']} notOperational="1" />
+### 公众号(优读来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-you-du-lai-yuan}
-## 维基百科 {#wei-ji-bai-ke}
+<Route data={{"path":"/uread/:userid","categories":["new-media"],"example":"/wechat/uread/shensing","parameters":{"userid":"公众号的微信号, 可在 微信-公众号-更多资料 中找到。并不是所有的都支持,能不能用随缘"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号(优读来源)","maintainers":["kt286"],"location":"uread.ts"}} />
-### 中国大陆新闻动态 {#wei-ji-bai-ke-zhong-guo-da-lu-xin-wen-dong-tai}
+### 公众号(CareerEngine 来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-careerengine-lai-yuan}
-<Route author="HenryQW" example="/wikipedia/mainland" path="/wikipedia/mainland" />
+<Route data={{"path":"/ce/:id","categories":["new-media"],"example":"/wechat/ce/595a5b14d7164e53908f1606","parameters":{"id":"公众号 id,在 [CareerEngine](https://search.careerengine.us/) 搜索公众号,通过 URL 中找到对应的公众号 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cimidata.com/a/:id"]},"name":"公众号(CareerEngine 来源)","maintainers":["HenryQW"],"location":"ce.ts"}} />
-## 维基新闻 {#wei-ji-xin-wen}
+### 公众号(Telegram 频道来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-telegram-pin-dao-lai-yuan}
-### 最新新闻 {#wei-ji-xin-wen-zui-xin-xin-wen}
+<Route data={{"path":"/tgchannel/:id/:mpName?/:searchQueryType?","categories":["new-media"],"example":"/wechat/tgchannel/lifeweek","parameters":{"id":"公众号绑定频道 id","mpName":"欲筛选的公众号全名(URL-encoded,精确匹配),在频道订阅了多个公众号时可选用","searchQueryType":"搜索查询类型,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号(Telegram 频道来源)","maintainers":["LogicJake","Rongronggg9"],"description":"| 搜索查询类型 | 将使用的搜索关键字 | 适用于 |\n | :----------: | :----------------: | :-------------------------: |\n | `0` | (禁用搜索) | 所有情况 (默认) |\n | `1` | 公众号全名 | 未启用 efb-patch-middleware |\n | `2` | #公众号全名 | 已启用 efb-patch-middleware |\n\n :::tip\n 启用搜索有助于在订阅了过多公众号的频道里有效筛选,不易因为大量公众号同时推送导致一些公众号消息被遗漏,但必须正确选择搜索查询类型,否则会搜索失败。\n :::\n\n :::warning\n 该方法需要通过 efb 进行频道绑定,具体操作见 [https://github.com/DIYgod/RSSHub/issues/2172](https://github.com/DIYgod/RSSHub/issues/2172)\n :::","location":"tgchannel.ts"}} />
-<Route author="KotoriK" example="/wikinews/latest" path="/wikinews/latest">
- 根据维基新闻的[sitemap](https://zh.wikinews.org/wiki/Special:%E6%96%B0%E9%97%BB%E8%AE%A2%E9%98%85)获取新闻全文。目前仅支持中文维基新闻。
-</Route>
+| 搜索查询类型 | 将使用的搜索关键字 | 适用于 |
+| :----------: | :----------------: | :-------------------------: |
+| `0` | (禁用搜索) | 所有情况 (默认) |
+| `1` | 公众号全名 | 未启用 efb-patch-middleware |
+| `2` | #公众号全名 | 已启用 efb-patch-middleware |
-## 我不是盐神 {#wo-bu-shi-yan-shen}
+:::tip
+启用搜索有助于在订阅了过多公众号的频道里有效筛选,不易因为大量公众号同时推送导致一些公众号消息被遗漏,但必须正确选择搜索查询类型,否则会搜索失败。
+:::
-### 首页 {#wo-bu-shi-yan-shen-shou-ye}
+:::warning
+该方法需要通过 efb 进行频道绑定,具体操作见 [https://github.com/DIYgod/RSSHub/issues/2172](https://github.com/DIYgod/RSSHub/issues/2172)
+:::
-<Route author="ruoshui9527" example="/onehu" path="/onehu" />
+### 公众号(Wechat2RSS 来源) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-wechat2rss-lai-yuan}
-## 乌有之乡 {#wu-you-zhi-xiang}
+<Route data={{"path":"/wechat2rss/:id","categories":["new-media"],"example":"/wechat/wechat2rss/5b925323244e9737c39285596c53e3a2f4a30774","parameters":{"id":"公众号 id,打开 `https://wechat2rss.xlab.app/posts/list/`,在 URL 中找到 id;注意不是公众号页的 id,而是订阅的 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号(Wechat2RSS 来源)","maintainers":["TonyRL"],"location":"wechat2rss.ts"}} />
-### 栏目 {#wu-you-zhi-xiang-lan-mu}
+### 公众号栏目 (非推送 & 历史消息) {#wei-xin-xiao-cheng-xu-gong-zhong-hao-lan-mu-fei-tui-song-li-shi-xiao-xi}
-<Route author="nczitzk" example="/wyzxwk/article/shushe" path="/wyzxwk/article/:id?" paramsDesc={['栏目 id,可在栏目页 URL 中找到,默认为时代观察']}>
- 时政
+<Route data={{"path":"/mp/homepage/:biz/:hid/:cid?","categories":["new-media"],"example":"/wechat/mp/homepage/MzA3MDM3NjE5NQ==/16","parameters":{"biz":"公众号id","hid":"分页id","cid":"页内栏目"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号栏目 (非推送 & 历史消息)","maintainers":["MisteryMonster"],"description":"只适用拥有首页模板 (分享链接带有 homepage) 的公众号。例如从公众号分享出来的链接为 `https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==&hid=4`,`biz` 为 `MzA3MDM3NjE5NQ==`,`hid` 为 `4`。\n\n 有些页面里会有分栏, `cid` 可以通过元素选择器选中栏目查看`data-index`。如[链接](https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==&hid=4)里的 `京都职人` 栏目的 `cid` 为 `0`,`文艺时光` 栏目的 `cid` 为 `2`。如果不清楚的话最左边的栏目为`0`,其右方栏目依次递增 `1`。","location":"mp.ts"}} />
- | 时代观察 | 舆论战争 |
- | -------- | -------- |
- | shidai | yulun |
+只适用拥有首页模板 (分享链接带有 homepage) 的公众号。例如从公众号分享出来的链接为 `https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==&hid=4`,`biz` 为 `MzA3MDM3NjE5NQ==`,`hid` 为 `4`。
- 经济
+有些页面里会有分栏, `cid` 可以通过元素选择器选中栏目查看`data-index`。如[链接](https://mp.weixin.qq.com/mp/homepage?__biz=MzA3MDM3NjE5NQ==\&hid=4)里的 `京都职人` 栏目的 `cid` 为 `0`,`文艺时光` 栏目的 `cid` 为 `2`。如果不清楚的话最左边的栏目为`0`,其右方栏目依次递增 `1`。
- | 经济视点 | 社会民生 | 三农关注 | 产业研究 |
- | -------- | -------- | -------- | -------- |
- | jingji | shehui | sannong | chanye |
+### 公众号文章话题 Tag {#wei-xin-xiao-cheng-xu-gong-zhong-hao-wen-zhang-hua-ti-tag}
- 国际
+<Route data={{"path":"/mp/msgalbum/:biz/:aid","categories":["new-media"],"example":"/wechat/mp/msgalbum/MzA3MDM3NjE5NQ==/1375870284640911361","parameters":{"biz":"公众号id","aid":"Tag id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公众号文章话题 Tag","maintainers":["MisteryMonster"],"description":"一些公众号(如看理想)会在微信文章里添加 Tag ,点入 Tag 的链接如 `https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzA3MDM3NjE5NQ==&action=getalbum&album_id=1375870284640911361`,其中`biz` 为 `MzA3MDM3NjE5NQ==`,`aid` 为 `1375870284640911361`。","location":"msgalbum.ts"}} />
- | 国际纵横 | 国防外交 |
- | -------- | -------- |
- | guoji | guofang |
+一些公众号(如看理想)会在微信文章里添加 Tag ,点入 Tag 的链接如 `https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzA3MDM3NjE5NQ==&action=getalbum&album_id=1375870284640911361`,其中`biz` 为 `MzA3MDM3NjE5NQ==`,`aid` 为 `1375870284640911361`。
- 思潮
+## 维基新闻 {#wei-ji-xin-wen}
- | 理想之旅 | 思潮碰撞 | 文艺新生 | 读书交流 |
- | -------- | -------- | -------- | -------- |
- | lixiang | sichao | wenyi | shushe |
+### 最新新闻 {#wei-ji-xin-wen-zui-xin-xin-wen}
- 历史
+<Route data={{"path":"/latest","categories":["new-media"],"example":"/wikinews/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zh.wikinews.org/wiki/Special:新闻订阅"]},"name":"最新新闻","maintainers":["KotoriK"],"description":"根据维基新闻的[sitemap](https://zh.wikinews.org/wiki/Special:%E6%96%B0%E9%97%BB%E8%AE%A2%E9%98%85)获取新闻全文。目前仅支持中文维基新闻。","location":"index.ts"}} />
- | 历史视野 | 中华文化 | 中华医药 | 共产党人 |
- | -------- | -------- | -------- | -------- |
- | lishi | zhonghua | zhongyi | cpers |
+根据维基新闻的[sitemap](https://zh.wikinews.org/wiki/Special:%E6%96%B0%E9%97%BB%E8%AE%A2%E9%98%85)获取新闻全文。目前仅支持中文维基新闻。
- 争鸣
+## 乌有之乡 {#wu-you-zhi-xiang}
- | 风华正茂 | 工农之声 | 网友杂谈 | 网友时评 |
- | -------- | -------- | -------- | -------- |
- | qingnian | gongnong | zatan | shiping |
+### 栏目 {#wu-you-zhi-xiang-lan-mu}
- 活动
+<Route data={{"path":"/article/:id?","categories":["new-media"],"example":"/wyzxwk/article/shushe","parameters":{"id":"栏目 id,可在栏目页 URL 中找到,默认为时代观察"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wyzxwk.com/Article/:id","wyzxwk.com/"]},"name":"栏目","maintainers":["nczitzk"],"description":"时政\n\n | 时代观察 | 舆论战争 |\n | -------- | -------- |\n | shidai | yulun |\n\n 经济\n\n | 经济视点 | 社会民生 | 三农关注 | 产业研究 |\n | -------- | -------- | -------- | -------- |\n | jingji | shehui | sannong | chanye |\n\n 国际\n\n | 国际纵横 | 国防外交 |\n | -------- | -------- |\n | guoji | guofang |\n\n 思潮\n\n | 理想之旅 | 思潮碰撞 | 文艺新生 | 读书交流 |\n | -------- | -------- | -------- | -------- |\n | lixiang | sichao | wenyi | shushe |\n\n 历史\n\n | 历史视野 | 中华文化 | 中华医药 | 共产党人 |\n | -------- | -------- | -------- | -------- |\n | lishi | zhonghua | zhongyi | cpers |\n\n 争鸣\n\n | 风华正茂 | 工农之声 | 网友杂谈 | 网友时评 |\n | -------- | -------- | -------- | -------- |\n | qingnian | gongnong | zatan | shiping |\n\n 活动\n\n | 乌有公告 | 红色旅游 | 乌有讲堂 | 书画欣赏 |\n | -------- | -------- | --------- | -------- |\n | gonggao | lvyou | jiangtang | shuhua |","location":"article.ts"}} />
- | 乌有公告 | 红色旅游 | 乌有讲堂 | 书画欣赏 |
- | -------- | -------- | --------- | -------- |
- | gonggao | lvyou | jiangtang | shuhua |
-</Route>
+时政
-## 无产者评论 {#wu-chan-zhe-ping-lun}
+| 时代观察 | 舆论战争 |
+| -------- | -------- |
+| shidai | yulun |
-### 分类 {#wu-chan-zhe-ping-lun-fen-lei}
+经济
-<Route author="nczitzk" example="/proletar" path="/proletar/categories/:id?" paramsDesc={['分类,见下表,默认为全部文章']}>
- | 全部文章 | 中流击水 | 革命文艺 | 当代中国 | 理论视野 | 国际观察 | 史海沉钩 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | | 中流击水 | 革命文艺 | 当代中国 | 理论视野 | 国际观察 | 史海沉钩 |
-</Route>
+| 经济视点 | 社会民生 | 三农关注 | 产业研究 |
+| -------- | -------- | -------- | -------- |
+| jingji | shehui | sannong | chanye |
-### 标签 {#wu-chan-zhe-ping-lun-biao-qian}
+国际
-<Route author="nczitzk" example="/proletar" path="/proletar/tags/:id?" paramsDesc={['标签,默认为全部文章']}>
- :::tip
- 标签名参见 [所有标签](https://review.proletar.ink/tags)
- :::
-</Route>
+| 国际纵横 | 国防外交 |
+| -------- | -------- |
+| guoji | guofang |
-## 香港 01 {#xiang-gang-01}
+思潮
-### 热门 {#xiang-gang-01-re-men}
+| 理想之旅 | 思潮碰撞 | 文艺新生 | 读书交流 |
+| -------- | -------- | -------- | -------- |
+| lixiang | sichao | wenyi | shushe |
-<Route author="hoilc Fatpandac nczitzk" example="/hk01/hot" path="/hk01/hot" radar="1" />
+历史
-### 栏目 {#xiang-gang-01-lan-mu}
+| 历史视野 | 中华文化 | 中华医药 | 共产党人 |
+| -------- | -------- | -------- | -------- |
+| lishi | zhonghua | zhongyi | cpers |
-<Route author="hoilc Fatpandac nczitzk" example="/hk01/zone/11" path="/hk01/zone/:id" paramsDesc={['栏目 id, 可在 URL 中找到']} radar="1" />
+争鸣
-### 子栏目 {#xiang-gang-01-zi-lan-mu}
+| 风华正茂 | 工农之声 | 网友杂谈 | 网友时评 |
+| -------- | -------- | -------- | -------- |
+| qingnian | gongnong | zatan | shiping |
-<Route author="hoilc Fatpandac nczitzk" example="/hk01/channel/391" path="/hk01/channel/:id" paramsDesc={['子栏目 id, 可在 URL 中找到']} radar="1" />
+活动
-### 专题 {#xiang-gang-01-zhuan-ti}
+| 乌有公告 | 红色旅游 | 乌有讲堂 | 书画欣赏 |
+| -------- | -------- | --------- | -------- |
+| gonggao | lvyou | jiangtang | shuhua |
-<Route author="hoilc Fatpandac nczitzk" example="/hk01/issue/649" path="/hk01/issue/:id" paramsDesc={['专题 id, 可在 URL 中找到']} radar="1" />
+## 香港 01 {#xiang-gang-01}
-### 标签 {#xiang-gang-01-biao-qian}
+### 即時 {#xiang-gang-01-ji-shi}
-<Route author="hoilc Fatpandac nczitzk" example="/hk01/tag/2787" path="/hk01/tag/:id" paramsDesc={['标签 id, 可在 URL 中找到']} radar="1" />
+<Route data={{"path":"/latest","categories":["new-media"],"example":"/hk01/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hk01.com/latest","hk01.com/"]},"name":"即時","maintainers":["5upernova-heng"],"url":"hk01.com/latest","location":"latest.ts"}} />
-### 即時 {#xiang-gang-01-ji-shi}
+### 热门 {#xiang-gang-01-re-men}
-<Route author="5upernove-heng" example="/hk01/latest" path="/hk01/latest" radar="1" />
+<Route data={{"path":"/hot","categories":["new-media"],"example":"/hk01/hot","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hk01.com/hot","hk01.com/"]},"name":"热门","maintainers":["hoilc","Fatpandac","nczitzk"],"url":"hk01.com/hot","location":"hot.ts"}} />
-## 香港討論區 {#xiang-gang-tao-lun-qu}
+## 消费者委员会 {#xiao-fei-zhe-wei-yuan-hui}
-### 版塊 {#xiang-gang-tao-lun-qu-ban-kuai}
+### 文章 {#xiao-fei-zhe-wei-yuan-hui-wen-zhang}
-<Route author="nczitzk" example="/discuss/62" path="/discuss/:fid" paramsDesc={['fid,可在对应板块页的 URL 中找到']} anticrawler="1" />
+<Route data={{"path":"/:category?/:language?/:keyword?","categories":["new-media"],"example":"/consumer","parameters":{"category":"分类,见下表,默认为測試及調查","language":"语言,见下表,默认为繁体中文","keyword":"关键字,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["consumer.org.hk/"]},"name":"文章","maintainers":["nczitzk"],"url":"consumer.org.hk/","description":"分类\n\n | 测试及调查 | 生活资讯 | 投诉实录 | 议题评论 |\n | ---------- | -------- | --------- | -------- |\n | test | life | complaint | topic |\n\n 语言\n\n | 简体中文 | 繁体中文 |\n | -------- | -------- |\n | sc | tc |","location":"index.ts"}} />
-## 香水时代 {#xiang-shui-shi-dai}
+分类
-### 首页 {#xiang-shui-shi-dai-shou-ye}
+| 测试及调查 | 生活资讯 | 投诉实录 | 议题评论 |
+| ---------- | -------- | --------- | -------- |
+| test | life | complaint | topic |
-<Route author="kt286" example="/nosetime/home" path="/nosetime/home" />
+语言
-### 香评 {#xiang-shui-shi-dai-xiang-ping}
+| 简体中文 | 繁体中文 |
+| -------- | -------- |
+| sc | tc |
-<Route author="kt286" example="/nosetime/59247733/discuss/new" path="/nosetime/:id/:type/:sort?" paramsDesc={['用户id,可在用户主页 URL 中找到', '类型,short 一句话香评 discuss 香评', '排序, new 最新 agree 最有用']} anticrawler="1" />
+### 消費全攻略 {#xiao-fei-zhe-wei-yuan-hui-xiao-fei-quan-gong-lve}
-## 消费者委员会 {#xiao-fei-zhe-wei-yuan-hui}
+<Route data={{"path":"/shopping-guide/:category?/:language?","categories":["new-media"],"example":"/consumer/shopping-guide","parameters":{"category":"分类,见下表,默认为 `trivia`","language":"语言,见上表,默认为 `tc`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"消費全攻略","maintainers":["TonyRL"],"description":"| 冷知識 | 懶人包 | 特集 | 銀髮一族 | 飲食煮意 | 科技達人 | 健康美容 | 規劃人生 | 消閒娛樂 | 家品家電 | 親子時光 | 綠色生活 |\n | ------ | ------ | -------- | ------------------ | ---------------- | ---------- | ----------------- | --------------------------- | ------------------------- | --------------- | --------------- | ------------ |\n | trivia | tips | features | silver-hair-market | food-and-cooking | tech-savvy | health-and-beauty | life-and-financial-planning | leisure-and-entertainment | home-appliances | family-and-kids | green-living |","location":"shopping-guide.ts"}} />
-### 文章 {#xiao-fei-zhe-wei-yuan-hui-wen-zhang}
+| 冷知識 | 懶人包 | 特集 | 銀髮一族 | 飲食煮意 | 科技達人 | 健康美容 | 規劃人生 | 消閒娛樂 | 家品家電 | 親子時光 | 綠色生活 |
+| ------ | ------ | -------- | ------------------ | ---------------- | ---------- | ----------------- | --------------------------- | ------------------------- | --------------- | --------------- | ------------ |
+| trivia | tips | features | silver-hair-market | food-and-cooking | tech-savvy | health-and-beauty | life-and-financial-planning | leisure-and-entertainment | home-appliances | family-and-kids | green-living |
-<Route author="nczitzk" example="/consumer" path="/consumer/:category?/:language?/:keyword?" paramsDesc={['分类,见下表,默认为測試及調查', '语言,见下表,默认为繁体中文', '关键字,默认为空']}>
- 分类
+## 小刀娱乐网 {#xiao-dao-yu-le-wang}
- | 测试及调查 | 生活资讯 | 投诉实录 | 议题评论 |
- | ---------- | -------- | --------- | -------- |
- | test | life | complaint | topic |
+### 分类 {#xiao-dao-yu-le-wang-fen-lei}
- 语言
+<Route data={{"path":"/:id?","categories":["new-media"],"example":"/x6d/34","parameters":{"id":"分类 id,可在对应分类页面的 URL 中找到,默认为首页最近更新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 技巧分享 | QQ 技巧 | 微信技巧 | 其他教程 | 其他分享 |\n | -------- | ------- | -------- | -------- | -------- |\n | 31 | 55 | 112 | 33 | 88 |\n\n | 宅家自学 | 健身养生 | 摄影剪辑 | 长点知识 | 自我提升 | 两性相关 | 编程办公 | 职场关系 | 新媒体运营 | 其他教程 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- | -------- |\n | 18 | 98 | 94 | 93 | 99 | 100 | 21 | 22 | 19 | 44 |\n\n | 活动线报 | 流量话费 | 免费会员 | 实物活动 | 游戏活动 | 红包活动 | 空间域名 | 其他活动 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 34 | 35 | 91 | 92 | 39 | 38 | 37 | 36 |\n\n | 值得一看 | 找点乐子 | 热门事件 | 节目推荐 |\n | -------- | -------- | -------- | -------- |\n | 65 | 50 | 77 | 101 |\n\n | 值得一听 | 每日一听 | 歌单推荐 |\n | -------- | -------- | -------- |\n | 71 | 87 | 79 |\n\n | 资源宝库 | 书籍资料 | 设计资源 | 剪辑资源 | 办公资源 | 壁纸资源 | 编程资源 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 106 | 107 | 108 | 109 | 110 | 111 | 113 |","location":"index.ts"}} />
- | 简体中文 | 繁体中文 |
- | -------- | -------- |
- | sc | tc |
-</Route>
+| 技巧分享 | QQ 技巧 | 微信技巧 | 其他教程 | 其他分享 |
+| -------- | ------- | -------- | -------- | -------- |
+| 31 | 55 | 112 | 33 | 88 |
-### 消費全攻略 {#xiao-fei-zhe-wei-yuan-hui-xiao-fei-quan-gong-lve}
+| 宅家自学 | 健身养生 | 摄影剪辑 | 长点知识 | 自我提升 | 两性相关 | 编程办公 | 职场关系 | 新媒体运营 | 其他教程 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- | -------- |
+| 18 | 98 | 94 | 93 | 99 | 100 | 21 | 22 | 19 | 44 |
-<Route author="TonyRL" example="/consumer/shopping-guide" path="/consumer/shopping-guide/:category?/:language?" paramsDesc={['分类,见下表,默认为 `trivia`', '语言,见上表,默认为 `tc`']} radar="1">
- | 冷知識 | 懶人包 | 特集 | 銀髮一族 | 飲食煮意 | 科技達人 | 健康美容 | 規劃人生 | 消閒娛樂 | 家品家電 | 親子時光 | 綠色生活 |
- | ------ | ------ | -------- | ------------------ | ---------------- | ---------- | ----------------- | --------------------------- | ------------------------- | --------------- | --------------- | ------------ |
- | trivia | tips | features | silver-hair-market | food-and-cooking | tech-savvy | health-and-beauty | life-and-financial-planning | leisure-and-entertainment | home-appliances | family-and-kids | green-living |
-</Route>
+| 活动线报 | 流量话费 | 免费会员 | 实物活动 | 游戏活动 | 红包活动 | 空间域名 | 其他活动 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 34 | 35 | 91 | 92 | 39 | 38 | 37 | 36 |
-## 小刀娱乐网 {#xiao-dao-yu-le-wang}
+| 值得一看 | 找点乐子 | 热门事件 | 节目推荐 |
+| -------- | -------- | -------- | -------- |
+| 65 | 50 | 77 | 101 |
-### 分类 {#xiao-dao-yu-le-wang-fen-lei}
+| 值得一听 | 每日一听 | 歌单推荐 |
+| -------- | -------- | -------- |
+| 71 | 87 | 79 |
-<Route author="nczitzk" example="/x6d/34" path="/x6d/:id?" paramsDesc={['分类 id,可在对应分类页面的 URL 中找到,默认为首页最近更新']} radar="1">
- | 技巧分享 | QQ 技巧 | 微信技巧 | 其他教程 | 其他分享 |
- | -------- | ------- | -------- | -------- | -------- |
- | 31 | 55 | 112 | 33 | 88 |
+| 资源宝库 | 书籍资料 | 设计资源 | 剪辑资源 | 办公资源 | 壁纸资源 | 编程资源 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 106 | 107 | 108 | 109 | 110 | 111 | 113 |
- | 宅家自学 | 健身养生 | 摄影剪辑 | 长点知识 | 自我提升 | 两性相关 | 编程办公 | 职场关系 | 新媒体运营 | 其他教程 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ---------- | -------- |
- | 18 | 98 | 94 | 93 | 99 | 100 | 21 | 22 | 19 | 44 |
+## 小黑盒 {#xiao-hei-he}
- | 活动线报 | 流量话费 | 免费会员 | 实物活动 | 游戏活动 | 红包活动 | 空间域名 | 其他活动 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 34 | 35 | 91 | 92 | 39 | 38 | 37 | 36 |
+### 新华社新闻 {#xiao-hei-he-xin-hua-she-xin-wen}
- | 值得一看 | 找点乐子 | 热门事件 | 节目推荐 |
- | -------- | -------- | -------- | -------- |
- | 65 | 50 | 77 | 101 |
+<Route data={{"path":["/xhsxw","/whxw"],"categories":["new-media"],"example":"/news/xhsxw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.cn/xhsxw.htm"]},"name":"新华社新闻","maintainers":["nczitzk"],"url":"news.cn/xhsxw.htm","location":"xhsxw.ts"}} />
- | 值得一听 | 每日一听 | 歌单推荐 |
- | -------- | -------- | -------- |
- | 71 | 87 | 79 |
+### 新华社新闻 {#xiao-hei-he-xin-hua-she-xin-wen}
- | 资源宝库 | 书籍资料 | 设计资源 | 剪辑资源 | 办公资源 | 壁纸资源 | 编程资源 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 106 | 107 | 108 | 109 | 110 | 111 | 113 |
-</Route>
+<Route data={{"path":["/xhsxw","/whxw"],"categories":["new-media"],"example":"/news/xhsxw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.cn/xhsxw.htm"]},"name":"新华社新闻","maintainers":["nczitzk"],"url":"news.cn/xhsxw.htm","location":"xhsxw.ts"}} />
## 小专栏 {#xiao-zhuan-lan}
### 专栏 {#xiao-zhuan-lan-zhuan-lan}
-<Route author="TonyRL" example="/xiaozhuanlan/column/olddriver-selection" path="/xiaozhuanlan/column/:id" paramsDesc={['专栏 ID,可在专栏页 URL 中找到']} radar="1" />
-
-## 新华网 {#xin-hua-wang}
-
-### 新华社新闻 {#xin-hua-wang-xin-hua-she-xin-wen}
-
-<Route author="nczitzk" example="/news/xhsxw" path="/news/xhsxw" radar="1" />
+<Route data={{"path":"/column/:id","categories":["new-media"],"example":"/xiaozhuanlan/column/olddriver-selection","parameters":{"id":"专栏 ID,可在专栏页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaozhuanlan.com/:id"]},"name":"专栏","maintainers":["TonyRL"],"location":"column.ts"}} />
## 新浪 {#xin-lang}
-### 科技 - 科学探索 {#xin-lang-ke-ji-ke-xue-tan-suo}
+### 财经-国內 {#xin-lang-cai-jing-%EF%BC%8D-guo-nei}
-<Route author="LogicJake" example="/sina/discovery/zx" path="/sina/discovery/:type" paramsDesc={['订阅分区类型,见下表']} radar="1">
- | 最新 | 天文航空 | 动物植物 | 自然地理 | 历史考古 | 生命医学 | 生活百科 | 科技前沿 |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | zx | twhk | dwzw | zrdl | lskg | smyx | shbk | kjqy |
-</Route>
+<Route data={{"path":"/finance/china/:lid?","categories":["new-media"],"example":"/sina/finance/china","parameters":{"lid":"分区 id,见下表,默认为 `1686`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["finance.sina.com.cn/china","finance.sina.com.cn/"],"target":"/finance/china"},"name":"财经-国內","maintainers":["yubinbai"],"url":"finance.sina.com.cn/china","description":"| 国内滚动 | 宏观经济 | 金融新闻 | 地方经济 | 部委动态 | 今日财经 TOP10 |\n | -------- | -------- | -------- | -------- | -------- | -------------- |\n | 1686 | 1687 | 1690 | 1688 | 1689 | 3231 |","location":"finance/china.ts"}} />
+
+| 国内滚动 | 宏观经济 | 金融新闻 | 地方经济 | 部委动态 | 今日财经 TOP10 |
+| -------- | -------- | -------- | -------- | -------- | -------------- |
+| 1686 | 1687 | 1690 | 1688 | 1689 | 3231 |
### 滚动新闻 {#xin-lang-gun-dong-xin-wen}
-<Route author="xyqfer" example="/sina/rollnews" path="/sina/rollnews/:lid?" paramsDesc={['分区 id,可在 URL 中找到,默认为 `2509`']} radar="1">
- | 全部 | 国内 | 国际 | 社会 | 体育 | 娱乐 | 军事 | 科技 | 财经 | 股市 | 美股 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 2509 | 2510 | 2511 | 2669 | 2512 | 2513 | 2514 | 2515 | 2516 | 2517 | 2518 |
-</Route>
+<Route data={{"path":"/rollnews/:lid?","categories":["new-media"],"example":"/sina/rollnews","parameters":{"lid":"分区 id,可在 URL 中找到,默认为 `2509`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"滚动新闻","maintainers":["xyqfer"],"description":"| 全部 | 国内 | 国际 | 社会 | 体育 | 娱乐 | 军事 | 科技 | 财经 | 股市 | 美股 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | 2509 | 2510 | 2511 | 2669 | 2512 | 2513 | 2514 | 2515 | 2516 | 2517 | 2518 |","location":"rollnews.ts"}} />
-### 体育 - 综合 {#xin-lang-ti-yu-zong-he}
+| 全部 | 国内 | 国际 | 社会 | 体育 | 娱乐 | 军事 | 科技 | 财经 | 股市 | 美股 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| 2509 | 2510 | 2511 | 2669 | 2512 | 2513 | 2514 | 2515 | 2516 | 2517 | 2518 |
-<Route author="nczitzk" example="/sina/sports/volley" path="/sina/sports/:type" paramsDesc={['运动类型,见下表']} radar="1" anticrawler="1">
- | 排球 | 游泳 | 乒乓球 | 羽毛球 | 台球 | 田径 | 体操 | 冰雪 | 射击 | 马术 | 拳击搏击 | UFC | 其他 |
- | ------ | ---- | -------- | ------ | ------- | -------- | ----- | ------ | ---- | ----- | -------- | --- | ------ |
- | volley | swim | pingpang | badmin | snooker | tianjing | ticao | winter | sh | horse | kungfu | ufc | others |
-</Route>
+### 科技 - 科学探索 {#xin-lang-ke-ji-ke-xue-tan-suo}
-### 财经-国內 {#xin-lang-cai-jing-%EF%BC%8D-guo-nei}
+<Route data={{"path":"/discovery/:type","categories":["new-media"],"example":"/sina/discovery/zx","parameters":{"type":"订阅分区类型,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"科技 - 科学探索","maintainers":["LogicJake"],"description":"| 最新 | 天文航空 | 动物植物 | 自然地理 | 历史考古 | 生命医学 | 生活百科 | 科技前沿 |\n | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | zx | twhk | dwzw | zrdl | lskg | smyx | shbk | kjqy |","location":"discovery.ts"}} />
-<Route author="yubinbai" example="/sina/finance/china" path="/sina/finance/china/:lid?" paramsDesc={['分区 id,见下表,默认为 `1686`']} radar="1">
- | 国内滚动 | 宏观经济 | 金融新闻 | 地方经济 | 部委动态 | 今日财经 TOP10 |
- | -------- | -------- | -------- | -------- | -------- | -------------- |
- | 1686 | 1687 | 1690 | 1688 | 1689 | 3231 |
-</Route>
+| 最新 | 天文航空 | 动物植物 | 自然地理 | 历史考古 | 生命医学 | 生活百科 | 科技前沿 |
+| ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| zx | twhk | dwzw | zrdl | lskg | smyx | shbk | kjqy |
### 美股 {#xin-lang-mei-gu}
-<Route author="TonyRL" example="/sina/finance/stock/usstock" path="/sina/finance/stock/usstock/:cids?" paramsDesc={['分区 id,见下表,默认为 `57045`']} radar="1">
- | 最新报道 | 中概股 | 国际财经 | 互联网 |
- | -------- | ------ | -------- | ------ |
- | 57045 | 57046 | 56409 | 40811 |
-</Route>
+<Route data={{"path":"/finance/stock/usstock/:cids?","categories":["new-media"],"example":"/sina/finance/stock/usstock","parameters":{"cids":"分区 id,见下表,默认为 `57045`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["finance.sina.com.cn/stock/usstock","finance.sina.com.cn/"],"target":"/finance/stock/usstock"},"name":"美股","maintainers":["TonyRL"],"url":"finance.sina.com.cn/stock/usstock","description":"| 最新报道 | 中概股 | 国际财经 | 互联网 |\n | -------- | ------ | -------- | ------ |\n | 57045 | 57046 | 56409 | 40811 |","location":"finance/stock/usstock.ts"}} />
+
+| 最新报道 | 中概股 | 国际财经 | 互联网 |
+| -------- | ------ | -------- | ------ |
+| 57045 | 57046 | 56409 | 40811 |
### 专栏 - 创事记 {#xin-lang-zhuan-lan-chuang-shi-ji}
-<Route author="xapool" example="/sina/csj" path="/sina/csj" radar="1" />
+<Route data={{"path":"/csj","categories":["new-media"],"example":"/sina/csj","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tech.sina.com.cn/chuangshiji","tech.sina.com.cn/"]},"name":"专栏 - 创事记","maintainers":["xapool"],"url":"tech.sina.com.cn/chuangshiji","location":"chuangshiji.ts"}} />
## 新片场 {#xin-pian-chang}
### 发现 {#xin-pian-chang-fa-xian}
-<Route author="nczitzk" example="/xinpianchang/discover" path="/xinpianchang/discover/:params?" paramsDesc={['参数,可在对应分类页 URL 中找到,默认为 `article-0-0-all-all-0-0-score` ,即全部']} radar="1">
- :::tip
- 跳转到欲订阅的分类页,将 URL 的 `/discover` 到末尾的部分填入 `params` 参数。
+<Route data={{"path":["/discover/:params?","/:params?"],"categories":["new-media"],"example":"/xinpianchang/discover","parameters":{"params":"参数,可在对应分类页 URL 中找到,默认为 `article-0-0-all-all-0-0-score` ,即全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"发现","maintainers":["nczitzk"],"description":":::tip\n 跳转到欲订阅的分类页,将 URL 的 `/discover` 到末尾的部分填入 `params` 参数。\n\n 如 [全部原创视频作品](https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score) 的 URL 为 `https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score`,其 `/discover` 到末尾的部分为 `article-0-0-all-all-0-0-score`,所以对应的路由为 [/xinpianchang/discover/article-0-0-all-all-0-0-score](https://rsshub.app/xinpianchang/discover/article-0-0-all-all-0-0-score)。\n :::","location":"index.ts"}} />
- 如 [全部原创视频作品](https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score) 的 URL 为 `https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score`,其 `/discover` 到末尾的部分为 `article-0-0-all-all-0-0-score`,所以对应的路由为 [/xinpianchang/discover/article-0-0-all-all-0-0-score](https://rsshub.app/xinpianchang/discover/article-0-0-all-all-0-0-score)。
- :::
-</Route>
-
-### 排行榜 {#xin-pian-chang-pai-hang-bang}
-
-<Route author="nczitzk" example="/xinpianchang/rank" path="/xinpianchang/rank/:category?" paramsDesc={['分类 id,可在对应排行榜页 URL 中找到,见下表,默认为 `all` ,即总榜']} radar="1">
- | 分类 | id |
- | -------- | ---------- |
- | 总榜 | all |
- | 精选榜 | staffPicks |
- | 广告 | ad |
- | 宣传片 | publicity |
- | 创意 | creative |
- | 干货教程 | backstage |
-</Route>
-
-## 选股宝 {#xuan-gu-bao}
-
-### 主题 {#xuan-gu-bao-zhu-ti}
-
-<Route author="hillerliao" example="/xuangubao/subject/41" path="/xuangubao/subject/:subject_id" paramsDesc={['主题 id,网址 https://xuangubao.cn/subject/41 中最后的数字']} />
+:::tip
+跳转到欲订阅的分类页,将 URL 的 `/discover` 到末尾的部分填入 `params` 参数。
-## 一兜糖 {#yi-dou-tang}
+如 [全部原创视频作品](https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score) 的 URL 为 `https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score`,其 `/discover` 到末尾的部分为 `article-0-0-all-all-0-0-score`,所以对应的路由为 [/xinpianchang/discover/article-0-0-all-all-0-0-score](https://rsshub.app/xinpianchang/discover/article-0-0-all-all-0-0-score)。
+:::
-### 文章 {#yi-dou-tang-wen-zhang}
+### 发现 {#xin-pian-chang-fa-xian}
-<Route author="sanmmm" example="/yidoutang/guide" path="/yidoutang/guide" />
+<Route data={{"path":["/discover/:params?","/:params?"],"categories":["new-media"],"example":"/xinpianchang/discover","parameters":{"params":"参数,可在对应分类页 URL 中找到,默认为 `article-0-0-all-all-0-0-score` ,即全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"发现","maintainers":["nczitzk"],"description":":::tip\n 跳转到欲订阅的分类页,将 URL 的 `/discover` 到末尾的部分填入 `params` 参数。\n\n 如 [全部原创视频作品](https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score) 的 URL 为 `https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score`,其 `/discover` 到末尾的部分为 `article-0-0-all-all-0-0-score`,所以对应的路由为 [/xinpianchang/discover/article-0-0-all-all-0-0-score](https://rsshub.app/xinpianchang/discover/article-0-0-all-all-0-0-score)。\n :::","location":"index.ts"}} />
-### 众测 {#yi-dou-tang-zhong-ce}
+:::tip
+跳转到欲订阅的分类页,将 URL 的 `/discover` 到末尾的部分填入 `params` 参数。
-<Route author="sanmmm" example="/yidoutang/mtest" path="/yidoutang/mtest" />
+如 [全部原创视频作品](https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score) 的 URL 为 `https://www.xinpianchang.com/discover/article-0-0-all-all-0-0-score`,其 `/discover` 到末尾的部分为 `article-0-0-all-all-0-0-score`,所以对应的路由为 [/xinpianchang/discover/article-0-0-all-all-0-0-score](https://rsshub.app/xinpianchang/discover/article-0-0-all-all-0-0-score)。
+:::
-### 全屋记 {#yi-dou-tang-quan-wu-ji}
+### 排行榜 {#xin-pian-chang-pai-hang-bang}
-<Route author="sanmmm" example="/yidoutang/case/hot" path="/yidoutang/:type?" paramsDesc={['类型, 默认为`default`']}>
- 类型
+<Route data={{"path":"/rank/:category?","categories":["new-media"],"example":"/xinpianchang/rank","parameters":{"category":"分类 id,可在对应排行榜页 URL 中找到,见下表,默认为 `all` ,即总榜"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"排行榜","maintainers":["nczitzk"],"description":"| 分类 | id |\n | -------- | ---------- |\n | 总榜 | all |\n | 精选榜 | staffPicks |\n | 广告 | ad |\n | 宣传片 | publicity |\n | 创意 | creative |\n | 干货教程 | backstage |","location":"rank.ts"}} />
- | 默认 | 最热 | 最新 |
- | ------- | ---- | ---- |
- | default | hot | new |
-</Route>
+| 分类 | id |
+| -------- | ---------- |
+| 总榜 | all |
+| 精选榜 | staffPicks |
+| 广告 | ad |
+| 宣传片 | publicity |
+| 创意 | creative |
+| 干货教程 | backstage |
## 壹蘋新聞網 {#yi-pin-xin-wen-wang}
### 最新新聞 {#yi-pin-xin-wen-wang-zui-xin-xin-wen}
-<Route author="miles170" example="/nextapple/realtime/latest" path="/nextapple/realtime/:category?" paramsDesc={['類別,見下表,默認為首頁']}>
- | 首頁 | 焦點 | 熱門 | 娛樂 | 生活 | 女神 | 社會 |
- | ------ | --------- | ---- | ------------- | ---- | -------- | ----- |
- | latest | recommend | hit | entertainment | life | gorgeous | local |
-
- | 政治 | 國際 | 財經 | 體育 | 旅遊美食 | 3C 車市 |
- | -------- | ------------- | ------- | ------ | --------- | ------- |
- | politics | international | finance | sports | lifestyle | gadget |
-</Route>
-
-## 移动支付网 {#yi-dong-zhi-fu-wang}
-
-### 新闻 {#yi-dong-zhi-fu-wang-xin-wen}
-
-<Route author="LogicJake genghis-yang" example="/mpaypass/news" path="/mpaypass/news" />
-
-### 分类 {#yi-dong-zhi-fu-wang-fen-lei}
-
-<Route author="zhuan-zhu" example="/mpaypass/main/policy" path="mpaypass/main/:type?" paramsDesc={['新闻类型,类型可在URL中找到,类似`policy`,`eye`等,空或其他任意值展示最新新闻']} />
-
-## 异次元软件世界 {#yi-ci-yuan-ruan-jian-shi-jie}
-
-### 首页 {#yi-ci-yuan-ruan-jian-shi-jie-shou-ye}
-
-<Route author="kimi360" example="/iplay/home" path="/iplay/home" />
-
-## 有趣天文奇观 {#you-qu-tian-wen-qi-guan}
+<Route data={{"path":"/realtime/:category?","categories":["new-media"],"example":"/nextapple/realtime/latest","parameters":{"category":"類別,見下表,默認為首頁"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tw.nextapple.com/","tw.nextapple.com/realtime/:category"]},"name":"最新新聞","maintainers":["miles170"],"url":"tw.nextapple.com/","description":"| 首頁 | 焦點 | 熱門 | 娛樂 | 生活 | 女神 | 社會 |\n | ------ | --------- | ---- | ------------- | ---- | -------- | ----- |\n | latest | recommend | hit | entertainment | life | gorgeous | local |\n\n | 政治 | 國際 | 財經 | 體育 | 旅遊美食 | 3C 車市 |\n | -------- | ------------- | ------- | ------ | --------- | ------- |\n | politics | international | finance | sports | lifestyle | gadget |","location":"realtime.ts"}} />
-### 首页 {#you-qu-tian-wen-qi-guan-shou-ye}
+| 首頁 | 焦點 | 熱門 | 娛樂 | 生活 | 女神 | 社會 |
+| ------ | --------- | ---- | ------------- | ---- | -------- | ----- |
+| latest | recommend | hit | entertainment | life | gorgeous | local |
-<Route author="nczitzk" example="/interesting-sky" path="/interesting-sky" />
+| 政治 | 國際 | 財經 | 體育 | 旅遊美食 | 3C 車市 |
+| -------- | ------------- | ------- | ------ | --------- | ------- |
+| politics | international | finance | sports | lifestyle | gadget |
-### 年度天象(天文年历) {#you-qu-tian-wen-qi-guan-nian-du-tian-xiang-tian-wen-nian-li}
-
-<Route author="nczitzk" example="/interesting-sky/astronomical_events" path="/interesting-sky/astronomical_events/:year?" paramsDesc={['年份,默认为当前年份']} />
-
-### 近期事件专题 {#you-qu-tian-wen-qi-guan-jin-qi-shi-jian-zhuan-ti}
+## 移动支付网 {#yi-dong-zhi-fu-wang}
-<Route author="nczitzk" example="/interesting-sky/recent-interesting" path="/interesting-sky/recent-interesting" />
+### Unknown {#yi-dong-zhi-fu-wang-unknown}
-## 鱼塘热榜 {#yu-tang-re-bang}
+<Route data={{"path":"/main/:type?","categories":["new-media"],"example":"/mpaypass/main/policy","parameters":{"type":"新闻类型,类型可在URL中找到,类似`policy`,`eye`等,空或其他任意值展示最新新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["zhuan-zhu"],"location":"main.ts"}} />
-### 分类 {#yu-tang-re-bang-fen-lei}
+### 新闻 {#yi-dong-zhi-fu-wang-xin-wen}
-<Route author="TheresaQWQ" example="/mofish/2" path="/mofish/:id" paramsDesc={['分类id,可以在 https://api.tophub.fun/GetAllType 获取']} />
+<Route data={{"path":"/news","categories":["new-media"],"example":"/mpaypass/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mpaypass.com.cn/"]},"name":"新闻","maintainers":["LogicJake","genghis-yang"],"url":"mpaypass.com.cn/","location":"news.ts"}} />
## 早报网 {#zao-bao-wang}
### 每日早报 {#zao-bao-wang-mei-ri-zao-bao}
-<Route author="nczitzk" example="/qqorw" path="/qqorw/:category?" paramsDesc={['分类,见下表,默认为首页']} radar="1">
- | 首页 | 每日早报 | 国际早报 | 生活冷知识 |
- | ---- | -------- | -------- | ---------- |
- | | mrzb | zbapp | zbzzd |
-</Route>
+<Route data={{"path":"/:category?","categories":["new-media"],"example":"/qqorw","parameters":{"category":"分类,见下表,默认为首页"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qqorw.cn/:category","qqorw.cn/"]},"name":"每日早报","maintainers":["nczitzk"],"description":"| 首页 | 每日早报 | 国际早报 | 生活冷知识 |\n | ---- | -------- | -------- | ---------- |\n | | mrzb | zbapp | zbzzd |","location":"index.ts"}} />
+
+| 首页 | 每日早报 | 国际早报 | 生活冷知识 |
+| ---- | -------- | -------- | ---------- |
+| | mrzb | zbapp | zbzzd |
## 知园 {#zhi-yuan}
### Newsletter {#zhi-yuan-newsletter}
-<Route author="TonyRL" example="/zhiy/letters/messy" path="/zhiy/letters/:author" paramsDesc={['作者 ID,可在URL中找到']} radar="1" />
+<Route data={{"path":"/letters/:author","categories":["new-media"],"example":"/zhiy/letters/messy","parameters":{"author":"作者 ID,可在URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhiy.cc/:author"]},"name":"Newsletter","maintainers":["TonyRL"],"location":"letter.ts"}} />
### 笔记 {#zhi-yuan-bi-ji}
-<Route author="TonyRL" example="/zhiy/posts/long" path="/zhiy/posts/:author" paramsDesc={['作者 ID,可在URL中找到']} radar="1" />
-
-## 中国纺织经济信息网 {#zhong-guo-fang-zhi-jing-ji-xin-xi-wang}
-
-### 资讯 {#zhong-guo-fang-zhi-jing-ji-xin-xi-wang-zi-xun}
-
-<Route author="nczitzk" example="/ctei/news/bwzq" path="/ctei/news/:id?" paramsDesc={['分类 id,可在分类页的 URL 中找到,默认为本网专区']}>
- | 要闻 | 国内 | 国际 | 企业 | 品牌 | 外贸 | 政策 | 科技 | 流行 | 服装 | 家纺 |
- | ------ | -------- | -------- | ------- | ----- | ----- | ------ | ---------- | ------- | ------- | ------- |
- | newsyw | domestic | internal | company | brand | trade | policy | Technology | fashion | apparel | hometex |
-</Route>
+<Route data={{"path":"/posts/:author","categories":["new-media"],"example":"/zhiy/posts/long","parameters":{"author":"作者 ID,可在URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhiy.cc/:author"]},"name":"笔记","maintainers":["TonyRL"],"location":"post.ts"}} />
## 中国钢铁工业协会 {#zhong-guo-gang-tie-gong-ye-xie-hui}
### 栏目 {#zhong-guo-gang-tie-gong-ye-xie-hui-lan-mu}
-<Route author="nczitzk" example="/chinaisa" path="/chinaisa/:id?" paramsDesc={['栏目,见下表,默认为钢协动态']} radar="1">
- | 栏目 | id |
- | -------- | ---------------------------------------------------------------- |
- | 钢协动态 | 58af05dfb6b4300151760176d2aad0a04c275aaadbb1315039263f021f920dcd |
- | 钢协要闻 | 67ea4f106bd8f0843c0538d43833c463a0cd411fc35642cbd555a5f39fcf352b |
- | 会议报道 | e5070694f299a43b20d990e53b6a69dc02e755fef644ae667cf75deaff80407a |
- | 领导讲话 | a873c2e67b26b4a2d8313da769f6e106abc9a1ff04b7f1a50674dfa47cf91a7b |
- | 图片新闻 | 806254321b2459bddb3c2cb5590fef6332bd849079d3082daf6153d7f8d62e1e |
-
- <details>
- <summary>更多栏目</summary>
-
- #### 党建工作
-
- | 栏目 | id |
- | ---------------------------------------------------- | ---------------------------------------------------------------- |
- | 党建工作 | 10e8911e0c852d91f08e173c768700da608abfb4e7b0540cb49fa5498f33522b |
- | 学习贯彻习近平新时代中国特色社会主义思想主题教育专栏 | b7a7ad4b5d8ffaca4b29f3538fd289da9d07f827f89e6ea57ef07257498aacf9 |
- | 党史学习教育专栏 | 4d8e7dec1b672704916331431156ea7628a598c191d751e4fc28408ccbd4e0c4 |
- | 不忘初心、牢记使命 | 427f7c28c90ec9db1aab78db8156a63ff2e23f6a0cea693e3847fe6d595753db |
- | 两学一做 | 5b0609fedc9052bb44f1cfe9acf5ec8c9fe960f22a07be69636f2cf1cacaa8f7 |
- | 钢协党代会 | beaaa0314f0f532d4b18244cd70df614a4af97465d974401b1f5b3349d78144b |
- | 创先争优 | e7ea82c886ba18691210aaf48b3582a92dca9c4f2aab912757cedafb066ff8a6 |
- | 青年工作 | 2706ee3a4a4c3c23e90e13c8fdc3002855d1dba394b61626562a97b33af3dbd0 |
- | 日常动态 | e21157a082fc0ab0d7062c8755e91472ee0d23de6ccc5c2a44b62e54062cf1e4 |
-
- #### 要闻
-
- | 栏目 | id |
- | ------------ | ---------------------------------------------------------------- |
- | 要闻 | c42511ce3f868a515b49668dd250290c80d4dc8930c7e455d0e6e14b8033eae2 |
- | 会员动态 | 268f86fdf61ac8614f09db38a2d0295253043b03e092c7ff48ab94290296125c |
- | 疫情应对专栏 | a83c48faeb34065fd9b33d3c84957a152675141458aedc0ec454b760c9fcad65 |
-
- #### 统计发布
-
- | 栏目 | id |
- | -------- | ---------------------------------------------------------------- |
- | 统计发布 | 2e3c87064bdfc0e43d542d87fce8bcbc8fe0463d5a3da04d7e11b4c7d692194b |
- | 生产经营 | 3238889ba0fa3aabcf28f40e537d440916a361c9170a4054f9fc43517cb58c1e |
- | 进出口 | 95ef75c752af3b6c8be479479d8b931de7418c00150720280d78c8f0da0a438c |
- | 环保统计 | 619ce7b53a4291d47c19d0ee0765098ca435e252576fbe921280a63fba4bc712 |
-
- #### 行业分析
-
- | 栏目 | id |
- | -------- | ---------------------------------------------------------------- |
- | 行业分析 | 1b4316d9238e09c735365896c8e4f677a3234e8363e5622ae6e79a5900a76f56 |
- | 市场分析 | a44207e193a5caa5e64102604b6933896a0025eb85c57c583b39626f33d4dafd |
- | 板带材 | 05d0e136828584d2cd6e45bdc3270372764781b98546cce122d9974489b1e2f2 |
- | 社会库存 | 197422a82d9a09b9cc86188444574816e93186f2fde87474f8b028fc61472d35 |
-
- #### 钢材价格指数
-
- | 栏目 | id |
- | ------------ | ---------------------------------------------------------------- |
- | 钢材价格指数 | 17b6a9a214c94ccc28e56d4d1a2dbb5acef3e73da431ddc0a849a4dcfc487d04 |
- | 综合价格指数 | 63913b906a7a663f7f71961952b1ddfa845714b5982655b773a62b85dd3b064e |
- | 地区价格 | fc816c75aed82b9bc25563edc9cf0a0488a2012da38cbef5258da614d6e51ba9 |
-
- #### 宏观经济信息
-
- | 栏目 | id |
- | ------------ | ---------------------------------------------------------------- |
- | 宏观经济信息 | 5d77b433182404193834120ceed16fe0625860fafd5fd9e71d0800c4df227060 |
- | 相关行业信息 | ae2a3c0fd4936acf75f4aab6fadd08bc6371aa65bdd50419e74b70d6f043c473 |
- | 国际动态 | 1bad7c56af746a666e4a4e56e54a9508d344d7bc1498360580613590c16b6c41 |
-
- #### 专题报道
-
- | 栏目 | id |
- | -------------------- | ---------------------------------------------------------------- |
- | 专题报道 | 50e7242bfd78b4395f3338df7699a0ff8847b886c4c3a55bd7c102a2cfe32fe9 |
- | 钢协理事会 | 40c6404418699f0f8cb4e513013bb110ef250c782f0959852601e7c75e1afcd8 |
- | 钢协新闻发布会 | 11ea370f565c6c141b1a4dac60aa00c4331bd442382a5dd476a5e73e001b773c |
- | 劳模表彰 | 907e4ae217bf9c981a132051572103f9c87cccb7f00caf5a1770078829e6bcb3 |
- | 钢铁行业职业技能竞赛 | 563c15270a691e3c7cb9cd9ba457c5af392eb4630fa833fc1a55c8e2afbc28a9 |
-
- #### 成果奖励
-
- | 栏目 | id |
- | ---------------------- | ---------------------------------------------------------------- |
- | 成果奖励 | a6c30053b66356b4d77fbf6668bda69f7e782b2ae08a21d5db171d50a504bd40 |
- | 冶金科学技术奖 | 50fe0c63f657ee48e49cb13fe7f7c5502046acdb05e2ee8a317f907af4191683 |
- | 企业管理现代化创新成果 | b5607d3b73c2c3a3b069a97b9dbfd59af64aea27bafd5eb87ba44d1b07a33b66 |
- | 清洁生产环境友好企业 | 4475c8e21374d063a22f95939a2909837e78fab1832dc97bf64f09fa01c0c5f7 |
- | 产品开发市场开拓奖 | 169e34d7b29e3deaf4d4496da594d3bbde2eb0a40f7244b54dbfb9cc89a37296 |
- | 质量金杯奖 | 68029784be6d9a7bf9cb8cace5b8a5ce5d2d871e9a0cbcbf84eeae0ea2746311 |
-
- #### 节能减排
-
- | 栏目 | id |
- | ------------------------------------------ | ---------------------------------------------------------------- |
- | 节能减排 | 08895f1681c198fdf297ab38e33e1f428f6ccf2add382f3844a52e410f10e5a0 |
- | 先进节能环保技术 | 6e639343a517fd08e5860fba581d41940da523753956ada973b6952fc05ef94f |
- | 钢铁企业超低排放改造和评估监测进展情况公示 | 50d99531d5dee68346653ca9548f308764ad38410a091e662834a5ed66770174 |
-
- #### 国际交流
-
- | 栏目 | id |
- | -------- | ---------------------------------------------------------------- |
- | 国际交流 | 4753eef81b4019369d4751413d852ab9027944b84c612b5a08614e046d169e81 |
- | 外事动态 | aa590ec6f835136a9ce8c9f3d0c3b194beb6b78037466ab40bb4aacc32adfcc9 |
- | 国际会展 | 05ac1f2971bc375d25c9112e399f9c3cbb237809684ebc5b0ca4a68a1fcb971c |
-
- #### 政策法规
-
- | 栏目 | id |
- | -------- | ---------------------------------------------------------------- |
- | 政策法规 | 63a69eb0087f1984c0b269a1541905f19a56e117d56b3f51dfae0e6c1d436533 |
- | 政策法规 | a214b2e71c3c79fa4a36ff382ee5f822b9603634626f7e320f91ed696b3666f2 |
- | 贸易规则 | 5988b2380d04d3efde8cc247377d19530c17904ec0b5decdd00f9b3e026e3715 |
-
- #### 分会园地
-
- | 栏目 | id |
- | ------------ | ---------------------------------------------------------------- |
- | 分会园地 | d059d6751dcaae94e31a795072267f7959c35d012eebb9858b3ede2990e82ea9 |
- | 法律分会 | 96000647f18ea78fa134a3932563e7d27c68d0482de498f179b44846234567a9 |
- | 设备分会 | c8e1e3f52406115c2c03928271bbe883c0875b7c9f2f67492395685a62a1a2d8 |
- | 国际产能合作 | 4fb8cc4b0d6f905a969ac3375f6d17b34df4dcae69d798d2a4616daa80af020c |
- | 绿化分会 | ad55a0fbc1a44e94fb60e21b98cf967aca17ecf1450bdfb3699468fe8235103b |
-
- #### 钢铁知识
-
- | 栏目 | id |
- | ------------ | ---------------------------------------------------------------- |
- | 钢铁知识 | 7f7509ff045023015e0d6c1ba22c32734b673be2ec14eae730a99c08e3badb3f |
- | 钢铁材料使用 | 7e319d71258ed6bb663cf59b4cf67fe97894e60aa5520f3d2cf966f82f9b89ac |
- | 钢铁标准 | fae0c4dd27f8fe4759941e78c9dc1dfe0088ce30d1b684d12be4c8172d2c08e1 |
-
- #### 钢协刊物
-
- | 栏目 | id |
- | ---------- | ---------------------------------------------------------------- |
- | 钢协刊物 | ed51af486f6d4b313b3aaf8fea0b32a4a2d4a89714c61992caf01942eb61831b |
- | 中国钢铁业 | 6440bdfccadf87908b13d8bbd9a66bb89bbd60cc5e175c018ca1c62c7d55e61f |
- | 钢铁信息 | 2b66af0b2cda9b420739e55e255a6f72f277557670ef861c9956da8fde25da05 |
- </details>
-</Route>
-
-## 中国科普博览 {#zhong-guo-ke-pu-bo-lan}
-
-### 直播回看 {#zhong-guo-ke-pu-bo-lan-zhi-bo-hui-kan}
-
-<Route author="nczitzk" example="/kepu/live" path="/kepu/live" radar="1" supportBT="1" />
-
-## 中国收入分配研究院 {#zhong-guo-shou-ru-fen-pei-yan-jiu-yuan}
-
-### 分类 {#zhong-guo-shou-ru-fen-pei-yan-jiu-yuan-fen-lei}
-
-<Route author="nczitzk" example="/ciidbnu" path="/ciidbnu/:id?" paramsDesc={['分类 id,可在分类页地址栏 URL 中找到']}>
- | 社会动态 | 院内新闻 | 学术观点 | 文献书籍 | 工作论文 | 专题讨论 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 5 | 3 | 4 | 6 | 8 |
-</Route>
-
-## 中国作家网 {#zhong-guo-zuo-jia-wang}
-
-### 栏目 {#zhong-guo-zuo-jia-wang-lan-mu}
-
-<Route author="nczitzk" example="/chinawriter" path="/chinawriter/:id?" paramsDesc={['栏目 id,见下表,默认为首页']} radar="1">
- | 服务 | 文学奖项 |
- | ------ | -------- |
- | 403937 | 403973 |
-
- | 新闻 | 访谈 | 艺术 |
- | ------ | ------ | ------ |
- | 403990 | 403997 | 404002 |
-
- | 理论评论 | 文史 | 科幻 | 书汇 | 新作品 |
- | -------- | ------ | ------ | ------ | ------ |
- | 404029 | 404057 | 404078 | 404058 | 404015 |
-
- | 世界文坛 | 民族文艺 | 网络文学 | 儿童文学 |
- | -------- | -------- | -------- | -------- |
- | 404085 | 404086 | 404022 | 404059 |
-
- <details>
- <summary>更多栏目</summary>
-
- #### 会员
-
- | 新发展会员名单 | 讣告 |
- | -------------- | ------------- |
- | 403978/403979 | 403978/403981 |
-
- #### 文学奖项
-
- | 其他文学奖项 |
- | ------------- |
- | 403973/419349 |
-
- #### 新闻
+<Route data={{"path":"/:id?","categories":["new-media"],"example":"/chinaisa","parameters":{"id":"栏目,见下表,默认为钢协动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["nczitzk"],"description":"| 栏目 | id |\n | -------- | ---------------------------------------------------------------- |\n | 钢协动态 | 58af05dfb6b4300151760176d2aad0a04c275aaadbb1315039263f021f920dcd |\n | 钢协要闻 | 67ea4f106bd8f0843c0538d43833c463a0cd411fc35642cbd555a5f39fcf352b |\n | 会议报道 | e5070694f299a43b20d990e53b6a69dc02e755fef644ae667cf75deaff80407a |\n | 领导讲话 | a873c2e67b26b4a2d8313da769f6e106abc9a1ff04b7f1a50674dfa47cf91a7b |\n | 图片新闻 | 806254321b2459bddb3c2cb5590fef6332bd849079d3082daf6153d7f8d62e1e |\n\n <details>\n <summary>更多栏目</summary>\n\n #### 党建工作\n\n | 栏目 | id |\n | ---------------------------------------------------- | ---------------------------------------------------------------- |\n | 党建工作 | 10e8911e0c852d91f08e173c768700da608abfb4e7b0540cb49fa5498f33522b |\n | 学习贯彻习近平新时代中国特色社会主义思想主题教育专栏 | b7a7ad4b5d8ffaca4b29f3538fd289da9d07f827f89e6ea57ef07257498aacf9 |\n | 党史学习教育专栏 | 4d8e7dec1b672704916331431156ea7628a598c191d751e4fc28408ccbd4e0c4 |\n | 不忘初心、牢记使命 | 427f7c28c90ec9db1aab78db8156a63ff2e23f6a0cea693e3847fe6d595753db |\n | 两学一做 | 5b0609fedc9052bb44f1cfe9acf5ec8c9fe960f22a07be69636f2cf1cacaa8f7 |\n | 钢协党代会 | beaaa0314f0f532d4b18244cd70df614a4af97465d974401b1f5b3349d78144b |\n | 创先争优 | e7ea82c886ba18691210aaf48b3582a92dca9c4f2aab912757cedafb066ff8a6 |\n | 青年工作 | 2706ee3a4a4c3c23e90e13c8fdc3002855d1dba394b61626562a97b33af3dbd0 |\n | 日常动态 | e21157a082fc0ab0d7062c8755e91472ee0d23de6ccc5c2a44b62e54062cf1e4 |\n\n #### 要闻\n\n | 栏目 | id |\n | ------------ | ---------------------------------------------------------------- |\n | 要闻 | c42511ce3f868a515b49668dd250290c80d4dc8930c7e455d0e6e14b8033eae2 |\n | 会员动态 | 268f86fdf61ac8614f09db38a2d0295253043b03e092c7ff48ab94290296125c |\n | 疫情应对专栏 | a83c48faeb34065fd9b33d3c84957a152675141458aedc0ec454b760c9fcad65 |\n\n #### 统计发布\n\n | 栏目 | id |\n | -------- | ---------------------------------------------------------------- |\n | 统计发布 | 2e3c87064bdfc0e43d542d87fce8bcbc8fe0463d5a3da04d7e11b4c7d692194b |\n | 生产经营 | 3238889ba0fa3aabcf28f40e537d440916a361c9170a4054f9fc43517cb58c1e |\n | 进出口 | 95ef75c752af3b6c8be479479d8b931de7418c00150720280d78c8f0da0a438c |\n | 环保统计 | 619ce7b53a4291d47c19d0ee0765098ca435e252576fbe921280a63fba4bc712 |\n\n #### 行业分析\n\n | 栏目 | id |\n | -------- | ---------------------------------------------------------------- |\n | 行业分析 | 1b4316d9238e09c735365896c8e4f677a3234e8363e5622ae6e79a5900a76f56 |\n | 市场分析 | a44207e193a5caa5e64102604b6933896a0025eb85c57c583b39626f33d4dafd |\n | 板带材 | 05d0e136828584d2cd6e45bdc3270372764781b98546cce122d9974489b1e2f2 |\n | 社会库存 | 197422a82d9a09b9cc86188444574816e93186f2fde87474f8b028fc61472d35 |\n\n #### 钢材价格指数\n\n | 栏目 | id |\n | ------------ | ---------------------------------------------------------------- |\n | 钢材价格指数 | 17b6a9a214c94ccc28e56d4d1a2dbb5acef3e73da431ddc0a849a4dcfc487d04 |\n | 综合价格指数 | 63913b906a7a663f7f71961952b1ddfa845714b5982655b773a62b85dd3b064e |\n | 地区价格 | fc816c75aed82b9bc25563edc9cf0a0488a2012da38cbef5258da614d6e51ba9 |\n\n #### 宏观经济信息\n\n | 栏目 | id |\n | ------------ | ---------------------------------------------------------------- |\n | 宏观经济信息 | 5d77b433182404193834120ceed16fe0625860fafd5fd9e71d0800c4df227060 |\n | 相关行业信息 | ae2a3c0fd4936acf75f4aab6fadd08bc6371aa65bdd50419e74b70d6f043c473 |\n | 国际动态 | 1bad7c56af746a666e4a4e56e54a9508d344d7bc1498360580613590c16b6c41 |\n\n #### 专题报道\n\n | 栏目 | id |\n | -------------------- | ---------------------------------------------------------------- |\n | 专题报道 | 50e7242bfd78b4395f3338df7699a0ff8847b886c4c3a55bd7c102a2cfe32fe9 |\n | 钢协理事会 | 40c6404418699f0f8cb4e513013bb110ef250c782f0959852601e7c75e1afcd8 |\n | 钢协新闻发布会 | 11ea370f565c6c141b1a4dac60aa00c4331bd442382a5dd476a5e73e001b773c |\n | 劳模表彰 | 907e4ae217bf9c981a132051572103f9c87cccb7f00caf5a1770078829e6bcb3 |\n | 钢铁行业职业技能竞赛 | 563c15270a691e3c7cb9cd9ba457c5af392eb4630fa833fc1a55c8e2afbc28a9 |\n\n #### 成果奖励\n\n | 栏目 | id |\n | ---------------------- | ---------------------------------------------------------------- |\n | 成果奖励 | a6c30053b66356b4d77fbf6668bda69f7e782b2ae08a21d5db171d50a504bd40 |\n | 冶金科学技术奖 | 50fe0c63f657ee48e49cb13fe7f7c5502046acdb05e2ee8a317f907af4191683 |\n | 企业管理现代化创新成果 | b5607d3b73c2c3a3b069a97b9dbfd59af64aea27bafd5eb87ba44d1b07a33b66 |\n | 清洁生产环境友好企业 | 4475c8e21374d063a22f95939a2909837e78fab1832dc97bf64f09fa01c0c5f7 |\n | 产品开发市场开拓奖 | 169e34d7b29e3deaf4d4496da594d3bbde2eb0a40f7244b54dbfb9cc89a37296 |\n | 质量金杯奖 | 68029784be6d9a7bf9cb8cace5b8a5ce5d2d871e9a0cbcbf84eeae0ea2746311 |\n\n #### 节能减排\n\n | 栏目 | id |\n | ------------------------------------------ | ---------------------------------------------------------------- |\n | 节能减排 | 08895f1681c198fdf297ab38e33e1f428f6ccf2add382f3844a52e410f10e5a0 |\n | 先进节能环保技术 | 6e639343a517fd08e5860fba581d41940da523753956ada973b6952fc05ef94f |\n | 钢铁企业超低排放改造和评估监测进展情况公示 | 50d99531d5dee68346653ca9548f308764ad38410a091e662834a5ed66770174 |\n\n #### 国际交流\n\n | 栏目 | id |\n | -------- | ---------------------------------------------------------------- |\n | 国际交流 | 4753eef81b4019369d4751413d852ab9027944b84c612b5a08614e046d169e81 |\n | 外事动态 | aa590ec6f835136a9ce8c9f3d0c3b194beb6b78037466ab40bb4aacc32adfcc9 |\n | 国际会展 | 05ac1f2971bc375d25c9112e399f9c3cbb237809684ebc5b0ca4a68a1fcb971c |\n\n #### 政策法规\n\n | 栏目 | id |\n | -------- | ---------------------------------------------------------------- |\n | 政策法规 | 63a69eb0087f1984c0b269a1541905f19a56e117d56b3f51dfae0e6c1d436533 |\n | 政策法规 | a214b2e71c3c79fa4a36ff382ee5f822b9603634626f7e320f91ed696b3666f2 |\n | 贸易规则 | 5988b2380d04d3efde8cc247377d19530c17904ec0b5decdd00f9b3e026e3715 |\n\n #### 分会园地\n\n | 栏目 | id |\n | ------------ | ---------------------------------------------------------------- |\n | 分会园地 | d059d6751dcaae94e31a795072267f7959c35d012eebb9858b3ede2990e82ea9 |\n | 法律分会 | 96000647f18ea78fa134a3932563e7d27c68d0482de498f179b44846234567a9 |\n | 设备分会 | c8e1e3f52406115c2c03928271bbe883c0875b7c9f2f67492395685a62a1a2d8 |\n | 国际产能合作 | 4fb8cc4b0d6f905a969ac3375f6d17b34df4dcae69d798d2a4616daa80af020c |\n | 绿化分会 | ad55a0fbc1a44e94fb60e21b98cf967aca17ecf1450bdfb3699468fe8235103b |\n\n #### 钢铁知识\n\n | 栏目 | id |\n | ------------ | ---------------------------------------------------------------- |\n | 钢铁知识 | 7f7509ff045023015e0d6c1ba22c32734b673be2ec14eae730a99c08e3badb3f |\n | 钢铁材料使用 | 7e319d71258ed6bb663cf59b4cf67fe97894e60aa5520f3d2cf966f82f9b89ac |\n | 钢铁标准 | fae0c4dd27f8fe4759941e78c9dc1dfe0088ce30d1b684d12be4c8172d2c08e1 |\n\n #### 钢协刊物\n\n | 栏目 | id |\n | ---------- | ---------------------------------------------------------------- |\n | 钢协刊物 | ed51af486f6d4b313b3aaf8fea0b32a4a2d4a89714c61992caf01942eb61831b |\n | 中国钢铁业 | 6440bdfccadf87908b13d8bbd9a66bb89bbd60cc5e175c018ca1c62c7d55e61f |\n | 钢铁信息 | 2b66af0b2cda9b420739e55e255a6f72f277557670ef861c9956da8fde25da05 |\n </details>","location":"index.ts"}} />
- | 时政新闻 | 中国作协 | 主席 | 党组书记 | 各地文讯 |
- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 403990/403991 | 403990/403993 | 403990/441519 | 403990/441520 | 403990/403994 |
+| 栏目 | id |
+| -------- | ---------------------------------------------------------------- |
+| 钢协动态 | 58af05dfb6b4300151760176d2aad0a04c275aaadbb1315039263f021f920dcd |
+| 钢协要闻 | 67ea4f106bd8f0843c0538d43833c463a0cd411fc35642cbd555a5f39fcf352b |
+| 会议报道 | e5070694f299a43b20d990e53b6a69dc02e755fef644ae667cf75deaff80407a |
+| 领导讲话 | a873c2e67b26b4a2d8313da769f6e106abc9a1ff04b7f1a50674dfa47cf91a7b |
+| 图片新闻 | 806254321b2459bddb3c2cb5590fef6332bd849079d3082daf6153d7f8d62e1e |
- #### 艺术
+<details>
+ <summary>更多栏目</summary>
- | 新闻 | 影视 | 舞台 | 人物 | 展览 | 书画 |
- | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404002/404003 | 404002/419388 | 404002/419389 | 404002/404005 | 404002/419390 | 404002/419391 |
+ #### 党建工作
- #### 理论评论
+ | 栏目 | id |
+ | ---------------------------------------------------- | ---------------------------------------------------------------- |
+ | 党建工作 | 10e8911e0c852d91f08e173c768700da608abfb4e7b0540cb49fa5498f33522b |
+ | 学习贯彻习近平新时代中国特色社会主义思想主题教育专栏 | b7a7ad4b5d8ffaca4b29f3538fd289da9d07f827f89e6ea57ef07257498aacf9 |
+ | 党史学习教育专栏 | 4d8e7dec1b672704916331431156ea7628a598c191d751e4fc28408ccbd4e0c4 |
+ | 不忘初心、牢记使命 | 427f7c28c90ec9db1aab78db8156a63ff2e23f6a0cea693e3847fe6d595753db |
+ | 两学一做 | 5b0609fedc9052bb44f1cfe9acf5ec8c9fe960f22a07be69636f2cf1cacaa8f7 |
+ | 钢协党代会 | beaaa0314f0f532d4b18244cd70df614a4af97465d974401b1f5b3349d78144b |
+ | 创先争优 | e7ea82c886ba18691210aaf48b3582a92dca9c4f2aab912757cedafb066ff8a6 |
+ | 青年工作 | 2706ee3a4a4c3c23e90e13c8fdc3002855d1dba394b61626562a97b33af3dbd0 |
+ | 日常动态 | e21157a082fc0ab0d7062c8755e91472ee0d23de6ccc5c2a44b62e54062cf1e4 |
- | 重要理论文章 | 理论热点 | 文学评论 | 创作谈 | 争鸣 | 综述 | 《中国当代文学研究》 |
- | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- | -------------------- |
- | 404029/419350 | 404029/419351 | 404029/404030 | 404029/404032 | 404029/404033 | 404029/404034 | 404087/404988/425775 |
+ #### 要闻
- #### 文史
+ | 栏目 | id |
+ | ------------ | ---------------------------------------------------------------- |
+ | 要闻 | c42511ce3f868a515b49668dd250290c80d4dc8930c7e455d0e6e14b8033eae2 |
+ | 会员动态 | 268f86fdf61ac8614f09db38a2d0295253043b03e092c7ff48ab94290296125c |
+ | 疫情应对专栏 | a83c48faeb34065fd9b33d3c84957a152675141458aedc0ec454b760c9fcad65 |
- | 文坛轶事 | 文史漫谈 | 重温经典 | 版本研究 | 名人手迹 | 茅盾文学奖获奖作家研究 |
- | ------------- | ------------- | ------------- | ------------- | ------------- | ---------------------- |
- | 404057/404063 | 404057/442005 | 404057/419384 | 404057/419387 | 404057/419382 | 404087/404988/429369 |
+ #### 统计发布
- #### 科幻
-
- | 动态 | 评论 | 作家印象 | 作品 | 科声幻影 |
- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404078/404079 | 404078/404080 | 404078/404081 | 404078/404083 | 404078/404084 |
-
- #### 书汇
+ | 栏目 | id |
+ | -------- | ---------------------------------------------------------------- |
+ | 统计发布 | 2e3c87064bdfc0e43d542d87fce8bcbc8fe0463d5a3da04d7e11b4c7d692194b |
+ | 生产经营 | 3238889ba0fa3aabcf28f40e537d440916a361c9170a4054f9fc43517cb58c1e |
+ | 进出口 | 95ef75c752af3b6c8be479479d8b931de7418c00150720280d78c8f0da0a438c |
+ | 环保统计 | 619ce7b53a4291d47c19d0ee0765098ca435e252576fbe921280a63fba4bc712 |
- | 书摘 | 图书排行 |
- | ------------- | ------------- |
- | 404058/404067 | 404058/404069 |
+ #### 行业分析
- #### 新作品
+ | 栏目 | id |
+ | -------- | ---------------------------------------------------------------- |
+ | 行业分析 | 1b4316d9238e09c735365896c8e4f677a3234e8363e5622ae6e79a5900a76f56 |
+ | 市场分析 | a44207e193a5caa5e64102604b6933896a0025eb85c57c583b39626f33d4dafd |
+ | 板带材 | 05d0e136828584d2cd6e45bdc3270372764781b98546cce122d9974489b1e2f2 |
+ | 社会库存 | 197422a82d9a09b9cc86188444574816e93186f2fde87474f8b028fc61472d35 |
+
+ #### 钢材价格指数
+
+ | 栏目 | id |
+ | ------------ | ---------------------------------------------------------------- |
+ | 钢材价格指数 | 17b6a9a214c94ccc28e56d4d1a2dbb5acef3e73da431ddc0a849a4dcfc487d04 |
+ | 综合价格指数 | 63913b906a7a663f7f71961952b1ddfa845714b5982655b773a62b85dd3b064e |
+ | 地区价格 | fc816c75aed82b9bc25563edc9cf0a0488a2012da38cbef5258da614d6e51ba9 |
+
+ #### 宏观经济信息
+
+ | 栏目 | id |
+ | ------------ | ---------------------------------------------------------------- |
+ | 宏观经济信息 | 5d77b433182404193834120ceed16fe0625860fafd5fd9e71d0800c4df227060 |
+ | 相关行业信息 | ae2a3c0fd4936acf75f4aab6fadd08bc6371aa65bdd50419e74b70d6f043c473 |
+ | 国际动态 | 1bad7c56af746a666e4a4e56e54a9508d344d7bc1498360580613590c16b6c41 |
+
+ #### 专题报道
+
+ | 栏目 | id |
+ | -------------------- | ---------------------------------------------------------------- |
+ | 专题报道 | 50e7242bfd78b4395f3338df7699a0ff8847b886c4c3a55bd7c102a2cfe32fe9 |
+ | 钢协理事会 | 40c6404418699f0f8cb4e513013bb110ef250c782f0959852601e7c75e1afcd8 |
+ | 钢协新闻发布会 | 11ea370f565c6c141b1a4dac60aa00c4331bd442382a5dd476a5e73e001b773c |
+ | 劳模表彰 | 907e4ae217bf9c981a132051572103f9c87cccb7f00caf5a1770078829e6bcb3 |
+ | 钢铁行业职业技能竞赛 | 563c15270a691e3c7cb9cd9ba457c5af392eb4630fa833fc1a55c8e2afbc28a9 |
+
+ #### 成果奖励
+
+ | 栏目 | id |
+ | ---------------------- | ---------------------------------------------------------------- |
+ | 成果奖励 | a6c30053b66356b4d77fbf6668bda69f7e782b2ae08a21d5db171d50a504bd40 |
+ | 冶金科学技术奖 | 50fe0c63f657ee48e49cb13fe7f7c5502046acdb05e2ee8a317f907af4191683 |
+ | 企业管理现代化创新成果 | b5607d3b73c2c3a3b069a97b9dbfd59af64aea27bafd5eb87ba44d1b07a33b66 |
+ | 清洁生产环境友好企业 | 4475c8e21374d063a22f95939a2909837e78fab1832dc97bf64f09fa01c0c5f7 |
+ | 产品开发市场开拓奖 | 169e34d7b29e3deaf4d4496da594d3bbde2eb0a40f7244b54dbfb9cc89a37296 |
+ | 质量金杯奖 | 68029784be6d9a7bf9cb8cace5b8a5ce5d2d871e9a0cbcbf84eeae0ea2746311 |
+
+ #### 节能减排
+
+ | 栏目 | id |
+ | ------------------------------------------ | ---------------------------------------------------------------- |
+ | 节能减排 | 08895f1681c198fdf297ab38e33e1f428f6ccf2add382f3844a52e410f10e5a0 |
+ | 先进节能环保技术 | 6e639343a517fd08e5860fba581d41940da523753956ada973b6952fc05ef94f |
+ | 钢铁企业超低排放改造和评估监测进展情况公示 | 50d99531d5dee68346653ca9548f308764ad38410a091e662834a5ed66770174 |
+
+ #### 国际交流
- | 小说 | 诗歌 | 散文 | 纪实 | 其他 |
- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404015/404017 | 404015/404020 | 404015/404018 | 404015/404019 | 404015/419926 |
+ | 栏目 | id |
+ | -------- | ---------------------------------------------------------------- |
+ | 国际交流 | 4753eef81b4019369d4751413d852ab9027944b84c612b5a08614e046d169e81 |
+ | 外事动态 | aa590ec6f835136a9ce8c9f3d0c3b194beb6b78037466ab40bb4aacc32adfcc9 |
+ | 国际会展 | 05ac1f2971bc375d25c9112e399f9c3cbb237809684ebc5b0ca4a68a1fcb971c |
- | 平台推荐 | 本周之星 | 2018 年 5 月 18 日前原创作品 |
- | ------------- | ------------- | ---------------------------- |
- | 404015/419789 | 404015/431511 | 404009 |
+ #### 政策法规
- | 《人民文学》 | 《诗刊》 | 《民族文学》 | 《收获》 | 《十月》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/418925 | 404015/416204/418926 | 404015/416204/418928 | 404015/416204/418958 | 404015/416204/418956 |
+ | 栏目 | id |
+ | -------- | ---------------------------------------------------------------- |
+ | 政策法规 | 63a69eb0087f1984c0b269a1541905f19a56e117d56b3f51dfae0e6c1d436533 |
+ | 政策法规 | a214b2e71c3c79fa4a36ff382ee5f822b9603634626f7e320f91ed696b3666f2 |
+ | 贸易规则 | 5988b2380d04d3efde8cc247377d19530c17904ec0b5decdd00f9b3e026e3715 |
- | 《小说选刊》 | 《北京文学》 | 《上海文学》 | 《天津文学》 | 《草原》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/418929 | 404015/416204/418954 | 404015/416204/418962 | 404015/416204/419004 | 404015/416204/418989 |
+ #### 分会园地
- | 《黄河》 | 《江南》 | 《钟山》 | 《广州文艺》 | 《湖南文学》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/426204 | 404015/416204/418957 | 404015/416204/418984 | 404015/416204/419881 | 404015/416204/419156 |
+ | 栏目 | id |
+ | ------------ | ---------------------------------------------------------------- |
+ | 分会园地 | d059d6751dcaae94e31a795072267f7959c35d012eebb9858b3ede2990e82ea9 |
+ | 法律分会 | 96000647f18ea78fa134a3932563e7d27c68d0482de498f179b44846234567a9 |
+ | 设备分会 | c8e1e3f52406115c2c03928271bbe883c0875b7c9f2f67492395685a62a1a2d8 |
+ | 国际产能合作 | 4fb8cc4b0d6f905a969ac3375f6d17b34df4dcae69d798d2a4616daa80af020c |
+ | 绿化分会 | ad55a0fbc1a44e94fb60e21b98cf967aca17ecf1450bdfb3699468fe8235103b |
- | 《山西文学》 | 《花城》 | 《青年作家》 | 《雨花》 | 《红豆》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/419827 | 404015/416204/418960 | 404015/416204/418967 | 404015/416204/419885 | 404015/416204/418993 |
+ #### 钢铁知识
- | 《长江文艺》 | 《中国作家》 | 《青年文学》 | 《美文》 | 《芙蓉》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/418961 | 404015/416204/418927 | 404015/416204/418979 | 404015/416204/418985 | 404015/416204/418986 |
+ | 栏目 | id |
+ | ------------ | ---------------------------------------------------------------- |
+ | 钢铁知识 | 7f7509ff045023015e0d6c1ba22c32734b673be2ec14eae730a99c08e3badb3f |
+ | 钢铁材料使用 | 7e319d71258ed6bb663cf59b4cf67fe97894e60aa5520f3d2cf966f82f9b89ac |
+ | 钢铁标准 | fae0c4dd27f8fe4759941e78c9dc1dfe0088ce30d1b684d12be4c8172d2c08e1 |
- | 《长城》 | 《福建文学》 | 《啄木鸟》 | 《芳草》 | 《小说月报》 |
- | -------------------- | -------------------- | -------------------- | -------------------- | -------------------- |
- | 404015/416204/418987 | 404015/416204/419003 | 404015/416204/435225 | 404015/416204/424311 | 404015/416204/418963 |
+ #### 钢协刊物
- #### 世界文坛
+ | 栏目 | id |
+ | ---------- | ---------------------------------------------------------------- |
+ | 钢协刊物 | ed51af486f6d4b313b3aaf8fea0b32a4a2d4a89714c61992caf01942eb61831b |
+ | 中国钢铁业 | 6440bdfccadf87908b13d8bbd9a66bb89bbd60cc5e175c018ca1c62c7d55e61f |
+ | 钢铁信息 | 2b66af0b2cda9b420739e55e255a6f72f277557670ef861c9956da8fde25da05 |
+</details>
- | 视点 | 译介 | 作家印象 | 文学评论 | 影像艺术 | 作品推介 |
- | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404085/404090 | 404085/431803 | 404085/404091 | 404085/404092 | 404085/404093 | 404085/404095 |
+## 中国科普博览 {#zhong-guo-ke-pu-bo-lan}
- #### 民族文艺
+### 直播回看 {#zhong-guo-ke-pu-bo-lan-zhi-bo-hui-kan}
- | 动态 | 品评 | 作家印象 | 作品 | 影像 |
- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404086/404098 | 404086/404101 | 404086/404099 | 404086/404100 | 404086/404102 |
+<Route data={{"path":"/live","categories":["new-media"],"example":"/kepu/live","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":false,"supportScihub":false},"radar":{"source":["live.kepu.net.cn/replay/index"]},"name":"直播回看","maintainers":["nczitzk"],"url":"live.kepu.net.cn/replay/index","location":"live.ts"}} />
- #### 网络文学
+## 中国收入分配研究院 {#zhong-guo-shou-ru-fen-pei-yan-jiu-yuan}
- | 动态 | 观察 | 访谈 | 中国网络小说排行榜 |
- | ------------- | ------------- | ------------- | ------------------ |
- | 404022/404023 | 404022/404027 | 404022/404024 | 404022/404028 |
+### 分类 {#zhong-guo-shou-ru-fen-pei-yan-jiu-yuan-fen-lei}
- #### 儿童文学
+<Route data={{"path":"/:id?","categories":["new-media"],"example":"/ciidbnu","parameters":{"id":"分类 id,可在分类页地址栏 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 社会动态 | 院内新闻 | 学术观点 | 文献书籍 | 工作论文 | 专题讨论 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 1 | 5 | 3 | 4 | 6 | 8 |","location":"index.ts"}} />
- | 视点 | 文学评论 | 作家印象 | 作品推介 | 动漫艺术 |
- | ------------- | ------------- | ------------- | ------------- | ------------- |
- | 404059/404071 | 404059/404072 | 404059/404073 | 404059/404075 | 404059/404076 |
- </details>
-</Route>
+| 社会动态 | 院内新闻 | 学术观点 | 文献书籍 | 工作论文 | 专题讨论 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 1 | 5 | 3 | 4 | 6 | 8 |
## 珠海网 {#zhu-hai-wang}
### 栏目 {#zhu-hai-wang-lan-mu}
-<Route author="nczitzk" example="/hizu" path="/hizu/:column?" paramsDesc={['栏目,见下表,默认为热点']}>
- | 分类 | 编号 |
- | -------- | ------------------------ |
- | 热点 | 5dd92265e4b0bf88dd8c1175 |
- | 订阅 | 5dd921a7e4b0bf88dd8c116f |
- | 学党史 | 604f1cbbe4b0cf5c2234d470 |
- | 政经 | 5dd92242e4b0bf88dd8c1174 |
- | 合作区 | 61259fd6e4b0d294f7f9786d |
- | 名记名播 | 61dfe511e4b0248b60d1c568 |
- | 大湾区 | 5dd9222ce4b0bf88dd8c1173 |
- | 网评 | 617805e4e4b037abacfd4820 |
- | TV 新闻 | 5dd9220de4b0bf88dd8c1172 |
- | 音频 | 5e6edd50e4b02ebde0ab061e |
- | 澳门 | 600e8ad4e4b02c3a6af6aaa8 |
- | 政务 | 600f760fe4b0e33cf6f8e68e |
- | 教育 | 5ff7c0fde4b0e2f210d05e20 |
- | 深圳 | 5fc88615e4b0e3055e693e0a |
- | 中山 | 600e8a93e4b02c3a6af6aa80 |
- | 民生 | 5dd921ece4b0bf88dd8c1170 |
- | 社区 | 61148184e4b08d3215364396 |
- | 专题 | 5dd9215fe4b0bf88dd8c116b |
- | 战疫 | 5e2e5107e4b0c14b5d0e3d04 |
- | 横琴 | 5f88eaf2e4b0a27cd404e09e |
- | 香洲 | 5f86a3f5e4b09d75f99dde7d |
- | 金湾 | 5e8c42b4e4b0347c7e5836e0 |
- | 斗门 | 5ee70534e4b07b8a779a1ad6 |
- | 高新 | 607d37ade4b05c59ac2f3d40 |
-</Route>
+<Route data={{"path":"/:column?","categories":["new-media"],"example":"/hizu","parameters":{"column":"栏目,见下表,默认为热点"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hizh.cn/"]},"name":"栏目","maintainers":["nczitzk"],"url":"hizh.cn/","description":"| 分类 | 编号 |\n | -------- | ------------------------ |\n | 热点 | 5dd92265e4b0bf88dd8c1175 |\n | 订阅 | 5dd921a7e4b0bf88dd8c116f |\n | 学党史 | 604f1cbbe4b0cf5c2234d470 |\n | 政经 | 5dd92242e4b0bf88dd8c1174 |\n | 合作区 | 61259fd6e4b0d294f7f9786d |\n | 名记名播 | 61dfe511e4b0248b60d1c568 |\n | 大湾区 | 5dd9222ce4b0bf88dd8c1173 |\n | 网评 | 617805e4e4b037abacfd4820 |\n | TV 新闻 | 5dd9220de4b0bf88dd8c1172 |\n | 音频 | 5e6edd50e4b02ebde0ab061e |\n | 澳门 | 600e8ad4e4b02c3a6af6aaa8 |\n | 政务 | 600f760fe4b0e33cf6f8e68e |\n | 教育 | 5ff7c0fde4b0e2f210d05e20 |\n | 深圳 | 5fc88615e4b0e3055e693e0a |\n | 中山 | 600e8a93e4b02c3a6af6aa80 |\n | 民生 | 5dd921ece4b0bf88dd8c1170 |\n | 社区 | 61148184e4b08d3215364396 |\n | 专题 | 5dd9215fe4b0bf88dd8c116b |\n | 战疫 | 5e2e5107e4b0c14b5d0e3d04 |\n | 横琴 | 5f88eaf2e4b0a27cd404e09e |\n | 香洲 | 5f86a3f5e4b09d75f99dde7d |\n | 金湾 | 5e8c42b4e4b0347c7e5836e0 |\n | 斗门 | 5ee70534e4b07b8a779a1ad6 |\n | 高新 | 607d37ade4b05c59ac2f3d40 |","location":"index.ts"}} />
+
+| 分类 | 编号 |
+| -------- | ------------------------ |
+| 热点 | 5dd92265e4b0bf88dd8c1175 |
+| 订阅 | 5dd921a7e4b0bf88dd8c116f |
+| 学党史 | 604f1cbbe4b0cf5c2234d470 |
+| 政经 | 5dd92242e4b0bf88dd8c1174 |
+| 合作区 | 61259fd6e4b0d294f7f9786d |
+| 名记名播 | 61dfe511e4b0248b60d1c568 |
+| 大湾区 | 5dd9222ce4b0bf88dd8c1173 |
+| 网评 | 617805e4e4b037abacfd4820 |
+| TV 新闻 | 5dd9220de4b0bf88dd8c1172 |
+| 音频 | 5e6edd50e4b02ebde0ab061e |
+| 澳门 | 600e8ad4e4b02c3a6af6aaa8 |
+| 政务 | 600f760fe4b0e33cf6f8e68e |
+| 教育 | 5ff7c0fde4b0e2f210d05e20 |
+| 深圳 | 5fc88615e4b0e3055e693e0a |
+| 中山 | 600e8a93e4b02c3a6af6aa80 |
+| 民生 | 5dd921ece4b0bf88dd8c1170 |
+| 社区 | 61148184e4b08d3215364396 |
+| 专题 | 5dd9215fe4b0bf88dd8c116b |
+| 战疫 | 5e2e5107e4b0c14b5d0e3d04 |
+| 横琴 | 5f88eaf2e4b0a27cd404e09e |
+| 香洲 | 5f86a3f5e4b09d75f99dde7d |
+| 金湾 | 5e8c42b4e4b0347c7e5836e0 |
+| 斗门 | 5ee70534e4b07b8a779a1ad6 |
+| 高新 | 607d37ade4b05c59ac2f3d40 |
## 字节点击 {#zi-jie-dian-ji}
-### 首页 {#zi-jie-dian-ji-shou-ye}
-
-<Route author="TonyRL" example="/byteclicks" path="/byteclicks" radar="1" />
-
### 标签 {#zi-jie-dian-ji-biao-qian}
-<Route author="TonyRL" example="/byteclicks/tag/人工智能" path="/byteclicks/tag/:tag" radar="1" paramsDesc={['标签,可在URL中找到']} />
+<Route data={{"path":"/tag/:tag","categories":["new-media"],"example":"/byteclicks/tag/人工智能","parameters":{"tag":"标签,可在URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["byteclicks.com/tag/:tag"]},"name":"标签","maintainers":["TonyRL"],"url":"byteclicks.com/","location":"tag.ts"}} />
## 自由微信 {#zi-you-wei-xin}
-### 公众号 {#zi-you-wei-xin-gong-zhong-hao}
+### Unknown {#zi-you-wei-xin-unknown}
-<Route author="TonyRL" example="/freewechat/profile/MzI5NTUxNzk3OA==" path="/freewechat/profile/:id" paramsDesc={['公众号 ID,可在URL中找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/profile/:id","categories":["new-media"],"example":"/freewechat/profile/MzI5NTUxNzk3OA==","parameters":{"id":"公众号 ID,可在URL中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["freewechat.com/profile/:id"]},"name":"Unknown","maintainers":["TonyRL"],"location":"profile.ts"}} />
diff --git a/website/docs/routes/other.mdx b/website/docs/routes/other.mdx
index 2dc080e65db98c..7c09b3a9c55042 100644
--- a/website/docs/routes/other.mdx
+++ b/website/docs/routes/other.mdx
@@ -1,1248 +1,3205 @@
-# 🔍 Uncategorized
+# other
-## 4399 论坛 {#4399-lun-tan}
+## 141JAV {#141jav}
-### 4399 论坛 {#4399-lun-tan-4399-lun-tan}
+:::tip
+官方提供的订阅源不支持 BT 下载订阅,地址为 [https://141jav.com/feeds/](https://141jav.com/feeds/)
+:::
+
+### Unknown {#141jav-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 141PPV {#141ppv}
+
+:::tip
+官方提供的订阅源不支持 BT 下载订阅,地址为 [https://141ppv.com/feeds/](https://141ppv.com/feeds/)
+:::
+
+### Unknown {#141ppv-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 36kr {#36kr}
+
+### Unknown {#36kr-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 3DMGame {#3dmgame}
+
+### Unknown {#3dmgame-unknown}
+
+<Route data={{"path":"/:name/:type?","radar":{"source":["3dmgame.com/games/:name/:type"]},"name":"Unknown","maintainers":["sinchang","jacky2001114","HenryQW"],"location":"game.ts"}} />
+
+## 423Down {#423down}
+
+### Unknown {#423down-unknown}
+
+<Route data={{"path":"/:category/:type?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 4Gamers {#4gamers}
+
+### Unknown {#4gamers-unknown}
+
+<Route data={{"path":["/","/category/:category"],"radar":{"source":["www.4gamers.com.tw/news","www.4gamers.com.tw/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"www.4gamers.com.tw/news","location":"category.ts"}} />
+
+### Unknown {#4gamers-unknown}
+
+<Route data={{"path":["/","/category/:category"],"radar":{"source":["www.4gamers.com.tw/news","www.4gamers.com.tw/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"www.4gamers.com.tw/news","location":"category.ts"}} />
+
+## 591 Rental house {#591-rental-house}
+
+### Rental house {#591-rental-house-rental-house}
+
+<Route data={{"path":"/:country/rent/:query?","categories":["other"],"example":"/591/tw/rent/order=posttime&orderType=desc","parameters":{"country":"Country code. Only tw is supported now","query":"Query Parameters"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Rental house","maintainers":["Yukaii"],"description":":::tip\n Copy the URL of the 591 filter housing page and remove the front part `https://rent.591.com.tw/?`, you will get the query parameters.\n :::","location":"list.ts"}} />
+
+:::tip
+Copy the URL of the 591 filter housing page and remove the front part `https://rent.591.com.tw/?`, you will get the query parameters.
+:::
+
+## 78 动漫 {#78-dong-man}
+
+### Unknown {#78-dong-man-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 8 视界 {#8-shi-jie}
+
+### Unknown {#8-shi-jie-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 8KCosplay {#8kcosplay}
+
+### Unknown {#8kcosplay-unknown}
+
+<Route data={{"path":"/cat/:cat{.+}?","radar":{"source":["8kcosplay.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"8kcosplay.com/","location":"cat.ts"}} />
+
+## 9To5 {#9to5}
+
+### Unknown {#9to5-unknown}
+
+<Route data={{"path":"/:subsite/:tag?","name":"Unknown","maintainers":[],"location":"subsite.ts"}} />
+
+## A List Apart {#a-list-apart}
+
+### Unknown {#a-list-apart-unknown}
+
+<Route data={{"path":"/","radar":{"source":["alistapart.com/articles/"],"target":""},"name":"Unknown","maintainers":["Rjnishant530"],"url":"alistapart.com/articles/","location":"index.ts"}} />
+
+## A 姐分享 {#a-jie-fen-xiang}
+
+### Unknown {#a-jie-fen-xiang-unknown}
+
+<Route data={{"path":"/","radar":{"source":["ahhhhfs.com/"],"target":""},"name":"Unknown","maintainers":["zhenhappy"],"url":"ahhhhfs.com/","location":"index.ts"}} />
+
+### Unknown {#a-jie-fen-xiang-unknown}
+
+<Route data={{"path":"/nsfw","radar":{"source":["ahhhhfs.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"ahhhhfs.com/","location":"nsfw.ts"}} />
+
+## A9VG 电玩部落 {#a9vg-dian-wan-bu-luo}
+
+### Unknown {#a9vg-dian-wan-bu-luo-unknown}
+
+<Route data={{"path":"/","radar":{"source":["a9vg.com/list/news","a9vg.com/"],"target":""},"name":"Unknown","maintainers":["monnerHenster"],"url":"a9vg.com/list/news","location":"a9vg.ts"}} />
+
+## ABC News {#abc-news}
+
+### Unknown {#abc-news-unknown}
+
+<Route data={{"path":"/:category{.+}?","radar":{"source":["abc.net.au/:category*"],"target":"/:category"},"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## AcFun {#acfun}
+
+### Unknown {#acfun-unknown}
+
+<Route data={{"path":"/user/video/:uid","radar":{"source":["www.acfun.cn/u/:id"],"target":"/user/video/:id"},"name":"Unknown","maintainers":["wdssmq"],"location":"video.ts"}} />
+
+## AI 财经社 {#ai-cai-jing-she}
+
+### Unknown {#ai-cai-jing-she-unknown}
+
+<Route data={{"path":"/:category?/:id?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Aljazeera 半岛电视台 {#aljazeera-ban-dao-dian-shi-tai}
+
+### Unknown {#aljazeera-ban-dao-dian-shi-tai-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Amazon {#amazon}
+
+### Unknown {#amazon-unknown}
+
+<Route data={{"path":"/awsblogs/:locale?","name":"Unknown","maintainers":["HankChow"],"location":"awsblogs.ts"}} />
+
+## Apple {#apple}
+
+### Exchange and Repair Extension Programs {#apple-exchange-and-repair-extension-programs}
+
+<Route data={{"path":"/exchange_repair/:country?","categories":["other"],"example":"/apple/exchange_repair","parameters":{"country":"country code in apple.com URL (exception: for `United States` please use `us`), default to China `cn`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["support.apple.com/:country/service-programs"],"target":"/exchange_repair/:country"},"name":"Exchange and Repair Extension Programs","maintainers":["metowolf","HenryQW","kt286"],"location":"exchange-repair.ts"}} />
+
+## Aqara {#aqara}
+
+### Unknown {#aqara-unknown}
+
+<Route data={{"path":"/cn/news","name":"Unknown","maintainers":[],"location":"news.ts"}} />
+
+### Unknown {#aqara-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"post.ts"}} />
+
+### Unknown {#aqara-unknown}
+
+<Route data={{"path":"/:region/:type?","name":"Unknown","maintainers":[],"location":"region.ts"}} />
+
+### 社区 {#aqara-she-qu}
+
+<Route data={{"path":"/community/:id?/:keyword?","categories":["other"],"example":"/aqara/community","parameters":{"id":"分类 id,可在对应分类页 URL 中找到,默认为全部","keyword":"关键字,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"社区","maintainers":["nczitzk"],"location":"community.ts"}} />
+
+## Asian to lick {#asian-to-lick}
+
+### Unknown {#asian-to-lick-unknown}
+
+<Route data={{"path":"/:category{.+}?","radar":{"source":["asiantolick.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"asiantolick.com/","location":"index.ts"}} />
+
+## Bad.news {#bad-news}
+
+### Unknown {#bad-news-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## BBC {#bbc}
+
+### Unknown {#bbc-unknown}
+
+<Route data={{"path":"/:site?/:channel?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Bilibili {#bilibili}
+
+### Unknown {#bilibili-unknown}
+
+<Route data={{"path":["/bangumi/:seasonid","/bangumi/media/:mediaid"],"name":"Unknown","maintainers":["DIYgod"],"location":"bangumi.ts"}} />
+
+### Unknown {#bilibili-unknown}
+
+<Route data={{"path":["/bangumi/:seasonid","/bangumi/media/:mediaid"],"name":"Unknown","maintainers":["DIYgod"],"location":"bangumi.ts"}} />
+
+### Unknown {#bilibili-unknown}
+
+<Route data={{"path":"/ranking/:rid?/:day?/:arc_type?/:disableEmbed?","name":"Unknown","maintainers":["DIYgod"],"location":"ranking.ts"}} />
+
+### Unknown {#bilibili-unknown}
+
+<Route data={{"path":"/user/video-all/:uid/:disableEmbed?","name":"Unknown","maintainers":[],"location":"video-all.ts"}} />
+
+## Bing {#bing}
+
+### Unknown {#bing-unknown}
+
+<Route data={{"path":"/","radar":{"source":["cn.bing.com/"],"target":""},"name":"Unknown","maintainers":["FHYunCai"],"url":"cn.bing.com/","location":"daily-wallpaper.ts"}} />
+
+### 搜索 {#bing-sou-suo}
+
+<Route data={{"path":"/search/:keyword","categories":["other"],"example":"/bing/search/rss","parameters":{"keyword":"搜索关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cn.bing.com/"],"target":""},"name":"搜索","maintainers":["CaoMeiYouRen"],"url":"cn.bing.com/","location":"search.ts"}} />
+
+## biodiscover.com 生物探索 {#biodiscover-com-sheng-wu-tan-suo}
+
+### Unknown {#biodiscover-com-sheng-wu-tan-suo-unknown}
+
+<Route data={{"path":"/:channel?","radar":{"source":["www.biodiscover.com/:channel"],"target":"/:channel"},"name":"Unknown","maintainers":["aidistan"],"location":"index.ts"}} />
+
+## Bloomberg {#bloomberg}
+
+### Unknown {#bloomberg-unknown}
+
+<Route data={{"path":["/:site","/"],"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+### Unknown {#bloomberg-unknown}
+
+<Route data={{"path":["/:site","/"],"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## ClickMe {#clickme}
+
+### 文章 {#clickme-wen-zhang}
+
+<Route data={{"path":"/:site/:grouping/:name","categories":["other"],"example":"/clickme/default/category/beauty","parameters":{"site":"站点,`default`为普通站,`r18`为成人站,其它值默认为普通站","grouping":"分组方式,`category`为分类,`tag`为标签,其他值默认为分类","name":"分类名或标签名,分类名为英文,可以在分类 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["hoilc"],"location":"index.ts"}} />
+
+## cnBeta.COM {#cnbeta-com}
+
+### Unknown {#cnbeta-com-unknown}
+
+<Route data={{"path":["/:type/:id","/"],"radar":{"source":["cnbeta.com.tw/"],"target":""},"name":"Unknown","maintainers":[],"url":"cnbeta.com.tw/","location":"type.ts"}} />
+
+### Unknown {#cnbeta-com-unknown}
+
+<Route data={{"path":["/:type/:id","/"],"radar":{"source":["cnbeta.com.tw/"],"target":""},"name":"Unknown","maintainers":[],"url":"cnbeta.com.tw/","location":"type.ts"}} />
+
+## CNCF {#cncf}
+
+### Unknown {#cncf-unknown}
+
+<Route data={{"path":"/reports","radar":{"source":["cncf.io/reports"]},"name":"Unknown","maintainers":[],"url":"cncf.io/reports","location":"reports.ts"}} />
+
+## Cool Papers {#cool-papers}
+
+### Unknown {#cool-papers-unknown}
+
+<Route data={{"path":"/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Corona Virus Disease 2019 {#corona-virus-disease-2019}
+
+### South China Morning Post - China coronavirus outbreak {#corona-virus-disease-2019-south-china-morning-post-china-coronavirus-outbreak}
+
+<Route data={{"path":"/coronavirus","categories":["other"],"example":"/scmp/coronavirus","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"South China Morning Post - China coronavirus outbreak","maintainers":["DIYgod"],"location":"coronavirus.ts"}} />
+
+## CuriousCat {#curiouscat}
+
+### Unknown {#curiouscat-unknown}
+
+<Route data={{"path":"/user/:id","radar":{"source":["curiouscat.live/:id"]},"name":"Unknown","maintainers":["lucasew"],"location":"user.ts"}} />
+
+## Daily.dev {#daily-dev}
+
+### Unknown {#daily-dev-unknown}
+
+<Route data={{"path":"/","radar":{"source":["daily.dev/popular"],"target":""},"name":"Unknown","maintainers":["Rjnishant530"],"url":"daily.dev/popular","location":"index.ts"}} />
+
+## Darwin Awards {#darwin-awards}
+
+### Unknown {#darwin-awards-unknown}
+
+<Route data={{"path":["/all","/"],"radar":{"source":["darwinawards.com/darwin","darwinawards.com/"],"target":""},"name":"Unknown","maintainers":["zoenglinghou","nczitzk"],"url":"darwinawards.com/darwin","location":"index.ts"}} />
+
+### Unknown {#darwin-awards-unknown}
+
+<Route data={{"path":["/all","/"],"radar":{"source":["darwinawards.com/darwin","darwinawards.com/"],"target":""},"name":"Unknown","maintainers":["zoenglinghou","nczitzk"],"url":"darwinawards.com/darwin","location":"index.ts"}} />
+
+## Deadline {#deadline}
+
+### Unknown {#deadline-unknown}
+
+<Route data={{"path":"/","radar":{"source":["deadline.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"deadline.com/","location":"posts.ts"}} />
+
+## Discuz {#discuz}
+
+### Unknown {#discuz-unknown}
+
+<Route data={{"path":["/:ver{[7x]}/:cid{[0-9]{2}}/:link{.+}","/:ver{[7x]}/:link{.+}","/:link{.+}"],"name":"Unknown","maintainers":[],"location":"discuz.ts"}} />
+
+### Unknown {#discuz-unknown}
+
+<Route data={{"path":["/:ver{[7x]}/:cid{[0-9]{2}}/:link{.+}","/:ver{[7x]}/:link{.+}","/:link{.+}"],"name":"Unknown","maintainers":[],"location":"discuz.ts"}} />
+
+### Unknown {#discuz-unknown}
+
+<Route data={{"path":["/:ver{[7x]}/:cid{[0-9]{2}}/:link{.+}","/:ver{[7x]}/:link{.+}","/:link{.+}"],"name":"Unknown","maintainers":[],"location":"discuz.ts"}} />
+
+## Distill {#distill}
+
+### Unknown {#distill-unknown}
+
+<Route data={{"path":"/","radar":{"source":["distill.pub/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"distill.pub/","location":"index.ts"}} />
+
+## DL NEWS {#dl-news}
+
+### Unknown {#dl-news-unknown}
+
+<Route data={{"path":"/:category?","radar":{"source":["dlnews.com/articles/:category"],"target":"/:category"},"name":"Unknown","maintainers":["Rjnishant530"],"url":"dlnews.com/articles/","location":"category.ts"}} />
+
+## DLsite {#dlsite}
+
+### Unknown {#dlsite-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## E-Hentai {#e-hentai}
+
+### Unknown {#e-hentai-unknown}
+
+<Route data={{"path":"/:what?/:id?/:needTorrents?/:needImages?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## ELSEVIER {#elsevier}
+
+### Unknown {#elsevier-unknown}
+
+<Route data={{"path":["/:journal/vol/:issue","/:journal/:issue"],"radar":{"source":["www.sciencedirect.com/journal/:journal/*"],"target":"/:journal"},"name":"Unknown","maintainers":[],"location":"issue.ts"}} />
+
+### Unknown {#elsevier-unknown}
+
+<Route data={{"path":["/:journal/vol/:issue","/:journal/:issue"],"radar":{"source":["www.sciencedirect.com/journal/:journal/*"],"target":"/:journal"},"name":"Unknown","maintainers":[],"location":"issue.ts"}} />
+
+### Unknown {#elsevier-unknown}
+
+<Route data={{"path":["/:journal/latest","/:journal"],"radar":{"source":["www.sciencedirect.com/journal/:journal/*"],"target":"/:journal"},"name":"Unknown","maintainers":[],"location":"journal.ts"}} />
+
+### Unknown {#elsevier-unknown}
+
+<Route data={{"path":["/:journal/latest","/:journal"],"radar":{"source":["www.sciencedirect.com/journal/:journal/*"],"target":"/:journal"},"name":"Unknown","maintainers":[],"location":"journal.ts"}} />
+
+## Email {#email}
+
+### Unknown {#email-unknown}
+
+<Route data={{"path":"/imap/:email/:folder{.+}?","name":"Unknown","maintainers":[],"location":"imap.ts"}} />
+
+## fish shell {#fish-shell}
+
+### Unknown {#fish-shell-unknown}
+
+<Route data={{"path":"/","radar":{"source":["fishshell.com/"],"target":""},"name":"Unknown","maintainers":["x2cf"],"url":"fishshell.com/","location":"index.ts"}} />
+
+## Fisher Spb {#fisher-spb}
+
+### News {#fisher-spb-news}
+
+<Route data={{"path":"/news","categories":["other"],"example":"/fisher-spb/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fisher.spb.ru/news"]},"name":"News","maintainers":["denis-ya"],"url":"fisher.spb.ru/news","location":"news.ts"}} />
+
+## Foresight News {#foresight-news}
+
+### Unknown {#foresight-news-unknown}
+
+<Route data={{"path":"/","radar":{"source":["foresightnews.pro/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"foresightnews.pro/","location":"index.ts"}} />
+
+## Free Computer Books {#free-computer-books}
+
+### Unknown {#free-computer-books-unknown}
+
+<Route data={{"path":"/:category?","radar":{"source":["freecomputerbooks.com/","freecomputerbooks.com/index.html"],"target":""},"name":"Unknown","maintainers":[],"url":"freecomputerbooks.com/","location":"index.ts"}} />
+
+## Futubull 富途牛牛 {#futubull-fu-tu-niu-niu}
+
+### Unknown {#futubull-fu-tu-niu-niu-unknown}
+
+<Route data={{"path":["/highlights","/main","/"],"name":"Unknown","maintainers":[],"url":"news.futunn.com/main","location":"main.ts"}} />
+
+### Unknown {#futubull-fu-tu-niu-niu-unknown}
+
+<Route data={{"path":["/highlights","/main","/"],"name":"Unknown","maintainers":[],"url":"news.futunn.com/main","location":"main.ts"}} />
+
+### Unknown {#futubull-fu-tu-niu-niu-unknown}
+
+<Route data={{"path":["/highlights","/main","/"],"name":"Unknown","maintainers":[],"url":"news.futunn.com/main","location":"main.ts"}} />
+
+## GameApps.hk 香港手机游戏网 {#gameapps-hk-xiang-gang-shou-ji-you-xi-wang}
+
+### Unknown {#gameapps-hk-xiang-gang-shou-ji-you-xi-wang-unknown}
+
+<Route data={{"path":"/","radar":{"source":["gameapps.hk/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"gameapps.hk/","location":"index.ts"}} />
+
+## GitHub {#github}
+
+:::tip
+GitHub provides some official RSS feeds:
+
+- Repo releases: `https://github.com/:owner/:repo/releases.atom`
+- Repo commits: `https://github.com/:owner/:repo/commits.atom`
+- User activities: `https://github.com/:user.atom`
+- Private feed: `https://github.com/:user.private.atom?token=:secret` (You can find **Subscribe to your news feed** in [dashboard](https://github.com) page after login)
+- Wiki history: `https://github.com/:owner/:repo/wiki.atom`
+:::
+
+### Unknown {#github-unknown}
+
+<Route data={{"path":["/comments/:user/:repo/:type/:number","/comments/:user/:repo/:number?"],"radar":{"source":["github.com/:user/:repo/:type"],"target":"/comments/:user/:repo"},"name":"Unknown","maintainers":[],"location":"comments.ts"}} />
+
+### Unknown {#github-unknown}
+
+<Route data={{"path":["/comments/:user/:repo/:type/:number","/comments/:user/:repo/:number?"],"radar":{"source":["github.com/:user/:repo/:type"],"target":"/comments/:user/:repo"},"name":"Unknown","maintainers":[],"location":"comments.ts"}} />
+
+### Unknown {#github-unknown}
+
+<Route data={{"path":"/file/:user/:repo/:branch/:filepath{.+}","radar":{"source":["github.com/:user/:repo/blob/:branch/*filepath"],"target":"/file/:user/:repo/:branch/:filepath"},"name":"Unknown","maintainers":[],"location":"file.ts"}} />
+
+## GoCN {#gocn}
+
+### Unknown {#gocn-unknown}
+
+<Route data={{"path":["/","/news"],"name":"Unknown","maintainers":["AtlanCI","CcccFz"],"url":"gocn.vip/","location":"news.ts"}} />
+
+### Unknown {#gocn-unknown}
+
+<Route data={{"path":["/","/news"],"name":"Unknown","maintainers":["AtlanCI","CcccFz"],"url":"gocn.vip/","location":"news.ts"}} />
+
+## Google {#google}
+
+### Alerts {#google-alerts}
+
+<Route data={{"path":"/alerts/:keyword","categories":["other"],"example":"/google/alerts/RSSHub","parameters":{"keyword":"Keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Alerts","maintainers":["TonyRL"],"location":"alerts.ts"}} />
+
+### Search {#google-search}
+
+<Route data={{"path":"/search/:keyword/:language?","categories":["other"],"example":"/google/search/rss/zh-CN,zh","parameters":{"keyword":"Keyword","language":"Accept-Language. Example: zh-CN,zh;q=0.9,en;q=0.8,ja;q=0.7"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["CaoMeiYouRen"],"location":"search.ts"}} />
+
+## Grist {#grist}
+
+### Unknown {#grist-unknown}
+
+<Route data={{"path":"/","radar":{"source":["grist.org/articles/"]},"name":"Unknown","maintainers":["Rjnishant530"],"url":"grist.org/articles/","location":"index.ts"}} />
+
+## Grub Street {#grub-street}
+
+### Unknown {#grub-street-unknown}
+
+<Route data={{"path":"/","radar":{"source":["grubstreet.com/"],"target":""},"name":"Unknown","maintainers":["loganrockmore"],"url":"grubstreet.com/","location":"index.ts"}} />
+
+## HACKER TALK 黑客说 {#hacker-talk-hei-ke-shuo}
+
+### Unknown {#hacker-talk-hei-ke-shuo-unknown}
+
+<Route data={{"path":"/","radar":{"source":["hackertalk.net/"],"target":""},"name":"Unknown","maintainers":["hyoban"],"url":"hackertalk.net/","location":"index.ts"}} />
+
+## HackYourNews {#hackyournews}
+
+### Unknown {#hackyournews-unknown}
+
+<Route data={{"path":"/","radar":{"source":["hackyournews.com/"],"target":""},"name":"Unknown","maintainers":["ftiasch"],"url":"hackyournews.com/","location":"index.ts"}} />
+
+## HelloGitHub {#hellogithub}
+
+### Unknown {#hellogithub-unknown}
+
+<Route data={{"path":["/ranking/:type?","/report/:type?"],"name":"Unknown","maintainers":["moke8","nczitzk"],"description":"| 编程语言 | 服务器 | 数据库 |\n | -------- | -------- | ---------- |\n | tiobe | netcraft | db-engines |","location":"report.ts"}} />
+
+| 编程语言 | 服务器 | 数据库 |
+| -------- | -------- | ---------- |
+| tiobe | netcraft | db-engines |
+
+### Unknown {#hellogithub-unknown}
+
+<Route data={{"path":["/ranking/:type?","/report/:type?"],"name":"Unknown","maintainers":["moke8","nczitzk"],"description":"| 编程语言 | 服务器 | 数据库 |\n | -------- | -------- | ---------- |\n | tiobe | netcraft | db-engines |","location":"report.ts"}} />
+
+| 编程语言 | 服务器 | 数据库 |
+| -------- | -------- | ---------- |
+| tiobe | netcraft | db-engines |
+
+### Unknown {#hellogithub-unknown}
+
+<Route data={{"path":["/month","/volume"],"name":"Unknown","maintainers":["moke8","nczitzk"],"location":"volume.ts"}} />
+
+### Unknown {#hellogithub-unknown}
+
+<Route data={{"path":["/month","/volume"],"name":"Unknown","maintainers":["moke8","nczitzk"],"location":"volume.ts"}} />
+
+## HiFeng'Blog {#hifeng-blog}
+
+### Unknown {#hifeng-blog-unknown}
+
+<Route data={{"path":"/","radar":{"source":["hicairo.com/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"hicairo.com/","location":"rss.ts"}} />
+
+## HKJunkCall 資訊中心 {#hkjunkcall-zi-xun-zhong-xin}
+
+### Unknown {#hkjunkcall-zi-xun-zhong-xin-unknown}
+
+<Route data={{"path":"/","radar":{"source":["hkjunkcall.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"hkjunkcall.com/","location":"index.ts"}} />
+
+## Hong Kong Department of Health 香港卫生署 {#hong-kong-department-of-health-xiang-gang-wei-sheng-shu}
+
+### Unknown {#hong-kong-department-of-health-xiang-gang-wei-sheng-shu-unknown}
+
+<Route data={{"path":"/chp/:category?/:language?","radar":{"source":["dh.gov.hk/"]},"name":"Unknown","maintainers":["nczitzk"],"url":"dh.gov.hk/","location":"chp.ts"}} />
+
+## Howtoforge Linux Tutorials {#howtoforge-linux-tutorials}
+
+### Unknown {#howtoforge-linux-tutorials-unknown}
+
+<Route data={{"path":"/","radar":{"source":["howtoforge.com/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"howtoforge.com/","location":"rss.ts"}} />
+
+## iDaily {#idaily}
+
+### Unknown {#idaily-unknown}
+
+<Route data={{"path":["/today/:language?","/:language?"],"name":"Unknown","maintainers":[],"description":"| 简体中文 | 繁体中文 |\n | -------- | -------- |\n | zh-hans | zh-hant |","location":"index.ts"}} />
+
+| 简体中文 | 繁体中文 |
+| -------- | -------- |
+| zh-hans | zh-hant |
+
+### Unknown {#idaily-unknown}
+
+<Route data={{"path":["/today/:language?","/:language?"],"name":"Unknown","maintainers":[],"description":"| 简体中文 | 繁体中文 |\n | -------- | -------- |\n | zh-hans | zh-hant |","location":"index.ts"}} />
+
+| 简体中文 | 繁体中文 |
+| -------- | -------- |
+| zh-hans | zh-hant |
+
+## IEEE Xplore {#ieee-xplore}
+
+### Unknown {#ieee-xplore-unknown}
+
+<Route data={{"path":["/:journal/latest/vol/:sortType?","/journal/:journal/:sortType?"],"name":"Unknown","maintainers":[],"location":"journal.ts"}} />
+
+### Unknown {#ieee-xplore-unknown}
+
+<Route data={{"path":["/:journal/latest/vol/:sortType?","/journal/:journal/:sortType?"],"name":"Unknown","maintainers":[],"location":"journal.ts"}} />
+
+### Unknown {#ieee-xplore-unknown}
+
+<Route data={{"path":["/:journal/latest/date/:sortType?","/journal/:journal/recent/:sortType?"],"name":"Unknown","maintainers":[],"location":"recent.ts"}} />
+
+### Unknown {#ieee-xplore-unknown}
+
+<Route data={{"path":["/:journal/latest/date/:sortType?","/journal/:journal/recent/:sortType?"],"name":"Unknown","maintainers":[],"location":"recent.ts"}} />
+
+## IELTS 雅思 {#ielts-ya-si}
+
+### Unknown {#ielts-ya-si-unknown}
+
+<Route data={{"path":"/","radar":{"source":["ielts.neea.cn/allnews"],"target":""},"name":"Unknown","maintainers":["zenxds"],"url":"ielts.neea.cn/allnews","location":"index.ts"}} />
+
+## indienova 独立游戏 {#indienova-du-li-you-xi}
+
+### Unknown {#indienova-du-li-you-xi-unknown}
+
+<Route data={{"path":"/gamedb/recent","name":"Unknown","maintainers":["TonyRL"],"location":"gamedb.ts"}} />
+
+## Inoreader {#inoreader}
+
+### Unknown {#inoreader-unknown}
+
+<Route data={{"path":"/html_clip/:user/:tag","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Instagram {#instagram}
+
+:::tip
+It's highly recommended to deploy with Redis cache enabled.
+:::
+
+### Unknown {#instagram-unknown}
+
+<Route data={{"path":"/user/:id","radar":{"source":["picnob.com/profile/:id/*"]},"name":"Unknown","maintainers":["TonyRL","micheal-death"],"location":"user.ts"}} />
+
+## Instructables {#instructables}
+
+### Projects {#instructables-projects}
+
+<Route data={{"path":"/projects/:category?","categories":["other"],"example":"/instructables/projects/circuits","parameters":{"category":"Category, empty by default, can be found in URL or see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["instructables.com/projects"],"target":"/projects"},"name":"Projects","maintainers":["wolfg1969"],"url":"instructables.com/projects","description":"| All | Circuits | Workshop | Craft | Cooking | Living | Outside | Teachers |\n | --- | -------- | -------- | ----- | ------- | ------ | ------- | -------- |\n | | circuits | workshop | craft | cooking | living | outside | teachers |","location":"projects.ts"}} />
+
+| All | Circuits | Workshop | Craft | Cooking | Living | Outside | Teachers |
+| --- | -------- | -------- | ----- | ------- | ------ | ------- | -------- |
+| | circuits | workshop | craft | cooking | living | outside | teachers |
+
+## itch.io {#itch-io}
+
+### Unknown {#itch-io-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## iwara {#iwara}
+
+### Unknown {#iwara-unknown}
+
+<Route data={{"path":"/users/:username?/:type?","name":"Unknown","maintainers":["Fatpandac"],"location":"index.ts"}} />
+
+## Japanpost 日本郵便 {#japanpost-ri-ben-you-bian}
+
+### Track & Trace Service 郵便追跡サービス {#japanpost-ri-ben-you-bian-track-trace-service-you-bian-zhui-ji-%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9}
+
+<Route data={{"path":"/track/:reqCode/:locale?","categories":["other"],"example":"/japanpost/track/EJ123456789JP/en","parameters":{"reqCode":"Package Number","locale":"Language, default to japanese `ja`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Track & Trace Service 郵便追跡サービス","maintainers":["tuzi3040"],"description":"| Japanese | English |\n | -------- | ------- |\n | ja | en |","location":"track.ts"}} />
+
+| Japanese | English |
+| -------- | ------- |
+| ja | en |
+
+## JavBus {#javbus}
+
+:::warning
+Requests from non-Asia areas will be redirected to login page.
+:::
+
+:::tip[Language]
+You can change the language of each route to the languages listed below.
+
+| English | 日本语 | 한국의 | 中文 |
+| ------- | ------ | ------ | ---------------- |
+| en | ja | ko | (leave it empty) |
+:::
+
+:::tip
+JavBus has multiple backup domains, these routes use default domain `https://javbus.com`. If the domain is unreachable, you can add `?domain=<domain>` to the end of the route to specify the domain to visit. Let say you want to use the backup domain `https://javsee.icu`, you can add `?domain=javsee.icu` to the end of the route, then the route will be [`/javbus/en?domain=javsee.icu`](https://rsshub.app/javbus?domain=javsee.icu)
+
+**Note**: **Western** has different domain than the main site, the backup domains are also different. The default domain is `https://javbus.org` and you can add `?western_domain=<domain>` to the end of the route to specify the domain to visit. Let say you want to use the backup domain `https://javsee.one`, you can add `?western_domain=javsee.one` to the end of the route, then the route will be [`/javbus/western/en?western_domain=javsee.one`](https://rsshub.app/javbus/western?western_domain=javsee.one)
+:::
+
+### Unknown {#javbus-unknown}
+
+<Route data={{"path":"*","radar":{"source":["www.seejav.pw/"],"target":""},"name":"Unknown","maintainers":[],"url":"www.seejav.pw/","location":"index.ts"}} />
+
+## JavDB {#javdb}
+
+:::tip
+JavDB 有多个备用域名,本路由默认使用永久域名 `https://javdb.com` ,若该域名无法访问,可以通过在路由最后加上 `?domain=<域名>` 指定路由访问的域名。如指定备用域名为 `https://javdb36.com`,则在所有 JavDB 路由最后加上 `?domain=javdb36.com` 即可,此时路由为 [`/javdb?domain=javdb36.com`](https://rsshub.app/javdb?domain=javdb36.com)
+
+如果加入了 **分類** 参数,直接在分類参数后加入 `?domain=<域名>` 即可。如指定分類 URL 为 `https://javdb.com/tags?c2=5&c10=1` 并指定备用域名为 `https://javdb36.com`,即在 `/javdb/tags/c2=5&c10=1` 最后加上 `?domain=javdb36.com`,此时路由为 [`/javdb/tags/c2=5&c10=1?domain=javdb36.com`](https://rsshub.app/javdb/tags/c2=5\&c10=1?domain=javdb36.com)
+
+**排行榜**、**搜索**、**演員**、**片商** 参数同适用于 **分類** 参数的上述规则
+:::
+
+:::tip
+你可以通过指定 `limit` 参数来获取特定数量的条目,即可以通过在路由后方加上 `?limit=25`,默认为单次获取 20 个条目,即默认 `?limit=20`
+
+因为该站有反爬检测,所以不应将此值调整过高
+:::
+
+### Unknown {#javdb-unknown}
+
+<Route data={{"path":["/home/:category?/:sort?/:filter?","/:category?/:sort?/:filter?"],"radar":{"source":["javdb.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"javdb.com/","description":"分类\n\n | 有碼 | 無碼 | 歐美 |\n | -------- | ---------- | ------- |\n | censored | uncensored | western |\n\n 排序\n\n | 发布日期排序 | 磁鏈更新排序 |\n | ------------ | ------------ |\n | 1 | 2 |\n\n 过滤\n\n | 全部 | 可下载 | 含字幕 | 含短評 |\n | ---- | ------ | ------ | ------ |\n | 0 | 1 | 2 | 3 |","location":"index.ts"}} />
+
+分类
+
+| 有碼 | 無碼 | 歐美 |
+| -------- | ---------- | ------- |
+| censored | uncensored | western |
+
+排序
+
+| 发布日期排序 | 磁鏈更新排序 |
+| ------------ | ------------ |
+| 1 | 2 |
+
+过滤
+
+| 全部 | 可下载 | 含字幕 | 含短評 |
+| ---- | ------ | ------ | ------ |
+| 0 | 1 | 2 | 3 |
+
+### Unknown {#javdb-unknown}
+
+<Route data={{"path":["/home/:category?/:sort?/:filter?","/:category?/:sort?/:filter?"],"radar":{"source":["javdb.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"javdb.com/","description":"分类\n\n | 有碼 | 無碼 | 歐美 |\n | -------- | ---------- | ------- |\n | censored | uncensored | western |\n\n 排序\n\n | 发布日期排序 | 磁鏈更新排序 |\n | ------------ | ------------ |\n | 1 | 2 |\n\n 过滤\n\n | 全部 | 可下载 | 含字幕 | 含短評 |\n | ---- | ------ | ------ | ------ |\n | 0 | 1 | 2 | 3 |","location":"index.ts"}} />
+
+分类
+
+| 有碼 | 無碼 | 歐美 |
+| -------- | ---------- | ------- |
+| censored | uncensored | western |
+
+排序
+
+| 发布日期排序 | 磁鏈更新排序 |
+| ------------ | ------------ |
+| 1 | 2 |
+
+过滤
+
+| 全部 | 可下载 | 含字幕 | 含短評 |
+| ---- | ------ | ------ | ------ |
+| 0 | 1 | 2 | 3 |
+
+### Unknown {#javdb-unknown}
+
+<Route data={{"path":"/lists/:id/:filter?/:sort?","radar":{"source":["javdb.com/"],"target":""},"name":"Unknown","maintainers":["dddepg"],"url":"javdb.com/","location":"lists.ts"}} />
+
+## JAVLibrary {#javlibrary}
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/bestrated/:language?/:mode?","/bestrated/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| Last Month | All Time |\n | ---------- | -------- |\n | 1 | 2 |","location":"bestrated.ts"}} />
+
+| Last Month | All Time |
+| ---------- | -------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/bestrated/:language?/:mode?","/bestrated/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| Last Month | All Time |\n | ---------- | -------- |\n | 1 | 2 |","location":"bestrated.ts"}} />
+
+| Last Month | All Time |
+| ---------- | -------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/genre/:genre?/:language?/:mode?","/genre/:genre?/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |\n\n :::tip\n See [Categories](https://www.javlibrary.com/en/genres.php) to view all categories.\n :::","location":"genre.ts"}} />
+
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
+
+:::tip
+See [Categories](https://www.javlibrary.com/en/genres.php) to view all categories.
+:::
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/genre/:genre?/:language?/:mode?","/genre/:genre?/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |\n\n :::tip\n See [Categories](https://www.javlibrary.com/en/genres.php) to view all categories.\n :::","location":"genre.ts"}} />
+
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
+
+:::tip
+See [Categories](https://www.javlibrary.com/en/genres.php) to view all categories.
+:::
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/mostwanted/:language?/:mode?","/mostwanted/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| Last Month | All Time |\n | ---------- | -------- |\n | 1 | 2 |","location":"mostwanted.ts"}} />
+
+| Last Month | All Time |
+| ---------- | -------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/mostwanted/:language?/:mode?","/mostwanted/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| Last Month | All Time |\n | ---------- | -------- |\n | 1 | 2 |","location":"mostwanted.ts"}} />
+
+| Last Month | All Time |
+| ---------- | -------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/newentries/:language?","/newentries/:language?"],"name":"Unknown","maintainers":[],"location":"newentries.ts"}} />
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/newentries/:language?","/newentries/:language?"],"name":"Unknown","maintainers":[],"location":"newentries.ts"}} />
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/newrelease/:language?/:mode?","/newrelease/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |","location":"newrelease.ts"}} />
+
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/newrelease/:language?/:mode?","/newrelease/:language?/:mode?"],"name":"Unknown","maintainers":[],"description":"| videos with comments (by date) | everything (by date) |\n | ------------------------------ | -------------------- |\n | 1 | 2 |","location":"newrelease.ts"}} />
+
+| videos with comments (by date) | everything (by date) |
+| ------------------------------ | -------------------- |
+| 1 | 2 |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/update/:language?","/update/:language?"],"name":"Unknown","maintainers":[],"location":"update.ts"}} />
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/videos/update/:language?","/update/:language?"],"name":"Unknown","maintainers":[],"location":"update.ts"}} />
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/users/:id/:type/:language?","/:type/:id/:language?"],"name":"Unknown","maintainers":[],"description":"| Wanted | Watched | Owned |\n | ---------- | ----------- | --------- |\n | userwanted | userwatched | userowned |","location":"user.ts"}} />
+
+| Wanted | Watched | Owned |
+| ---------- | ----------- | --------- |
+| userwanted | userwatched | userowned |
+
+### Unknown {#javlibrary-unknown}
+
+<Route data={{"path":["/users/:id/:type/:language?","/:type/:id/:language?"],"name":"Unknown","maintainers":[],"description":"| Wanted | Watched | Owned |\n | ---------- | ----------- | --------- |\n | userwanted | userwatched | userowned |","location":"user.ts"}} />
+
+| Wanted | Watched | Owned |
+| ---------- | ----------- | --------- |
+| userwanted | userwatched | userowned |
+
+## Kantar Worldpanel {#kantar-worldpanel}
+
+### Unknown {#kantar-worldpanel-unknown}
+
+<Route data={{"path":"/:region?/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## KeePass {#keepass}
+
+### Unknown {#keepass-unknown}
+
+<Route data={{"path":"/","name":"Unknown","maintainers":["TonyRL"],"location":"news.ts"}} />
+
+## Layoffs.fyi {#layoffs-fyi}
+
+### Unknown {#layoffs-fyi-unknown}
+
+<Route data={{"path":"/","radar":{"source":["layoffs.fyi/"],"target":""},"name":"Unknown","maintainers":["BrandNewLifeJackie26"],"url":"layoffs.fyi/","location":"index.ts"}} />
+
+## LeetCode {#leetcode}
+
+### Unknown {#leetcode-unknown}
+
+<Route data={{"path":"/dailyquestion/cn","radar":{"source":["leetcode.cn/"]},"name":"Unknown","maintainers":[],"url":"leetcode.cn/","location":"dailyquestion-cn.ts"}} />
+
+### Unknown {#leetcode-unknown}
+
+<Route data={{"path":"/dailyquestion/en","radar":{"source":["leetcode.com/"]},"name":"Unknown","maintainers":[],"url":"leetcode.com/","location":"dailyquestion-en.ts"}} />
+
+### Unknown {#leetcode-unknown}
+
+<Route data={{"path":"/dailyquestion/solution/cn","radar":{"source":["leetcode.cn/"]},"name":"Unknown","maintainers":[],"url":"leetcode.cn/","location":"dailyquestion-solution-cn.ts"}} />
+
+### Unknown {#leetcode-unknown}
+
+<Route data={{"path":"/dailyquestion/solution/en","radar":{"source":["leetcode.com/"]},"name":"Unknown","maintainers":[],"url":"leetcode.com/","location":"dailyquestion-solution-en.ts"}} />
+
+## Link Research {#link-research}
+
+### Unknown {#link-research-unknown}
+
+<Route data={{"path":"/:params","name":"Unknown","maintainers":["yech1990"],"location":"index.ts"}} />
+
+## LinkedIn 领英中国 {#linkedin-ling-ying-zhong-guo}
+
+### Jobs {#linkedin-ling-ying-zhong-guo-jobs}
+
+<Route data={{"path":"/jobs/:job_types/:exp_levels/:keywords?","categories":["other"],"example":"/linkedin/jobs/C-P/1/software engineer","parameters":{"job_types":"See the following table for details, use '-' as delimiter","exp_levels":"See the following table for details, use '-' as delimiter","keywords":"keywords"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Jobs","maintainers":[],"description":"#### `job_types` list\n\n | Full Time | Part Time | Contractor | All |\n | --------- | --------- | ---------- | --- |\n | F | P | C | all |\n\n #### `exp_levels` list\n\n | Intership | Entry Level | Associate | Mid-Senior Level | Director | All |\n | --------- | ----------- | --------- | ---------------- | -------- | --- |\n | 1 | 2 | 3 | 4 | 5 | all |\n\n For example:\n\n 1. If we want to search software engineer jobs of all levels and all job types, use `/linkedin/jobs/all/all/software engineer`\n 2. If we want to search all entry level contractor/part time software engineer jobs, use `/linkedin/jobs/P-C/2/software engineer`\n\n **To make it easier, the recommended way is to start a search on [LinkedIn](https://www.linkedin.com/jobs/search) and use [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) to load the specific feed.**","location":"jobs.ts"}} />
+
+#### `job_types` list {#linkedin-ling-ying-zhong-guo-jobs-job-types-list}
+
+| Full Time | Part Time | Contractor | All |
+| --------- | --------- | ---------- | --- |
+| F | P | C | all |
+
+#### `exp_levels` list {#linkedin-ling-ying-zhong-guo-jobs-exp-levels-list}
+
+| Intership | Entry Level | Associate | Mid-Senior Level | Director | All |
+| --------- | ----------- | --------- | ---------------- | -------- | --- |
+| 1 | 2 | 3 | 4 | 5 | all |
+
+For example:
+
+1. If we want to search software engineer jobs of all levels and all job types, use `/linkedin/jobs/all/all/software engineer`
+2. If we want to search all entry level contractor/part time software engineer jobs, use `/linkedin/jobs/P-C/2/software engineer`
+
+**To make it easier, the recommended way is to start a search on [LinkedIn](https://www.linkedin.com/jobs/search) and use [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) to load the specific feed.**
+
+### Jobs {#linkedin-ling-ying-zhong-guo-jobs}
+
+<Route data={{"path":"/cn/jobs/:keywords?","categories":["other"],"example":"/linkedin/cn/jobs/Software","parameters":{"keywords":"搜索关键字"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Jobs","maintainers":["bigfei"],"description":"另外,可以通过添加额外的以下 query 参数来输出满足特定要求的工作职位:\n\n | 参数 | 描述 | 举例 | 默认值 |\n | ---------- | ------------------------------------------------- | ------------------------------------------------------- | ------- |\n | `geo` | geo 编码 | 102890883(中国)、102772228(上海)、103873152(北京) | 空 |\n | `remote` | 是否只显示远程工作 | `true/false` | `false` |\n | `location` | 工作地点 | `china/shanghai/beijing` | 空 |\n | `relevant` | 排序方式 (true: 按相关性排序,false: 按日期排序) | `true/false` | `false` |\n | `period` | 发布时间 | `1/7/30` | 空 |\n\n 例如:\n [`/linkedin/cn/jobs/Software?location=shanghai&period=1`](https://rsshub.app/linkedin/cn/jobs/Software?location=shanghai&period=1): 查找所有在上海的今日发布的所有 Software 工作\n\n **为了方便起见,建议您在 [LinkedIn.cn](https://www.linkedin.cn/incareer/jobs/search) 上进行搜索,并使用 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 加载特定的 feed。**","location":"cn/index.ts"}} />
+
+另外,可以通过添加额外的以下 query 参数来输出满足特定要求的工作职位:
+
+| 参数 | 描述 | 举例 | 默认值 |
+| ---------- | ------------------------------------------------- | ------------------------------------------------------- | ------- |
+| `geo` | geo 编码 | 102890883(中国)、102772228(上海)、103873152(北京) | 空 |
+| `remote` | 是否只显示远程工作 | `true/false` | `false` |
+| `location` | 工作地点 | `china/shanghai/beijing` | 空 |
+| `relevant` | 排序方式 (true: 按相关性排序,false: 按日期排序) | `true/false` | `false` |
+| `period` | 发布时间 | `1/7/30` | 空 |
+
+例如:
+[`/linkedin/cn/jobs/Software?location=shanghai&period=1`](https://rsshub.app/linkedin/cn/jobs/Software?location=shanghai\&period=1): 查找所有在上海的今日发布的所有 Software 工作
+
+**为了方便起见,建议您在 [LinkedIn.cn](https://www.linkedin.cn/incareer/jobs/search) 上进行搜索,并使用 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 加载特定的 feed。**
+
+## Liquipedia {#liquipedia}
+
+### Unknown {#liquipedia-unknown}
+
+<Route data={{"path":"/counterstrike/matches/:team","radar":{"source":["liquipedia.net/counterstrike/:id/Matches","liquipedia.net/dota2/:id"],"target":"/counterstrike/matches/:id"},"name":"Unknown","maintainers":["CookiePieWw"],"location":"cs-matches.ts"}} />
+
+## Literotica {#literotica}
+
+### Unknown {#literotica-unknown}
+
+<Route data={{"path":"/category/:category","radar":{"source":["literotica.com/c/:category","literotica.com/"]},"name":"Unknown","maintainers":["nczitzk"],"location":"category.ts"}} />
+
+## LogoNews 标志情报局 {#logonews-biao-zhi-qing-bao-ju}
+
+### Unknown {#logonews-biao-zhi-qing-bao-ju-unknown}
+
+<Route data={{"path":["/work/tags/:tag","/tag/:tag","*"],"radar":{"source":["logonews.cn/work/tags/:tag"]},"name":"Unknown","maintainers":["nczitzk"],"url":"logonews.cn/work","description":"如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。","location":"index.ts"}} />
+
+如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。
+
+### Unknown {#logonews-biao-zhi-qing-bao-ju-unknown}
+
+<Route data={{"path":["/work/tags/:tag","/tag/:tag","*"],"radar":{"source":["logonews.cn/work/tags/:tag"]},"name":"Unknown","maintainers":["nczitzk"],"url":"logonews.cn/work","description":"如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。","location":"index.ts"}} />
+
+如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。
+
+### Unknown {#logonews-biao-zhi-qing-bao-ju-unknown}
+
+<Route data={{"path":["/work/tags/:tag","/tag/:tag","*"],"radar":{"source":["logonews.cn/work/tags/:tag"]},"name":"Unknown","maintainers":["nczitzk"],"url":"logonews.cn/work","description":"如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。","location":"index.ts"}} />
+
+如 [中国 - 标志情报局](https://www.logonews.cn/tag/china) 的 URL 为 `https://www.logonews.cn/tag/china`,可得路由为 [`/logonews/tag/china`](https://rsshub.app/logonews/tag/china)。
+
+## lovelive-anime {#lovelive-anime}
+
+### Unknown {#lovelive-anime-unknown}
+
+<Route data={{"path":"/schedules/:serie?/:category?","name":"Unknown","maintainers":[],"location":"schedules.ts"}} />
+
+## Mastodon {#mastodon}
+
+:::tip
+Official user RSS:
+
+- RSS: `https://**:instance**/users/**:username**.rss` ([Example](https://pawoo.net/users/pawoo_support.rss))
+- Atom: ~~`https://**:instance**/users/**:username**.atom`~~ (Only for pawoo.net, [example](https://pawoo.net/users/pawoo_support.atom))
+
+These feed do not include boosts (a.k.a. reblogs). RSSHub provides a feed for user timeline based on the Mastodon API, but to use that, you may need to create application on a Mastodon instance, and configure your RSSHub instance. Check the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
+:::
+
+### Unknown {#mastodon-unknown}
+
+<Route data={{"path":"/account_id/:site/:account_id/statuses/:only_media?","name":"Unknown","maintainers":["notofoe"],"location":"account-id.ts"}} />
+
+## Metacritic {#metacritic}
+
+### Unknown {#metacritic-unknown}
+
+<Route data={{"path":"/:type?/:sort?/:filter?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## Ming Pao 明报 {#ming-pao-ming-bao}
+
+### Unknown {#ming-pao-ming-bao-unknown}
+
+<Route data={{"path":"/:type?/:category?","name":"Unknown","maintainers":["TonyRL"],"location":"index.ts"}} />
+
+## Mozilla {#mozilla}
+
+### Firefox Monitor {#mozilla-firefox-monitor}
+
+<Route data={{"path":"/breaches","categories":["other"],"example":"/firefox/breaches","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["monitor.firefox.com/","monitor.firefox.com/breaches"]},"name":"Firefox Monitor","maintainers":["TonyRL"],"url":"monitor.firefox.com/","location":"breaches.ts"}} />
+
+### Unknown {#mozilla-unknown}
+
+<Route data={{"path":"/release/:platform?","name":"Unknown","maintainers":[],"location":"release.ts"}} />
+
+## Nature Journal {#nature-journal}
+
+:::tip
+You can get all short name of a journal from [https://www.nature.com/siteindex](https://www.nature.com/siteindex) or [Journal List](#nature-journal-journal-list).
+:::
+
+### Unknown {#nature-journal-unknown}
+
+<Route data={{"path":"/news-and-comment/:journal?","radar":{"source":["nature.com/latest-news","nature.com/news","nature.com/"],"target":"/news"},"name":"Unknown","maintainers":["y9c","TonyRL"],"url":"nature.com/latest-news","location":"news-and-comment.ts"}} />
+
+## NEEA 中国教育考试网 {#neea-zhong-guo-jiao-yu-kao-shi-wang}
+
+### Unknown {#neea-zhong-guo-jiao-yu-kao-shi-wang-unknown}
+
+<Route data={{"path":"/:type?","name":"Unknown","maintainers":["SunShinenny"],"location":"index.ts"}} />
+
+## Netflav {#netflav}
+
+### Unknown {#netflav-unknown}
+
+<Route data={{"path":"/","radar":{"source":["netflav.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"netflav.com/","location":"index.ts"}} />
+
+## Nintendo {#nintendo}
+
+### Unknown {#nintendo-unknown}
+
+<Route data={{"path":"/eshop/cn","radar":{"source":["nintendoswitch.com.cn/software","nintendoswitch.com.cn/"]},"name":"Unknown","maintainers":[],"url":"nintendoswitch.com.cn/software","location":"eshop-cn.ts"}} />
+
+### Unknown {#nintendo-unknown}
+
+<Route data={{"path":"/eshop/hk","radar":{"source":["nintendo.com.hk/software/switch","nintendo.com.hk/"]},"name":"Unknown","maintainers":[],"url":"nintendo.com.hk/software/switch","location":"eshop-hk.ts"}} />
+
+### Unknown {#nintendo-unknown}
+
+<Route data={{"path":"/eshop/jp","radar":{"source":["nintendo.co.jp/software/switch/index.html","nintendo.co.jp/"]},"name":"Unknown","maintainers":[],"url":"nintendo.co.jp/software/switch/index.html","location":"eshop-jp.ts"}} />
+
+### Unknown {#nintendo-unknown}
+
+<Route data={{"path":"/eshop/us","radar":{"source":["nintendo.com/store/games","nintendo.com/"]},"name":"Unknown","maintainers":[],"url":"nintendo.com/store/games","location":"eshop-us.ts"}} />
+
+## Notion {#notion}
+
+:::warning
+Need to set up Notion integration, please refer to [Route-specific Configurations](https://docs.rsshub.app/install/#Deployment) for details.
+:::
+
+:::tip[Recommendation]
+It is recommended to use with clipping tools such as Notion Web Clipper.
+:::
+
+### Database {#notion-database}
+
+<Route data={{"path":"/database/:databaseId","categories":["other"],"example":"/notion/database/a7cc133b68454f138011f1530a13531e","parameters":{"databaseId":"Database ID"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["notion.so/:id"],"target":"/database/:id"},"name":"Database","maintainers":["curly210102"],"description":"There is an optional query parameter called `properties=` that can be used to customize field mapping. There are three built-in fields: author, pubTime and link, which can be used to add additional information.\n\n For example, if you have set up three properties in your database - \"Publish Time\", \"Author\", and \"Original Article Link\" - then execute the following JavaScript code to get the result for the properties parameter.\n\n ```js\n encodeURIComponent(JSON.stringify({\"pubTime\": \"Publish Time\", \"author\": \"Author\", \"link\": \"Original Article Link\"}))\n ```\n\n There is an optional query parameter called `query=` that can be used to customize the search rules for your database, such as custom sorting and filtering rules.\n\n please refer to the [Notion API documentation](https://developers.notion.com/reference/post-database-query) and execute `encodeURIComponent(JSON.stringify(custom rules))` to provide the query parameter.","location":"database.ts"}} />
+
+There is an optional query parameter called `properties=` that can be used to customize field mapping. There are three built-in fields: author, pubTime and link, which can be used to add additional information.
+
+For example, if you have set up three properties in your database - "Publish Time", "Author", and "Original Article Link" - then execute the following JavaScript code to get the result for the properties parameter.
+
+```js
+encodeURIComponent(JSON.stringify({"pubTime": "Publish Time", "author": "Author", "link": "Original Article Link"}))
+```
+
+There is an optional query parameter called `query=` that can be used to customize the search rules for your database, such as custom sorting and filtering rules.
+
+please refer to the [Notion API documentation](https://developers.notion.com/reference/post-database-query) and execute `encodeURIComponent(JSON.stringify(custom rules))` to provide the query parameter.
+
+## NPM {#npm}
+
+### Unknown {#npm-unknown}
+
+<Route data={{"path":"package/:name{(@[a-z0-9-~][a-z0-9-._~]*/)?[a-z0-9-~][a-z0-9-._~]*}","name":"Unknown","maintainers":[],"location":"package.ts"}} />
+
+## oshwhub 立创开源硬件平台 {#oshwhub-li-chuang-kai-yuan-ying-jian-ping-tai}
+
+### OpenSource Square {#oshwhub-li-chuang-kai-yuan-ying-jian-ping-tai-opensource-square}
+
+<Route data={{"path":"/:sortType?","categories":["other"],"example":"/oshwhub","parameters":{"sortType":"sortType"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"OpenSource Square","maintainers":["tylinux"],"location":"explore.ts"}} />
+
+## Panda {#panda}
+
+### Feeds {#panda-feeds}
+
+<Route data={{"path":"/feeds/:id","categories":["other"],"example":"/usepanda/feeds/5718e53e7a84fb1901e059cc","parameters":{"id":"Feed ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Feeds","maintainers":["lyrl"],"description":"| Channel | feedId |\n | ------- | ------------------------ |\n | Github | 5718e53e7a84fb1901e059cc |","location":"index.ts"}} />
+
+| Channel | feedId |
+| ------- | ------------------------ |
+| Github | 5718e53e7a84fb1901e059cc |
+
+## Pikabu {#pikabu}
+
+### Unknown {#pikabu-unknown}
+
+<Route data={{"path":"/:type/:name","name":"Unknown","maintainers":[],"location":"community.ts"}} />
+
+## Proceedings of The National Academy of Sciences {#proceedings-of-the-national-academy-of-sciences}
+
+### Unknown {#proceedings-of-the-national-academy-of-sciences-unknown}
+
+<Route data={{"path":"/:topicPath{.+}?","radar":{"source":["pnas.org/*topicPath"],"target":"/:topicPath"},"name":"Unknown","maintainers":[],"url":"pnas.org/*topicPath","location":"index.ts"}} />
+
+## Product Hunt {#product-hunt}
+
+> 官方 Feed 地址为: [https://www.producthunt.com/feed](https://www.producthunt.com/feed)
+
+### Today Popular {#product-hunt-today-popular}
+
+<Route data={{"path":"/today","categories":["other"],"example":"/producthunt/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.producthunt.com/"]},"name":"Today Popular","maintainers":["miaoyafeng","Fatpandac"],"url":"www.producthunt.com/","location":"today.ts"}} />
+
+## PubMed {#pubmed}
+
+### Unknown {#pubmed-unknown}
+
+<Route data={{"path":"/trending/:filters?","name":"Unknown","maintainers":["nczitzk"],"location":"trending.ts"}} />
+
+## PwC Strategy& {#pwc-strategy}
+
+### Sustainability {#pwc-strategy-sustainability}
+
+<Route data={{"path":"/strategyand/sustainability","categories":["other"],"example":"/pwc/strategyand/sustainability","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["strategyand.pwc.com/at/en/functions/sustainability-strategy/publications.html","strategyand.pwc.com/"]},"name":"Sustainability","maintainers":["mintyfrankie"],"url":"strategyand.pwc.com/at/en/functions/sustainability-strategy/publications.html","location":"sustainability.ts"}} />
+
+## QooApp {#qooapp}
+
+### Unknown {#qooapp-unknown}
+
+<Route data={{"path":"/notes/:lang?/topic/:topic","name":"Unknown","maintainers":["TonyRL"],"location":"notes/topic.ts"}} />
+
+## Quicker {#quicker}
+
+### Unknown {#quicker-unknown}
+
+<Route data={{"path":["/update","/versions"],"name":"Unknown","maintainers":["Cesaryuan","nczitzk"],"url":"getquicker.net/Help/Versions","location":"versions.ts"}} />
+
+### Unknown {#quicker-unknown}
+
+<Route data={{"path":["/update","/versions"],"name":"Unknown","maintainers":["Cesaryuan","nczitzk"],"url":"getquicker.net/Help/Versions","location":"versions.ts"}} />
+
+## Radio France Internationale 法国国际广播电台 {#radio-france-internationale-fa-guo-guo-ji-guang-bo-dian-tai}
+
+### Unknown {#radio-france-internationale-fa-guo-guo-ji-guang-bo-dian-tai-unknown}
+
+<Route data={{"path":"/:path{.+}?","radar":{"source":["rfi.fr/*path"],"target":"/:path"},"name":"Unknown","maintainers":[],"url":"rfi.fr/*path","location":"news.ts"}} />
+
+## Rare Historical Photos {#rare-historical-photos}
+
+### Unknown {#rare-historical-photos-unknown}
+
+<Route data={{"path":"/","radar":{"source":["rarehistoricalphotos.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"rarehistoricalphotos.com/","location":"index.ts"}} />
+
+## ResearchGate {#researchgate}
+
+### Unknown {#researchgate-unknown}
+
+<Route data={{"path":"/publications/:id","radar":{"source":["researchgate.net/profile/:username"],"target":"/publications/:username"},"name":"Unknown","maintainers":[],"location":"publications.ts"}} />
+
+## Routledge {#routledge}
+
+### Unknown {#routledge-unknown}
+
+<Route data={{"path":"/:bookName/book-series/:bookId","radar":{"source":["routledge.com/:bookName/book-series/:bookId"]},"name":"Unknown","maintainers":["TonyRL"],"location":"book-series.ts"}} />
+
+## RSSHub {#rsshub}
+
+### Transformation - HTML {#rsshub-transformation-html}
+
+<Route data={{"path":"/transform/html/:url/:routeParams","categories":["other"],"example":"/rsshub/transform/html/https%3A%2F%2Fwechat2rss.xlab.app%2Fposts%2Flist%2F/item=div%5Bclass%3D%27post%2Dcontent%27%5D%20p%20a","parameters":{"url":"`encodeURIComponent`ed URL address","routeParams":"Transformation rules, requires URL encode"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Transformation - HTML","maintainers":["ttttmr"],"description":"Pass URL and transformation rules to convert HTML/JSON into RSS.\n\nSpecify options (in the format of query string) in parameter `routeParams` parameter to extract data from HTML.\n\n| Key | Meaning | Accepted Values | Default |\n| ----------------- | -------------------------------------------------------------- | --------------- | ---------------------- |\n| `title` | The title of the RSS | `string` | Extract from `<title>` |\n| `item` | The HTML elements as `item` using CSS selector | `string` | html |\n| `itemTitle` | The HTML elements as `title` in `item` using CSS selector | `string` | `item` element |\n| `itemTitleAttr` | The attributes of `title` element as title | `string` | Element text |\n| `itemLink` | The HTML elements as `link` in `item` using CSS selector | `string` | `item` element |\n| `itemLinkAttr` | The attributes of `link` element as link | `string` | `href` |\n| `itemDesc` | The HTML elements as `descrption` in `item` using CSS selector | `string` | `item` element |\n| `itemDescAttr` | The attributes of `descrption` element as description | `string` | Element html |\n| `itemPubDate` | The HTML elements as `pubDate` in `item` using CSS selector | `string` | `item` element |\n| `itemPubDateAttr` | The attributes of `pubDate` element as pubDate | `string` | Element html |\n\n Parameters parsing in the above example:\n\n | Parameter | Value |\n | ------------- | ----------------------------------------- |\n | `url` | `https://wechat2rss.xlab.app/posts/list/` |\n | `routeParams` | `item=div[class='post-content'] p a` |\n\n Parsing of `routeParams` parameter:\n\n | Parameter | Value |\n | --------- | ------------------------------- |\n | `item` | `div[class='post-content'] p a` |","location":"transform/html.ts"}} />
+
+Pass URL and transformation rules to convert HTML/JSON into RSS.
+
+Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from HTML.
+
+| Key | Meaning | Accepted Values | Default |
+| ----------------- | -------------------------------------------------------------- | --------------- | ---------------------- |
+| `title` | The title of the RSS | `string` | Extract from `<title>` |
+| `item` | The HTML elements as `item` using CSS selector | `string` | html |
+| `itemTitle` | The HTML elements as `title` in `item` using CSS selector | `string` | `item` element |
+| `itemTitleAttr` | The attributes of `title` element as title | `string` | Element text |
+| `itemLink` | The HTML elements as `link` in `item` using CSS selector | `string` | `item` element |
+| `itemLinkAttr` | The attributes of `link` element as link | `string` | `href` |
+| `itemDesc` | The HTML elements as `descrption` in `item` using CSS selector | `string` | `item` element |
+| `itemDescAttr` | The attributes of `descrption` element as description | `string` | Element html |
+| `itemPubDate` | The HTML elements as `pubDate` in `item` using CSS selector | `string` | `item` element |
+| `itemPubDateAttr` | The attributes of `pubDate` element as pubDate | `string` | Element html |
+
+Parameters parsing in the above example:
+
+| Parameter | Value |
+| ------------- | ----------------------------------------- |
+| `url` | `https://wechat2rss.xlab.app/posts/list/` |
+| `routeParams` | `item=div[class='post-content'] p a` |
+
+Parsing of `routeParams` parameter:
+
+| Parameter | Value |
+| --------- | ------------------------------- |
+| `item` | `div[class='post-content'] p a` |
+
+### Transformation - JSON {#rsshub-transformation-json}
+
+<Route data={{"path":"/transform/json/:url/:routeParams","categories":["other"],"example":"/rsshub/transform/json/https%3A%2F%2Fapi.github.com%2Frepos%2Fginuerzh%2Fgost%2Freleases/title=Gost%20releases&itemTitle=tag_name&itemLink=html_url&itemDesc=body","parameters":{"url":"`encodeURIComponent`ed URL address","routeParams":"Transformation rules, requires URL encode"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Transformation - JSON","maintainers":["ttttmr"],"description":"Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from JSON.\n\n| Key | Meaning | Accepted Values | Default |\n| ------------- | ---------------------------------------- | --------------- | ------------------------------------------ |\n| `title` | The title of the RSS | `string` | Extracted from home page of current domain |\n| `item` | The JSON Path as `item` element | `string` | Entire JSON response |\n| `itemTitle` | The JSON Path as `title` in `item` | `string` | None |\n| `itemLink` | The JSON Path as `link` in `item` | `string` | None |\n| `itemDesc` | The JSON Path as `description` in `item` | `string` | None |\n| `itemPubDate` | The JSON Path as `pubDate` in `item` | `string` | None |\n\n:::tip\nJSON Path only supports format like `a.b.c`. if you need to access arrays, like `a[0].b`, you can write it as `a.0.b`.\n:::\n\n Parameters parsing in the above example:\n\n | Parameter | Value |\n | ------------- | ------------------------------------------------------------------------ |\n | `url` | `https://api.github.com/repos/ginuerzh/gost/releases` |\n | `routeParams` | `title=Gost releases&itemTitle=tag_name&itemLink=html_url&itemDesc=body` |\n\n Parsing of `routeParams` parameter:\n\n | Parameter | Value |\n | ----------- | --------------- |\n | `title` | `Gost releases` |\n | `itemTitle` | `tag_name` |\n | `itemLink` | `html_url` |\n | `itemDesc` | `body` |","location":"transform/json.ts"}} />
+
+Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from JSON.
+
+| Key | Meaning | Accepted Values | Default |
+| ------------- | ---------------------------------------- | --------------- | ------------------------------------------ |
+| `title` | The title of the RSS | `string` | Extracted from home page of current domain |
+| `item` | The JSON Path as `item` element | `string` | Entire JSON response |
+| `itemTitle` | The JSON Path as `title` in `item` | `string` | None |
+| `itemLink` | The JSON Path as `link` in `item` | `string` | None |
+| `itemDesc` | The JSON Path as `description` in `item` | `string` | None |
+| `itemPubDate` | The JSON Path as `pubDate` in `item` | `string` | None |
+
+:::tip
+JSON Path only supports format like `a.b.c`. if you need to access arrays, like `a[0].b`, you can write it as `a.0.b`.
+:::
+
+Parameters parsing in the above example:
+
+| Parameter | Value |
+| ------------- | ------------------------------------------------------------------------ |
+| `url` | `https://api.github.com/repos/ginuerzh/gost/releases` |
+| `routeParams` | `title=Gost releases&itemTitle=tag_name&itemLink=html_url&itemDesc=body` |
+
+Parsing of `routeParams` parameter:
+
+| Parameter | Value |
+| ----------- | --------------- |
+| `title` | `Gost releases` |
+| `itemTitle` | `tag_name` |
+| `itemLink` | `html_url` |
+| `itemDesc` | `body` |
+
+### Unknown {#rsshub-unknown}
+
+<Route data={{"path":"/transform/sitemap/:url/:routeParams?","name":"Unknown","maintainers":["flrngel"],"location":"transform/sitemap.ts"}} />
+
+## SecIN 信息安全技术社区 {#secin-xin-xi-an-quan-ji-shu-she-qu}
+
+### Unknown {#secin-xin-xi-an-quan-ji-shu-she-qu-unknown}
+
+<Route data={{"path":"/","name":"Unknown","maintainers":["p7e4"],"location":"index.ts"}} />
+
+## Stratechery by Ben Thompson {#stratechery-by-ben-thompson}
+
+### Unknown {#stratechery-by-ben-thompson-unknown}
+
+<Route data={{"path":"/","name":"Unknown","maintainers":["chazeon"],"location":"index.ts"}} />
+
+## Sub HD {#sub-hd}
+
+### Unknown {#sub-hd-unknown}
+
+<Route data={{"path":"/:type?/:category?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## SupChina {#supchina}
+
+### Unknown {#supchina-unknown}
+
+<Route data={{"path":"/","radar":{"source":["supchina.com/feed","supchina.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"supchina.com/feed","location":"index.ts"}} />
+
+## Surfshark {#surfshark}
+
+### Unknown {#surfshark-unknown}
+
+<Route data={{"path":"/blog/:category{.+}?","name":"Unknown","maintainers":[],"location":"blog.ts"}} />
+
+## TechPowerUp {#techpowerup}
+
+### Unknown {#techpowerup-unknown}
+
+<Route data={{"path":"/","radar":{"source":["techpowerup.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"techpowerup.com/","location":"index.ts"}} />
+
+## The News Lens 關鍵評論 {#the-news-lens-guan-jian-ping-lun}
+
+### Unknown {#the-news-lens-guan-jian-ping-lun-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## The Nikkei 日本経済新聞 {#the-nikkei-ri-ben-jing-ji-xin-wen}
+
+### Unknown {#the-nikkei-ri-ben-jing-ji-xin-wen-unknown}
+
+<Route data={{"path":["/","/index"],"name":"Unknown","maintainers":[],"url":"www.nikkei.com/","location":"index.ts"}} />
+
+### Unknown {#the-nikkei-ri-ben-jing-ji-xin-wen-unknown}
+
+<Route data={{"path":["/","/index"],"name":"Unknown","maintainers":[],"url":"www.nikkei.com/","location":"index.ts"}} />
+
+### Unknown {#the-nikkei-ri-ben-jing-ji-xin-wen-unknown}
+
+<Route data={{"path":"/cn/*","name":"Unknown","maintainers":[],"location":"cn/index.ts"}} />
+
+## TradingView {#tradingview}
+
+### Unknown {#tradingview-unknown}
+
+<Route data={{"path":"/blog/:category{.+}?","name":"Unknown","maintainers":[],"location":"blog.ts"}} />
+
+### Unknown {#tradingview-unknown}
+
+<Route data={{"path":"/pine/:version?","radar":{"source":["tradingview.com/pine-script-docs/en/:version/Release_notes.html"],"target":"/pine/:version"},"name":"Unknown","maintainers":[],"location":"pine.ts"}} />
+
+## Transcript Forest {#transcript-forest}
+
+### Unknown {#transcript-forest-unknown}
+
+<Route data={{"path":"/:channel?","radar":{"source":["www.transcriptforest.com/en/channel"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"www.transcriptforest.com/en/channel","location":"index.ts"}} />
+
+## Tribal Football {#tribal-football}
+
+### Unknown {#tribal-football-unknown}
+
+<Route data={{"path":"/","radar":{"source":["tribalfootball.com/"],"target":""},"name":"Unknown","maintainers":["Rongronggg9"],"url":"tribalfootball.com/","location":"latest.ts"}} />
+
+## TV Tropes {#tv-tropes}
+
+### Featured {#tv-tropes-featured}
+
+<Route data={{"path":"/featured/:category?","categories":["other"],"example":"/tvtropes/featured/today","parameters":{"category":"Category, see below, Today's Featured Trope by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Featured","maintainers":["nczitzk"],"description":"| Today's Featured Trope | Newest Trope |\n | ---------------------- | ------------ |\n | today | newest |","location":"featured.ts"}} />
+
+| Today's Featured Trope | Newest Trope |
+| ---------------------- | ------------ |
+| today | newest |
+
+## U.S. Food and Drug Administration {#u-s-food-and-drug-administration}
+
+### Unknown {#u-s-food-and-drug-administration-unknown}
+
+<Route data={{"path":"/cdrh/:titleOnly?","radar":{"source":["fda.gov/medical-devices/news-events-medical-devices/cdrhnew-news-and-updates","fda.gov/"],"target":"/cdrh/:titleOnly"},"name":"Unknown","maintainers":[],"url":"fda.gov/medical-devices/news-events-medical-devices/cdrhnew-news-and-updates","location":"cdrh.ts"}} />
+
+## ui.dev {#ui-dev}
+
+### Unknown {#ui-dev-unknown}
+
+<Route data={{"path":"/","radar":{"source":["bytes.dev/archives","bytes.dev/"],"target":""},"name":"Unknown","maintainers":["meixger"],"url":"bytes.dev/archives","location":"bytes.ts"}} />
+
+## ui.dev {#ui-dev}
+
+### Unknown {#ui-dev-unknown}
+
+<Route data={{"path":"/","radar":{"source":["bytes.dev/issues","bytes.dev/"],"target":""},"name":"Unknown","maintainers":["meixger"],"url":"bytes.dev/issues","location":"reactnewsletter.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/journal/:id","radar":{"source":["pubs.acs.org/journal/:id","pubs.acs.org/"]},"name":"Unknown","maintainers":["nczitzk"],"location":"journal.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/news/:type?","radar":{"source":["jseea.cn/webfile/news/:type"],"target":"/news/:type"},"name":"Unknown","maintainers":["schen1024"],"location":"news.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/:id/:lang?","radar":{"source":["mangadex.org/title/:id/*","mangadex.org/title/:id"],"target":"/:id"},"name":"Unknown","maintainers":["vzz64"],"location":"index.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/exhibitions/:state?","name":"Unknown","maintainers":[],"location":"exhibitions.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/releases/:brand/:model","radar":{"source":["openwrt.org/toh/:band/:model"],"target":"/releases/:model"},"name":"Unknown","maintainers":[],"location":"releases.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":"/:id","name":"Unknown","maintainers":["DIYgod","NeverBehave"],"location":"index.ts"}} />
+
+## Unknown {#unknown}
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":["/:preview?","/search/:keyword/:preview?"],"radar":{"source":["u9a9.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"u9a9.com/","location":"index.ts"}} />
+
+### Unknown {#unknown-unknown}
+
+<Route data={{"path":["/:preview?","/search/:keyword/:preview?"],"radar":{"source":["u9a9.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"u9a9.com/","location":"index.ts"}} />
+
+## Urban Dictionary {#urban-dictionary}
+
+### Random words {#urban-dictionary-random-words}
+
+<Route data={{"path":"/random","categories":["other"],"example":"/urbandictionary/random","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["urbandictionary.com/random.php","urbandictionary.com/"]},"name":"Random words","maintainers":["TonyRL"],"url":"urbandictionary.com/random.php","location":"random.ts"}} />
+
+## v1tx {#v1tx}
+
+### Unknown {#v1tx-unknown}
+
+<Route data={{"path":"/","radar":{"source":["v1tx.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"v1tx.com/","location":"index.ts"}} />
+
+## V2rayShare {#v2rayshare}
+
+### Unknown {#v2rayshare-unknown}
+
+<Route data={{"path":"/","radar":{"source":["v2rayshare.com/"],"target":""},"name":"Unknown","maintainers":["77taibai"],"url":"v2rayshare.com/","location":"index.ts"}} />
+
+## VCB-Studio {#vcb-studio}
+
+### Unknown {#vcb-studio-unknown}
+
+<Route data={{"path":"/","radar":{"source":["vcb-s.com/"],"target":""},"name":"Unknown","maintainers":["cxfksword"],"url":"vcb-s.com/","location":"index.ts"}} />
+
+## WallpaperHub {#wallpaperhub}
+
+### Unknown {#wallpaperhub-unknown}
+
+<Route data={{"path":"/","radar":{"source":["wallpaperhub.app/wallpaperhub","wallpaperhub.app/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"wallpaperhub.app/wallpaperhub","location":"index.ts"}} />
+
+## Web3Caff {#web3caff}
+
+### Unknown {#web3caff-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## WFDF {#wfdf}
+
+### News {#wfdf-news}
+
+<Route data={{"path":"/news","categories":["other"],"example":"/wfdf/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wfdf.sport/news/","wfdf.sport/"]},"name":"News","maintainers":["HankChow"],"url":"wfdf.sport/news/","location":"news.ts"}} />
+
+## Wise {#wise}
+
+### FX Pair Yesterday {#wise-fx-pair-yesterday}
+
+<Route data={{"path":"/pair/:source/:target","categories":["other"],"example":"/wise/pair/GBP/USD","parameters":{"source":"Base currency abbreviation","target":"Quote currency abbreviation"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"FX Pair Yesterday","maintainers":["HenryQW"],"description":"Refer to [the list of supported currencies](https://wise.com/tools/exchange-rate-alerts/).","location":"pair.ts"}} />
+
+Refer to [the list of supported currencies](https://wise.com/tools/exchange-rate-alerts/).
+
+## World Meteorological Centre Beijing {#world-meteorological-centre-beijing}
+
+### Unknown {#world-meteorological-centre-beijing-unknown}
+
+<Route data={{"path":"/publish/:category{.+}?","name":"Unknown","maintainers":[],"location":"publish.ts"}} />
+
+## Yahoo {#yahoo}
+
+### Unknown {#yahoo-unknown}
+
+<Route data={{"path":"/news/en/:category?","name":"Unknown","maintainers":[],"location":"news/us/index.ts"}} />
+
+## YouTube Live {#youtube-live}
+
+### Unknown {#youtube-live-unknown}
+
+<Route data={{"path":"/c/:username/:embed?","radar":{"source":["www.youtube.com/c/:id"],"target":"/c/:id"},"name":"Unknown","maintainers":[],"location":"custom.ts"}} />
+
+## ZAKER {#zaker}
+
+### Unknown {#zaker-unknown}
+
+<Route data={{"path":"/:type/:id?","radar":{"source":["myzaker.com/:type/:id"],"target":"/:type/:id"},"name":"Unknown","maintainers":["LogicJake","kt286","AlexdanerZe","TonyRL"],"location":"index.ts"}} />
+
+## 艾瑞 {#ai-rui}
+
+### 产业研究报告 {#ai-rui-chan-ye-yan-jiu-bao-gao}
+
+<Route data={{"path":"/report","categories":["other"],"example":"/iresearch/report","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.iresearch.com.cn/report.shtml"]},"name":"产业研究报告","maintainers":["brilon","Fatpandac"],"url":"www.iresearch.com.cn/report.shtml","location":"report.ts"}} />
+
+### 周度市场观察 {#ai-rui-zhou-du-shi-chang-guan-cha}
+
+<Route data={{"path":"/weekly/:category?","categories":["other"],"example":"/iresearch/weekly","parameters":{"category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"周度市场观察","maintainers":["nczitzk"],"description":"| 家电行业 | 服装行业 | 美妆行业 | 食品饮料行业 |\n | -------- | -------- | -------- | ------------ |","location":"weekly.ts"}} />
+
+| 家电行业 | 服装行业 | 美妆行业 | 食品饮料行业 |
+| -------- | -------- | -------- | ------------ |
+
+## 爱 Q 生活网 {#ai-q-sheng-huo-wang}
+
+### 最近更新 {#ai-q-sheng-huo-wang-zui-jin-geng-xin}
+
+<Route data={{"path":"/latest","categories":["other"],"example":"/iqnew/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["iqnew.com/post/new_100/","iqnew.com/"]},"name":"最近更新","maintainers":["nczitzk"],"url":"iqnew.com/post/new_100/","location":"latest.ts"}} />
+
+## 爱思想 {#ai-si-xiang}
+
+### Unknown {#ai-si-xiang-unknown}
+
+<Route data={{"path":["/ranking/:id?/:period?","/toplist/:id?/:period?"],"name":"Unknown","maintainers":["HenryQW","nczitzk"],"description":"| 文章点击排行 | 最近更新文章 | 文章推荐排行 |\n | ------------ | ------------ | ------------ |\n | 1 | 10 | 11 |","location":"toplist.ts"}} />
+
+| 文章点击排行 | 最近更新文章 | 文章推荐排行 |
+| ------------ | ------------ | ------------ |
+| 1 | 10 | 11 |
+
+### Unknown {#ai-si-xiang-unknown}
+
+<Route data={{"path":["/ranking/:id?/:period?","/toplist/:id?/:period?"],"name":"Unknown","maintainers":["HenryQW","nczitzk"],"description":"| 文章点击排行 | 最近更新文章 | 文章推荐排行 |\n | ------------ | ------------ | ------------ |\n | 1 | 10 | 11 |","location":"toplist.ts"}} />
+
+| 文章点击排行 | 最近更新文章 | 文章推荐排行 |
+| ------------ | ------------ | ------------ |
+| 1 | 10 | 11 |
+
+## 百度 {#bai-du}
+
+### 热搜榜单 {#bai-du-re-sou-bang-dan}
+
+<Route data={{"path":"/top/:board?","categories":["other"],"example":"/baidu/top","parameters":{"board":"榜单,默认为 `realtime`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热搜榜单","maintainers":["xyqfer"],"description":"| 热搜榜 | 小说榜 | 电影榜 | 电视剧榜 | 汽车榜 | 游戏榜 |\n | -------- | ------ | ------ | -------- | ------ | ------ |\n | realtime | novel | movie | teleplay | car | game |","location":"top.ts"}} />
+
+| 热搜榜 | 小说榜 | 电影榜 | 电视剧榜 | 汽车榜 | 游戏榜 |
+| -------- | ------ | ------ | -------- | ------ | ------ |
+| realtime | novel | movie | teleplay | car | game |
+
+### 搜索 {#bai-du-sou-suo}
+
+<Route data={{"path":"/search/:keyword","categories":["other"],"example":"/baidu/search/rss","parameters":{"keyword":"搜索关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"搜索","maintainers":["CaoMeiYouRen"],"location":"search.ts"}} />
+
+## 北京大学 {#bei-jing-da-xue}
+
+### Unknown {#bei-jing-da-xue-unknown}
+
+<Route data={{"path":"/eecs/:type?","name":"Unknown","maintainers":["Ir1d"],"location":"eecs.ts"}} />
+
+### Unknown {#bei-jing-da-xue-unknown}
+
+<Route data={{"path":"/ss/notice","radar":{"source":["ss.pku.edu.cn/index.php/newscenter/notice","ss.pku.edu.cn/"]},"name":"Unknown","maintainers":["legr4ndk"],"url":"ss.pku.edu.cn/index.php/newscenter/notice","location":"ss/notice.ts"}} />
+
+## 北京航空航天大学 {#bei-jing-hang-kong-hang-tian-da-xue}
+
+### Unknown {#bei-jing-hang-kong-hang-tian-da-xue-unknown}
+
+<Route data={{"path":"/sme/:path{.+}?","name":"Unknown","maintainers":[],"location":"sme.ts"}} />
+
+## 北京师范大学 {#bei-jing-shi-fan-da-xue}
+
+### Unknown {#bei-jing-shi-fan-da-xue-unknown}
+
+<Route data={{"path":"/fdy/:path{.+}?","name":"Unknown","maintainers":[],"location":"fdy.ts"}} />
+
+### Unknown {#bei-jing-shi-fan-da-xue-unknown}
+
+<Route data={{"path":"/lib/:category?","radar":{"source":["www.lib.bnu.edu.cn/:category/index.htm"],"target":"/lib/:category"},"name":"Unknown","maintainers":["TonyRL"],"location":"lib.ts"}} />
+
+## 北京市科学技术协会 {#bei-jing-shi-ke-xue-ji-shu-xie-hui}
+
+### Unknown {#bei-jing-shi-ke-xue-ji-shu-xie-hui-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 北京智源人工智能研究院 {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan}
+
+### Unknown {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-unknown}
+
+<Route data={{"path":["/hub/:tagId/:sort?/:range?","/hub/:tagId/:sort?","/hub/:sort?"],"name":"Unknown","maintainers":[],"location":"hub.ts"}} />
+
+### Unknown {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-unknown}
+
+<Route data={{"path":["/hub/:tagId/:sort?/:range?","/hub/:tagId/:sort?","/hub/:sort?"],"name":"Unknown","maintainers":[],"location":"hub.ts"}} />
+
+### Unknown {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-unknown}
+
+<Route data={{"path":["/hub/:tagId/:sort?/:range?","/hub/:tagId/:sort?","/hub/:sort?"],"name":"Unknown","maintainers":[],"location":"hub.ts"}} />
+
+## 贝壳研究院 {#bei-ke-yan-jiu-yuan}
+
+### 研究成果 {#bei-ke-yan-jiu-yuan-yan-jiu-cheng-guo}
+
+<Route data={{"path":"/researchResults","categories":["other"],"example":"/ke/researchResults","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.research.ke.com/researchResults"]},"name":"研究成果","maintainers":["shaomingbo"],"url":"www.research.ke.com/researchResults","location":"results.ts"}} />
+
+## 笔趣阁 {#bi-qu-ge}
+
+:::tip
+此处的 **笔趣阁** 指网络上使用和 **笔趣阁** 样式相似模板的小说阅读网站,包括但不限于下方列举的网址。
+:::
+
+| 网址 | 名称 |
+| ---------------------------------------------------- | ---------- |
+| [https://www.xbiquwx.la](https://www.xbiquwx.la) | 笔尖中文 |
+| [http://www.biqu5200.net](http://www.biqu5200.net) | 笔趣阁 |
+| [https://www.xbiquge.so](https://www.xbiquge.so) | 笔趣阁 |
+| [https://www.biqugeu.net](https://www.biqugeu.net) | 顶点小说网 |
+| [http://www.b520.cc](http://www.b520.cc) | 笔趣阁 |
+| [https://www.ahfgb.com](https://www.ahfgb.com) | 笔趣鸽 |
+| [https://www.ibiquge.la](https://www.ibiquge.la) | 香书小说 |
+| [https://www.biquge.tv](https://www.biquge.tv) | 笔趣阁 |
+| [https://www.bswtan.com](https://www.bswtan.com) | 笔书网 |
+| [https://www.biquge.co](https://www.biquge.co) | 笔趣阁 |
+| [https://www.bqzhh.com](https://www.bqzhh.com) | 笔趣阁 |
+| [http://www.biqugse.com](http://www.biqugse.com) | 笔趣阁 |
+| [https://www.ibiquge.info](https://www.ibiquge.info) | 爱笔楼 |
+| [https://www.ishuquge.com](https://www.ishuquge.com) | 书趣阁 |
+| [https://www.mayiwxw.com](https://www.mayiwxw.com) | 蚂蚁文学 |
+
+### Unknown {#bi-qu-ge-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 不良林 {#bu-liang-lin}
+
+### Unknown {#bu-liang-lin-unknown}
+
+<Route data={{"path":"/","radar":{"source":["bulianglin.com/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"bulianglin.com/","location":"bulianglin.ts"}} />
+
+## 成都住建蓉 e 办 {#cheng-du-zhu-jian-rong-e-ban}
+
+### 商品住房购房登记 {#cheng-du-zhu-jian-rong-e-ban-shang-pin-zhu-fang-gou-fang-deng-ji}
+
+<Route data={{"path":"/zw/projectList","categories":["other"],"example":"/cdzjryb/zw/projectList","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zw.cdzjryb.com/lottery/accept/projectList","zw.cdzjryb.com/"]},"name":"商品住房购房登记","maintainers":["TonyRL"],"url":"zw.cdzjryb.com/lottery/accept/projectList","location":"project-list.ts"}} />
+
+## 创业邦 {#chuang-ye-bang}
+
+### Unknown {#chuang-ye-bang-unknown}
+
+<Route data={{"path":["/channel/:id?","/:id?"],"radar":{"source":["cyzone.cn/channel/:id","cyzone.cn/"],"target":"/:id"},"name":"Unknown","maintainers":["nczitzk"],"description":"| 最新 | 快鲤鱼 | 创投 | 科创板 | 汽车 |\n | ---- | ------ | ---- | ------ | ---- |\n | news | 5 | 14 | 13 | 8 |\n\n | 海外 | 消费 | 科技 | 医疗 | 文娱 |\n | ---- | ---- | ---- | ---- | ---- |\n | 10 | 9 | 7 | 27 | 11 |\n\n | 城市 | 政策 | 特写 | 干货 | 科技股 |\n | ---- | ---- | ---- | ---- | ------ |\n | 16 | 15 | 6 | 12 | 33 |","location":"index.ts"}} />
+
+| 最新 | 快鲤鱼 | 创投 | 科创板 | 汽车 |
+| ---- | ------ | ---- | ------ | ---- |
+| news | 5 | 14 | 13 | 8 |
+
+| 海外 | 消费 | 科技 | 医疗 | 文娱 |
+| ---- | ---- | ---- | ---- | ---- |
+| 10 | 9 | 7 | 27 | 11 |
+
+| 城市 | 政策 | 特写 | 干货 | 科技股 |
+| ---- | ---- | ---- | ---- | ------ |
+| 16 | 15 | 6 | 12 | 33 |
+
+### Unknown {#chuang-ye-bang-unknown}
+
+<Route data={{"path":["/channel/:id?","/:id?"],"radar":{"source":["cyzone.cn/channel/:id","cyzone.cn/"],"target":"/:id"},"name":"Unknown","maintainers":["nczitzk"],"description":"| 最新 | 快鲤鱼 | 创投 | 科创板 | 汽车 |\n | ---- | ------ | ---- | ------ | ---- |\n | news | 5 | 14 | 13 | 8 |\n\n | 海外 | 消费 | 科技 | 医疗 | 文娱 |\n | ---- | ---- | ---- | ---- | ---- |\n | 10 | 9 | 7 | 27 | 11 |\n\n | 城市 | 政策 | 特写 | 干货 | 科技股 |\n | ---- | ---- | ---- | ---- | ------ |\n | 16 | 15 | 6 | 12 | 33 |","location":"index.ts"}} />
+
+| 最新 | 快鲤鱼 | 创投 | 科创板 | 汽车 |
+| ---- | ------ | ---- | ------ | ---- |
+| news | 5 | 14 | 13 | 8 |
+
+| 海外 | 消费 | 科技 | 医疗 | 文娱 |
+| ---- | ---- | ---- | ---- | ---- |
+| 10 | 9 | 7 | 27 | 11 |
+
+| 城市 | 政策 | 特写 | 干货 | 科技股 |
+| ---- | ---- | ---- | ---- | ------ |
+| 16 | 15 | 6 | 12 | 33 |
+
+## 大连理工大学 {#da-lian-li-gong-da-xue}
+
+### Unknown {#da-lian-li-gong-da-xue-unknown}
+
+<Route data={{"path":["/*/*","/:0?"],"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+### Unknown {#da-lian-li-gong-da-xue-unknown}
+
+<Route data={{"path":["/*/*","/:0?"],"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 得到 {#de-dao}
+
+### Unknown {#de-dao-unknown}
+
+<Route data={{"path":"/:category?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 第一财经杂志 {#di-yi-cai-jing-za-zhi}
+
+### Unknown {#di-yi-cai-jing-za-zhi-unknown}
+
+<Route data={{"path":"/","radar":{"source":["cbnweek.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"cbnweek.com/","location":"index.ts"}} />
+
+## 电脑玩物 {#dian-nao-wan-wu}
+
+### Unknown {#dian-nao-wan-wu-unknown}
+
+<Route data={{"path":"/","radar":{"source":["playpcesor.com/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"playpcesor.com/","location":"rss.ts"}} />
+
+## 东北师范大学 {#dong-bei-shi-fan-da-xue}
+
+### Unknown {#dong-bei-shi-fan-da-xue-unknown}
+
+<Route data={{"path":"/sohac/*","name":"Unknown","maintainers":[],"location":"sohac.ts"}} />
+
+### Unknown {#dong-bei-shi-fan-da-xue-unknown}
+
+<Route data={{"path":"/yjsy/*","name":"Unknown","maintainers":[],"location":"yjsy.ts"}} />
+
+## 东莞教研网 {#dong-guan-jiao-yan-wang}
+
+### Unknown {#dong-guan-jiao-yan-wang-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 豆瓣 {#dou-ban}
+
+### Unknown {#dou-ban-unknown}
+
+<Route data={{"path":"/explore/column/:id","name":"Unknown","maintainers":[],"location":"other/explore-column.ts"}} />
+
+### Unknown {#dou-ban-unknown}
+
+<Route data={{"path":"/people/:userid/status/:routeParams?","name":"Unknown","maintainers":[],"location":"people/status.ts"}} />
+
+## 端传媒 {#duan-chuan-mei}
+
+通过提取文章全文,以提供比官方源更佳的阅读体验。
+
+:::warning
+付费内容全文可能需要登陆获取,详情见部署页面的配置模块。
+:::
+
+### Unknown {#duan-chuan-mei-unknown}
+
+<Route data={{"path":"/:model?/:type?/:language?","name":"Unknown","maintainers":[],"location":"full.ts"}} />
+
+## 二次元虫洞 {#er-ci-yuan-chong-dong}
+
+### Unknown {#er-ci-yuan-chong-dong-unknown}
+
+<Route data={{"path":"/:fid/:sort?","name":"Unknown","maintainers":["shelken"],"location":"index.ts"}} />
+
+## 凤凰网 {#feng-huang-wang}
+
+### Unknown {#feng-huang-wang-unknown}
+
+<Route data={{"path":"/news/*","name":"Unknown","maintainers":[],"location":"news.ts"}} />
+
+## 公視新聞網 {#gong-shi-xin-wen-wang}
+
+### Unknown {#gong-shi-xin-wen-wang-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 骨朵数据 {#gu-duo-shu-ju}
+
+### 日榜 {#gu-duo-shu-ju-ri-bang}
+
+<Route data={{"path":"/daily","categories":["other"],"example":"/guduodata/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["data.guduodata.com/"]},"name":"日榜","maintainers":["Gem1ni"],"url":"data.guduodata.com/","location":"daily.ts"}} />
+
+## 观察者网 {#guan-cha-zhe-wang}
+
+### Unknown {#guan-cha-zhe-wang-unknown}
+
+<Route data={{"path":"/topic/:id/:order?","radar":{"source":["guancha.cn/"],"target":"/:category?"},"name":"Unknown","maintainers":["occupy5","nczitzk"],"url":"guancha.cn/","location":"topic.ts"}} />
+
+## 观海新闻 {#guan-hai-xin-wen}
+
+### Unknown {#guan-hai-xin-wen-unknown}
+
+<Route data={{"path":"/","radar":{"source":["guanhai.com.cn/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"guanhai.com.cn/","location":"index.ts"}} />
+
+## 广东工业大学 {#guang-dong-gong-ye-da-xue}
+
+### Unknown {#guang-dong-gong-ye-da-xue-unknown}
+
+<Route data={{"path":"/oa_news/:type?","radar":{"source":["oas.gdut.edu.cn/seeyon"],"target":"/oa_news/"},"name":"Unknown","maintainers":["Jim Kirisame"],"url":"oas.gdut.edu.cn/seeyon","location":"oa-news.ts"}} />
+
+## 广东省食品药品审评认证技术协会 {#guang-dong-sheng-shi-pin-yao-pin-shen-ping-ren-zheng-ji-shu-xie-hui}
+
+### 栏目 {#guang-dong-sheng-shi-pin-yao-pin-shen-ping-ren-zheng-ji-shu-xie-hui-lan-mu}
+
+<Route data={{"path":"/:id?","categories":["other"],"example":"/gdsrx","parameters":{"id":"栏目 id,可在对应栏目页 URL 中找到,见下表,默认为法规文库"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":[],"description":"| 栏目名称 | 栏目 id |\n | ----------------- | ------- |\n | 法规文库 | 10 |\n | 法规资讯 | 12 |\n | 专家供稿 | 13 |\n | 协会动态 会员动态 | 20 |\n | 协会动态 | 37 |\n | 协会通知公告 | 38 |\n | 会员动态 | 39 |","location":"index.ts"}} />
+
+| 栏目名称 | 栏目 id |
+| ----------------- | ------- |
+| 法规文库 | 10 |
+| 法规资讯 | 12 |
+| 专家供稿 | 13 |
+| 协会动态 会员动态 | 20 |
+| 协会动态 | 37 |
+| 协会通知公告 | 38 |
+| 会员动态 | 39 |
+
+## 国家地理 {#guo-jia-di-li}
+
+### Unknown {#guo-jia-di-li-unknown}
+
+<Route data={{"path":"/dailyselection","name":"Unknown","maintainers":["OrangeEd1t"],"location":"dailyselection.ts"}} />
+
+## 国家气候中心 {#guo-jia-qi-hou-zhong-xin}
+
+### Unknown {#guo-jia-qi-hou-zhong-xin-unknown}
+
+<Route data={{"path":"/cmdp/image/:id{.+}?","name":"Unknown","maintainers":[],"location":"cmdp.ts"}} />
+
+## 国家药品监督管理局医疗器械技术审评中心 {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-ji-shu-shen-ping-zhong-xin}
+
+### Unknown {#guo-jia-yao-pin-jian-du-guan-li-ju-yi-liao-qi-xie-ji-shu-shen-ping-zhong-xin-unknown}
+
+<Route data={{"path":"/:cate{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 国外主机测评 {#guo-wai-zhu-ji-ce-ping}
+
+### Unknown {#guo-wai-zhu-ji-ce-ping-unknown}
+
+<Route data={{"path":"/","radar":{"source":["zhujiceping.com/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"zhujiceping.com/","location":"rss.ts"}} />
+
+## 哈尔滨工程大学 {#ha-er-bin-gong-cheng-da-xue}
+
+### Unknown {#ha-er-bin-gong-cheng-da-xue-unknown}
+
+<Route data={{"path":"/gx/card/:column/:id?","name":"Unknown","maintainers":[],"location":"gx/card.ts"}} />
+
+### Unknown {#ha-er-bin-gong-cheng-da-xue-unknown}
+
+<Route data={{"path":"/gx/list/:column/:id?","name":"Unknown","maintainers":[],"location":"gx/list.ts"}} />
+
+## 后续 {#hou-xu}
+
+### Unknown {#hou-xu-unknown}
+
+<Route data={{"path":["/featured","/index","/"],"radar":{"source":["houxu.app/"],"target":""},"name":"Unknown","maintainers":[],"url":"houxu.app/","location":"index.ts"}} />
+
+### Unknown {#hou-xu-unknown}
+
+<Route data={{"path":["/featured","/index","/"],"radar":{"source":["houxu.app/"],"target":""},"name":"Unknown","maintainers":[],"url":"houxu.app/","location":"index.ts"}} />
+
+### Unknown {#hou-xu-unknown}
+
+<Route data={{"path":["/featured","/index","/"],"radar":{"source":["houxu.app/"],"target":""},"name":"Unknown","maintainers":[],"url":"houxu.app/","location":"index.ts"}} />
+
+## 虎扑 {#hu-pu}
+
+### Unknown {#hu-pu-unknown}
+
+<Route data={{"path":["/dept/:category?","/:category?"],"radar":{"source":["m.hupu.com/:category","m.hupu.com/"],"target":"/:category"},"name":"Unknown","maintainers":["nczitzk"],"description":"| NBA | CBA | 足球 |\n | --- | --- | ------ |\n | nba | cba | soccer |\n\n :::tip\n 电竞分类参见 [游戏热帖](https://bbs.hupu.com/all-gg) 的对应路由 [`/hupu/all/all-gg`](https://rsshub.app/hupu/all/all-gg)。\n :::","location":"index.ts"}} />
+
+| NBA | CBA | 足球 |
+| --- | --- | ------ |
+| nba | cba | soccer |
+
+:::tip
+电竞分类参见 [游戏热帖](https://bbs.hupu.com/all-gg) 的对应路由 [`/hupu/all/all-gg`](https://rsshub.app/hupu/all/all-gg)。
+:::
+
+### Unknown {#hu-pu-unknown}
+
+<Route data={{"path":["/dept/:category?","/:category?"],"radar":{"source":["m.hupu.com/:category","m.hupu.com/"],"target":"/:category"},"name":"Unknown","maintainers":["nczitzk"],"description":"| NBA | CBA | 足球 |\n | --- | --- | ------ |\n | nba | cba | soccer |\n\n :::tip\n 电竞分类参见 [游戏热帖](https://bbs.hupu.com/all-gg) 的对应路由 [`/hupu/all/all-gg`](https://rsshub.app/hupu/all/all-gg)。\n :::","location":"index.ts"}} />
+
+| NBA | CBA | 足球 |
+| --- | --- | ------ |
+| nba | cba | soccer |
+
+:::tip
+电竞分类参见 [游戏热帖](https://bbs.hupu.com/all-gg) 的对应路由 [`/hupu/all/all-gg`](https://rsshub.app/hupu/all/all-gg)。
+:::
+
+## 虎嗅 {#hu-xiu}
+
+### Unknown {#hu-xiu-unknown}
+
+<Route data={{"path":"/club/:id","name":"Unknown","maintainers":["nczitzk"],"location":"club.ts"}} />
+
+### Unknown {#hu-xiu-unknown}
+
+<Route data={{"path":["/author/:id/:type?","/member/:id/:type?"],"name":"Unknown","maintainers":[],"description":"| TA 的文章 | TA 的 24 小时 |\n | --------- | ------------- |\n | article | moment |","location":"member.ts"}} />
+
+| TA 的文章 | TA 的 24 小时 |
+| --------- | ------------- |
+| article | moment |
+
+### Unknown {#hu-xiu-unknown}
+
+<Route data={{"path":["/author/:id/:type?","/member/:id/:type?"],"name":"Unknown","maintainers":[],"description":"| TA 的文章 | TA 的 24 小时 |\n | --------- | ------------- |\n | article | moment |","location":"member.ts"}} />
+
+| TA 的文章 | TA 的 24 小时 |
+| --------- | ------------- |
+| article | moment |
+
+## 华尔街见闻 {#hua-er-jie-jian-wen}
+
+### Unknown {#hua-er-jie-jian-wen-unknown}
+
+<Route data={{"path":["/news/:category?","/:category?"],"radar":{"source":["wallstreetcn.com/news/:category","wallstreetcn.com/"]},"name":"Unknown","maintainers":["nczitzk"],"description":"| id | 分类 |\n | ------------ | ---- |\n | global | 最新 |\n | shares | 股市 |\n | bonds | 债市 |\n | commodities | 商品 |\n | forex | 外汇 |\n | enterprise | 公司 |\n | asset-manage | 资管 |\n | tmt | 科技 |\n | estate | 地产 |\n | car | 汽车 |\n | medicine | 医药 |","location":"news.ts"}} />
+
+| id | 分类 |
+| ------------ | ---- |
+| global | 最新 |
+| shares | 股市 |
+| bonds | 债市 |
+| commodities | 商品 |
+| forex | 外汇 |
+| enterprise | 公司 |
+| asset-manage | 资管 |
+| tmt | 科技 |
+| estate | 地产 |
+| car | 汽车 |
+| medicine | 医药 |
+
+### Unknown {#hua-er-jie-jian-wen-unknown}
+
+<Route data={{"path":["/news/:category?","/:category?"],"radar":{"source":["wallstreetcn.com/news/:category","wallstreetcn.com/"]},"name":"Unknown","maintainers":["nczitzk"],"description":"| id | 分类 |\n | ------------ | ---- |\n | global | 最新 |\n | shares | 股市 |\n | bonds | 债市 |\n | commodities | 商品 |\n | forex | 外汇 |\n | enterprise | 公司 |\n | asset-manage | 资管 |\n | tmt | 科技 |\n | estate | 地产 |\n | car | 汽车 |\n | medicine | 医药 |","location":"news.ts"}} />
+
+| id | 分类 |
+| ------------ | ---- |
+| global | 最新 |
+| shares | 股市 |
+| bonds | 债市 |
+| commodities | 商品 |
+| forex | 外汇 |
+| enterprise | 公司 |
+| asset-manage | 资管 |
+| tmt | 科技 |
+| estate | 地产 |
+| car | 汽车 |
+| medicine | 医药 |
+
+## 环球法律评论 {#huan-qiu-fa-lv-ping-lun}
+
+### Unknown {#huan-qiu-fa-lv-ping-lun-unknown}
+
+<Route data={{"path":"/","radar":{"source":["globallawreview.org/Magazine/GetIssueContentList","globallawreview.org/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"globallawreview.org/Magazine/GetIssueContentList","location":"index.ts"}} />
+
+## 荒岛 {#huang-dao}
+
+### Unknown {#huang-dao-unknown}
+
+<Route data={{"path":"/","radar":{"source":["lala.im/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"lala.im/","location":"rss.ts"}} />
+
+## 吉首大学 {#ji-shou-da-xue}
+
+### Unknown {#ji-shou-da-xue-unknown}
+
+<Route data={{"path":"/cxzx/:types?","name":"Unknown","maintainers":["wenjia03"],"location":"cxzx.ts"}} />
+
+## 纪妖 {#ji-yao}
+
+### Unknown {#ji-yao-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 煎蛋 {#jian-dan}
+
+### Unknown {#jian-dan-unknown}
+
+<Route data={{"path":"/","name":"Unknown","maintainers":["nczitzk","bigfei"],"location":"index.ts"}} />
+
+### Unknown {#jian-dan-unknown}
+
+<Route data={{"path":"/:category","name":"Unknown","maintainers":[],"location":"section.ts"}} />
+
+## 交流岛资源网 {#jiao-liu-dao-zi-yuan-wang}
+
+### Unknown {#jiao-liu-dao-zi-yuan-wang-unknown}
+
+<Route data={{"path":"/","radar":{"source":["jiaoliudao.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"jiaoliudao.com/","location":"index.ts"}} />
+
+## 界面新闻 {#jie-mian-xin-wen}
+
+### Unknown {#jie-mian-xin-wen-unknown}
+
+<Route data={{"path":"/list/:id","name":"Unknown","maintainers":[],"location":"list.ts"}} />
+
+### Unknown {#jie-mian-xin-wen-unknown}
+
+<Route data={{"path":"/:category{.+}?","name":"Unknown","maintainers":[],"location":"lists.ts"}} />
+
+## 禁忌书屋 {#jin-ji-shu-wu}
+
+### Unknown {#jin-ji-shu-wu-unknown}
+
+<Route data={{"path":"/:id?/:type?/:keyword?","radar":{"source":["cool18.com/"]},"name":"Unknown","maintainers":["nczitzk"],"url":"cool18.com/","location":"index.ts"}} />
+
+## 经济 50 人论坛 {#jing-ji-50-ren-lun-tan}
+
+### Unknown {#jing-ji-50-ren-lun-tan-unknown}
+
+<Route data={{"path":"/","radar":{"source":["50forum.org.cn/home/article/index/category/zhuanjia.html","50forum.org.cn/"],"target":""},"name":"Unknown","maintainers":["sddiky"],"url":"50forum.org.cn/home/article/index/category/zhuanjia.html","location":"zhuanjia.ts"}} />
+
+## 巨量算数 - 算数指数 {#ju-liang-suan-shu-suan-shu-zhi-shu}
+
+### Unknown {#ju-liang-suan-shu-suan-shu-zhi-shu-unknown}
+
+<Route data={{"path":"/index/:keyword/:channel?","name":"Unknown","maintainers":["Jkker"],"location":"arithmetic-index.ts"}} />
+
+## 卡卡洛普 {#ka-ka-luo-pu}
+
+### Unknown {#ka-ka-luo-pu-unknown}
+
+<Route data={{"path":"/:domain/:category?","name":"Unknown","maintainers":[],"location":"category.ts"}} />
+
+### Unknown {#ka-ka-luo-pu-unknown}
+
+<Route data={{"path":"/:domain/tag/:tag","name":"Unknown","maintainers":[],"location":"tag.ts"}} />
+
+## 快递 100 {#kuai-di-100}
+
+### 快递订单追踪 {#kuai-di-100-kuai-di-ding-dan-zhui-zong}
+
+<Route data={{"path":"/track/:number/:id/:phone?","categories":["other"],"example":"/kuaidi100/track/shunfeng/SF1007896781640/0383","parameters":{"number":"快递公司代号","id":"订单号","phone":"手机号后四位(仅顺丰)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"快递订单追踪","maintainers":["NeverBehave"],"description":"快递公司代号如果不能确定,可通过下方快递列表获得。\n\n :::warning\n 1. 构造链接前请确认所有参数正确:错误`快递公司 - 订单号`组合将会缓存信息一小段时间防止产生无用查询\n 2. 正常查询的订单在未签收状态下不会被缓存:请控制查询频率\n 3. 订单完成后请尽快取消订阅,避免资源浪费\n :::","location":"index.ts"}} />
+
+快递公司代号如果不能确定,可通过下方快递列表获得。
+
+:::warning
+1. 构造链接前请确认所有参数正确:错误`快递公司 - 订单号`组合将会缓存信息一小段时间防止产生无用查询
+2. 正常查询的订单在未签收状态下不会被缓存:请控制查询频率
+3. 订单完成后请尽快取消订阅,避免资源浪费
+:::
+
+### 支持的快递公司列表 {#kuai-di-100-zhi-chi-de-kuai-di-gong-si-lie-biao}
+
+<Route data={{"path":"/company","categories":["other"],"example":"/kuaidi100/company","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kuaidi100.com/"]},"name":"支持的快递公司列表","maintainers":["NeverBehave"],"url":"kuaidi100.com/","location":"supported-company.ts"}} />
+
+## 快科技 {#kuai-ke-ji}
+
+### Unknown {#kuai-ke-ji-unknown}
+
+<Route data={{"path":["/cid/:id?","/zhibo"],"name":"Unknown","maintainers":[],"url":"m.mydrivers.com/","location":"cid.ts"}} />
+
+### Unknown {#kuai-ke-ji-unknown}
+
+<Route data={{"path":["/cid/:id?","/zhibo"],"name":"Unknown","maintainers":[],"url":"m.mydrivers.com/","location":"cid.ts"}} />
+
+### Unknown {#kuai-ke-ji-unknown}
+
+<Route data={{"path":"/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 雷峰网 {#lei-feng-wang}
+
+### Unknown {#lei-feng-wang-unknown}
+
+<Route data={{"path":"/:do?/:keyword?","radar":{"source":["leiphone.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"leiphone.com/","location":"index.ts"}} />
+
+## 理想生活实验室 {#li-xiang-sheng-huo-shi-yan-shi}
+
+### Unknown {#li-xiang-sheng-huo-shi-yan-shi-unknown}
+
+<Route data={{"path":"/:params{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 裏垢女子まとめ {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81}
+
+### Unknown {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81-unknown}
+
+<Route data={{"path":"/","radar":{"source":["uraaka-joshi.com/"],"target":""},"name":"Unknown","maintainers":["SettingDust","Halcao"],"url":"uraaka-joshi.com/","location":"uraaka-joshi.ts"}} />
+
+### User {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81-user}
+
+<Route data={{"path":"/:id","categories":["other"],"example":"/uraaka-joshi/_rrwq","parameters":{"id":"User ID"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["uraaka-joshi.com/:id"]},"name":"User","maintainers":["SettingDust","Halcao"],"url":"uraaka-joshi.com/","location":"uraaka-joshi-user.ts"}} />
+
+## 链捕手 ChainCatcher {#lian-bu-shou-chaincatcher}
+
+### Unknown {#lian-bu-shou-chaincatcher-unknown}
+
+<Route data={{"path":"/","radar":{"source":["chaincatcher.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"chaincatcher.com/","location":"home.ts"}} />
+
+## 留园网 {#liu-yuan-wang}
+
+### Unknown {#liu-yuan-wang-unknown}
+
+<Route data={{"path":"/:id?/:type?/:keyword?","radar":{"source":["club.6parkbbs.com/:id/index.php","club.6parkbbs.com/"],"target":"/:id?"},"name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+### Unknown {#liu-yuan-wang-unknown}
+
+<Route data={{"path":"/news/:site?/:id?/:keyword?","radar":{"source":["club.6parkbbs.com/:id/index.php","club.6parkbbs.com/"],"target":"/:id?"},"name":"Unknown","maintainers":[],"location":"news.ts"}} />
+
+## 龙空 {#long-kong}
+
+### Unknown {#long-kong-unknown}
+
+<Route data={{"path":"/forum/:id?/:digest?","radar":{"source":["lkong.com/forum/:id","lkong.com/"]},"name":"Unknown","maintainers":["nczitzk","ma6254"],"location":"forum.ts"}} />
+
+### Unknown {#long-kong-unknown}
+
+<Route data={{"path":"/thread/:id","radar":{"source":["lkong.com/thread/:id","lkong.com/"]},"name":"Unknown","maintainers":["nczitzk","ma6254"],"location":"thread.ts"}} />
+
+## 旅法师营地 {#lv-fa-shi-ying-di}
+
+### Unknown {#lv-fa-shi-ying-di-unknown}
+
+<Route data={{"path":"/tag/:tagId?","radar":{"source":["mob.iyingdi.com/fine/:tagId"],"target":"/tag/:tagId"},"name":"Unknown","maintainers":["auto-bot-ty"],"location":"tag.ts"}} />
+
+### Unknown {#lv-fa-shi-ying-di-unknown}
+
+<Route data={{"path":"/user/:id?","radar":{"source":["www.iyingdi.com/tz/people/:id","www.iyingdi.com/tz/people/:id/*"],"target":"/user/:id"},"name":"Unknown","maintainers":["auto-bot-ty"],"location":"user.ts"}} />
+
+## 罗戈网 {#luo-ge-wang}
+
+### Unknown {#luo-ge-wang-unknown}
+
+<Route data={{"path":"/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+## 免費資源網路社群 {#mian-fei-zi-yuan-wang-lu-she-qun}
+
+### Unknown {#mian-fei-zi-yuan-wang-lu-she-qun-unknown}
+
+<Route data={{"path":"/","radar":{"source":["free.com.tw/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"free.com.tw/","location":"rss.ts"}} />
+
+## 木木博客 {#mu-mu-bo-ke}
-<Route author="DIYgod" example="/forum4399/mtag-83932" path="/forum4399/:mtag" paramsDesc={['mtag,必选-论坛网址最后的mtag字段']} configRequired="1">
- :::warning
- 需要用户 cookie 值,详情见部署页面的配置模块。
- :::
-</Route>
+### Unknown {#mu-mu-bo-ke-unknown}
-## 591 Rental house {#591-rental-house}
+<Route data={{"path":"/:params{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-### Rental house {#591-rental-house-rental-house}
+### Unknown {#mu-mu-bo-ke-unknown}
-<Route author="Yukaii" example="/591/tw/rent/order=posttime&orderType=desc" path="/591/:country/rent/:query?" paramsDesc={['Country code. Only tw is supported now', 'Query Parameters']}>
- :::tip
- Copy the URL of the 591 filter housing page and remove the front part `https://rent.591.com.tw/?`, you will get the query parameters.
- :::
-</Route>
+<Route data={{"path":"/itnews/:channel","name":"Unknown","maintainers":[],"location":"itnews.ts"}} />
-## acwifi 路由器交流 {#acwifi-lu-you-qi-jiao-liu}
+## 南方都市报 {#nan-fang-dou-shi-bao}
-### 新闻 {#acwifi-lu-you-qi-jiao-liu-xin-wen}
+### Unknown {#nan-fang-dou-shi-bao-unknown}
-<Route author="cc798461" example="/acwifi" path="/acwifi" />
+<Route data={{"path":"/app/channel/:id","name":"Unknown","maintainers":["TimWu007"],"location":"app/channel.ts"}} />
-## Amazfit Watch Faces {#amazfit-watch-faces}
+## 南湖清风 {#nan-hu-qing-feng}
-手表型号可在网站中选择后到地址栏查看
+### Unknown {#nan-hu-qing-feng-unknown}
-| Amazfit Bip | Amazfit Cor | Amazfit GTR | Amazfit GTS | Amazfit Stratos | Amazfit T-Rex | Amazfit Verge | Amazfit Verge Lite | Honor Band 5 | Honor Watch Magic | Huawei Watch GT | Xiaomi Mi Band 4 |
-| ----------- | ----------- | ----------- | ----------- | --------------- | ------------- | ------------- | ------------------ | ------------ | ----------------- | --------------- | ---------------- |
-| bip | cor | gtr | gts | pace | t-rex | verge | verge-lite | honor-band-5 | honor-watch-magic | huawei-watch-gt | mi-band-4 |
+<Route data={{"path":"/:category?/:id?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-### 新品上架 {#amazfit-watch-faces-xin-pin-shang-jia}
+## 南京航空航天大学 {#nan-jing-hang-kong-hang-tian-da-xue}
-<Route author="nczitzk" example="/amazfitwatchfaces/fresh/bip/Bip/zh" path="/amazfitwatchfaces/fresh/:model/:type?/:lang?" paramsDesc={['手表型号', '手表款式,款式代码可在目标网站选择后到地址栏查看,`all` 指 全部款式', '表盘语言,语言代码可在目标网站选择后到地址栏查看,如 `zh` 指 中文']} />
+### Unknown {#nan-jing-hang-kong-hang-tian-da-xue-unknown}
-### 最近更新 {#amazfit-watch-faces-zui-jin-geng-xin}
+<Route data={{"path":"/cae/:type/:getDescription?","name":"Unknown","maintainers":["Xm798"],"location":"college/cae.ts"}} />
-<Route author="nczitzk" example="/amazfitwatchfaces/updated/bip/Bip/zh" path="/amazfitwatchfaces/updated/:model/:type?/:lang?" paramsDesc={['手表型号', '手表款式,款式代码可在目标网站选择后到地址栏查看,`all` 指 全部款式', '表盘语言,语言代码可在目标网站选择后到地址栏查看,如 `zh` 指 中文']} />
+## 南京信息工程大学 {#nan-jing-xin-xi-gong-cheng-da-xue}
-### 排行榜 {#amazfit-watch-faces-pai-hang-bang}
+:::tip
+路由地址全部按照 **学校官网域名和栏目编号** 设计
-<Route author="nczitzk" example="/amazfitwatchfaces/top/bip/Bip/month/views/zh" path="/amazfitwatchfaces/top/:model/:type?/:time?/:sortBy?/:lang?" paramsDesc={['手表型号', '手表款式,款式代码可在目标网站选择后到地址栏查看,`all` 指 全部款式', '统计时间,`week` 指 上周,`month` 指 上月,`alltime` 指 全部时间', '排序参数,`download` 指 下载量,`views` 指 查看量,`fav` 指 收藏数', '表盘语言,语言代码可在目标网站选择后到地址栏查看,如 `zh` 指 中文']} notOperational="1" />
+使用方法:
-### 搜索结果 {#amazfit-watch-faces-sou-suo-jie-guo}
+以[南信大信息公告栏](https://bulletin.nuist.edu.cn)为例,点开任意一个栏目
-<Route author="nczitzk" example="/amazfitwatchfaces/search/bip/battery" path="/amazfitwatchfaces/search/:model/:keyword?/:sortBy?" paramsDesc={['手表型号', '关键词,多个关键词用半角逗号隔开', '排序参数,`fresh` 指 新品上架,`updated` 指 已更新的,`views` 指 查看量,`download` 指 下载量,`fav` 指 收藏数']} />
+获得 URL 中的**分域名**和**栏目编号(可选)**:https\://`bulletin`.nuist.edu.cn/`791`/list.htm
-## Apple {#apple}
+将其替换到 RSS 路由地址中即可:
-### Exchange and Repair Extension Programs {#apple-exchange-and-repair-extension-programs}
+[https://rsshub.app/**nuist**/`bulletin`](https://rsshub.app/nuist/bulletin) 或 [https://rsshub.app/**nuist**/`bulletin`/`791`](https://rsshub.app/nuist/bulletin)
+:::
-<Route author="metowolf HenryQW" example="/apple/exchange_repair" path="/apple/exchange_repair/:country?" paramsDesc={['country code in apple.com URL (exception: for `United States` please use `us`), default to China `cn`']} />
+### Unknown {#nan-jing-xin-xi-gong-cheng-da-xue-unknown}
-### App Store/Mac App Store {#apple-app-store-mac-app-store}
+<Route data={{"path":"/yjs/*","name":"Unknown","maintainers":[],"location":"yjs.ts"}} />
-See [#app-store-mac-app-store](/routes/program-update#app-store-mac-app-store)
+### Unknown {#nan-jing-xin-xi-gong-cheng-da-xue-unknown}
-## Aqara {#aqara}
+<Route data={{"path":"/lib","radar":{"source":["lib.nuist.edu.cn/","lib.nuist.edu.cn/index/tzgg.htm"]},"name":"Unknown","maintainers":["gylidian"],"url":"lib.nuist.edu.cn/","location":"library/lib.ts"}} />
-### 社区 {#aqara-she-qu}
+## 鸟哥笔记 {#niao-ge-bi-ji}
-<Route author="nczitzk" example="/aqara/community" path="/aqara/community/:id?/:keyword?" paramsDesc={['分类 id,可在对应分类页 URL 中找到,默认为全部', '关键字,默认为空']} />
+### Unknown {#niao-ge-bi-ji-unknown}
-### 新闻 {#aqara-xin-wen}
+<Route data={{"path":"/","radar":{"source":["niaogebiji.com/","niaogebiji.com/bulletin"],"target":""},"name":"Unknown","maintainers":["WenryXu"],"url":"niaogebiji.com/","location":"index.ts"}} />
-<Route author="nczitzk" example="/aqara/:region/news" path="/aqara/news" paramsDesc={['地区 id,可在对应新闻页 URL 中找到,默认为 en,即 Global']} notOperational="1">
- | 中国 / 大陆 | 대한민국 | Europe | United States | Russia | Global |
- | ----------- | -------- | ------ | ------------- | ------ | ------ |
- | cn | kr | eu | us | ru | en |
-</Route>
+## 跑野大爆炸 {#pao-ye-da-bao-zha}
-### 分类 {#aqara-fen-lei}
+### Unknown {#pao-ye-da-bao-zha-unknown}
-<Route author="nczitzk" example="/aqara/en/category/press-release" path="/aqara/:region/category/:id" paramsDesc={['地区 id,可在对应分类页 URL 中找到,默认为 en,即 Global', '分类 id,可在对应分类页 URL 中找到']} />
+<Route data={{"path":"/","radar":{"source":["runtrail.cn/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"runtrail.cn/","location":"posts.ts"}} />
-### 标签 {#aqara-biao-qian}
+## 澎湃新闻 {#peng-pai-xin-wen}
-<Route author="nczitzk" example="/aqara/en/tag/global" path="/aqara/:region/tag/:id" paramsDesc={['地区 id,可在对应标签页 URL 中找到,默认为 en,即 Global', '标签 id,可在对应标签页 URL 中找到']} />
+以下所有路由可使用参数`old`以采取旧全文获取方法。该方法会另外获取网页中的图片与视频资源。在原始 url 追加`?old=yes`以启用.
-## AutoTrader {#autotrader}
+### Unknown {#peng-pai-xin-wen-unknown}
-### Search {#autotrader-search}
+<Route data={{"path":"/sidebar/:sec?","radar":{"source":["thepaper.cn/"],"target":"/sidebar"},"name":"Unknown","maintainers":["bigfei"],"url":"thepaper.cn/","location":"sidebar.ts"}} />
-<Route author="HenryQW" example="/autotrader/radius=50&postcode=sw1a1aa&onesearchad=Used&onesearchad=Nearly%20New&onesearchad=New&price-to=9000&year-from=2012&body-type=Hatchback&transmission=Automatic&exclude-writeoff-categories=on" path="/autotrader/:query" paramsDesc={['the search query']} notOperational="1">
- 1. Conduct a search with desired filters on AutoTrader
- 2. Copy everything in the URL after `?`, for example: `https://www.autotrader.co.uk/car-search?radius=50&postcode=sw1a1aa&onesearchad=Used&onesearchad=Nearly%20New&onesearchad=New&price-to=9000&year-from=2012&body-type=Hatchback&transmission=Automatic&exclude-writeoff-categories=on` will produce `radius=50&postcode=sw1a1aa&onesearchad=Used&onesearchad=Nearly%20New&onesearchad=New&price-to=9000&year-from=2012&body-type=Hatchback&transmission=Automatic&exclude-writeoff-categories=on`
-</Route>
+### Unknown {#peng-pai-xin-wen-unknown}
-## Bing {#bing}
+<Route data={{"path":"/839studio/:id","radar":{"source":["thepaper.cn/"]},"name":"Unknown","maintainers":["umm233"],"url":"thepaper.cn/","location":"839studio/category.ts"}} />
-### 搜索 {#bing-sou-suo}
+### Unknown {#peng-pai-xin-wen-unknown}
-<Route author="CaoMeiYouRen" example="/bing/search/rss" path="/bing/search/:keyword" paramsDesc={['搜索关键词']} radar="1" />
+<Route data={{"path":"/839studio","name":"Unknown","maintainers":["umm233"],"location":"839studio/studio.ts"}} />
-## BOOKWALKERTW {#bookwalkertw}
+## 片源网 {#pian-yuan-wang}
-### 热门新书 {#bookwalkertw-re-men-xin-shu}
+### Unknown {#pian-yuan-wang-unknown}
-<Route author="wushijishan" example="/bookwalkertw/news" path="/bookwalkertw/news" />
+<Route data={{"path":"/indexers/pianyuan/results/search/api","radar":{"source":["pianyuan.org/"],"target":"/index"},"name":"Unknown","maintainers":["jerry1119"],"url":"pianyuan.org/","location":"search.ts"}} />
-## checkee.info {#checkee-info}
+## 品葱 {#pin-cong}
-### US Visa check status {#checkee-info-us-visa-check-status}
+### Unknown {#pin-cong-unknown}
-<Route author="lalxyy" example="/checkee/2019-03" path="/checkee/:month" paramsDesc={['Year-month of visa check,for example 2019-03']} />
+<Route data={{"path":"/topic/:topic","radar":{"source":["pincong.rocks/topic/:topic"]},"name":"Unknown","maintainers":["zphw"],"location":"topic.ts"}} />
-## ClickMe {#clickme}
+## 齐鲁网 {#qi-lu-wang}
-### 文章 {#clickme-wen-zhang}
+### Unknown {#qi-lu-wang-unknown}
-<Route author="hoilc" example="/clickme/default/category/beauty" path="/clickme/:site/:grouping/:name" paramsDesc={['站点,`default`为普通站,`r18`为成人站,其它值默认为普通站','分组方式,`category`为分类,`tag`为标签,其他值默认为分类','分类名或标签名,分类名为英文,可以在分类 URL 中找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/v/:category{.+}?","name":"Unknown","maintainers":[],"location":"program.ts"}} />
-## Corona Virus Disease 2019 {#corona-virus-disease-2019}
+## 其乐 {#qi-le}
-### South China Morning Post - China coronavirus outbreak {#corona-virus-disease-2019-south-china-morning-post-china-coronavirus-outbreak}
+### Unknown {#qi-le-unknown}
-<Route author="DIYgod" example="/scmp/coronavirus" path="/scmp/coronavirus" />
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-### Macao Pagina Electrónica Especial Contra Epidemias: What’s New {#corona-virus-disease-2019-macao-pagina-electr%C3%B3nica-especial-contra-epidemias-what-s-new}
+## 汽油价格网 {#qi-you-jia-ge-wang}
-Official Website: [https://www.ssm.gov.mo/apps1/PreventWuhanInfection/en.aspx](https://www.ssm.gov.mo/apps1/PreventWuhanInfection/en.aspx)
+### Unknown {#qi-you-jia-ge-wang-unknown}
-<Route author="KeiLongW" example="/coronavirus/mogov-2019ncov/ch" path="/coronavirus/mogov-2019ncov/:lang" paramsDesc={['Language']} />
+<Route data={{"path":"/:path{.+}","name":"Unknown","maintainers":[],"location":"price.ts"}} />
-| Chinese | English | Portuguese |
-| ------- | ------- | ---------- |
-| ch | en | pt |
+## 千篇网 {#qian-pian-wang}
-### Singapore Ministry of Health - Past Updates on 2019-nCov Local Situation in Singapore {#corona-virus-disease-2019-singapore-ministry-of-health-past-updates-on-2019-ncov-local-situation-in-singapore}
+### Unknown {#qian-pian-wang-unknown}
-<Route author="Gnnng" example="/coronavirus/sg-moh" path="/coronavirus/sg-moh" notOperational="1" />
+<Route data={{"path":"/news/:path{.+}?","name":"Unknown","maintainers":[],"location":"news.ts"}} />
-### Yahoo Japan 新型コロナウイルス感染症まとめ {#corona-virus-disease-2019-yahoo-japan-xin-xing-%E3%82%B3%E3%83%AD%E3%83%8A%E3%82%A6%E3%82%A4%E3%83%AB%E3%82%B9-gan-ran-zheng-%E3%81%BE%E3%81%A8%E3%82%81}
+## 轻小说文库 {#qing-xiao-shuo-wen-ku}
-Official Website: [https://news.yahoo.co.jp/pages/article/20200207](https://news.yahoo.co.jp/pages/article/20200207)
+### Unknown {#qing-xiao-shuo-wen-ku-unknown}
-<Route author="sgqy" example="/coronavirus/yahoo-japan" path="/coronavirus/yahoo-japan/:tdfk?" paramsDesc={['都道府県的拼音,可从地图详情页的链接中获取。例如:京都府 = kyoto']} notOperational="1" />
+<Route data={{"path":"/:category?","name":"Unknown","maintainers":["Fatpandac"],"location":"index.ts"}} />
-## Darwin Awards {#darwin-awards}
+## 轻之国度 {#qing-zhi-guo-du}
-### Award Winners {#darwin-awards-award-winners}
+### Unknown {#qing-zhi-guo-du-unknown}
-<Route author="zoenglinghou nciztzk" example="/darwinawards" path="/darwinawards" />
+<Route data={{"path":"/:keywords/:security_key?","radar":{"source":["lightNovel.us/"],"target":"/:keywords/:security_key"},"name":"Unknown","maintainers":["nightmare-mio"],"url":"lightNovel.us/","location":"light-novel.ts"}} />
-## dcinside {#dcinside}
+## 趨勢科技防詐達人 {#qu-shi-ke-ji-fang-zha-da-ren}
-### board {#dcinside-board}
+### Unknown {#qu-shi-ke-ji-fang-zha-da-ren-unknown}
-<Route author="zfanta" example="/dcinside/board/programming" path="/dcinside/board/:id" paramsDesc={['board id']} />
+<Route data={{"path":"/","radar":{"source":["getdr.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"getdr.com/","location":"index.ts"}} />
-## Email {#email}
+## 全球主机监控 {#quan-qiu-zhu-ji-jian-kong}
-### Email list {#email-email-list}
+### CloudFlareYes {#quan-qiu-zhu-ji-jian-kong-cloudflareyes}
-> Only support IMAP protocol, email password and other settings refer to [Email setting](/install)
+<Route data={{"path":"/cloudflareyes/:type?","categories":["other"],"example":"/hostmonit/cloudflareyes","parameters":{"type":"类型,见下表,默认为 v4"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"CloudFlareYes","maintainers":["nczitzk"],"description":"| v4 | v6 |\n | -- | -- |\n | | v6 |","location":"cloudflareyes.ts"}} />
-<Route author="kt286" example="/mail/imap/[email protected]" path="/mail/imap/:email/:folder*" paramsDesc={['Email account', 'Inbox name, `INBOX` by default']} configRequired="1" />
+| v4 | v6 |
+| -- | -- |
+| | v6 |
-## Emi Nitta official website 新田惠海官方网站 {#emi-nitta-official-website-xin-tian-hui-hai-guan-fang-wang-zhan}
+### Unknown {#quan-qiu-zhu-ji-jian-kong-unknown}
-### Recent update {#emi-nitta-official-website-xin-tian-hui-hai-guan-fang-wang-zhan-recent-update}
+<Route data={{"path":"/cloudflareyesv6","name":"Unknown","maintainers":[],"location":"cloudflareyesv6.ts"}} />
-<Route author="luyuhuang" example="/emi-nitta/updates" path="/emi-nitta/updates" />
+## 热搜聚合 {#re-sou-ju-he}
-### News {#emi-nitta-official-website-xin-tian-hui-hai-guan-fang-wang-zhan-news}
+### 关键词聚合追踪 {#re-sou-ju-he-guan-jian-ci-ju-he-zhui-zong}
-<Route author="luyuhuang" example="/emi-nitta/news" path="/emi-nitta/news" notOperational="1" />
+<Route data={{"path":"/:keywords/:numberOfDays?","categories":["other"],"example":"/trending/唐山,打人/3","parameters":{"keywords":"通过逗号区隔的关键词列表","numberOfDays":"向前追溯的天数,默认为3天"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"关键词聚合追踪","maintainers":["Jkker"],"description":"追踪各大热搜榜上包含特定关键词的条目。\n\n当前收录榜单:*微博热搜*、*今日头条热搜*、*知乎热搜*、*知乎热门视频*、*知乎热门话题*。\n\n数据源: [trending-in-one](https://github.com/huqi-pr/trending-in-one)","location":"all-trending.ts"}} />
-## Etherscan {#etherscan}
+追踪各大热搜榜上包含特定关键词的条目。
-### Etherscan 转账追踪 {#etherscan-etherscan-zhuan-zhang-zhui-zong}
+当前收录榜单:*微博热搜*、*今日头条热搜*、*知乎热搜*、*知乎热门视频*、*知乎热门话题*。
-<Route author="Pretty9" example="/etherscan/transactions/0x283af0b28c62c092c9727f1ee09c02ca627eb7f5" path="/etherscan/transactions/:address" paramsDesc={['地址']} />
+数据源: [trending-in-one](https://github.com/huqi-pr/trending-in-one)
-## Fisher Spb {#fisher-spb}
+## 人民网 {#ren-min-wang}
-### News {#fisher-spb-news}
+### Unknown {#ren-min-wang-unknown}
-<Route author="denis-ya" example="/fisher-spb/news" path="/fisher-spb/news" />
+<Route data={{"path":"/:site?/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-## Google {#google}
+## 人人都是自媒体 {#ren-ren-dou-shi-zi-mei-ti}
-### Alerts {#google-alerts}
+### Unknown {#ren-ren-dou-shi-zi-mei-ti-unknown}
-<Route author="TonyRL" example="/google/alerts/RSSHub" path="/google/alerts/:keyword" paramsDesc={['Keyword']} />
+<Route data={{"path":"/","radar":{"source":["www.iiilab.com/"],"target":""},"name":"Unknown","maintainers":["Joey"],"url":"www.iiilab.com/","location":"index.ts"}} />
-### Search {#google-search}
+## 软餐 {#ruan-can}
-<Route author="CaoMeiYouRen" example="/google/search/rss/zh-CN,zh" path="/google/search/:keyword/:language?" paramsDesc={['Keyword','Accept-Language. Example: zh-CN,zh;q=0.9,en;q=0.8,ja;q=0.7']} />
+### Unknown {#ruan-can-unknown}
-## Grand-Challenge {#grand-challenge}
+<Route data={{"path":"/","radar":{"source":["ruancan.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"ruancan.com/","location":"index.ts"}} />
-### Challenge 列表 {#grand-challenge-challenge-lie-biao}
+### Unknown {#ruan-can-unknown}
-<Route author="WhoIsSure" example="/grandchallenge/challenges" path="/grandchallenge/challenges" />
+<Route data={{"path":"/user/:id","radar":{"source":["ruancan.com/i/:id","ruancan.com/"]},"name":"Unknown","maintainers":[],"url":"ruancan.com/","location":"user.ts"}} />
-### 用户参加的 Challenge {#grand-challenge-yong-hu-can-jia-de-challenge}
+## 三联生活周刊 {#san-lian-sheng-huo-zhou-kan}
-<Route author="WhoIsSure" example="/grandchallenge/user/Isensee" path="/grandchallenge/user/:id" paramsDesc={['用户ID,必选-用户页面网址里面的用户ID']} />
+### Unknown {#san-lian-sheng-huo-zhou-kan-unknown}
-## HackerOne {#hackerone}
+<Route data={{"path":"/channel/:id","radar":{"source":["lifeweek.com.cn/column/:channel"],"target":"/channel/:channel"},"name":"Unknown","maintainers":[],"location":"channel.ts"}} />
-### HackerOne Hacker Activity {#hackerone-hackerone-hacker-activity}
+### Unknown {#san-lian-sheng-huo-zhou-kan-unknown}
-<Route author="imlonghao" example="/hackerone/hacktivity" path="/hackerone/hacktivity" radar="1" />
+<Route data={{"path":"/tag/:id","radar":{"source":["lifeweek.com.cn/articleList/:tag"],"target":"/tag/:tag"},"name":"Unknown","maintainers":[],"location":"tag.ts"}} />
-### Search {#hackerone-search}
+## 色花堂 {#se-hua-tang}
-<Route author="imlonghao" example="/hackerone/search/rocket_chat" path="/hackerone/search/:search" paramsDesc={['Search string']} radar="1" />
+### Unknown {#se-hua-tang-unknown}
-## Instructables {#instructables}
+<Route data={{"path":["/bt/:subforumid?","/picture/:subforumid","/:subforumid?/:type?","/:subforumid?",""],"name":"Unknown","maintainers":["qiwihui","junfengP","nczitzk"],"description":"**原创 BT 电影**\n\n | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |\n | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |\n | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |\n\n **色花图片**\n\n | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |","location":"index.ts"}} />
-### Projects {#instructables-projects}
+**原创 BT 电影**
-<Route author="wolfg1969" example="/instructables/projects/circuits" path="/instructables/projects/:category?" paramsDesc={['Category, empty by default, can be found in URL or see the table below']} radar="1">
- | All | Circuits | Workshop | Craft | Cooking | Living | Outside | Teachers |
- | --- | -------- | -------- | ----- | ------- | ------ | ------- | -------- |
- | | circuits | workshop | craft | cooking | living | outside | teachers |
-</Route>
+| 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
+| -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
+| gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
-## Japanpost 日本郵便 {#japanpost-ri-ben-you-bian}
+**色花图片**
-### Track & Trace Service 郵便追跡サービス {#japanpost-ri-ben-you-bian-track-trace-service-you-bian-zhui-ji-%E3%82%B5%E3%83%BC%E3%83%93%E3%82%B9}
+| 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
-<Route author="tuzi3040" example="/japanpost/track/EJ123456789JP/en" path="/japanpost/track/:reqCode/:locale?" paramsDesc={['Package Number', 'Language, default to japanese `ja`']} radar="1" notOperational="1">
- | Japanese | English |
- | -------- | ------- |
- | ja | en |
-</Route>
+### Unknown {#se-hua-tang-unknown}
-## Layoffs.fyi {#layoffs-fyi}
+<Route data={{"path":["/bt/:subforumid?","/picture/:subforumid","/:subforumid?/:type?","/:subforumid?",""],"name":"Unknown","maintainers":["qiwihui","junfengP","nczitzk"],"description":"**原创 BT 电影**\n\n | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |\n | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |\n | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |\n\n **色花图片**\n\n | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |","location":"index.ts"}} />
-### Layoff Data Tracker {#layoffs-fyi-layoff-data-tracker}
+**原创 BT 电影**
-<Route author="BrandNewLifeJackie26" example="/layoffs" path="/layoffs" radar="1" anticrawler="1" />
+| 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
+| -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
+| gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
-RSS source in the original site is outdated.
+**色花图片**
-## LinkedIn {#linkedin}
+| 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
-### Jobs {#linkedin-jobs}
+### Unknown {#se-hua-tang-unknown}
-<Route author="BrandNewLifeJackie26" example="/linkedin/jobs/C-P/1/software engineer" path="/linkedin/jobs/:job_types/:exp_levels/:keywords?" paramsDesc={['See the following table for details, use \'-\' as delimiter', 'See the following table for details, use \'-\' as delimiter', 'keywords']} radar="1">
- #### `job_types` list
+<Route data={{"path":["/bt/:subforumid?","/picture/:subforumid","/:subforumid?/:type?","/:subforumid?",""],"name":"Unknown","maintainers":["qiwihui","junfengP","nczitzk"],"description":"**原创 BT 电影**\n\n | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |\n | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |\n | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |\n\n **色花图片**\n\n | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |","location":"index.ts"}} />
- | Full Time | Part Time | Contractor | All |
- | --------- | --------- | ---------- | --- |
- | F | P | C | all |
+**原创 BT 电影**
- #### `exp_levels` list
+| 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
+| -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
+| gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
- | Intership | Entry Level | Associate | Mid-Senior Level | Director | All |
- | --------- | ----------- | --------- | ---------------- | -------- | --- |
- | 1 | 2 | 3 | 4 | 5 | all |
+**色花图片**
- For example:
+| 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
- 1. If we want to search software engineer jobs of all levels and all job types, use `/linkedin/jobs/all/all/software engineer`
- 2. If we want to search all entry level contractor/part time software engineer jobs, use `/linkedin/jobs/P-C/2/software engineer`
+### Unknown {#se-hua-tang-unknown}
- **To make it easier, the recommended way is to start a search on [LinkedIn](https://www.linkedin.com/jobs/search) and use [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) to load the specific feed.**
-</Route>
+<Route data={{"path":["/bt/:subforumid?","/picture/:subforumid","/:subforumid?/:type?","/:subforumid?",""],"name":"Unknown","maintainers":["qiwihui","junfengP","nczitzk"],"description":"**原创 BT 电影**\n\n | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |\n | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |\n | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |\n\n **色花图片**\n\n | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |","location":"index.ts"}} />
-## LinkedIn 领英中国 {#linkedin-ling-ying-zhong-guo}
+**原创 BT 电影**
-### Jobs {#linkedin-ling-ying-zhong-guo-jobs}
+| 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
+| -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
+| gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
-<Route author="bigfei" example="/linkedin/cn/jobs/Software" path="/linkedin/cn/jobs/:keywords?" paramsDesc={['搜索关键字']} radar="1" notOperational="1">
- 另外,可以通过添加额外的以下 query 参数来输出满足特定要求的工作职位:
-
- | 参数 | 描述 | 举例 | 默认值 |
- | ---------- | ------------------------------------------------- | ------------------------------------------------------- | ------- |
- | `geo` | geo 编码 | 102890883(中国)、102772228(上海)、103873152(北京) | 空 |
- | `remote` | 是否只显示远程工作 | `true/false` | `false` |
- | `location` | 工作地点 | `china/shanghai/beijing` | 空 |
- | `relevant` | 排序方式 (true: 按相关性排序,false: 按日期排序) | `true/false` | `false` |
- | `period` | 发布时间 | `1/7/30` | 空 |
-
- 例如:
- [`/linkedin/cn/jobs/Software?location=shanghai&period=1`](https://rsshub.app/linkedin/cn/jobs/Software?location=shanghai\&period=1): 查找所有在上海的今日发布的所有 Software 工作
-
- **为了方便起见,建议您在 [LinkedIn.cn](https://www.linkedin.cn/incareer/jobs/search) 上进行搜索,并使用 [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) 加载特定的 feed。**
-</Route>
-
-## MiniFlux {#miniflux}
-
-因需设置 API Key,故请自行架设 RSSHub。API 密钥则请于 MiniFlux 实例中的 `设置` -> `API密钥` -> `创建一个新的API密钥` 处获取。
-
-### 订阅列表 {#miniflux-ding-yue-lie-biao}
-
-<Route author="emdoe" example="/miniflux/subscription/categories=科技,影音" path="/miniflux/subscription/:parameters?" paramsDesc={['分类名或分类 ID 或/且 订阅源名称或订阅源 ID']} configRequired="1">
- 1. 如无指定参数,默认输出全部订阅源
- 2. 分类 ID 或订阅源 ID 请于`分类`(快捷键 `g` `c`)或`源`(快捷键 `g` `f`)页面获取,每个分类(或订阅源)的网址即显示其 ID 信息。
- 3. 支持分类名称和分类 ID,如需输出多个分类,请重复输入 `category=` 并用 `&` 连接,或者不同的分类名之间直接用**英文**逗号连接。举例来说,可以通过 `/miniflux/subscription/category=科技&category=1` 或者 `/miniflux/subscription/categories=科技,1` 实现订阅。
- 4. 支持指定订阅源名称或订阅源 ID,方法与分类的设定类似。举例来说,可以通过 `/miniflux/subscription/feed=1&feed=Archdaily` 或者 `/miniflux/subscription/feeds=1,Archdaily` 实现订阅。
- 5. 支持同时指定订阅源信息和分类信息,将输出满足分类选项的订阅源信息。考虑一例:通过 `/miniflux/subscription/feeds=1,archdaily&category=art,7`,则如果订阅源 ID 为 1 或者订阅源名称为 ArchDaily 确实在分类 `art` 或者分类 ID 为 7 的分类下,则输出该订阅源信息。
-</Route>
-
-### 获取订阅源内容 {#miniflux-huo-qu-ding-yue-yuan-nei-rong}
-
-<Route author="emdoe" example="/miniflux/feeds=1&2&3/mark=read&limit=7&status=unread" path="/miniflux/:feeds/:parameters?" paramsDesc={['订阅源 ID 或获取全部', '过滤及设置参数,多个请用 `&` 连接']} configRequired="1">
- 1. 支持获取全部内容:即可通过 `/miniflux/all` 或 `/miniflux/default` 等关键字获取全部订阅源下的内容。
- 2. 支持通过订阅源的 ID 获取指定订阅源的订阅内容,订阅源 ID 请于`源`(快捷键 `g` `f`)所在的页面获取,每个分类(或订阅源)的网址即显示其 ID 信息。而格式上有如下选择:
- 1. 支持 `/miniflux/feed=[feed_id]`,请将 `[feed_id]` 替换为实际订阅的订阅源 ID(注意不包含括号,即单纯为一个数字)
- 2. 支持 `/miniflux/feed=[feed1_id]&feed=[feed2_id]` 或 `/miniflux/feeds=[feed1_id]&[feed2_id]` 订阅多个订阅源
- 3. 以上还支持简写,即直接使用订阅源 ID:`/miniflux/[feed1_id]&[feed2_id]`
- 3. 可进一步根据需要,指定参数:
- 1. 支持 MiniFlux 提供的所有参数[选项](https://miniflux.app/docs/api.html#endpoint-get-feed-entries)。同其文档所注相同,多个过滤选项之间请用 `&` 连接。除去 `status` 外,多个相同的过滤选项应只会读取第一个。
- 2. 特别的,本路由将默认指定排序方式为从新到旧排序(`direction=desc`)。
- 3. 此外,本路由另支持额外的选项,包括:
- 1. 利用 `feed_name` 参数控制标题格式,`feed_name=1` 即输出的每一篇标题会变为 `文章标题 | 订阅源名称`,默认为 `feed_name=0`,即只输出文章标题。
- 2. 利用 `mark` 参数控制在 RSSHub 获取订阅内容之后的动作,包括维持不变(`unchanged`,默认),标记为已读(`read`),移除(`removed`),以及标记为未读(`unread`)。**注意,请不要将标记为已读简单的理解为是用于实现某种同步服务的**,这个功能更像是在辅助 MiniFlux 的自动清理功能。
- 3. 未来可能会支持利用 `link` 参数控制输出内容的网址(支持这个功能需要 MiniFlux 未来提供相应的接口),设定为通过 MiniFlux 实体的分享功能生成的网址或原始内容的网址。请注意,如果利用 MiniFlux 的分享功能,这些文章内容均不会被自动清理。
- 4. 可以通过 `limit` 参数控制输出内容的数量,默认输出全部符合其它条件的所有内容,但**建议用户设置该参数**。不过众所周知,RSSHub 提供全局参数 `?limit` 控制输出内容的数量,但如果用户存在设置错误,则可能出现一些奇怪的问题:不妨考虑用户的参数设定为 `miniflux/all/limit=5&status=unread&mark=read?limit=3`,那么则有两篇用户未读的文章自动被标记为已读,用户却很可能从未发现。为避免出现这样的情形,本路由对该参数的设定作出如下调整:
- 1. 选择输出全部内容时,如果同时设定两个参数,则取设定数值较小的那个,否则按照用户设定控制输出内容的数量。
- 2. 选择输出指定订阅源时,`&limit=` 参数控制**每一个**订阅源的输出数量,`?limit=` 控制**最终**输出内容的数量。不妨假设用户指定聚合两个订阅源,那么 `/miniflux/1&2/mark=read&limit=3` 与 `/miniflux/1&2/mark=read?limit=6` 的效果相同,除非
- 3. 用户设定的 `&limit` 值小于 `?limit`,路由会以 `&limit` 设定为准:即最终输出内容数量 = `&limit` 参数值 \* 订阅源数量,或者如果
- 4. 用户设定的 `&limit` 值大于 `?limit` 参数,又或者 `?limit` 参数并非是订阅源数量的整数倍,则路由将用 `?limit` 参数除去订阅源数量,并向下取整,每个订阅源将输出所得数字篇内容(如果得数为 0,则修改为每个订阅源输出 1 篇文章)。
- 5. 考虑一例:`/miniflux/1&2&3/status=unread&limit=2?limit=5` 或 `/miniflux/1&2&3/status=unread&limit=2?limit=7`,最终的输出结果均为 `/miniflux/1&2&3/status=unread&limit=2`,等效于 `/miniflux/1&2&3/status=unread?limit=6`
- 6. 考虑另一例:`/miniflux/1&2&3/status=unread?limit=2`,因为 2 / 3 ≈ 0.667 -> 0 -> 1,所以等效于 `/miniflux/1&2&3/status=unread?limit=3`,亦等效于 `/miniflux/1&2&3/status=unread&limit=1`
- 5. 以上选项均与 MiniFlux 的 API 的行为保持一致,如果用户错误重复设定某参数,只读取第一个设定的值。
-
- 一例:如果用户希望输出全部订阅源中,最旧的两篇未读的文章,并希望在文章的标题栏显示订阅源的名字,同时希望输出内容在 MiniFlux 中被标为已读,那么路由设置应为:`/miniflux/all/direction=asc&status=unread&feed_name=1&mark=read&limit=2`
-</Route>
+**色花图片**
-## Mozilla {#mozilla}
+| 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
-### Firefox Monitor {#mozilla-firefox-monitor}
+### Unknown {#se-hua-tang-unknown}
-<Route author="TonyRL" example="/firefox/breaches" path="/firefox/breaches" />
+<Route data={{"path":["/bt/:subforumid?","/picture/:subforumid","/:subforumid?/:type?","/:subforumid?",""],"name":"Unknown","maintainers":["qiwihui","junfengP","nczitzk"],"description":"**原创 BT 电影**\n\n | 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |\n | -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |\n | gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |\n\n **色花图片**\n\n | 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |","location":"index.ts"}} />
-## Nobel Prize {#nobel-prize}
+**原创 BT 电影**
-### List {#nobel-prize-list}
+| 国产原创 | 亚洲无码原创 | 亚洲有码原创 | 高清中文字幕 | 三级写真 | VR 视频 | 素人有码 | 欧美无码 | 韩国主播 | 动漫原创 | 综合讨论 |
+| -------- | ------------ | ------------ | ------------ | -------- | ------- | -------- | -------- | -------- | -------- | -------- |
+| gcyc | yzwmyc | yzymyc | gqzwzm | sjxz | vr | srym | omwm | hgzb | dmyc | zhtl |
-<Route author="nczitzk" example="/nobelprize" path="/nobelprize/:caty" paramsDesc={['Category, see below, all by default']}>
- | Physics | Chemistry | Physiology or Medicine | Literature | Peace | Economic Science |
- | ------- | --------- | ---------------------- | ---------- | ----- | ----------------- |
- | physics | chemistry | physiology-or-medicine | literature | peace | economic-sciences |
-</Route>
+**色花图片**
-## NOI 全国青少年信息学奥林匹克竞赛 {#noi-quan-guo-qing-shao-nian-xin-xi-xue-ao-lin-pi-ke-jing-sai}
+| 原创自拍 | 转贴自拍 | 华人街拍 | 亚洲性爱 | 欧美性爱 | 卡通动漫 | 套图下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| yczp | ztzp | hrjp | yzxa | omxa | ktdm | ttxz |
-### 新闻 {#noi-quan-guo-qing-shao-nian-xin-xi-xue-ao-lin-pi-ke-jing-sai-xin-wen}
+## 厦门理工大学 {#xia-men-li-gong-da-xue}
-<Route author="WenryXu" example="/noi" path="/noi" />
+### Unknown {#xia-men-li-gong-da-xue-unknown}
-### 获奖名单 {#noi-quan-guo-qing-shao-nian-xin-xi-xue-ao-lin-pi-ke-jing-sai-huo-jiang-ming-dan}
+<Route data={{"path":"/jwc/bkjw/:category?","name":"Unknown","maintainers":[],"location":"jwc/bkjw.ts"}} />
-<Route author="WenryXu" example="/noi/winners-list" path="/noi/winners-list" />
+### Unknown {#xia-men-li-gong-da-xue-unknown}
-### 各省新闻 {#noi-quan-guo-qing-shao-nian-xin-xi-xue-ao-lin-pi-ke-jing-sai-ge-sheng-xin-wen}
+<Route data={{"path":"/jwc/yjjw/:category?","name":"Unknown","maintainers":[],"location":"jwc/yjs.ts"}} />
-<Route author="WenryXu" example="/noi/province-news" path="/noi/province-news" />
+## 厦门网 {#xia-men-wang}
-### 报名新闻 {#noi-quan-guo-qing-shao-nian-xin-xi-xue-ao-lin-pi-ke-jing-sai-bao-ming-xin-wen}
+### Unknown {#xia-men-wang-unknown}
-<Route author="WenryXu" example="/noi/rg-news" path="/noi/rg-news" notOperational="1" />
+<Route data={{"path":"/news/:category{.+}?","name":"Unknown","maintainers":[],"location":"news.ts"}} />
-## Notion {#notion}
+## 上海大学 {#shang-hai-da-xue}
-:::warning
-Need to set up Notion integration, please refer to [Route-specific Configurations](https://docs.rsshub.app/install/#Deployment) for details.
-:::
+### Unknown {#shang-hai-da-xue-unknown}
-:::tip[Recommendation]
-It is recommended to use with clipping tools such as Notion Web Clipper.
-:::
+<Route data={{"path":["/jwc/:type?","/jwb/:type?"],"radar":{"source":["www.shu.edu.cn/:type"],"target":"/:type"},"name":"Unknown","maintainers":[],"description":"| 通知通告 | 新闻 | 政策文件 |\n | -------- | ---- | -------- |\n | notice | news | policy |","location":"jwb.ts"}} />
-### Database {#notion-database}
+| 通知通告 | 新闻 | 政策文件 |
+| -------- | ---- | -------- |
+| notice | news | policy |
-<Route author="curly210102" example="/notion/database/a7cc133b68454f138011f1530a13531e" path="/notion/database/:databaseId" paramsDesc={['Database ID']} configRequired="1" radar="1">
- There is an optional query parameter called `properties=` that can be used to customize field mapping. There are three built-in fields: author, pubTime and link, which can be used to add additional information.
+### Unknown {#shang-hai-da-xue-unknown}
- For example, if you have set up three properties in your database - "Publish Time", "Author", and "Original Article Link" - then execute the following JavaScript code to get the result for the properties parameter.
+<Route data={{"path":["/jwc/:type?","/jwb/:type?"],"radar":{"source":["www.shu.edu.cn/:type"],"target":"/:type"},"name":"Unknown","maintainers":[],"description":"| 通知通告 | 新闻 | 政策文件 |\n | -------- | ---- | -------- |\n | notice | news | policy |","location":"jwb.ts"}} />
- ```js
- encodeURIComponent(JSON.stringify({"pubTime": "Publish Time", "author": "Author", "link": "Original Article Link"}))
- ```
+| 通知通告 | 新闻 | 政策文件 |
+| -------- | ---- | -------- |
+| notice | news | policy |
- There is an optional query parameter called `query=` that can be used to customize the search rules for your database, such as custom sorting and filtering rules.
+## 上海第二工业大学 {#shang-hai-di-er-gong-ye-da-xue}
- please refer to the [Notion API documentation](https://developers.notion.com/reference/post-database-query) and execute `encodeURIComponent(JSON.stringify(custom rules))` to provide the query parameter.
-</Route>
+### Unknown {#shang-hai-di-er-gong-ye-da-xue-unknown}
-## ONE・一个 {#one-yi-ge}
+<Route data={{"path":"/jwc/:listId","radar":{"source":["jwc.sspu.edu.cn/jwc/:listId/list.htm"]},"name":"Unknown","maintainers":["TonyRL"],"location":"jwc.ts"}} />
-### 图片文字问答 {#one-yi-ge-tu-pian-wen-zi-wen-da}
+### Unknown {#shang-hai-di-er-gong-ye-da-xue-unknown}
-<Route author="fengkx" example="/one" path="/one" />
+<Route data={{"path":"/pe/:id?","radar":{"source":["pe2016.sspu.edu.cn/:id/list.htm"],"target":"/pe/:id"},"name":"Unknown","maintainers":["nczitzk"],"location":"pe.ts"}} />
-## oshwhub 立创开源硬件平台 {#oshwhub-li-chuang-kai-yuan-ying-jian-ping-tai}
+## 深潮 TechFlow {#shen-chao-techflow}
-### OpenSource Square {#oshwhub-li-chuang-kai-yuan-ying-jian-ping-tai-opensource-square}
+### Unknown {#shen-chao-techflow-unknown}
-<Route author="tylinux" example="/oshwhub" path="/oshwhub/:sortType?" paramsDesc={['sortType']} radar="1" notOperational="1" />
+<Route data={{"path":"/","radar":{"source":["techflowpost.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"techflowpost.com/","location":"index.ts"}} />
-## Panda {#panda}
+## 紳士漫畫 {#shen-shi-man-hua}
-### Feeds {#panda-feeds}
+### Unknown {#shen-shi-man-hua-unknown}
-<Route author="lyrl" example="/usepanda/feeds/5718e53e7a84fb1901e059cc" path="/usepanda/feeds/:id" paramsDesc={['Feed ID']}>
- | Channel | feedId |
- | ------- | ------------------------ |
- | Github | 5718e53e7a84fb1901e059cc |
-</Route>
+<Route data={{"path":["/","/category/:cid","/tag/:tag"],"radar":{"source":["wnacg.org/albums.html","wnacg.org/"],"target":""},"name":"Unknown","maintainers":["KenMizz"],"url":"wnacg.org/albums.html","location":"index.ts"}} />
-## Parcel Tracking {#parcel-tracking}
+### Unknown {#shen-shi-man-hua-unknown}
-### Hermes UK {#parcel-tracking-hermes-uk}
+<Route data={{"path":["/","/category/:cid","/tag/:tag"],"radar":{"source":["wnacg.org/albums.html","wnacg.org/"],"target":""},"name":"Unknown","maintainers":["KenMizz"],"url":"wnacg.org/albums.html","location":"index.ts"}} />
-<Route author="HenryQW" example="/parcel/hermesuk/[tracking number]" path="/parcel/hermesuk/:tracking" paramsDesc={['Tracking number']} />
+### Unknown {#shen-shi-man-hua-unknown}
-## Product Hunt {#product-hunt}
+<Route data={{"path":["/","/category/:cid","/tag/:tag"],"radar":{"source":["wnacg.org/albums.html","wnacg.org/"],"target":""},"name":"Unknown","maintainers":["KenMizz"],"url":"wnacg.org/albums.html","location":"index.ts"}} />
-> 官方 Feed 地址为: [https://www.producthunt.com/feed](https://www.producthunt.com/feed)
+## 世界新聞網 {#shi-jie-xin-wen-wang}
-### Today Popular {#product-hunt-today-popular}
+### Unknown {#shi-jie-xin-wen-wang-unknown}
-<Route author="miaoyafeng Fatpandac" example="/producthunt/today" path="/producthunt/today" />
+<Route data={{"path":"/:path{.+}?","radar":{"source":["worldjournal.com/wj/*path"],"target":"/:path"},"name":"Unknown","maintainers":[],"url":"worldjournal.com/wj/*path","location":"index.ts"}} />
-## PwC Strategy& {#pwc-strategy}
+## 水果派 {#shui-guo-pai}
-### Sustainability {#pwc-strategy-sustainability}
+### Unknown {#shui-guo-pai-unknown}
-<Route author="mintyfrankie" example="/pwc/strategyand/sustainability" path="/pwc/strategyand/sustainability" puppeteer="1" />
+<Route data={{"path":"/","radar":{"source":["shuiguopai.com/"],"target":""},"name":"Unknown","maintainers":["nczitzk"],"url":"shuiguopai.com/","location":"index.ts"}} />
-## Remote.work {#remote-work}
+## 四川工商学院 {#si-chuan-gong-shang-xue-yuan}
-### Remote.work Job Information {#remote-work-remote-work-job-information}
+### Unknown {#si-chuan-gong-shang-xue-yuan-unknown}
-<Route author="luyuhuang" example="/remote-work/all" path="/remote-work/:caty?" paramsDesc={['Job category, default to all']} radar="1">
- | All Jobs | Development | Design | Operation | Product | Other | Marketing | Sales |
- | :------: | :---------: | :----: | :-------: | :-----: | :---: | :-------: | :---: |
- | all | development | design | operation | product | other | marketing | sales |
-</Route>
+<Route data={{"path":"/xyxw","radar":{"source":["stbu.edu.cn/html/news/xueyuan","stbu.edu.cn/"]},"name":"Unknown","maintainers":["HyperCherry"],"url":"stbu.edu.cn/html/news/xueyuan","location":"xyxw.ts"}} />
-## RSSHub {#rsshub}
+## 四月网 {#si-yue-wang}
-### Transformation - HTML {#rsshub-transformation-html}
+### Unknown {#si-yue-wang-unknown}
-Pass URL and transformation rules to convert HTML/JSON into RSS.
+<Route data={{"path":"/:id?/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from HTML.
+## 搜狗 {#sou-gou}
-| Key | Meaning | Accepted Values | Default |
-| ----------------- | -------------------------------------------------------------- | --------------- | ---------------------- |
-| `title` | The title of the RSS | `string` | Extract from `<title>` |
-| `item` | The HTML elements as `item` using CSS selector | `string` | html |
-| `itemTitle` | The HTML elements as `title` in `item` using CSS selector | `string` | `item` element |
-| `itemTitleAttr` | The attributes of `title` element as title | `string` | Element text |
-| `itemLink` | The HTML elements as `link` in `item` using CSS selector | `string` | `item` element |
-| `itemLinkAttr` | The attributes of `link` element as link | `string` | `href` |
-| `itemDesc` | The HTML elements as `descrption` in `item` using CSS selector | `string` | `item` element |
-| `itemDescAttr` | The attributes of `descrption` element as description | `string` | Element html |
-| `itemPubDate` | The HTML elements as `pubDate` in `item` using CSS selector | `string` | `item` element |
-| `itemPubDateAttr` | The attributes of `pubDate` element as pubDate | `string` | Element html |
+### 搜索 {#sou-gou-sou-suo}
-<Route author="ttttmr" example="/rsshub/transform/html/https%3A%2F%2Fwechat2rss.xlab.app%2Fposts%2Flist%2F/item=div%5Bclass%3D%27post%2Dcontent%27%5D%20p%20a" path="/rsshub/transform/html/:url/:routeParams" paramsDesc={['`encodeURIComponent`ed URL address', 'Transformation rules, requires URL encode']} configRequired="1">
- Parameters parsing in the above example:
+<Route data={{"path":"/search/:keyword","categories":["other"],"example":"/sogou/search/rss","parameters":{"keyword":"搜索关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"搜索","maintainers":["CaoMeiYouRen"],"location":"search.ts"}} />
- | Parameter | Value |
- | ------------- | ----------------------------------------- |
- | `url` | `https://wechat2rss.xlab.app/posts/list/` |
- | `routeParams` | `item=div[class='post-content'] p a` |
+### 特色 LOGO {#sou-gou-te-se-logo}
- Parsing of `routeParams` parameter:
+<Route data={{"path":"/doodles","categories":["other"],"example":"/sogou/doodles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"特色 LOGO","maintainers":["xyqfer"],"location":"doodles.ts"}} />
- | Parameter | Value |
- | --------- | ------------------------------- |
- | `item` | `div[class='post-content'] p a` |
-</Route>
+## 台灣事實查核中心 {#tai-wan-shi-shi-cha-he-zhong-xin}
-### Transformation - JSON {#rsshub-transformation-json}
+### Unknown {#tai-wan-shi-shi-cha-he-zhong-xin-unknown}
-Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from JSON.
+<Route data={{"path":["/","/category/:id{.+}","/info","/report","/topic/:id"],"name":"Unknown","maintainers":["TonyRL"],"url":"tfc-taiwan.org.tw/articles/info","location":"index.ts"}} />
-| Key | Meaning | Accepted Values | Default |
-| ------------- | ---------------------------------------- | --------------- | ------------------------------------------ |
-| `title` | The title of the RSS | `string` | Extracted from home page of current domain |
-| `item` | The JSON Path as `item` element | `string` | Entire JSON response |
-| `itemTitle` | The JSON Path as `title` in `item` | `string` | None |
-| `itemLink` | The JSON Path as `link` in `item` | `string` | None |
-| `itemDesc` | The JSON Path as `description` in `item` | `string` | None |
-| `itemPubDate` | The JSON Path as `pubDate` in `item` | `string` | None |
+### Unknown {#tai-wan-shi-shi-cha-he-zhong-xin-unknown}
-:::tip
-JSON Path only supports format like `a.b.c`. if you need to access arrays, like `a[0].b`, you can write it as `a.0.b`.
-:::
+<Route data={{"path":["/","/category/:id{.+}","/info","/report","/topic/:id"],"name":"Unknown","maintainers":["TonyRL"],"url":"tfc-taiwan.org.tw/articles/info","location":"index.ts"}} />
-<Route author="ttttmr" example="/rsshub/transform/json/https%3A%2F%2Fapi.github.com%2Frepos%2Fginuerzh%2Fgost%2Freleases/title=Gost%20releases&itemTitle=tag_name&itemLink=html_url&itemDesc=body" path="/rsshub/transform/json/:url/:routeParams" paramsDesc={['`encodeURIComponent`ed URL address', 'Transformation rules, requires URL encode']} configRequired="1">
- Parameters parsing in the above example:
+### Unknown {#tai-wan-shi-shi-cha-he-zhong-xin-unknown}
- | Parameter | Value |
- | ------------- | ------------------------------------------------------------------------ |
- | `url` | `https://api.github.com/repos/ginuerzh/gost/releases` |
- | `routeParams` | `title=Gost releases&itemTitle=tag_name&itemLink=html_url&itemDesc=body` |
+<Route data={{"path":["/","/category/:id{.+}","/info","/report","/topic/:id"],"name":"Unknown","maintainers":["TonyRL"],"url":"tfc-taiwan.org.tw/articles/info","location":"index.ts"}} />
- Parsing of `routeParams` parameter:
+### Unknown {#tai-wan-shi-shi-cha-he-zhong-xin-unknown}
- | Parameter | Value |
- | ----------- | --------------- |
- | `title` | `Gost releases` |
- | `itemTitle` | `tag_name` |
- | `itemLink` | `html_url` |
- | `itemDesc` | `body` |
-</Route>
+<Route data={{"path":["/","/category/:id{.+}","/info","/report","/topic/:id"],"name":"Unknown","maintainers":["TonyRL"],"url":"tfc-taiwan.org.tw/articles/info","location":"index.ts"}} />
-### Transformation - Sitemap {#rsshub-transformation-sitemap}
+### Unknown {#tai-wan-shi-shi-cha-he-zhong-xin-unknown}
-Specify options (in the format of query string) in parameter `routeParams` parameter to extract data from Sitemap. (Follows Sitemap Protocol 0.9)
+<Route data={{"path":["/","/category/:id{.+}","/info","/report","/topic/:id"],"name":"Unknown","maintainers":["TonyRL"],"url":"tfc-taiwan.org.tw/articles/info","location":"index.ts"}} />
-| Key | Meaning | Accepted Values | Default |
-| ------- | -------------------- | --------------- | ---------------------- |
-| `title` | The title of the RSS | `string` | Extract from `<title>` |
+## 太原师范学院 {#tai-yuan-shi-fan-xue-yuan}
-<Route author="flrngel" example="/rsshub/transform/xml/https%3A%2F%2Fwww.sitemaps.org%2Fsitemap.xml/" path="/rsshub/transform/html/:url/:routeParams?" paramsDesc={['`encodeURIComponent`ed URL address', 'Transformation rules, requires URL encode']} configRequired="1">
- Parameters parsing in the above example:
+### Unknown {#tai-yuan-shi-fan-xue-yuan-unknown}
- | Parameter | Value |
- | ------------- | -------------------------------------- |
- | `url` | `https://www.sitemaps.org/sitemap.xml` |
- | `routeParams` | `title=Example` |
-</Route>
+<Route data={{"path":"/","radar":{"source":["tynu.edu.cn/index/tzgg.htm","tynu.edu.cn/index.htm","tynu.edu.cn/"],"target":""},"name":"Unknown","maintainers":["2PoL"],"url":"tynu.edu.cn/index/tzgg.htm","location":"tynu.ts"}} />
-## TV Tropes {#tv-tropes}
+## 淘股吧 {#tao-gu-ba}
-### Featured {#tv-tropes-featured}
+### Unknown {#tao-gu-ba-unknown}
-<Route author="nczitzk" example="/tvtropes/featured/today" path="/tvtropes/featured/:category?" paramsDesc={['Category, see below, Today\'s Featured Trope by default']} radar="1">
- | Today's Featured Trope | Newest Trope |
- | ---------------------- | ------------ |
- | today | newest |
-</Route>
+<Route data={{"path":["/index","/:category?"],"name":"Unknown","maintainers":["nczitzk"],"description":"| 淘股论坛 | 社区总版 | 精华加油 | 网友点赞 |\n | -------- | -------- | -------- | -------- |\n | bbs | zongban | jinghua | dianzan |","location":"index.ts"}} />
-## Urban Dictionary {#urban-dictionary}
+| 淘股论坛 | 社区总版 | 精华加油 | 网友点赞 |
+| -------- | -------- | -------- | -------- |
+| bbs | zongban | jinghua | dianzan |
-### Random words {#urban-dictionary-random-words}
+### Unknown {#tao-gu-ba-unknown}
-<Route author="TonyRL" example="/urbandictionary/random" path="/urbandictionary/random" radar="1" />
+<Route data={{"path":["/index","/:category?"],"name":"Unknown","maintainers":["nczitzk"],"description":"| 淘股论坛 | 社区总版 | 精华加油 | 网友点赞 |\n | -------- | -------- | -------- | -------- |\n | bbs | zongban | jinghua | dianzan |","location":"index.ts"}} />
-## V2rayShare {#v2rayshare}
+| 淘股论坛 | 社区总版 | 精华加油 | 网友点赞 |
+| -------- | -------- | -------- | -------- |
+| bbs | zongban | jinghua | dianzan |
-### 免费节点 {#v2rayshare-mian-fei-jie-dian}
+## 腾讯新闻较真查证平台 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai}
-<Route author="77taibai" example="/v2rayshare" path="/v2rayshare">
- 获取来自 V2rayShare 的免费节点,可以通过链接复制或下载
-</Route>
+### Unknown {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-unknown}
-## WeGene {#wegene}
+<Route data={{"path":"/ac/comic/:id?","radar":{"source":["ac.qq.com/Comic/ComicInfo/id/:id","ac.qq.com/"],"target":"/ac/comic/:id"},"name":"Unknown","maintainers":[],"location":"ac/comic.ts"}} />
-### 最近更新 {#wegene-zui-jin-geng-xin}
+### 最新辟谣 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-zui-xin-pi-yao}
-<Route author="LogicJake" example="/wegene/newest" path="/wegene/newest" radar="1" />
+<Route data={{"path":"/fact","categories":["other"],"example":"/qq/fact","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vp.fact.qq.com/home","vp.fact.qq.com/"]},"name":"最新辟谣","maintainers":["hoilc"],"url":"vp.fact.qq.com/home","location":"fact/index.ts"}} />
-### 栏目 {#wegene-lan-mu}
+## 停水通知 {#ting-shui-tong-zhi}
-<Route author="LogicJake" example="/wegene/column/all/all" path="/wegene/column/:type/:category" paramsDesc={['栏目类型,all(全部项目) 或 weapp(专业版)','栏目分类']} radar="1">
- :::tip
- type 为 all 时,category 参数不支持 cost 和 free
- :::
+配合 [IFTTT](https://ifttt.com/) Applets [邮件通知](https://ifttt.com/applets/SEvmDVKY-) 使用实现自动通知效果.
- | 全部 | 祖源分析 | 付费 | 遗传性疾病 | 药物指南 | 免费 | 运动基因 | 营养代谢 | 心理特质 | 健康风险 | 皮肤特性 | 遗传特征 |
- | ---- | -------- | ---- | ---------- | -------- | ---- | -------- | ---------- | ---------- | -------- | -------- | -------- |
- | all | ancestry | cost | disease | drug | free | genefit | metabolism | psychology | risk | skin | traits |
-</Route>
+### Unknown {#ting-shui-tong-zhi-unknown}
-## WFDF {#wfdf}
+<Route data={{"path":"/wuhan/:channelId?","radar":{"source":["whwater.com/IWater.shtml","whwater.com/"],"target":"/wuhan"},"name":"Unknown","maintainers":[],"url":"whwater.com/IWater.shtml","location":"wuhan.ts"}} />
-### News {#wfdf-news}
+## 王者荣耀 {#wang-zhe-rong-yao}
-<Route author="HankChow" example="/wfdf/news" path="/wfdf/news" radar="1" />
+### Unknown {#wang-zhe-rong-yao-unknown}
-## Wise {#wise}
+<Route data={{"path":"/news/coronavirus/data/:province?/:city?","name":"Unknown","maintainers":["CaoMeiYouRen"],"location":"news/coronavirus/data.ts"}} />
-### FX Pair Yesterday {#wise-fx-pair-yesterday}
+### Unknown {#wang-zhe-rong-yao-unknown}
-<Route author="HenryQW" example="/wise/pair/GBP/USD" path="/wise/pair/:source/:target" paramsDesc={['Base currency abbreviation','Quote currency abbreviation']} radar="1">
- Refer to [the list of supported currencies](https://wise.com/tools/exchange-rate-alerts/).
-</Route>
+<Route data={{"path":"/news/coronavirus/total","radar":{"source":["new.qq.com/zt2020/page/feiyan.htm"]},"name":"Unknown","maintainers":["CaoMeiYouRen"],"url":"new.qq.com/zt2020/page/feiyan.htm","location":"news/coronavirus/total.ts"}} />
-## World Meteorological Centre Beijing {#world-meteorological-centre-beijing}
+## 网易公开课 {#wang-yi-gong-kai-ke}
-### Publish {#world-meteorological-centre-beijing-publish}
+:::tip
+部分歌单及听歌排行信息为登陆后可见,自建时将环境变量`NCM_COOKIES`设为登陆后的 Cookie 值,即可正常获取。
+:::
-<Route author="nczitzk" example="/wmc-bj/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html" path="/wmc-bj/publish/:category?" paramsDesc={['Category, can be found in URL, `CRA-Reanalysis/2m-Temperature/6-hour/index.html` by default']} radar="1">
- :::tip
- `category` is the text after `publish/` in the URL.
+### Unknown {#wang-yi-gong-kai-ke-unknown}
- eg. The URL for [Monitoring\_CMA-RA\_2m-Temperature\_6-hour](http://www.wmc-bj.net/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html) is [http://www.wmc-bj.net/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html](http://www.wmc-bj.net/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html). The `category` for route can be represented as [`/wmc-bj/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html`](https://rsshub.app/wmc-bj/publish/CRA-Reanalysis/2m-Temperature/6-hour/index.html).
- :::
-</Route>
+<Route data={{"path":"/music/user/events/:id","name":"Unknown","maintainers":["Master-Hash"],"location":"music/userevents.ts"}} />
-## 艾瑞 {#ai-rui}
+## 微信小程序 {#wei-xin-xiao-cheng-xu}
-### 产业研究报告 {#ai-rui-chan-ye-yan-jiu-bao-gao}
+:::tip
+公众号直接抓取困难,故目前提供几种间接抓取方案,请自行选择
+:::
-<Route author="brilon Fatpandac" example="/iresearch/report" path="/iresearch/report" />
+### Unknown {#wei-xin-xiao-cheng-xu-unknown}
-### 周度市场观察 {#ai-rui-zhou-du-shi-chang-guan-cha}
+<Route data={{"path":"/data258/:id?","radar":{"source":["mp.data258.com/","mp.data258.com/article/category/:id"]},"name":"Unknown","maintainers":["Rongronggg9"],"url":"mp.data258.com/","location":"data258.ts"}} />
-<Route author="nczitzk" example="/iresearch/weekly" path="/iresearch/weekly/:category?" paramsDesc={['分类,见下表,默认为全部']}>
- | 家电行业 | 服装行业 | 美妆行业 | 食品饮料行业 |
- | -------- | -------- | -------- | ------------ |
-</Route>
+## 温州大学 {#wen-zhou-da-xue}
-## 爱 Q 生活网 {#ai-q-sheng-huo-wang}
+### Unknown {#wen-zhou-da-xue-unknown}
-### 最近更新 {#ai-q-sheng-huo-wang-zui-jin-geng-xin}
+<Route data={{"path":"/news/:type?","name":"Unknown","maintainers":["Chandler-Lu"],"location":"news.ts"}} />
-<Route author="nczitzk" example="/iqnew/latest" path="/iqnew/latest" radar="1" />
+## 我不是盐神 {#wo-bu-shi-yan-shen}
-## 爱发电 {#ai-fa-dian}
+### Unknown {#wo-bu-shi-yan-shen-unknown}
-### 发现用户 {#ai-fa-dian-fa-xian-yong-hu}
+<Route data={{"path":"/","name":"Unknown","maintainers":["ruoshui9527"],"location":"common.ts"}} />
-<Route author="sanmmm" example="/afdian/explore/hot/所有" path="/afdian/explore/:type/:category?" paramsDesc={['分类', '目录类型,默认为 `所有`']}>
- 分类
+## 武汉大学 {#wu-han-da-xue}
- | 推荐 | 最热 |
- | ---- | ---- |
- | rec | hot |
+### Unknown {#wu-han-da-xue-unknown}
- 目录类型
+<Route data={{"path":"/hyxt/:category{.+}?","name":"Unknown","maintainers":[],"location":"hyxt.ts"}} />
- | 所有 | 绘画 | 视频 | 写作 | 游戏 | 音乐 | 播客 | 摄影 | 技术 | Vtuber | 舞蹈 | 体育 | 旅游 | 美食 | 时尚 | 数码 | 动画 | 其他 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 所有 | 绘画 | 视频 | 写作 | 游戏 | 音乐 | 播客 | 摄影 | 技术 | Vtuber | 舞蹈 | 体育 | 旅游 | 美食 | 时尚 | 数码 | 动画 | 其他 |
-</Route>
+### Unknown {#wu-han-da-xue-unknown}
-### 用户动态 {#ai-fa-dian-yong-hu-dong-tai}
+<Route data={{"path":"/news/:category{.+}?","name":"Unknown","maintainers":[],"location":"news.ts"}} />
-<Route author="sanmmm" example="/afdian/dynamic/@afdian" path="/afdian/dynamic/:uid?" paramsDesc={['用户id,用户动态页面url里可找到']} />
+## 西安交通大学 {#xi-an-jiao-tong-da-xue}
-## 百度 {#bai-du}
+### Unknown {#xi-an-jiao-tong-da-xue-unknown}
-### 搜索 {#bai-du-sou-suo}
+<Route data={{"path":"/dean/:subpath{.+}","name":"Unknown","maintainers":[],"location":"dean.ts"}} />
-<Route author="CaoMeiYouRen" example="/baidu/search/rss" path="/baidu/search/:keyword" paramsDesc={['搜索关键词']} radar="1" anticrawler="1" />
+### Unknown {#xi-an-jiao-tong-da-xue-unknown}
-### 热搜榜单 {#bai-du-re-sou-bang-dan}
+<Route data={{"path":"/international/:subpath{.+}","name":"Unknown","maintainers":[],"location":"international.ts"}} />
-<Route author="xyqfer" example="/baidu/top" path="/baidu/top/:board?" paramsDesc={['榜单,默认为 `realtime`']} radar="1">
- | 热搜榜 | 小说榜 | 电影榜 | 电视剧榜 | 汽车榜 | 游戏榜 |
- | -------- | ------ | ------ | -------- | ------ | ------ |
- | realtime | novel | movie | teleplay | car | game |
-</Route>
+### Unknown {#xi-an-jiao-tong-da-xue-unknown}
-## 贝壳研究院 {#bei-ke-yan-jiu-yuan}
+<Route data={{"path":"/dyyy/:path{.+}","name":"Unknown","maintainers":[],"location":"dyyy/index.ts"}} />
-### 研究成果 {#bei-ke-yan-jiu-yuan-yan-jiu-cheng-guo}
+## 香港 01 {#xiang-gang-01}
-<Route author="shaomingbo" example="/ke/researchResults" path="/ke/researchResults" radar="1" />
+### Unknown {#xiang-gang-01-unknown}
-## 毕马威 {#bi-ma-wei}
+<Route data={{"path":"/channel/:id?","radar":{"source":["hk01.com/channel/:id","hk01.com/"]},"name":"Unknown","maintainers":[],"location":"channel.ts"}} />
-### 洞察 {#bi-ma-wei-dong-cha}
+### Unknown {#xiang-gang-01-unknown}
-<Route author="LogicJake" example="/kpmg/insights" path="/kpmg/insights" />
+<Route data={{"path":"/issue/:id?","radar":{"source":["hk01.com/issue/:id","hk01.com/"]},"name":"Unknown","maintainers":[],"location":"issue.ts"}} />
-## 成都住建蓉 e 办 {#cheng-du-zhu-jian-rong-e-ban}
+### Unknown {#xiang-gang-01-unknown}
-### 商品住房购房登记 {#cheng-du-zhu-jian-rong-e-ban-shang-pin-zhu-fang-gou-fang-deng-ji}
+<Route data={{"path":"/tag/:id?","radar":{"source":["hk01.com/tag/:id","hk01.com/"]},"name":"Unknown","maintainers":[],"location":"tag.ts"}} />
-<Route author="TonyRL" example="/cdzjryb/zw/projectList" path="/cdzjryb/zw/projectList" radar="1" />
+### Unknown {#xiang-gang-01-unknown}
-## 滴答清单 {#di-da-qing-dan}
+<Route data={{"path":"/zone/:id?","radar":{"source":["hk01.com/zone/:id","hk01.com/"]},"name":"Unknown","maintainers":[],"location":"zone.ts"}} />
-### 习惯打卡 {#di-da-qing-dan-xi-guan-da-ka}
+## 小红书 {#xiao-hong-shu}
-:::warning
-需要账号密码,详情见部署文档部分 RSS 模块配置
-:::
+### Unknown {#xiao-hong-shu-unknown}
-<Route author="DIYgod" example="/dida365/habit/checkins" path="/dida365/habit/checkins" configRequired="1" />
+<Route data={{"path":"/user/:user_id/notes/fulltext","radar":{"source":["xiaohongshu.com/user/profile/:user_id"],"target":"/user/:user_id/notes"},"name":"Unknown","maintainers":[],"location":"notes.ts"}} />
-## 古诗文网 {#gu-shi-wen-wang}
+### Unknown {#xiao-hong-shu-unknown}
-### 首页推荐 {#gu-shi-wen-wang-shou-ye-tui-jian}
+<Route data={{"path":"/user/:user_id/:category","name":"Unknown","maintainers":[],"location":"user.ts"}} />
-<Route author="LogicJake" example="/gushiwen/recommend/zhushang" path="/gushiwen/recommend/:annotation?">
- `annotation` 字段为添加哪些附加信息。可从以下表格中选择值后按顺序拼接。例如如果需要注释和赏析,则为`zhushang`。
+## 小宇宙 {#xiao-yu-zhou}
- | 翻译 | 注释 | 赏析 |
- | ---- | ---- | ----- |
- | yi | zhu | shang |
-</Route>
+### Unknown {#xiao-yu-zhou-unknown}
-## 骨朵数据 {#gu-duo-shu-ju}
+<Route data={{"path":"/","radar":{"source":["xiaoyuzhoufm.com/"],"target":""},"name":"Unknown","maintainers":["prnake","Maecenas"],"url":"xiaoyuzhoufm.com/","location":"pickup.ts"}} />
-### 日榜 {#gu-duo-shu-ju-ri-bang}
+## 新假期周刊 {#xin-jia-qi-zhou-kan}
-<Route author="Gem1ni" example="/guduodata/daily" path="/guduodata/daily" />
+### Unknown {#xin-jia-qi-zhou-kan-unknown}
-## 广东省食品药品审评认证技术协会 {#guang-dong-sheng-shi-pin-yao-pin-shen-ping-ren-zheng-ji-shu-xie-hui}
+<Route data={{"path":"/","radar":{"source":["weekendhk.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"weekendhk.com/","location":"posts.ts"}} />
-### 栏目 {#guang-dong-sheng-shi-pin-yao-pin-shen-ping-ren-zheng-ji-shu-xie-hui-lan-mu}
+## 新浪 {#xin-lang}
-<Route author="nczitzk" example="/gdsrx" path="/gdsrx/:id?" paramsDesc={['栏目 id,可在对应栏目页 URL 中找到,见下表,默认为法规文库']} radar="1">
- | 栏目名称 | 栏目 id |
- | ----------------- | ------- |
- | 法规文库 | 10 |
- | 法规资讯 | 12 |
- | 专家供稿 | 13 |
- | 协会动态 会员动态 | 20 |
- | 协会动态 | 37 |
- | 协会通知公告 | 38 |
- | 会员动态 | 39 |
-</Route>
+### Unknown {#xin-lang-unknown}
-## 静态模型爱好者 {#jing-tai-mo-xing-ai-hao-zhe}
+<Route data={{"path":"/sports/:type?","name":"Unknown","maintainers":["nczitzk"],"location":"sports.ts"}} />
-### 新品信息 {#jing-tai-mo-xing-ai-hao-zhe-xin-pin-xin-xi}
+## 星島日報 {#xing-dao-ri-bao}
-<Route author="cc798461" example="/moxingfans" path="/moxingfans" />
+### Unknown {#xing-dao-ri-bao-unknown}
-## 巨量算数 - 算数指数 {#ju-liang-suan-shu-suan-shu-zhi-shu}
+<Route data={{"path":"/std/realtime/:category{.+}?","name":"Unknown","maintainers":[],"location":"std/realtime.ts"}} />
-### 抖音指数波峰 {#ju-liang-suan-shu-suan-shu-zhi-shu-dou-yin-zhi-shu-bo-feng}
+## 星洲网 {#xing-zhou-wang}
-<Route author="Jkker" example="/oceanengine/index/教材" path="/oceanengine/index/:keyword" paramsDesc={['热点关键词']} anticrawler="1" puppeteer="1" />
+### Unknown {#xing-zhou-wang-unknown}
-爬取巨量算数近 6 个月的抖音指数,解密后提取指数波峰当日的热门搜索关键词,生成为 RSS。可用于追踪新闻热点事件。
+<Route data={{"path":"*","radar":{"source":["sinchew.com.my/"],"target":""},"name":"Unknown","maintainers":[],"url":"sinchew.com.my/","location":"index.ts"}} />
-### 头条指数波峰 {#ju-liang-suan-shu-suan-shu-zhi-shu-tou-tiao-zhi-shu-bo-feng}
+## 一亩三分地 {#yi-mu-san-fen-di}
-<Route author="Jkker" example="/oceanengine/index/教材/toutiao" path="/oceanengine/index/:keyword/toutiao" paramsDesc={['热点关键词']} anticrawler="1" puppeteer="1" />
+### Unknown {#yi-mu-san-fen-di-unknown}
-爬取巨量算数近 6 个月的头条指数,解密后提取指数波峰当日的热门搜索关键词,生成为 RSS。可用于追踪新闻热点事件。
+<Route data={{"path":["/post/:type?/:order?","/thread/:type?/:order?"],"name":"Unknown","maintainers":["EthanWng97","DIYgod","nczitzk"],"url":"instant.1point3acres.com/","description":"分类\n\n | 热门帖子 | 最新帖子 |\n | -------- | -------- |\n | hot | new |\n\n 排序方式\n\n | 最新回复 | 最新发布 |\n | -------- | -------- |\n | | post |","location":"thread.ts"}} />
-## 考研帮 {#kao-yan-bang}
+分类
-### 考研帮调剂信息 {#kao-yan-bang-kao-yan-bang-tiao-ji-xin-xi}
+| 热门帖子 | 最新帖子 |
+| -------- | -------- |
+| hot | new |
-<Route author="shengmaosu" example="/kaoyan" path="/kaoyan" />
+排序方式
-## 空气质量 {#kong-qi-zhi-liang}
+| 最新回复 | 最新发布 |
+| -------- | -------- |
+| | post |
-### 实时 AQI {#kong-qi-zhi-liang-shi-shi-aqi}
+### Unknown {#yi-mu-san-fen-di-unknown}
-<Route author="xapool" example="/aqicn/beijing/pm25,pm10" path="/aqicn/:city/:pollution?" paramsDesc={['城市拼音或地区 ID,详见[aqicn.org](http://aqicn.org/city/)', '可选择显示更详细的空气污染成分']} />
+<Route data={{"path":["/post/:type?/:order?","/thread/:type?/:order?"],"name":"Unknown","maintainers":["EthanWng97","DIYgod","nczitzk"],"url":"instant.1point3acres.com/","description":"分类\n\n | 热门帖子 | 最新帖子 |\n | -------- | -------- |\n | hot | new |\n\n 排序方式\n\n | 最新回复 | 最新发布 |\n | -------- | -------- |\n | | post |","location":"thread.ts"}} />
-| 参数 | 污染成分 |
-| ---- | -------- |
-| pm25 | PM2.5 |
-| pm10 | PM10 |
-| o3 | O3 |
-| no2 | NO2 |
-| so2 | SO2 |
-| co | CO |
+分类
-举例: [https://rsshub.app/aqicn/beijing/pm25,pm10](https://rsshub.app/aqicn/beijing/pm25.pm10)
+| 热门帖子 | 最新帖子 |
+| -------- | -------- |
+| hot | new |
-1. 显示单个污染成分,例如「pm25」, [https://rsshub.app/aqicn/beijing/pm25](https://rsshub.app/aqicn/beijing/pm25)
-2. 逗号分隔显示多个污染成分,例如「pm25,pm10」,[https://rsshub.app/aqicn/beijing/pm25,pm10](https://rsshub.app/aqicn/beijing/pm25.pm10)
+排序方式
-## 快递 100 {#kuai-di-100}
+| 最新回复 | 最新发布 |
+| -------- | -------- |
+| | post |
-### 快递订单追踪 {#kuai-di-100-kuai-di-ding-dan-zhui-zong}
+## 有据 {#you-ju}
-<Route author="NeverBehave" example="/kuaidi100/track/shunfeng/SF1007896781640/0383" path="/kuaidi100/track/:number/:id/:phone?" paramsDesc={['快递公司代号', '订单号', '手机号后四位(仅顺丰)']} radar="1">
- 快递公司代号如果不能确定,可通过下方快递列表获得。
+### Unknown {#you-ju-unknown}
- :::warning
- 1. 构造链接前请确认所有参数正确:错误`快递公司 - 订单号`组合将会缓存信息一小段时间防止产生无用查询
- 2. 正常查询的订单在未签收状态下不会被缓存:请控制查询频率
- 3. 订单完成后请尽快取消订阅,避免资源浪费
- :::
-</Route>
+<Route data={{"path":"/","radar":{"source":["chinafactcheck.com/"],"target":""},"name":"Unknown","maintainers":["kdanfly"],"url":"chinafactcheck.com/","location":"index.ts"}} />
-### 支持的快递公司列表 {#kuai-di-100-zhi-chi-de-kuai-di-gong-si-lie-biao}
+## 雨苁博客 {#yu-cong-bo-ke}
-<Route author="NeverBehave" example="/kuaidi100/company" path="/kuaidi100/company" radar="1" />
+### Unknown {#yu-cong-bo-ke-unknown}
-## 裏垢女子まとめ {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81}
+<Route data={{"path":"/","radar":{"source":["ddosi.org/"],"target":""},"name":"Unknown","maintainers":["XinRoom"],"url":"ddosi.org/","location":"index.ts"}} />
-### Homepage {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81-homepage}
+## 长江大学 {#chang-jiang-da-xue}
-<Route author="SettingDust Halcao" example="/uraaka-joshi" path="/uraaka-joshi" radar="1" puppeteer="1" />
+### Unknown {#chang-jiang-da-xue-unknown}
-### User {#li-gou-nv-zi-%E3%81%BE%E3%81%A8%E3%82%81-user}
+<Route data={{"path":"/dongke/*","name":"Unknown","maintainers":[],"location":"dongke.ts"}} />
-<Route author="SettingDust Halcao" example="/uraaka-joshi/_rrwq" path="/uraaka-joshi/:id" paramsDesc={['User ID']} radar="1" puppeteer="1" />
+## 赵容部落 {#zhao-rong-bu-luo}
-## 律师事务所文章 {#lv-shi-shi-wu-suo-wen-zhang}
+### Unknown {#zhao-rong-bu-luo-unknown}
-### 君合 {#lv-shi-shi-wu-suo-wen-zhang-jun-he}
+<Route data={{"path":"/","radar":{"source":["zrblog.net/"],"target":""},"name":"Unknown","maintainers":["cnkmmk"],"url":"zrblog.net/","location":"rss.ts"}} />
-<Route author="snipersteve" example="/law/jh" path="/law/jh" />
+## 浙江省土地使用权网上交易系统 {#zhe-jiang-sheng-tu-di-shi-yong-quan-wang-shang-jiao-yi-xi-tong}
-### 通商 {#lv-shi-shi-wu-suo-wen-zhang-tong-shang}
+### Unknown {#zhe-jiang-sheng-tu-di-shi-yong-quan-wang-shang-jiao-yi-xi-tong-unknown}
-<Route author="snipersteve" example="/law/ts" path="/law/ts" notOperational="1" />
+<Route data={{"path":"/:type?","name":"Unknown","maintainers":["Fatpandac"],"location":"index.ts"}} />
-### 海问 {#lv-shi-shi-wu-suo-wen-zhang-hai-wen}
+## 正版中国 {#zheng-ban-zhong-guo}
-<Route author="snipersteve" example="/law/hw" path="/law/hw" notOperational="1" />
+### Unknown {#zheng-ban-zhong-guo-unknown}
-### 环球 {#lv-shi-shi-wu-suo-wen-zhang-huan-qiu}
+<Route data={{"path":"/:filter{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-<Route author="snipersteve" example="/law/hq" path="/law/hq" />
+## 直播吧 {#zhi-bo-ba}
-### 国枫 {#lv-shi-shi-wu-suo-wen-zhang-guo-feng}
+### Unknown {#zhi-bo-ba-unknown}
-<Route author="snipersteve" example="/law/gf" path="/law/gf" notOperational="1" />
+<Route data={{"path":"/luxiang/:category?","radar":{"source":["zhibo8.cc/:category/luxiang.htm"],"target":"/luxiang/:category"},"name":"Unknown","maintainers":["TonyRL"],"location":"luxiang.ts"}} />
-### 中伦 {#lv-shi-shi-wu-suo-wen-zhang-zhong-lun}
+## 中国的中古 {#zhong-guo-de-zhong-gu}
-<Route author="snipersteve" example="/law/zl" path="/law/zl" />
+### Unknown {#zhong-guo-de-zhong-gu-unknown}
-### 锦天城 {#lv-shi-shi-wu-suo-wen-zhang-jin-tian-cheng}
+<Route data={{"path":"/","radar":{"source":["medieval-china.club/"],"target":""},"name":"Unknown","maintainers":["artefaritaKuniklo"],"url":"medieval-china.club/","location":"post.ts"}} />
-<Route author="snipersteve" example="/law/jtc" path="/law/jtc" />
+## 中国工商银行 {#zhong-guo-gong-shang-yin-hang}
-### 德恒 {#lv-shi-shi-wu-suo-wen-zhang-de-heng}
+### 外汇牌价 {#zhong-guo-gong-shang-yin-hang-wai-hui-pai-jia}
-<Route author="snipersteve" example="/law/dh" path="/law/dh" />
+<Route data={{"path":"/whpj/:format?","categories":["other"],"example":"/icbc/whpj/zs?filter_title=%E8%8B%B1%E9%95%91","parameters":{"format":"输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["icbc.com.cn/column/1438058341489590354.html"],"target":"/whpj"},"name":"外汇牌价","maintainers":["leoleoasd"],"url":"icbc.com.cn/column/1438058341489590354.html","description":"| 短格式 | 参考价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |\n | ------ | ------ | -------- | -------- | -------- | -------- | -------- | -------- |\n | short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |","location":"whpj.ts"}} />
-### 金诚同达 {#lv-shi-shi-wu-suo-wen-zhang-jin-cheng-tong-da}
+| 短格式 | 参考价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
+| ------ | ------ | -------- | -------- | -------- | -------- | -------- | -------- |
+| short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |
-<Route author="snipersteve" example="/law/jctd" path="/law/jctd" notOperational="1" />
+## 中国光大银行 {#zhong-guo-guang-da-yin-hang}
-## 米坛社区 {#mi-tan-she-qu}
+### Unknown {#zhong-guo-guang-da-yin-hang-unknown}
-### 表盘更新 {#mi-tan-she-qu-biao-pan-geng-xin}
+<Route data={{"path":"/quotation/all","categories":["other"],"example":"/cebbank/quotation/all","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cebbank.com/site/ygzx/whpj/index.html","cebbank.com/eportal/ui","cebbank.com/"]},"name":"Unknown","maintainers":["linbuxiao"],"url":"cebbank.com/site/ygzx/whpj/index.html","location":"all.ts"}} />
-<Route author="hoilc" example="/watchface/mi4/" path="/watchface/:watch_type?/:list_type?" paramsDesc={['手环型号, 默认为`小米手环4`', '列表类型, 默认为`最新上传`']}>
- 表盘型号
+### 外汇牌价 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia}
- | 小米手环 4 | 华米 GTR 47mm | 华米智能手表青春版 |
- | ---------- | ------------- | ------------------ |
- | mi4 | gtr47 | gvlite |
+<Route data={{"path":"/quotation/history/:type","categories":["other"],"example":"/cebbank/quotation/history/usd","parameters":{"type":"货币的缩写,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"外汇牌价","maintainers":["linbuxiao"],"description":"#### 总览 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-zong-lan}\n\n\n#### 历史牌价 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-li-shi-pai-jia}\n\n | 美元 | 英镑 | 港币 | 瑞士法郎 | 瑞典克郎 | 丹麦克郎 | 挪威克郎 | 日元 | 加拿大元 | 澳大利亚元 | 新加坡元 | 欧元 | 澳门元 | 泰国铢 | 新西兰元 | 韩圆 |\n | ---- | ---- | ---- | -------- | -------- | -------- | -------- | ---- | -------- | ---------- | -------- | ---- | ------ | ------ | -------- | ---- |\n | usd | gbp | hkd | chf | sek | dkk | nok | jpy | cad | aud | sgd | eur | mop | thb | nzd | krw |","location":"history.ts"}} />
- 列表类型
+#### 总览 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-zong-lan}
- | 最新上传 | 最多下载 | 编辑推荐 |
- | -------- | -------- | ---------- |
- | 0 | 1 | recommends |
-</Route>
+#### 历史牌价 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-li-shi-pai-jia}
-## 汽油价格网 {#qi-you-jia-ge-wang}
+| 美元 | 英镑 | 港币 | 瑞士法郎 | 瑞典克郎 | 丹麦克郎 | 挪威克郎 | 日元 | 加拿大元 | 澳大利亚元 | 新加坡元 | 欧元 | 澳门元 | 泰国铢 | 新西兰元 | 韩圆 |
+| ---- | ---- | ---- | -------- | -------- | -------- | -------- | ---- | -------- | ---------- | -------- | ---- | ------ | ------ | -------- | ---- |
+| usd | gbp | hkd | chf | sek | dkk | nok | jpy | cad | aud | sgd | eur | mop | thb | nzd | krw |
-### 今日油价查询 {#qi-you-jia-ge-wang-jin-ri-you-jia-cha-xun}
+## 中国国家图书馆 {#zhong-guo-guo-jia-tu-shu-guan}
-<Route author="TonyRL" example="/qiyoujiage/shanghai" path="/qiyoujiage/:path+" paramsDesc={['路径']}>
- :::tip
- 路径处填写对应页面 URL 中 `http://www.qiyoujiage.com/` 和 `.shtml` 之间的字段。下面是一个例子。
+### 读者云平台 {#zhong-guo-guo-jia-tu-shu-guan-du-zhe-yun-ping-tai}
- 若订阅 [福建漳州龙海今日油价](http://www.qiyoujiage.com/fujian/zhangzhou/longhai.shtml) 则将对应页面 URL `http://www.qiyoujiage.com/fujian/zhangzhou/longhai.shtml` 中 `http://www.qiyoujiage.com/` 和 `.shtml` 之间的字段 `fujian/zhangzhou/longhai` 作为路径填入。此时路由为 [`/qiyoujiage/fujian/zhangzhou/longhai`](https://rsshub.app/qiyoujiage/fujian/zhangzhou/longhai)
- :::
-</Route>
+<Route data={{"path":"/read/:type?","categories":["other"],"example":"/nlc/read/电子图书","parameters":{"type":"分类,见下表,默认为电子图书"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"读者云平台","maintainers":["nczitzk"],"description":"| [电子图书](http://read.nlc.cn/outRes/outResList?type=电子图书) | [电子期刊](http://read.nlc.cn/outRes/outResList?type=电子期刊) | [电子论文](http://read.nlc.cn/outRes/outResList?type=电子论文) | [电子报纸](http://read.nlc.cn/outRes/outResList?type=电子报纸) | [音视频](http://read.nlc.cn/outRes/outResList?type=音视频) |\n | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | ---------------------------------------------------------- |\n\n | [标准专利](http://read.nlc.cn/outRes/outResList?type=标准专利) | [工具书](http://read.nlc.cn/outRes/outResList?type=工具书) | [少儿资源](http://read.nlc.cn/outRes/outResList?type=少儿资源) |\n | -------------------------------------------------------------- | ---------------------------------------------------------- | -------------------------------------------------------------- |","location":"read.ts"}} />
-## 親子王國 {#qin-zi-wang-guo}
+| [电子图书](http://read.nlc.cn/outRes/outResList?type=电子图书) | [电子期刊](http://read.nlc.cn/outRes/outResList?type=电子期刊) | [电子论文](http://read.nlc.cn/outRes/outResList?type=电子论文) | [电子报纸](http://read.nlc.cn/outRes/outResList?type=电子报纸) | [音视频](http://read.nlc.cn/outRes/outResList?type=音视频) |
+| -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | ---------------------------------------------------------- |
-### 板块 {#qin-zi-wang-guo-ban-kuai}
+| [标准专利](http://read.nlc.cn/outRes/outResList?type=标准专利) | [工具书](http://read.nlc.cn/outRes/outResList?type=工具书) | [少儿资源](http://read.nlc.cn/outRes/outResList?type=少儿资源) |
+| -------------------------------------------------------------- | ---------------------------------------------------------- | -------------------------------------------------------------- |
-<Route author="LogicJake" example="/babykingdom/19/view" path="/babykingdom/:id/:order?" paramsDesc={['板块id,可在 URL 中找到', '排序方式']} anticrawler="1">
- | 发帖时间 | 回复 / 查看 | 查看 | 最后发表 | 热门 |
- | -------- | ----------- | ---- | -------- | ---- |
- | dateline | reply | view | lastpost | heat |
-</Route>
+## 中国国家应急广播 {#zhong-guo-guo-jia-ying-ji-guang-bo}
-## 全球主机监控 {#quan-qiu-zhu-ji-jian-kong}
+### Unknown {#zhong-guo-guo-jia-ying-ji-guang-bo-unknown}
-### CloudFlareYes {#quan-qiu-zhu-ji-jian-kong-cloudflareyes}
+<Route data={{"path":"/yjxx/*","radar":{"source":["cneb.gov.cn/yjxx","cneb.gov.cn/"],"target":"/yjxx"},"name":"Unknown","maintainers":[],"url":"cneb.gov.cn/yjxx","location":"yjxx.ts"}} />
-<Route author="nczitzk" example="/hostmonit/cloudflareyes" path="/hostmonit/cloudflareyes/:type?" paramsDesc={['类型,见下表,默认为 v4']} radar="1" anticrawler="1">
- | v4 | v6 |
- | -- | -- |
- | | v6 |
-</Route>
+## 中国互联网联合辟谣平台 {#zhong-guo-hu-lian-wang-lian-he-pi-yao-ping-tai}
-## 热搜聚合 {#re-sou-ju-he}
+### 今日辟谣 {#zhong-guo-hu-lian-wang-lian-he-pi-yao-ping-tai-jin-ri-pi-yao}
-### 关键词聚合追踪 {#re-sou-ju-he-guan-jian-ci-ju-he-zhui-zong}
+<Route data={{"path":"/jrpy","categories":["other"],"example":"/piyao/jrpy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["piyao.org.cn/jrpy/index.htm"]},"name":"今日辟谣","maintainers":["Fatpandac"],"url":"piyao.org.cn/jrpy/index.htm","location":"jrpy.ts"}} />
-追踪各大热搜榜上包含特定关键词的条目。
+## 中国军网 {#zhong-guo-jun-wang}
-当前收录榜单:*微博热搜*、*今日头条热搜*、*知乎热搜*、*知乎热门视频*、*知乎热门话题*。
+### Unknown {#zhong-guo-jun-wang-unknown}
-数据源: [trending-in-one](https://github.com/huqi-pr/trending-in-one)
+<Route data={{"path":"/81rc/*","name":"Unknown","maintainers":[],"location":"81rc/index.ts"}} />
-<Route author="Jkker" example="/trending/唐山,打人/3" path="/trending/:keywords/:numberOfDays?" radar="1" paramsDesc={['通过逗号区隔的关键词列表', '向前追溯的天数,默认为3天']} />
+## 中国科学院 {#zhong-guo-ke-xue-yuan}
-## 搜狗 {#sou-gou}
+### Unknown {#zhong-guo-ke-xue-yuan-unknown}
-### 特色 LOGO {#sou-gou-te-se-logo}
+<Route data={{"path":"/genetics/:path{.+}","name":"Unknown","maintainers":[],"location":"genetics/index.ts"}} />
-<Route author="xyqfer" example="/sogou/doodles" path="/sogou/doodles" />
+### Unknown {#zhong-guo-ke-xue-yuan-unknown}
-### 搜索 {#sou-gou-sou-suo}
+<Route data={{"path":"/is/:path{.+}","name":"Unknown","maintainers":[],"location":"is/index.ts"}} />
-<Route author="CaoMeiYouRen" example="/sogou/search/rss" path="/sogou/search/:keyword" paramsDesc={['搜索关键词']} radar="1" />
+## 中国炼焦行业协会 {#zhong-guo-lian-jiao-hang-ye-xie-hui}
-## 台灣事實查核中心 {#tai-wan-shi-shi-cha-he-zhong-xin}
+### Unknown {#zhong-guo-lian-jiao-hang-ye-xie-hui-unknown}
-### 最新相關資訊 / 最新查核報告 {#tai-wan-shi-shi-cha-he-zhong-xin-zui-xin-xiang-guan-zi-xun-zui-xin-cha-he-bao-gao}
+<Route data={{"path":"/:category?/:id?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-<Route author="TonyRL" example="/tfc-taiwan" path="/tfc-taiwan/:type?" paramsDesc={['分類,見下表,預設為 `report`']} radar="1">
- | 最新相關資訊 | 最新查核報告 |
- | ------------ | ------------ |
- | info | report |
-</Route>
+## 中国期货市场监控中心 {#zhong-guo-qi-huo-shi-chang-jian-kong-zhong-xin}
-### 專題 / 重點專區 {#tai-wan-shi-shi-cha-he-zhong-xin-zhuan-ti-zhong-dian-zhuan-qu}
+### Unknown {#zhong-guo-qi-huo-shi-chang-jian-kong-zhong-xin-unknown}
-<Route author="TonyRL" example="/tfc-taiwan/category/242" path="/tfc-taiwan/:type/:id+" paramsDesc={['專題 / 重點專區,見下表', '專題 / 重點專區 ID']} radar="1">
- | 專題 | 重點專區 |
- | -------- | -------- |
- | category | topic |
-</Route>
+<Route data={{"path":"/:id{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-## 腾讯吐个槽 {#teng-xun-tu-ge-cao}
+## 中国期货业协会 {#zhong-guo-qi-huo-ye-xie-hui}
-### 吐槽新帖 {#teng-xun-tu-ge-cao-tu-cao-xin-tie}
+### 分析师园地 {#zhong-guo-qi-huo-ye-xie-hui-fen-xi-shi-yuan-di}
-<Route author="Qixingchen" example="/tucaoqq/post/28564/CdRI0728" path="/tucaoqq/post/:project/:key" paramsDesc={['产品 ID', '产品密钥']} />
+<Route data={{"path":"/servicesupport/analygarden/:program?","categories":["other"],"example":"/cfachina/servicesupport/analygarden","parameters":{"program":"分类,见下表,留空为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cfachina.org/servicesupport/analygarden/:program?","cfachina.org/"]},"name":"分析师园地","maintainers":["TonyRL"],"description":"| 有色金属类 | 黑色金属类 | 能源化工类 | 贵金属类 | 农产品类 | 金融类 | 指数类 |\n | ---------- | ---------- | ---------- | -------- | -------- | ------ | ------ |\n | ysjsl | hsjsl | nyhgl | gjsl | ncpl | jrl | zsl |","location":"analygarden.ts"}} />
-## 腾讯新闻较真查证平台 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai}
+| 有色金属类 | 黑色金属类 | 能源化工类 | 贵金属类 | 农产品类 | 金融类 | 指数类 |
+| ---------- | ---------- | ---------- | -------- | -------- | ------ | ------ |
+| ysjsl | hsjsl | nyhgl | gjsl | ncpl | jrl | zsl |
-### 最新辟谣 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-zui-xin-pi-yao}
+## 中国汽车工业协会 {#zhong-guo-qi-che-gong-ye-xie-hui}
-<Route author="hoilc" example="/qq/fact" path="/qq/fact" radar="1" />
+### Unknown {#zhong-guo-qi-che-gong-ye-xie-hui-unknown}
-## 天津产权交易中心 {#tian-jin-chan-quan-jiao-yi-zhong-xin}
+<Route data={{"path":"/:category?","name":"Unknown","maintainers":["nczitzk"],"location":"index.ts"}} />
-### 产权转让 {#tian-jin-chan-quan-jiao-yi-zhong-xin-chan-quan-zhuan-rang}
+## 中国汽车工业协会统计信息网 {#zhong-guo-qi-che-gong-ye-xie-hui-tong-ji-xin-xi-wang}
-<Route author="kt286" example="/tprtc/cqzr" path="/tprtc/cqzr" />
+### 分类 {#zhong-guo-qi-che-gong-ye-xie-hui-tong-ji-xin-xi-wang-fen-lei}
-### 企业资产转让 {#tian-jin-chan-quan-jiao-yi-zhong-xin-qi-ye-zi-chan-zhuan-rang}
+<Route data={{"path":"/:category?","categories":["other"],"example":"/auto-stats","parameters":{"category":"分类,见下表,默认为信息快递"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 信息快递 | 工作动态 | 专题分析 |\n | -------- | -------- | -------- |\n | xxkd | gzdt | ztfx |","location":"index.ts"}} />
-<Route author="kt286" example="/tprtc/qyzc" path="/tprtc/qyzc" anticrawler="1" />
+| 信息快递 | 工作动态 | 专题分析 |
+| -------- | -------- | -------- |
+| xxkd | gzdt | ztfx |
-### 新闻动态 {#tian-jin-chan-quan-jiao-yi-zhong-xin-xin-wen-dong-tai}
+## 中国人民银行 {#zhong-guo-ren-min-yin-hang}
-<Route author="kt286" example="/tprtc/news" path="/tprtc/news" notOperational="1" />
+<details>
+ <summary>*业务咨询* 和 *投诉建议* 可用的站点参数</summary>
-## 天眼查 {#tian-yan-cha}
+ | 上海市 | 北京市 | 天津市 | 河北省 |
+ | -------- | ------- | ------- | ------ |
+ | shanghai | beijing | tianjin | hebei |
-### 热门搜索 {#tian-yan-cha-re-men-sou-suo}
+ | 山西省 | 内蒙古自治区 | 辽宁省 | 吉林省 |
+ | ------ | ------------ | -------- | ------ |
+ | shanxi | neimenggu | liaoning | jilin |
-<Route author="nczitzk" example="/tianyancha/hot" path="/tianyancha/hot" anticrawler="1" />
+ | 黑龙江省 | 江苏省 | 浙江省 | 安徽省 |
+ | ------------ | ------- | -------- | ------ |
+ | heilongjiang | jiangsu | zhejiang | anhui |
-## 无讼案例 {#wu-song-an-li}
+ | 福建省 | 江西省 | 山东省 | 河南省 |
+ | ------ | ------- | -------- | ------ |
+ | fujian | jiangxi | shandong | henan |
-### 案例 {#wu-song-an-li-an-li}
+ | 湖北省 | 湖南省 | 广东省 | 广西壮族自治区 |
+ | ------ | ------ | --------- | -------------- |
+ | hubei | hunan | guangdong | guangxi |
-<Route author="alienmao" example="/itslaw/judgements/regulation+1121495748+13+中华人民共和国公司法(2018)第二十一条" path="/itslaw/judgements/:conditions" paramsDesc={['筛选条件,见示例']} />
+ | 海南省 | 重庆市 | 四川省 | 贵州省 |
+ | ------ | --------- | ------- | ------- |
+ | hainan | chongqing | sichuan | guizhou |
-## 有据 {#you-ju}
+ | 云南省 | 西藏自治区 | 陕西省 | 甘肃省 |
+ | ------ | ---------- | ------- | ------ |
+ | yunnan | xizang | shaanxi | gansu |
-### 最新文章列表 {#you-ju-zui-xin-wen-zhang-lie-biao}
+ | 青海省 | 宁夏回族自治区 | 新疆维吾尔自治区 | 大连市 |
+ | ------- | -------------- | ---------------- | ------ |
+ | qinghai | ningxia | xinjiang | dalian |
-<Route author="kdanfly" example="/chinafactcheck" path="/chinafactcheck" radar="1" />
+ | 宁波市 | 厦门市 | 青岛市 | 深圳市 |
+ | ------ | ------ | ------- | -------- |
+ | ningbo | xiamen | qingdao | shenzhen |
+</details>
-## 中国工商银行 {#zhong-guo-gong-shang-yin-hang}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 外汇牌价 {#zhong-guo-gong-shang-yin-hang-wai-hui-pai-jia}
+<Route data={{"path":"/anhui/kjt/*","name":"Unknown","maintainers":[],"location":"anhui/kjt.ts"}} />
-<Route author="leoleoasd" example="/icbc/whpj/zs?filter_title=%E8%8B%B1%E9%95%91" path="/icbc/whpj/:format?" paramsDesc={['输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。']}>
- | 短格式 | 参考价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
- | ------ | ------ | -------- | -------- | -------- | -------- | -------- | -------- |
- | short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-## 中国光大银行 {#zhong-guo-guang-da-yin-hang}
+<Route data={{"path":"/beijing/bphc/*","name":"Unknown","maintainers":[],"location":"beijing/bphc/index.ts"}} />
-### 外汇牌价 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-#### 总览 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-zong-lan}
+<Route data={{"path":"/beijing/kw/:channel","name":"Unknown","maintainers":["Fatpandac"],"location":"beijing/kw/index.ts"}} />
-<Route author="linbuxiao" example="/cebbank/quotation/all" path="/cebbank/quotation/all" />
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-#### 历史牌价 {#zhong-guo-guang-da-yin-hang-wai-hui-pai-jia-li-shi-pai-jia}
+<Route data={{"path":"/cac/*","name":"Unknown","maintainers":[],"location":"cac/index.ts"}} />
-<Route author="linbuxiao" example="/cebbank/quotation/history/usd" path="/cebbank/quotation/history/:type" paramsDesc={['货币的缩写,见下表']}>
- | 美元 | 英镑 | 港币 | 瑞士法郎 | 瑞典克郎 | 丹麦克郎 | 挪威克郎 | 日元 | 加拿大元 | 澳大利亚元 | 新加坡元 | 欧元 | 澳门元 | 泰国铢 | 新西兰元 | 韩圆 |
- | ---- | ---- | ---- | -------- | -------- | -------- | -------- | ---- | -------- | ---------- | -------- | ---- | ------ | ------ | -------- | ---- |
- | usd | gbp | hkd | chf | sek | dkk | nok | jpy | cad | aud | sgd | eur | mop | thb | nzd | krw |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-## 中国国家图书馆 {#zhong-guo-guo-jia-tu-shu-guan}
+<Route data={{"path":"/ccdi/*","name":"Unknown","maintainers":[],"location":"ccdi/index.ts"}} />
-### 读者云平台 {#zhong-guo-guo-jia-tu-shu-guan-du-zhe-yun-ping-tai}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-<Route author="nczitzk" example="/nlc/read/电子图书" path="/nlc/read/:type?" paramsDesc={['分类,见下表,默认为电子图书']} radar="1">
- | [电子图书](http://read.nlc.cn/outRes/outResList?type=电子图书) | [电子期刊](http://read.nlc.cn/outRes/outResList?type=电子期刊) | [电子论文](http://read.nlc.cn/outRes/outResList?type=电子论文) | [电子报纸](http://read.nlc.cn/outRes/outResList?type=电子报纸) | [音视频](http://read.nlc.cn/outRes/outResList?type=音视频) |
- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------------- | ---------------------------------------------------------- |
+<Route data={{"path":"/chinamine-safety/xw/:category{.+}?","name":"Unknown","maintainers":[],"location":"chinamine-safety/xw.ts"}} />
- | [标准专利](http://read.nlc.cn/outRes/outResList?type=标准专利) | [工具书](http://read.nlc.cn/outRes/outResList?type=工具书) | [少儿资源](http://read.nlc.cn/outRes/outResList?type=少儿资源) |
- | -------------------------------------------------------------- | ---------------------------------------------------------- | -------------------------------------------------------------- |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-## 中国互联网联合辟谣平台 {#zhong-guo-hu-lian-wang-lian-he-pi-yao-ping-tai}
+<Route data={{"path":"/chinamine-safety/zfxxgk/:category{.+}?","name":"Unknown","maintainers":[],"location":"chinamine-safety/zfxxgk.ts"}} />
-### 今日辟谣 {#zhong-guo-hu-lian-wang-lian-he-pi-yao-ping-tai-jin-ri-pi-yao}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-<Route author="Fatpandac" example="/piyao/jrpy" path="/piyao/jrpy" />
+<Route data={{"path":"/chongqing/gzw/:category{.+}?","name":"Unknown","maintainers":[],"location":"chongqing/gzw.ts"}} />
-## 中国炼焦行业协会 {#zhong-guo-lian-jiao-hang-ye-xie-hui}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 汇总 {#zhong-guo-lian-jiao-hang-ye-xie-hui-hui-zong}
+<Route data={{"path":"/cmse/*","name":"Unknown","maintainers":[],"location":"cmse/index.ts"}} />
-<Route author="nczitzk" example="/cnljxh/collect" path="/cnljxh/collect/:id?" paramsDesc={['栏目 id,见下表,可在对应栏目页 URL 中找到,默认为 10039,即市场价格 > 价格汇总']} radar="1" supportBT="1">
- | 价格汇总 |
- | -------- |
- | 10039 |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 价格指数 {#zhong-guo-lian-jiao-hang-ye-xie-hui-jia-ge-zhi-shu}
+<Route data={{"path":"/cnnic/*","name":"Unknown","maintainers":[],"location":"cnnic/index.ts"}} />
-<Route author="nczitzk" example="/cnljxh/date" path="/cnljxh/date/:id?" paramsDesc={['栏目 id,见下表,可在对应栏目页 URL 中找到,默认为 5575,即价格指数 > 焦炭指数']} radar="1" supportBT="1">
- | 焦炭指数 | 炼焦煤指数 |
- | -------- | ---------- |
- | 5575 | 5907 |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 分析数据 {#zhong-guo-lian-jiao-hang-ye-xie-hui-fen-xi-shu-ju}
+<Route data={{"path":"/csrc/news/:suffix{.+}?","name":"Unknown","maintainers":[],"location":"csrc/news.ts"}} />
-<Route author="nczitzk" example="/cnljxh/info" path="/cnljxh/info/:id?" paramsDesc={['栏目 id,见下表,可在对应栏目页 URL 中找到,默认为 575,即分析数据 > 市场分析']} radar="1" supportBT="1">
- | 市场分析 | 一周评述 | 核心数据 |
- | -------- | -------- | -------- |
- | 575 | 5573 | 5417 |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 新闻 {#zhong-guo-lian-jiao-hang-ye-xie-hui-xin-wen}
+<Route data={{"path":"/dianbai/*","name":"Unknown","maintainers":[],"location":"dianbai/dianbai.ts"}} />
-<Route author="nczitzk" example="/cnljxh/news" path="/cnljxh/news/:id?" paramsDesc={['栏目 id,见下表,可在对应栏目页 URL 中找到,默认为 10,即协会公告']} radar="1" supportBT="1">
- <details>
- <summary>更多分类</summary>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- #### 协会专区
+<Route data={{"path":"/gaozhou/*","name":"Unknown","maintainers":[],"location":"gaozhou/gaozhou.ts"}} />
- | 协会简介 | 协会章程 | 协会领导 | 入会程序 | 组织机构 |
- | -------- | -------- | -------- | -------- | -------- |
- | 24 | 25 | 26 | 27 | 28 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- #### 协会公告
+<Route data={{"path":"/gz/:channel/:category","name":"Unknown","maintainers":[],"location":"gz/index.ts"}} />
- | 协会公告 |
- | -------- |
- | 10 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- #### 行业新闻
+<Route data={{"path":"/huazhou/*","name":"Unknown","maintainers":[],"location":"huazhou/huazhou.ts"}} />
- | 协会动态 | 企业动态 | 行业动态 |
- | -------- | -------- | -------- |
- | 8 | 9 | 11 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- #### 政策法规
+<Route data={{"path":"/maoming/*","name":"Unknown","maintainers":[],"location":"maoming/maoming.ts"}} />
- | 政策法规 |
- | -------- |
- | 12 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- #### 行业标准
+<Route data={{"path":["/fmprc/:category?","/mfa/wjdt/:category?"],"name":"Unknown","maintainers":["nicolaszf","nczitzk"],"description":"| 分类 | category |\n | ---------- | -------- |\n | 领导人活动 | gjldrhd |\n | 外事日程 | wsrc |\n | 部领导活动 | wjbxw |\n | 业务动态 | sjxw |\n | 发言人表态 | fyrbt |\n | 吹风会 | cfhsl |\n | 大使任免 | dsrm |\n | 驻外报道 | zwbd |\n | 政策解读 | zcjd |","location":"mfa/wjdt.ts"}} />
- | 国家标准 | 行业标准 | 团体标准 |
- | -------- | -------- | -------- |
- | 13 | 14 | 15 |
+| 分类 | category |
+| ---------- | -------- |
+| 领导人活动 | gjldrhd |
+| 外事日程 | wsrc |
+| 部领导活动 | wjbxw |
+| 业务动态 | sjxw |
+| 发言人表态 | fyrbt |
+| 吹风会 | cfhsl |
+| 大使任免 | dsrm |
+| 驻外报道 | zwbd |
+| 政策解读 | zcjd |
- #### 技术广角
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | 技术广角 |
- | -------- |
- | 16 |
- </details>
-</Route>
+<Route data={{"path":["/fmprc/:category?","/mfa/wjdt/:category?"],"name":"Unknown","maintainers":["nicolaszf","nczitzk"],"description":"| 分类 | category |\n | ---------- | -------- |\n | 领导人活动 | gjldrhd |\n | 外事日程 | wsrc |\n | 部领导活动 | wjbxw |\n | 业务动态 | sjxw |\n | 发言人表态 | fyrbt |\n | 吹风会 | cfhsl |\n | 大使任免 | dsrm |\n | 驻外报道 | zwbd |\n | 政策解读 | zcjd |","location":"mfa/wjdt.ts"}} />
-### 价格 {#zhong-guo-lian-jiao-hang-ye-xie-hui-jia-ge}
+| 分类 | category |
+| ---------- | -------- |
+| 领导人活动 | gjldrhd |
+| 外事日程 | wsrc |
+| 部领导活动 | wjbxw |
+| 业务动态 | sjxw |
+| 发言人表态 | fyrbt |
+| 吹风会 | cfhsl |
+| 大使任免 | dsrm |
+| 驻外报道 | zwbd |
+| 政策解读 | zcjd |
-<Route author="nczitzk" example="/cnljxh/price" path="/cnljxh/price/:id?" paramsDesc={['栏目 id,见下表,可在对应栏目页 URL 中找到,默认为 299,即市场价格 > 价格行情']} radar="1" supportBT="1">
- | 价格行情 | 双焦运费 |
- | -------- | -------- |
- | 299 | 2143 |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-## 中国期货业协会 {#zhong-guo-qi-huo-ye-xie-hui}
+<Route data={{"path":"/mgs/*","name":"Unknown","maintainers":[],"location":"mgs/mgs.ts"}} />
-### 分析师园地 {#zhong-guo-qi-huo-ye-xie-hui-fen-xi-shi-yuan-di}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-<Route author="TonyRL" example="/cfachina/servicesupport/analygarden" path="/cfachina/servicesupport/analygarden/:program?" paramsDesc={['分类,见下表,留空为全部']} radar="1">
- | 有色金属类 | 黑色金属类 | 能源化工类 | 贵金属类 | 农产品类 | 金融类 | 指数类 |
- | ---------- | ---------- | ---------- | -------- | -------- | ------ | ------ |
- | ysjsl | hsjsl | nyhgl | gjsl | ncpl | jrl | zsl |
-</Route>
+<Route data={{"path":"/mmht/*","name":"Unknown","maintainers":[],"location":"mmht/mmht.ts"}} />
-## 中国汽车工业协会 {#zhong-guo-qi-che-gong-ye-xie-hui}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-### 分类 {#zhong-guo-qi-che-gong-ye-xie-hui-fen-lei}
+<Route data={{"path":"/moa/:suburl{.+}","radar":{"source":["moa.gov.cn/"],"target":"/moa/:suburl"},"name":"Unknown","maintainers":[],"url":"moa.gov.cn/","location":"moa/moa.ts"}} />
-<Route author="nczitzk" example="/caam/1" path="/caam" paramsDesc={['分类,见下表,默认为首页']} radar="1">
- | [首页](http://www.caam.org.cn/chn/1/cate_1/list_1.html) | [行业要闻](http://www.caam.org.cn/chn/1/cate_2/list_1.html) | [协会活动](http://www.caam.org.cn/chn/1/cate_3/list_1.html) | [会员专区](http://www.caam.org.cn/chn/1/cate_4/list_1.html) | [协会概况](http://www.caam.org.cn/chn/1/cate_5/list_1.html) | [协会概况 - 会员单位](http://www.caam.org.cn/chn/1/cate_6/list_1.html) |
- | ------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ----------------------------------------------------------- | ---------------------------------------------------------------------- |
- | 1 | 2 | 3 | 4 | 5 | 6 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [协会概况 - 协会简介](http://www.caam.org.cn/chn/1/cate_7/list_1.html) | [协会概况 - 协会章程](http://www.caam.org.cn/chn/1/cate_8/list_1.html) | [协会概况 - 组织机构](http://www.caam.org.cn/chn/1/cate_9/list_1.html) | [协会概况 - 主要职责](http://www.caam.org.cn/chn/1/cate_10/list_1.html) | [协会概况 - 协会荣誉](http://www.caam.org.cn/chn/1/cate_11/list_1.html) | [协会概况 - 分支机构](http://www.caam.org.cn/chn/1/cate_12/list_1.html) |
- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ---------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
- | 7 | 8 | 9 | 10 | 11 | 12 |
+<Route data={{"path":["/moa/sjzxfb/:category{.+}?","/moa/zdscxx/:category{.+}?"],"name":"Unknown","maintainers":[],"location":"moa/zdscxx.ts"}} />
- | [协会概况 - 分支机构 - 机构介绍](http://www.caam.org.cn/chn/1/cate_13/list_1.html) | [协会概况 - 分支机构 - 管理办法](http://www.caam.org.cn/chn/1/cate_14/list_1.html) | [协会概况 - 分支机构 - 业务范围](http://www.caam.org.cn/chn/1/cate_15/list_1.html) | [协会工作](http://www.caam.org.cn/chn/1/cate_16/list_1.html) | [协会工作 - 协会动态](http://www.caam.org.cn/chn/1/cate_17/list_1.html) | [协会工作 - 分支机构动态](http://www.caam.org.cn/chn/1/cate_18/list_1.html) |
- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------- | --------------------------------------------------------------------------- |
- | 13 | 14 | 15 | 16 | 17 | 18 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [协会工作 - 重点工作](http://www.caam.org.cn/chn/1/cate_19/list_1.html) | [协会工作 - 法规标准](http://www.caam.org.cn/chn/1/cate_20/list_1.html) | [协会工作 - 信用服务](http://www.caam.org.cn/chn/1/cate_21/list_1.html) | [协会工作 - 会员服务](http://www.caam.org.cn/chn/1/cate_22/list_1.html) | [协会工作 - 政策研究](http://www.caam.org.cn/chn/1/cate_23/list_1.html) | [协会工作 - 协调合作](http://www.caam.org.cn/chn/1/cate_24/list_1.html) |
- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
- | 19 | 20 | 21 | 22 | 23 | 24 |
+<Route data={{"path":["/moa/sjzxfb/:category{.+}?","/moa/zdscxx/:category{.+}?"],"name":"Unknown","maintainers":[],"location":"moa/zdscxx.ts"}} />
- | [协会工作 - 展会信息](http://www.caam.org.cn/chn/1/cate_25/list_1.html) | [协会工作 - 国际合作](http://www.caam.org.cn/chn/1/cate_26/list_1.html) | [协会工作 - 会员动态](http://www.caam.org.cn/chn/1/cate_27/list_1.html) | [协会工作 - 行业培训](http://www.caam.org.cn/chn/1/cate_28/list_1.html) | [统计数据](http://www.caam.org.cn/chn/1/cate_29/list_1.html) | [统计数据 - 产销](http://www.caam.org.cn/chn/1/cate_30/list_1.html) |
- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------------- |
- | 25 | 26 | 27 | 28 | 29 | 30 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [统计数据 - 产销 - 汽车](http://www.caam.org.cn/chn/1/cate_31/list_1.html) | [统计数据 - 产销 - 摩托车](http://www.caam.org.cn/chn/1/cate_32/list_1.html) | [统计数据 - 产销 - 零部件](http://www.caam.org.cn/chn/1/cate_33/list_1.html) | [统计数据 - 进出口](http://www.caam.org.cn/chn/1/cate_34/list_1.html) | [统计数据 - 进出口 - 汽车](http://www.caam.org.cn/chn/1/cate_35/list_1.html) | [统计数据 - 进出口 - 摩托车](http://www.caam.org.cn/chn/1/cate_36/list_1.html) |
- | -------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------------ |
- | 31 | 32 | 33 | 34 | 35 | 36 |
+<Route data={{"path":"/mofcom/article/:suffix{.+}","name":"Unknown","maintainers":[],"location":"mofcom/article.ts"}} />
- | [统计数据 - 进出口 - 零部件](http://www.caam.org.cn/chn/1/cate_37/list_1.html) | [统计数据 - 数据分析](http://www.caam.org.cn/chn/1/cate_38/list_1.html) | [统计数据 - 数据分析 - 国内数据](http://www.caam.org.cn/chn/1/cate_39/list_1.html) | [统计数据 - 数据分析 - 国外数据](http://www.caam.org.cn/chn/1/cate_40/list_1.html) | [统计数据 - 亚洲](http://www.caam.org.cn/chn/1/cate_41/list_1.html) | [统计数据 - 亚洲 - 日本](http://www.caam.org.cn/chn/1/cate_42/list_1.html) |
- | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------- | -------------------------------------------------------------------------- |
- | 37 | 38 | 39 | 40 | 41 | 42 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [统计数据 - 亚洲 - 泰国](http://www.caam.org.cn/chn/1/cate_43/list_1.html) | [统计数据 - 亚洲 - 印度](http://www.caam.org.cn/chn/1/cate_44/list_1.html) | [统计数据 - 亚洲 - 印尼](http://www.caam.org.cn/chn/1/cate_45/list_1.html) | [统计数据 - 亚洲 - 韩国](http://www.caam.org.cn/chn/1/cate_46/list_1.html) | [统计数据 - 亚洲 - 巴基斯坦](http://www.caam.org.cn/chn/1/cate_47/list_1.html) | [统计数据 - 亚洲 - 其他](http://www.caam.org.cn/chn/1/cate_48/list_1.html) |
- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | -------------------------------------------------------------------------- |
- | 43 | 44 | 45 | 46 | 47 | 48 |
+<Route data={{"path":"/mot/:category{.+}?","name":"Unknown","maintainers":[],"location":"mot/index.ts"}} />
- | [统计数据 - 欧洲](http://www.caam.org.cn/chn/1/cate_49/list_1.html) | [统计数据 - 欧洲 - 总汇](http://www.caam.org.cn/chn/1/cate_50/list_1.html) | [统计数据 - 欧洲 - 德国](http://www.caam.org.cn/chn/1/cate_51/list_1.html) | [统计数据 - 欧洲 - 英国](http://www.caam.org.cn/chn/1/cate_52/list_1.html) | [统计数据 - 欧洲 - 法国](http://www.caam.org.cn/chn/1/cate_53/list_1.html) | [统计数据 - 欧洲 - 意大利](http://www.caam.org.cn/chn/1/cate_54/list_1.html) |
- | ------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
- | 49 | 50 | 51 | 52 | 53 | 54 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [统计数据 - 欧洲 - 西班牙](http://www.caam.org.cn/chn/1/cate_55/list_1.html) | [统计数据 - 大洋洲](http://www.caam.org.cn/chn/1/cate_56/list_1.html) | [统计数据 - 大洋洲 - 澳大利亚](http://www.caam.org.cn/chn/1/cate_57/list_1.html) | [统计数据 - 大洋洲 - 新西兰](http://www.caam.org.cn/chn/1/cate_58/list_1.html) | [统计数据 - 北美洲](http://www.caam.org.cn/chn/1/cate_59/list_1.html) | [统计数据 - 北美洲 - 总汇](http://www.caam.org.cn/chn/1/cate_60/list_1.html) |
- | ---------------------------------------------------------------------------- | --------------------------------------------------------------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------ | --------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
- | 55 | 56 | 57 | 58 | 59 | 60 |
+<Route data={{"path":"/ndrc/fggz/:category{.+}?","name":"Unknown","maintainers":[],"location":"ndrc/fggz.ts"}} />
- | [统计数据 - 北美洲 - 美国](http://www.caam.org.cn/chn/1/cate_61/list_1.html) | [统计数据 - 南美洲](http://www.caam.org.cn/chn/1/cate_62/list_1.html) | [统计数据 - 南美洲 - 阿根廷](http://www.caam.org.cn/chn/1/cate_63/list_1.html) | [统计数据 - 南美洲 - 巴西](http://www.caam.org.cn/chn/1/cate_64/list_1.html) | [统计数据 - 南美洲 - 其他](http://www.caam.org.cn/chn/1/cate_65/list_1.html) | [统计数据 - 非洲](http://www.caam.org.cn/chn/1/cate_66/list_1.html) |
- | ---------------------------------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------------------------- |
- | 61 | 62 | 63 | 64 | 65 | 66 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [文件公告](http://www.caam.org.cn/chn/1/cate_67/list_1.html) | [文件公告 - 协会文件](http://www.caam.org.cn/chn/1/cate_68/list_1.html) | [文件公告 - 公示公告](http://www.caam.org.cn/chn/1/cate_69/list_1.html) | [文件公告 - 会议通知](http://www.caam.org.cn/chn/1/cate_70/list_1.html) | [文件公告 - 分支机构文件](http://www.caam.org.cn/chn/1/cate_71/list_1.html) | [专题子站](http://www.caam.org.cn/chn/1/cate_72/list_1.html) |
- | ------------------------------------------------------------ | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | --------------------------------------------------------------------------- | ------------------------------------------------------------ |
- | 67 | 68 | 69 | 70 | 71 | 72 |
+<Route data={{"path":"/ndrc/xwdt/:category{.+}?","name":"Unknown","maintainers":[],"location":"ndrc/xwdt.ts"}} />
- | [专题子站 - 网站专题](http://www.caam.org.cn/chn/1/cate_73/list_1.html) | [专题子站 - 分支机构网站](http://www.caam.org.cn/chn/1/cate_74/list_1.html) | [专题子站 - 子网站](http://www.caam.org.cn/chn/1/cate_75/list_1.html) | [信息资料](http://www.caam.org.cn/chn/1/cate_76/list_1.html) | [信息资料 - 信息资料](http://www.caam.org.cn/chn/1/cate_77/list_1.html) | [信息资料 - 当前最热](http://www.caam.org.cn/chn/1/cate_78/list_1.html) |
- | ----------------------------------------------------------------------- | --------------------------------------------------------------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
- | 73 | 74 | 75 | 76 | 77 | 78 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [行业动态](http://www.caam.org.cn/chn/1/cate_79/list_1.html) | [行业动态 - 政府资讯](http://www.caam.org.cn/chn/1/cate_80/list_1.html) | [行业动态 - 企业新闻](http://www.caam.org.cn/chn/1/cate_81/list_1.html) | [行业动态 - 行业动态](http://www.caam.org.cn/chn/1/cate_82/list_1.html) | [行业动态 - 车市动态](http://www.caam.org.cn/chn/1/cate_83/list_1.html) | [行业动态 - 国内召回](http://www.caam.org.cn/chn/1/cate_84/list_1.html) |
- | ------------------------------------------------------------ | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
- | 79 | 80 | 81 | 82 | 83 | 84 |
+<Route data={{"path":"/nifdc/:path{.+}?","name":"Unknown","maintainers":[],"location":"nifdc/index.ts"}} />
- | [行业动态 - 国外召回](http://www.caam.org.cn/chn/1/cate_85/list_1.html) | [行业动态 - 汽车新技术](http://www.caam.org.cn/chn/1/cate_86/list_1.html) | [行业动态 - 市场环境](http://www.caam.org.cn/chn/1/cate_87/list_1.html) | [行业动态 - 国际动态](http://www.caam.org.cn/chn/1/cate_88/list_1.html) | [行业动态 - 国际动态 - 新闻](http://www.caam.org.cn/chn/1/cate_89/list_1.html) | [行业动态 - 国际动态 - 企业](http://www.caam.org.cn/chn/1/cate_90/list_1.html) |
- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
- | 85 | 86 | 87 | 88 | 89 | 90 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [行业动态 - 产品资讯](http://www.caam.org.cn/chn/1/cate_91/list_1.html) | [行业动态 - 相关行业](http://www.caam.org.cn/chn/1/cate_92/list_1.html) | [行业政策](http://www.caam.org.cn/chn/1/cate_93/list_1.html) | [行业政策 - 最新政策](http://www.caam.org.cn/chn/1/cate_95/list_1.html) | [行业政策 - 政策解读](http://www.caam.org.cn/chn/1/cate_96/list_1.html) | [行业政策 - 国家政策](http://www.caam.org.cn/chn/1/cate_97/list_1.html) |
- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------- |
- | 91 | 92 | 93 | 95 | 96 | 97 |
+<Route data={{"path":"/nmpa/*","name":"Unknown","maintainers":[],"location":"nmpa/generic.ts"}} />
- | [行业政策 - 国家政策 - 产业政策](http://www.caam.org.cn/chn/1/cate_98/list_1.html) | [行业政策 - 国家政策 - 新能源汽车](http://www.caam.org.cn/chn/1/cate_99/list_1.html) | [行业政策 - 国家政策 - 节能环保](http://www.caam.org.cn/chn/1/cate_100/list_1.html) | [行业政策 - 国家政策 - 税收](http://www.caam.org.cn/chn/1/cate_101/list_1.html) | [行业政策 - 国家政策 - 进出口](http://www.caam.org.cn/chn/1/cate_102/list_1.html) | [行业政策 - 国家政策 - 其他](http://www.caam.org.cn/chn/1/cate_103/list_1.html) |
- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
- | 98 | 99 | 100 | 101 | 102 | 103 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [行业政策 - 地方政策](http://www.caam.org.cn/chn/1/cate_104/list_1.html) | [行业政策 - 相关政策](http://www.caam.org.cn/chn/1/cate_105/list_1.html) | [行业政策 - 国外政策](http://www.caam.org.cn/chn/1/cate_106/list_1.html) | [行业政策 - 政策报道](http://www.caam.org.cn/chn/1/cate_107/list_1.html) | [标准法规](http://www.caam.org.cn/chn/1/cate_108/list_1.html) | [标准法规 - 标准政策](http://www.caam.org.cn/chn/1/cate_109/list_1.html) |
- | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------- | ------------------------------------------------------------------------ |
- | 104 | 105 | 106 | 107 | 108 | 109 |
+<Route data={{"path":"/nopss/*","name":"Unknown","maintainers":[],"location":"nopss/index.ts"}} />
- | [标准法规 - 国家标准](http://www.caam.org.cn/chn/1/cate_110/list_1.html) | [标准法规 - 行业标准](http://www.caam.org.cn/chn/1/cate_111/list_1.html) | [标准法规 - 标准动态](http://www.caam.org.cn/chn/1/cate_112/list_1.html) | [标准法规 - 国际标准](http://www.caam.org.cn/chn/1/cate_113/list_1.html) | [标准法规 - 标准资料](http://www.caam.org.cn/chn/1/cate_114/list_1.html) | [基础资料](http://www.caam.org.cn/chn/1/cate_115/list_1.html) |
- | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------- |
- | 110 | 111 | 112 | 113 | 114 | 115 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [信息资料 - 公众资料](http://www.caam.org.cn/chn/1/cate_116/list_1.html) | [信息资料 - 成品油](http://www.caam.org.cn/chn/1/cate_117/list_1.html) | [信息资料 - 成品油 - 国内市场](http://www.caam.org.cn/chn/1/cate_118/list_1.html) | [信息资料 - 成品油 - 国际市场](http://www.caam.org.cn/chn/1/cate_119/list_1.html) | [信息资料 - 保有量](http://www.caam.org.cn/chn/1/cate_120/list_1.html) | [信息资料 - 公路交通](http://www.caam.org.cn/chn/1/cate_121/list_1.html) |
- | ------------------------------------------------------------------------ | ---------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | ---------------------------------------------------------------------- | ------------------------------------------------------------------------ |
- | 116 | 117 | 118 | 119 | 120 | 121 |
+<Route data={{"path":"/nsfc/*","name":"Unknown","maintainers":[],"location":"nsfc/index.ts"}} />
- | [信息资料 - 公路交通 - 公路客运量](http://www.caam.org.cn/chn/1/cate_122/list_1.html) | [信息资料 - 公路交通 - 旅客周转量](http://www.caam.org.cn/chn/1/cate_123/list_1.html) | [信息资料 - 公路交通 - 公路货运量](http://www.caam.org.cn/chn/1/cate_124/list_1.html) | [信息资料 - 经济环境](http://www.caam.org.cn/chn/1/cate_125/list_1.html) | [公告查询](http://www.caam.org.cn/chn/1/cate_126/list_1.html) | [公告查询 - 公告批文](http://www.caam.org.cn/chn/1/cate_127/list_1.html) |
- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------- | ------------------------------------------------------------------------ |
- | 122 | 123 | 124 | 125 | 126 | 127 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [公告查询 - 公示公告](http://www.caam.org.cn/chn/1/cate_128/list_1.html) | [公告查询 - 节能与新能源](http://www.caam.org.cn/chn/1/cate_129/list_1.html) | [公告查询 - 公告动态](http://www.caam.org.cn/chn/1/cate_130/list_1.html) | [人物访谈](http://www.caam.org.cn/chn/1/cate_131/list_1.html) | [人物访谈 - 访谈列表](http://www.caam.org.cn/chn/1/cate_132/list_1.html) | [视频新闻](http://www.caam.org.cn/chn/1/cate_133/list_1.html) |
- | ------------------------------------------------------------------------ | ---------------------------------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------- |
- | 128 | 129 | 130 | 131 | 132 | 133 |
+<Route data={{"path":"/pbc/zcyj","radar":{"source":["pbc.gov.cn/redianzhuanti/118742/4122386/4122510/index.html"]},"name":"Unknown","maintainers":["Fatpandac"],"url":"pbc.gov.cn/redianzhuanti/118742/4122386/4122510/index.html","location":"pbc/zcyj.ts"}} />
- | [视频新闻 - 热门视频](http://www.caam.org.cn/chn/1/cate_134/list_1.html) | [视频新闻 - 推荐视频](http://www.caam.org.cn/chn/1/cate_135/list_1.html) | [视频新闻 - 视频列表](http://www.caam.org.cn/chn/1/cate_136/list_1.html) | [统计数据 - 欧洲 - 俄罗斯](http://www.caam.org.cn/chn/1/cate_137/list_1.html) | [统计数据 - 欧洲 - 爱尔兰](http://www.caam.org.cn/chn/1/cate_138/list_1.html) | [统计数据 - 欧洲 - 丹麦](http://www.caam.org.cn/chn/1/cate_139/list_1.html) |
- | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ------------------------------------------------------------------------ | ----------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
- | 134 | 135 | 136 | 137 | 138 | 139 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [统计数据 - 欧洲 - 其他](http://www.caam.org.cn/chn/1/cate_140/list_1.html) | [统计数据 - 大洋洲 - 其他](http://www.caam.org.cn/chn/1/cate_141/list_1.html) | [统计数据 - 北美洲 - 加拿大](http://www.caam.org.cn/chn/1/cate_142/list_1.html) | [统计数据 - 北美洲 - 其他](http://www.caam.org.cn/chn/1/cate_144/list_1.html) | [统计数据 - 北美洲 - 墨西哥](http://www.caam.org.cn/chn/1/cate_143/list_1.html) | [统计数据 - 非洲 - 南非](http://www.caam.org.cn/chn/1/cate_145/list_1.html) |
- | --------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ----------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | --------------------------------------------------------------------------- |
- | 140 | 141 | 142 | 144 | 143 | 145 |
+<Route data={{"path":"/sasac/:path{.+}","name":"Unknown","maintainers":[],"location":"sasac/generic.ts"}} />
- | [统计数据 - 非洲 - 其他](http://www.caam.org.cn/chn/1/cate_146/list_1.html) | [协会概况 - 分支机构 - 机构名单](http://www.caam.org.cn/chn/1/cate_147/list_1.html) | [首页 - 轮播](http://www.caam.org.cn/chn/1/cate_148/list_1.html) | [标准法规 - 标准政策 - 轮播](http://www.caam.org.cn/chn/1/cate_149/list_1.html) | [信息资料 - 信息资料 - 轮播](http://www.caam.org.cn/chn/1/cate_150/list_1.html) | [行业动态 - 行业资讯 - 轮播](http://www.caam.org.cn/chn/1/cate_151/list_1.html) |
- | --------------------------------------------------------------------------- | ----------------------------------------------------------------------------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
- | 146 | 147 | 148 | 149 | 150 | 151 |
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
- | [行业政策 - 行业政策 - 轮播](http://www.caam.org.cn/chn/1/cate_152/list_1.html) | [协会工作 - 协会工作 - 轮播图](http://www.caam.org.cn/chn/1/cate_153/list_1.html) | [统计数据 - 数据统计 - 轮播图](http://www.caam.org.cn/chn/1/cate_154/list_1.html) | [Home](http://www.caam.org.cn/chn/1/cate_155/list_1.html) | [Home - Focus News](http://www.caam.org.cn/chn/1/cate_156/list_1.html) | [Home - Overview](http://www.caam.org.cn/chn/1/cate_157/list_1.html) |
- | ------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------------------------------- | --------------------------------------------------------- | ---------------------------------------------------------------------- | -------------------------------------------------------------------- |
- | 152 | 153 | 154 | 155 | 156 | 157 |
+<Route data={{"path":"/sdb/*","name":"Unknown","maintainers":[],"location":"sdb/sdb.ts"}} />
- | [Home - News](http://www.caam.org.cn/chn/1/cate_158/list_1.html) | [Home - Member sign](http://www.caam.org.cn/chn/1/cate_161/list_1.html) | [车桥分会](http://www.caam.org.cn/chn/1/cate_162/list_1.html) | [上市公司委员会](http://www.caam.org.cn/chn/1/cate_183/list_1.html) | [上市公司委员会 - 单位动态](http://www.caam.org.cn/chn/1/cate_184/list_1.html) | [上市公司委员会 - 临时公告](http://www.caam.org.cn/chn/1/cate_185/list_1.html) |
- | ---------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
- | 158 | 161 | 162 | 183 | 184 | 185 |
-</Route>
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-## 中国汽车工业协会统计信息网 {#zhong-guo-qi-che-gong-ye-xie-hui-tong-ji-xin-xi-wang}
+<Route data={{"path":"/shanghai/yjj/*","name":"Unknown","maintainers":[],"location":"shanghai/yjj/index.ts"}} />
-### 分类 {#zhong-guo-qi-che-gong-ye-xie-hui-tong-ji-xin-xi-wang-fen-lei}
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
-<Route author="nczitzk" example="/auto-stats" path="/auto-stats/:category?" paramsDesc={['分类,见下表,默认为信息快递']} radar="1">
- | 信息快递 | 工作动态 | 专题分析 |
- | -------- | -------- | -------- |
- | xxkd | gzdt | ztfx |
-</Route>
+<Route data={{"path":"/stats/*","name":"Unknown","maintainers":[],"location":"stats/index.ts"}} />
+
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
+
+<Route data={{"path":"/suzhou/fg/:category{.+}?","name":"Unknown","maintainers":[],"location":"suzhou/fg.ts"}} />
+
+### Unknown {#zhong-guo-ren-min-yin-hang-unknown}
+
+<Route data={{"path":"/xinyi/*","name":"Unknown","maintainers":[],"location":"xinyi/xinyi.ts"}} />
+
+## 中国新闻网 {#zhong-guo-xin-wen-wang}
+
+### Unknown {#zhong-guo-xin-wen-wang-unknown}
+
+<Route data={{"path":"/","radar":{"source":["chinanews.com.cn/"],"target":""},"name":"Unknown","maintainers":["yuxinliu-alex"],"url":"chinanews.com.cn/","location":"index.ts"}} />
## 中国兴业银行 {#zhong-guo-xing-ye-yin-hang}
### 外汇牌价 {#zhong-guo-xing-ye-yin-hang-wai-hui-pai-jia}
-<Route author="Qixingchen" example="/cib/whpj/xh?filter_title=USD" path="/cib/whpj/:format?" paramsDesc={['输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。']}>
- | 短格式 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
- | ------ | -------- | -------- | -------- | -------- | -------- | -------- |
- | short | xh | xc | xhmr | xhmc | xcmr | xcmc |
-</Route>
+<Route data={{"path":"/whpj/:format?","categories":["other"],"example":"/cib/whpj/xh?filter_title=USD","parameters":{"format":"输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cib.com.cn/"],"target":"/whpj"},"name":"外汇牌价","maintainers":["Qixingchen"],"url":"cib.com.cn/","description":"| 短格式 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |\n | ------ | -------- | -------- | -------- | -------- | -------- | -------- |\n | short | xh | xc | xhmr | xhmc | xcmr | xcmc |","location":"whpj.ts"}} />
+
+| 短格式 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
+| ------ | -------- | -------- | -------- | -------- | -------- | -------- |
+| short | xh | xc | xhmr | xhmc | xcmr | xcmc |
## 中国银行 {#zhong-guo-yin-hang}
### 外汇牌价 {#zhong-guo-yin-hang-wai-hui-pai-jia}
-<Route author="LogicJake HenryQW" example="/boc/whpj/zs?filter_title=%E8%8B%B1%E9%95%91" path="/boc/whpj/:format?" paramsDesc={['输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。']}>
- | 短格式 | 中行折算价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
- | ------ | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |
-</Route>
+<Route data={{"path":"/whpj/:format?","categories":["other"],"example":"/boc/whpj/zs?filter_title=%E8%8B%B1%E9%95%91","parameters":{"format":"输出的标题格式,默认为标题 + 所有价格。短格式仅包含货币名称。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["boc.cn/sourcedb/whpj","boc.cn/"],"target":"/whpj"},"name":"外汇牌价","maintainers":["LogicJake","HenryQW"],"url":"boc.cn/sourcedb/whpj","description":"| 短格式 | 中行折算价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |\n | ------ | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |","location":"whpj.ts"}} />
+
+| 短格式 | 中行折算价 | 现汇买卖 | 现钞买卖 | 现汇买入 | 现汇卖出 | 现钞买入 | 现钞卖出 |
+| ------ | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| short | zs | xh | xc | xhmr | xhmc | xcmr | xcmc |
+
+## 中国银行保险监督管理委员会 {#zhong-guo-yin-hang-bao-xian-jian-du-guan-li-wei-yuan-hui}
+
+### Unknown {#zhong-guo-yin-hang-bao-xian-jian-du-guan-li-wei-yuan-hui-unknown}
+
+<Route data={{"path":"/:category?","radar":{"source":["cbirc.gov.cn/:category","cbirc.gov.cn/"]},"name":"Unknown","maintainers":["JkCheung"],"location":"index.ts"}} />
+
+## 中国驻外使领馆 {#zhong-guo-zhu-wai-shi-ling-guan}
+
+支持国家列表
+
+加拿大 `CA`
+
+- 大使馆: `/embassy/ca`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| -------- | ---------------------- |
+| 蒙特利尔 | `/embassy/ca/montreal` |
+
+* * *
+
+德国 `DE`
+
+- 大使馆: `/embassy/de`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ------ | -------------------- |
+| 慕尼黑 | `/embassy/de/munich` |
+
+* * *
+
+法国 `FR`
+
+- 大使馆: `/embassy/fr`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ---------- | ------------------------ |
+| 马赛 | `/embassy/fr/marseille` |
+| 斯特拉斯堡 | `/embassy/fr/strasbourg` |
+| 里昂 | `/embassy/fr/lyon` |
+
+* * *
+
+日本 `JP`
+
+- 大使馆: `/embassy/jp`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ------ | ---------------------- |
+| 长崎 | `/embassy/jp/nagasaki` |
+| 大阪 | `/embassy/jp/osaka` |
+| 福冈 | `/embassy/jp/fukuoka` |
+| 名古屋 | `/embassy/jp/nagoya` |
+| 札幌 | `/embassy/jp/sapporo` |
+| 新潟 | `/embassy/jp/niigata` |
+
+* * *
+
+韩国 `KR`
+
+- 大使馆: `/embassy/kr`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ---- | --------------------- |
+| 釜山 | `/embassy/kr/busan` |
+| 济州 | `/embassy/kr/jeju` |
+| 光州 | `/embassy/kr/gwangju` |
+
+* * *
+
+马来西亚 `MY`
+
+- 大使馆: `/embassy/my`
+
+* * *
+
+新加坡 `SG`
+
+- 大使馆: `/embassy/sg`
+
+* * *
+
+美国 `US`
+
+- 大使馆: `/embassy/us`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ------ | -------------------------- |
+| 纽约 | `/embassy/us/newyork` |
+| 芝加哥 | `/embassy/us/chicago` |
+| 旧金山 | `/embassy/us/sanfrancisco` |
+
+* * *
+
+英国 `UK`
+
+- 大使馆: `/embassy/uk`
+
+- 领事馆城市列表:
+
+| 城市 | 路由 |
+| ---------- | ------------------------ |
+| 爱丁堡 | `/embassy/uk/edinburgh` |
+| 贝尔法斯特 | `/embassy/uk/belfast` |
+| 曼彻斯特 | `/embassy/uk/manchester` |
+
+### Unknown {#zhong-guo-zhu-wai-shi-ling-guan-unknown}
+
+<Route data={{"path":"/:country/:city?","name":"Unknown","maintainers":["HenryQW"],"location":"index.ts"}} />
+
+## 中国作家网 {#zhong-guo-zuo-jia-wang}
+
+### Unknown {#zhong-guo-zuo-jia-wang-unknown}
+
+<Route data={{"path":"/:id{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
## 中华全国专利代理师协会 {#zhong-hua-quan-guo-zhuan-li-dai-li-shi-xie-hui}
### 标签 {#zhong-hua-quan-guo-zhuan-li-dai-li-shi-xie-hui-biao-qian}
-<Route author="nczitzk" example="/acpaa" path="/acpaa/:id?/:name?" paramsDesc={['标签 id,默认为 1,可在对应标签页 URL 中找到', '标签名称,默认为重要通知,可在对应标签页 URL 中找到']} radar="1" />
+<Route data={{"path":"/:id?/:name?","categories":["other"],"example":"/acpaa","parameters":{"id":"标签 id,默认为 1,可在对应标签页 URL 中找到","name":"标签名称,默认为重要通知,可在对应标签页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"标签","maintainers":["nczitzk"],"location":"index.ts"}} />
+
+## 中文播客榜 {#zhong-wen-bo-ke-bang}
+
+:::tip
+可以通过指定 `limit` 参数确定榜单排名下限,默认为 250。
+
+若只查看榜单前 50,可在订阅 URL 后加入 `?limit=50`。
+
+即,以 [热门节目](https://xyzrank.com/#/) 为例,路由为[`/xyzrank?limit=50`](https://rsshub.app/xyzrank?limit=50)。
+:::
+
+### Unknown {#zhong-wen-bo-ke-bang-unknown}
+
+<Route data={{"path":"/:category?","radar":{"source":["xyzrank.com/"],"target":""},"name":"Unknown","maintainers":[],"url":"xyzrank.com/","location":"index.ts"}} />
+
+## 中证网 {#zhong-zheng-wang}
+
+### Unknown {#zhong-zheng-wang-unknown}
+
+<Route data={{"path":"/:category{.+}?","name":"Unknown","maintainers":[],"location":"index.ts"}} />
+
+### Unknown {#zhong-zheng-wang-unknown}
+
+<Route data={{"path":["/news/zzkx","/zzkx"],"name":"Unknown","maintainers":[],"location":"zzkx.ts"}} />
+
+### Unknown {#zhong-zheng-wang-unknown}
+
+<Route data={{"path":["/news/zzkx","/zzkx"],"name":"Unknown","maintainers":[],"location":"zzkx.ts"}} />
+
+## 字节点击 {#zi-jie-dian-ji}
+
+### Unknown {#zi-jie-dian-ji-unknown}
+
+<Route data={{"path":"/","radar":{"source":["byteclicks.com/"],"target":""},"name":"Unknown","maintainers":["TonyRL"],"url":"byteclicks.com/","location":"index.ts"}} />
+
+## 综艺秀 {#zong-yi-xiu}
+
+### Unknown {#zong-yi-xiu-unknown}
+
+<Route data={{"path":"*","name":"Unknown","maintainers":[],"location":"index.ts"}} />
-## はてな {#%E3%81%AF%E3%81%A6%E3%81%AA}
+## アニメ新番組 {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu}
-### はてな匿名ダイアリー - 人気記事アーカイブ {#%E3%81%AF%E3%81%A6%E3%81%AA-%E3%81%AF%E3%81%A6%E3%81%AA-ni-ming-%E3%83%80%E3%82%A4%E3%82%A2%E3%83%AA%E3%83%BC-ren-qi-ji-shi-%E3%82%A2%E3%83%BC%E3%82%AB%E3%82%A4%E3%83%96}
+### Unknown {#%E3%82%A2%E3%83%8B%E3%83%A1-xin-fan-zu-unknown}
-<Route author="masakichi" example="/hatena/anonymous_diary/archive" path="/hatena/anonymous_diary/archive" />
+<Route data={{"path":"/moe/*","radar":{"source":["bangumi.moe/"],"target":"/moe"},"name":"Unknown","maintainers":[],"url":"bangumi.moe/","location":"moe/index.ts"}} />
diff --git a/website/docs/routes/picture.mdx b/website/docs/routes/picture.mdx
index d0bb94d886f6a3..36196130a3dfc3 100644
--- a/website/docs/routes/picture.mdx
+++ b/website/docs/routes/picture.mdx
@@ -1,208 +1,43 @@
-# 🖼️ Picture
-
-## 1X {#1x}
-
-### Photos {#1x-photos}
-
-<Route author="nczitzk" example="/1x" path="/1x/:category?" paramsDesc={['Category, Latest awarded by default, see below']}>
- | Category | Title |
- | ---------------- | ------------- |
- | Latest awarded | latest |
- | Popular | popular |
- | Latest published | published |
- | Abstract | abstract |
- | Action | action |
- | Animals | animals |
- | Architecture | architecture |
- | Conceptual | conceptual |
- | Creative edit | creative-edit |
- | Documentary | documentary |
- | Everyday | everyday |
- | Fine Art Nude | fine-art-nude |
- | Humour | humour |
- | Landscape | landscape |
- | Macro | macro |
- | Mood | mood |
- | Night | night |
- | Performance | performance |
- | Portrait | portrait |
- | Still life | still-life |
- | Street | street |
- | Underwater | underwater |
- | Wildlife | wildlife |
-</Route>
-
-## 35PHOTO {#35photo}
-
-### New photos {#35photo-new-photos}
-
-<Route author="nczitzk" example="/35photo/new" path="/35photo/new" notOperational="1" />
-
-### Featured photos {#35photo-featured-photos}
-
-<Route author="nczitzk" example="/35photo/actual" path="/35photo/actual" notOperational="1" />
-
-### New interesting {#35photo-new-interesting}
-
-<Route author="nczitzk" example="/35photo/interesting" path="/35photo/interesting" notOperational="1" />
-
-### Photos on the world map {#35photo-photos-on-the-world-map}
-
-<Route author="nczitzk" example="/35photo/map" path="/35photo/map" notOperational="1" />
-
-### Genre {#35photo-genre}
-
-<Route author="nczitzk" example="/35photo/genre/99" path="/35photo/genre/:id" paramsDesc={['id, can be found in URL']} notOperational="1" />
-
-### Author {#35photo-author}
-
-<Route author="nczitzk" example="/35photo/author/mariuszsix" path="/35photo/author/:id" paramsDesc={['id, can be found in URL']} notOperational="1" />
+# picture
## 500px 摄影社区 {#500px-she-ying-she-qu}
### 部落影集 {#500px-she-ying-she-qu-bu-luo-ying-ji}
-<Route author="TonyRL" example="/500px/tribe/set/f5de0b8aa6d54ec486f5e79616418001" path="/500px/tribe/set/:id" paramsDesc={['部落 ID']} radar="1" />
+<Route data={{"path":"/tribe/set/:id","categories":["picture"],"example":"/500px/tribe/set/f5de0b8aa6d54ec486f5e79616418001","parameters":{"id":"部落 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"部落影集","maintainers":["TonyRL"],"location":"tribe-set.ts"}} />
### 摄影师作品 {#500px-she-ying-she-qu-she-ying-shi-zuo-pin}
-<Route author="TonyRL" example="/500px/user/works/hujunli" path="/500px/user/works/:id" paramsDesc={['摄影师 ID']} radar="1" notOperational="1" />
+<Route data={{"path":"/user/works/:id","categories":["picture"],"example":"/500px/user/works/hujunli","parameters":{"id":"摄影师 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["500px.com.cn/:id","500px.com.cn/community/user-details/:id","500px.com.cn/community/user-details/:id/*"]},"name":"摄影师作品","maintainers":["TonyRL"],"location":"user.ts"}} />
## 8KCosplay {#8kcosplay}
-### 最新 {#8kcosplay-zui-xin}
-
-<Route author="KotoriK" example="/8kcos/" path="/8kcos/" />
-
-### 分类 {#8kcosplay-fen-lei}
+### 标签 {#8kcosplay-biao-qian}
-<Route author="KotoriK" example="/8kcos/cat/8kasianidol" path="/8kcos/cat/:cat*" paramsDesc={['默认值为8kasianidol,将目录页面url中 /category/ 后面的部分填入。如:https://www.8kcosplay.com/category/8kchineseidol/%e9%a3%8e%e4%b9%8b%e9%a2%86%e5%9f%9f/ 对应的RSS页面为/8kcos/cat/8kchineseidol/%e9%a3%8e%e4%b9%8b%e9%a2%86%e5%9f%9f/。']} />
+<Route data={{"path":"/tag/:tag","categories":["picture"],"example":"/8kcos/tag/cosplay","parameters":{"tag":"标签名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["8kcosplay.com/tag/:tag"]},"name":"标签","maintainers":["KotoriK"],"url":"8kcosplay.com/","location":"tag.ts"}} />
-### 标签 {#8kcosplay-biao-qian}
+### 最新 {#8kcosplay-zui-xin}
-<Route author="KotoriK" example="/8kcos/tag/cosplay" path="/8kcos/tag/:tag" paramsDesc={['标签名']} />
+<Route data={{"path":"/","categories":["picture"],"example":"/8kcos/","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["8kcosplay.com/"],"target":""},"name":"最新","maintainers":["KotoriK"],"url":"8kcosplay.com/","location":"latest.ts"}} />
## ArtStation {#artstation}
### Artist Profolio {#artstation-artist-profolio}
-<Route author="TonyRL" example="/artstation/wlop" path="/artstation/:handle" paramsDesc={['Artist handle, can be found in URL']} />
-
-## Asian to lick {#asian-to-lick}
-
-### Top rated {#asian-to-lick-top-rated}
-
-<Route author="nczitzk" example="/asiantolick" path="/asiantolick" radar="1" />
-
-### News {#asian-to-lick-news}
-
-<Route author="nczitzk" example="/asiantolick/page/news" path="/asiantolick/page/news" radar="1" />
-
-### Category {#asian-to-lick-category}
-
-<Route author="nczitzk" example="/asiantolick/category/90" path="/asiantolick/category/:id" paramsDesc={['Category id, can be found in URL']} radar="1">
- | Category | id |
- | ---------- | ---- |
- | Lolita | 90 |
- | Hot Sister | 91 |
- | Cosplay | 1030 |
- | Sexy | 93 |
- | Others | 94 |
- | Thailand | 99 |
- | Magazine | 100 |
- | Hard Sexy | 103 |
-</Route>
-
-### Tag {#asian-to-lick-tag}
-
-<Route author="nczitzk" example="/asiantolick/tag/1045" path="/asiantolick/tag/:id" paramsDesc={['Tag id, can be found in URL']} radar="1">
- | Aidol | Anal | Babe | Big Boobs | Big Pussy |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 2310 | 2233 | 1385 | 1106 | 1722 |
- | | | | | |
- | Bikini | Blonde | blowjob | Close Up | Creamy Pussy |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 1206 | 2244 | 2167 | 2267 | 1117 |
- | | | | | |
- | cum | Cute Girl | Dildo | Ebony | Feet |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 2163 | 1090 | 1082 | 2245 | 1323 |
- | | | | | |
- | fetish | fingers | Fox Tail | Glasses | Hairy Pussy |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 2219 | 2197 | 1540 | 1268 | 1099 |
- | | | | | |
- | Interracial | Lesbian | licked | Loli | Maid |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 2284 | 1080 | 2208 | 1045 | 1072 |
- | | | | | |
- | Masturbate | Milf | non-nude | Nude | Nurse |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 1081 | 1705 | 2307 | 1393 | 1552 |
- | | | | | |
- | Office | oiled | Outdoor | Pink Pussy | Pink Tits |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 1724 | 2176 | 2250 | 1161 | 1498 |
- | | | | | |
- | Public | School Girl | Short Hair | skirt | Small Girl |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 1277 | 1046 | 1160 | 2159 | 1103 |
- | | | | | |
- | Socks | sucking | Tattoo | Teen | Tiny Tits |
- | ------------ | ------------ | ------------ | ------------ | ------------ |
- | 2256 | 2199 | 1593 | 1036 | 2251 |
- | | | | | |
- | Underwear | Uniform | wet | Young | |
- | ------------ | ------------ | ------------ | ------------ | |
- | 1324 | 1084 | 2179 | 1098 | |
-</Route>
-
-### Search {#asian-to-lick-search}
-
-<Route author="nczitzk" example="/asiantolick/search/lolita" path="/asiantolick/search/:keyword" paramsDesc={['Keyword']} radar="1" />
-
-### Page {#asian-to-lick-page}
-
-<Route author="nczitzk" example="/asiantolick/page/news" path="/asiantolick/page/:id" paramsDesc={['Page id']} radar="1" />
-
-## Bing {#bing}
-
-### Daily Wallpaper {#bing-daily-wallpaper}
-
-<Route author="FHYunCai" example="/bing" path="/bing" radar="1" />
+<Route data={{"path":"/:handle","categories":["picture"],"example":"/artstation/wlop","parameters":{"handle":"Artist handle, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.artstation.com/:handle"]},"name":"Artist Profolio","maintainers":["TonyRL"],"location":"user.ts"}} />
## Booru {#booru}
### MMDArchive 标签查询 {#booru-mmdarchive-biao-qian-cha-xun}
-<Route author="N78Wy" example="/booru/mmda/tags/full_body+blue_eyes" path="/booru/mmda/tags/:tags?" paramsDesc={['标签,多个标签使用空格 ` ` 或者 `%20` 连接,如需根据作者查询则在 `user:` 后接上作者名,如:`user:xxxx`']} notOperational="1">
- For example:
-
- - 默认查询 (什么 tag 都不加):`/booru/mmda/tags`
- - 默认查询单个 tag:`/booru/mmda/tags/full_body`
- - 默认查询多个 tag:`/booru/mmda/tags/full_body%20blue_eyes`
- - 默认查询根据作者查询:`/booru/mmda/tags/user:xxxx`
-</Route>
-
-## CNU 视觉联盟 {#cnu-shi-jue-lian-meng}
-
-### 每日精选 {#cnu-shi-jue-lian-meng-mei-ri-jing-xuan}
-
-<Route author="hoilc" example="/cnu/selected" path="/cnu/selected" />
+<Route data={{"path":"/mmda/tags/:tags?","categories":["picture"],"example":"/booru/mmda/tags/full_body+blue_eyes","parameters":{"tags":"标签,多个标签使用空格 ` ` 或者 `%20` 连接,如需根据作者查询则在 `user:` 后接上作者名,如:`user:xxxx`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"MMDArchive 标签查询","maintainers":["N78Wy"],"description":"For example:\n\n - 默认查询 (什么 tag 都不加):`/booru/mmda/tags`\n - 默认查询单个 tag:`/booru/mmda/tags/full_body`\n - 默认查询多个 tag:`/booru/mmda/tags/full_body%20blue_eyes`\n - 默认查询根据作者查询:`/booru/mmda/tags/user:xxxx`","location":"mmda.ts"}} />
-### 发现 {#cnu-shi-jue-lian-meng-fa-xian}
+For example:
-<Route author="hoilc" example="/cnu/discovery/hot/自然" path="/cnu/discovery/:type?/:category?" paramsDesc={['板块类型, 默认为`热门`, 具体参见下表', '图片类别, 默认为`0`代表全部, 可参见[这里](http://www.cnu.cc/discoveryPage/hot-0)']} />
-
-| 热门 | 推荐 | 最新 |
-| ---- | --------- | ------ |
-| hot | recommend | recent |
-
-## DailyArt 每日艺术 {#dailyart-mei-ri-yi-shu}
-
-### DailyArt {#dailyart-mei-ri-yi-shu-dailyart}
-
-<Route author="zphw" example="/dailyart/en" path="/dailyart/:language?" paramsDesc={['Support en, es, fr, de, it, zh, jp, etc. English by default.']} anticrawler="1" />
+- 默认查询 (什么 tag 都不加):`/booru/mmda/tags`
+- 默认查询单个 tag:`/booru/mmda/tags/full_body`
+- 默认查询多个 tag:`/booru/mmda/tags/full_body%20blue_eyes`
+- 默认查询根据作者查询:`/booru/mmda/tags/user:xxxx`
## E-Hentai {#e-hentai}
@@ -215,209 +50,130 @@ For RSS content, specify options in the `routeParams` parameter in query string
### Favorites {#e-hentai-favorites}
-<Route author="yindaheng98" example="/ehentai/favorites/0/posted/1" path="/ehentai/favorites/:favcat?/:order?/:page?/:routeParams?" paramsDesc={['Favorites folder number','`posted`(Sort by gallery release time) , `favorited`(Sort by time added to favorites)', 'Page number', 'Additional parameters, see the table above']} anticrawler="1" supportBT="1" />
+<Route data={{"path":"/favorites/:favcat?/:order?/:page?/:routeParams?","categories":["picture"],"example":"/ehentai/favorites/0/posted/1","parameters":{"favcat":"Favorites folder number","order":"`posted`(Sort by gallery release time) , `favorited`(Sort by time added to favorites)","page":"Page number","routeParams":"Additional parameters, see the table above"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Favorites","maintainers":["yindaheng98","syrinka"],"location":"favorites.ts"}} />
-### Tag {#e-hentai-tag}
+### Search {#e-hentai-search}
-<Route author="yindaheng98" example="/ehentai/tag/language:chinese/1" path="/ehentai/tag/:tag/:page?/:routeParams?" paramsDesc={['Tag', 'Page number', 'Additional parameters, see the table above']} anticrawler="1" supportBT="1" />
+<Route data={{"path":"/search/:params?/:page?/:routeParams?","categories":["picture"],"example":"/ehentai/search/f_search=artist%3Amana%24/1","parameters":{"params":"Search parameters. You can copy the content after `https://e-hentai.org/?`","page":"Page number","routeParams":"Additional parameters, see the table above"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["yindaheng98","syrinka"],"location":"search.ts"}} />
-### Search {#e-hentai-search}
+### Tag {#e-hentai-tag}
-<Route author="yindaheng98" example="/ehentai/search/f_search=artist%3Amana%24/1" path="/ehentai/search/:params?/:page?/:routeParams?" paramsDesc={['Search parameters. You can copy the content after `https://e-hentai.org/?`', 'Page number', 'Additional parameters, see the table above']} anticrawler="1" supportBT="1" />
+<Route data={{"path":"/tag/:tag/:page?/:routeParams?","categories":["picture"],"example":"/ehentai/tag/language:chinese/1","parameters":{"tag":"Tag","page":"Page number","routeParams":"Additional parameters, see the table above"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":true,"supportPodcast":false,"supportScihub":false},"name":"Tag","maintainers":["yindaheng98","syrinka"],"location":"tag.ts"}} />
## Fantia {#fantia}
### Search {#fantia-search}
-<Route author="nczitzk" example="/fantia/search/posts/all/daily" path="/fantia/search/:type?/:caty?/:period?/:order?/:rating?/:keyword?" paramsDesc={['Type, see the table below, `posts` by default', 'Category, see the table below, can also be found in search page URL, `すべてのクリエイター` by default', 'Ranking period, see the table below, empty by default' ,'Sorting, see the table below, `更新の新しい順` by default', 'Rating, see the table below, `すべて` by default', 'Keyword, empty by default']}>
- Type
-
- | クリエイター | 投稿 | 商品 | コミッション |
- | ------------ | ----- | -------- | ------------ |
- | fanclubs | posts | products | commissions |
-
- Category
-
- | 分类 | 分类名 |
- | ---------------------- | ---------- |
- | イラスト | illust |
- | 漫画 | comic |
- | コスプレ | cosplay |
- | YouTuber・配信者 | youtuber |
- | Vtuber | vtuber |
- | 音声作品・ASMR | voice |
- | 声優・歌い手 | voiceactor |
- | アイドル | idol |
- | アニメ・映像・写真 | anime |
- | 3D | 3d |
- | ゲーム制作 | game |
- | 音楽 | music |
- | 小説 | novel |
- | ドール | doll |
- | アート・デザイン | art |
- | プログラム | program |
- | 創作・ハンドメイド | handmade |
- | 歴史・評論・情報 | history |
- | 鉄道・旅行・ミリタリー | railroad |
- | ショップ | shop |
- | その他 | other |
-
- Ranking period
-
- | デイリー | ウィークリー | マンスリー | 全期間 |
- | -------- | ------------ | ---------- | ------ |
- | daily | weekly | monthly | all |
-
- Sorting
-
- | 更新の新しい順 | 更新の古い順 | 投稿の新しい順 | 投稿の古い順 | お気に入り数順 |
- | -------------- | ------------ | -------------- | ------------ | -------------- |
- | updater | update\_old | newer | create\_old | popular |
-
- Rating
-
- | すべて | 一般のみ | R18 のみ |
- | ------ | -------- | -------- |
- | all | general | adult |
-</Route>
+<Route data={{"path":"/search/:type?/:caty?/:period?/:order?/:rating?/:keyword?","categories":["picture"],"example":"/fantia/search/posts/all/daily","parameters":{"type":"Type, see the table below, `posts` by default","caty":"Category, see the table below, can also be found in search page URL, `すべてのクリエイター` by default","period":"Ranking period, see the table below, empty by default","order":"Sorting, see the table below, `更新の新しい順` by default","rating":"Rating, see the table below, `すべて` by default","keyword":"Keyword, empty by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":[],"description":"Type\n\n | クリエイター | 投稿 | 商品 | コミッション |\n | ------------ | ----- | -------- | ------------ |\n | fanclubs | posts | products | commissions |\n\n Category\n\n | 分类 | 分类名 |\n | ---------------------- | ---------- |\n | イラスト | illust |\n | 漫画 | comic |\n | コスプレ | cosplay |\n | YouTuber・配信者 | youtuber |\n | Vtuber | vtuber |\n | 音声作品・ASMR | voice |\n | 声優・歌い手 | voiceactor |\n | アイドル | idol |\n | アニメ・映像・写真 | anime |\n | 3D | 3d |\n | ゲーム制作 | game |\n | 音楽 | music |\n | 小説 | novel |\n | ドール | doll |\n | アート・デザイン | art |\n | プログラム | program |\n | 創作・ハンドメイド | handmade |\n | 歴史・評論・情報 | history |\n | 鉄道・旅行・ミリタリー | railroad |\n | ショップ | shop |\n | その他 | other |\n\n Ranking period\n\n | デイリー | ウィークリー | マンスリー | 全期間 |\n | -------- | ------------ | ---------- | ------ |\n | daily | weekly | monthly | all |\n\n Sorting\n\n | 更新の新しい順 | 更新の古い順 | 投稿の新しい順 | 投稿の古い順 | お気に入り数順 |\n | -------------- | ------------ | -------------- | ------------ | -------------- |\n | updater | update_old | newer | create_old | popular |\n\n Rating\n\n | すべて | 一般のみ | R18 のみ |\n | ------ | -------- | -------- |\n | all | general | adult |","location":"search.ts"}} />
+
+Type
+
+| クリエイター | 投稿 | 商品 | コミッション |
+| ------------ | ----- | -------- | ------------ |
+| fanclubs | posts | products | commissions |
+
+Category
+
+| 分类 | 分类名 |
+| ---------------------- | ---------- |
+| イラスト | illust |
+| 漫画 | comic |
+| コスプレ | cosplay |
+| YouTuber・配信者 | youtuber |
+| Vtuber | vtuber |
+| 音声作品・ASMR | voice |
+| 声優・歌い手 | voiceactor |
+| アイドル | idol |
+| アニメ・映像・写真 | anime |
+| 3D | 3d |
+| ゲーム制作 | game |
+| 音楽 | music |
+| 小説 | novel |
+| ドール | doll |
+| アート・デザイン | art |
+| プログラム | program |
+| 創作・ハンドメイド | handmade |
+| 歴史・評論・情報 | history |
+| 鉄道・旅行・ミリタリー | railroad |
+| ショップ | shop |
+| その他 | other |
+
+Ranking period
+
+| デイリー | ウィークリー | マンスリー | 全期間 |
+| -------- | ------------ | ---------- | ------ |
+| daily | weekly | monthly | all |
+
+Sorting
+
+| 更新の新しい順 | 更新の古い順 | 投稿の新しい順 | 投稿の古い順 | お気に入り数順 |
+| -------------- | ------------ | -------------- | ------------ | -------------- |
+| updater | update\_old | newer | create\_old | popular |
+
+Rating
+
+| すべて | 一般のみ | R18 のみ |
+| ------ | -------- | -------- |
+| all | general | adult |
### User Posts {#fantia-user-posts}
-<Route author="nczitzk" example="/fantia/user/3498" path="/fantia/user/:id" paramsDesc={['User id, can be found in user profile URL']} />
-
-## GoComics {#gocomics}
-
-### Comic Strips {#gocomics-comic-strips}
-
-<Route author="stjohnjohnson" example="/gocomics/foxtrot" path="/gocomics/:strip" paramsDesc={['URL path of the strip on gocomics.com']} />
-
-## Google Doodles {#google-doodles}
-
-### Update {#google-doodles-update}
+<Route data={{"path":"/user/:id","categories":["picture"],"example":"/fantia/user/3498","parameters":{"id":"User id, can be found in user profile URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fantia.jp/fanclubs/:id"]},"name":"User Posts","maintainers":["nczitzk"],"location":"user.ts"}} />
-<Route author="xyqfer" example="/google/doodles/zh-CN" path="/google/doodles/:language?" paramsDesc={['Language, default to `zh-CN`, for other language values, you can get it from [Google Doodles official website](https://www.google.com/doodles)']} />
+## Google {#google}
-## Google Photos {#google-photos}
+### Public Albums {#google-public-albums}
-### Public Albums {#google-photos-public-albums}
+<Route data={{"path":"/album/:id","categories":["picture"],"example":"/google/album/msFFnAzKmQmWj76EA","parameters":{"id":"album ID, can be found in URL, for example, `https://photos.app.goo.gl/msFFnAzKmQmWj76EA` to `msFFnAzKmQmWj76EA`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Public Albums","maintainers":["hoilc"],"location":"album.ts"}} />
-<Route author="hoilc" example="/google/album/msFFnAzKmQmWj76EA" path="/google/album/:id" paramsDesc={['album ID, can be found in URL, for example, `https://photos.app.goo.gl/msFFnAzKmQmWj76EA` to `msFFnAzKmQmWj76EA`']} radar="1" notOperational="1" />
+### Update {#google-update}
-## Konachan Anime Wallpapers {#konachan-anime-wallpapers}
+<Route data={{"path":"/doodles/:language?","categories":["picture"],"example":"/google/doodles/zh-CN","parameters":{"language":"Language, default to `zh-CN`, for other language values, you can get it from [Google Doodles official website](https://www.google.com/doodles)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Update","maintainers":["xyqfer"],"location":"doodles.ts"}} />
-:::tip
-- Tags can be copied after `tags=` in [konachan](https://konachan.com/post) URL
-- The route can be / konachan or /konachan.com or /konachan.net, where the first two are the same, and .net is an all-age healthy wallpaper ♡
-- Official Posts RSS: `https://konachan.com/post/piclens?tags=[tags]`
-:::
-
-### Popular Recent Posts {#konachan-anime-wallpapers-popular-recent-posts}
-
-<Route author="magic-akari" example="/konachan/post/popular_recent" path="/konachan/post/popular_recent/:period?" paramsDesc={['Default to 24 hours']}>
- For example:
-
- - 24 hours: [https://rsshub.app/konachan/post/popular\_recent/1d](https://rsshub.app/konachan/post/popular_recent/1d)
- - 1 week: [https://rsshub.app/konachan/post/popular\_recent/1w](https://rsshub.app/konachan/post/popular_recent/1w)
- - 1 month: [https://rsshub.app/konachan/post/popular\_recent/1m](https://rsshub.app/konachan/post/popular_recent/1m)
- - 1 year: [https://rsshub.app/konachan/post/popular\_recent/1y](https://rsshub.app/konachan/post/popular_recent/1y)
-</Route>
-
-## Mic Mic Idol {#mic-mic-idol}
-
-### Latest {#mic-mic-idol-latest}
-
-<Route author="KotoriK" example="/micmicidol" path="/micmicidol" />
-
-### 标签 {#mic-mic-idol-biao-qian}
-
-<Route author="KotoriK" example="/micmicidol/search/Young%20Jump?limit=50" path="/micmicidol/search/:label" paramsDesc={['标签名']} notOperational="1" />
+## MM 范 {#mm-fan}
-获取数量可以通过 [limit](/parameter#条数限制) 参数控制。默认值为`50`。
+### 标签 {#mm-fan-biao-qian}
-## MM 范 {#mm-fan}
+<Route data={{"path":"/tag/:tag","categories":["picture"],"example":"/95mm/tag/黑丝","parameters":{"tag":"标签,可在对应标签页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["95mm.org/"]},"name":"标签","maintainers":["nczitzk"],"url":"95mm.org/","location":"tag.ts"}} />
### 分类 {#mm-fan-fen-lei}
-<Route author="nczitzk" example="/95mm/tab/热门" path="/95mm/tab/:tab?" paramsDesc={['分类,见下表,默认为最新']}>
- | 最新 | 热门 | 校花 | 森系 | 清纯 | 童颜 | 嫩模 | 少女 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
-</Route>
+<Route data={{"path":"/tab/:tab?","categories":["picture"],"example":"/95mm/tab/热门","parameters":{"tab":"分类,见下表,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["95mm.org/"]},"name":"分类","maintainers":["nczitzk"],"url":"95mm.org/","description":"| 最新 | 热门 | 校花 | 森系 | 清纯 | 童颜 | 嫩模 | 少女 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |","location":"tab.ts"}} />
-### 标签 {#mm-fan-biao-qian}
-
-<Route author="nczitzk" example="/95mm/tag/黑丝" path="/95mm/tag/:tag" paramsDesc={['标签,可在对应标签页中找到']} />
+| 最新 | 热门 | 校花 | 森系 | 清纯 | 童颜 | 嫩模 | 少女 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
### 集合 {#mm-fan-ji-he}
-<Route author="nczitzk" example="/95mm/category/1" path="/95mm/category/:category" paramsDesc={['集合,见下表']}>
- | 清纯唯美 | 摄影私房 | 明星写真 | 三次元 | 异域美景 | 性感妖姬 | 游戏主题 | 美女壁纸 |
- | -------- | -------- | -------- | ------ | -------- | -------- | -------- | -------- |
- | 1 | 2 | 4 | 5 | 6 | 7 | 9 | 11 |
-</Route>
+<Route data={{"path":"/category/:category","categories":["picture"],"example":"/95mm/category/1","parameters":{"category":"集合,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["95mm.org/"]},"name":"集合","maintainers":["nczitzk"],"url":"95mm.org/","description":"| 清纯唯美 | 摄影私房 | 明星写真 | 三次元 | 异域美景 | 性感妖姬 | 游戏主题 | 美女壁纸 |\n | -------- | -------- | -------- | ------ | -------- | -------- | -------- | -------- |\n | 1 | 2 | 4 | 5 | 6 | 7 | 9 | 11 |","location":"category.ts"}} />
-## NASA Astronomy Picture of the Day {#nasa-astronomy-picture-of-the-day}
+| 清纯唯美 | 摄影私房 | 明星写真 | 三次元 | 异域美景 | 性感妖姬 | 游戏主题 | 美女壁纸 |
+| -------- | -------- | -------- | ------ | -------- | -------- | -------- | -------- |
+| 1 | 2 | 4 | 5 | 6 | 7 | 9 | 11 |
-### NASA {#nasa-astronomy-picture-of-the-day-nasa}
-
-<Route author="nczitzk" example="/nasa/apod" path="/nasa/apod" />
+## NASA Astronomy Picture of the Day {#nasa-astronomy-picture-of-the-day}
### Cheng Kung University Mirror {#nasa-astronomy-picture-of-the-day-cheng-kung-university-mirror}
-<Route author="nczitzk" example="/nasa/apod-ncku" path="/nasa/apod-ncku" />
+<Route data={{"path":"/apod-ncku","categories":["picture"],"example":"/nasa/apod-ncku","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apod.nasa.govundefined"]},"name":"Cheng Kung University Mirror","maintainers":["nczitzk","williamgateszhao"],"url":"apod.nasa.govundefined","location":"apod-ncku.ts"}} />
-### NASA 中文 {#nasa-astronomy-picture-of-the-day-nasa-zhong-wen}
-
-<Route author="nczitzk" example="/nasa/apod-cn" path="/nasa/apod-cn" notOperational="1">
- :::tip
- [NASA 中文](https://www.nasachina.cn/) 提供了每日天文图的中英双语图文说明,但在更新上偶尔略有一两天的延迟。
- :::
-</Route>
-
-## National Geographic {#national-geographic}
+### NASA {#nasa-astronomy-picture-of-the-day-nasa}
-### Photo of the Day {#national-geographic-photo-of-the-day}
+<Route data={{"path":"/apod","categories":["picture"],"example":"/nasa/apod","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apod.nasa.govundefined"]},"name":"NASA","maintainers":["nczitzk","williamgateszhao"],"url":"apod.nasa.govundefined","location":"apod.ts"}} />
-<Route author="LogicJake OrangeEd1t TonyRL" example="/natgeo/dailyphoto" path="/natgeo/dailyphoto" />
+### NASA 中文 {#nasa-astronomy-picture-of-the-day-nasa-zhong-wen}
-### 每日一图 {#national-geographic-mei-ri-yi-tu}
+<Route data={{"path":"/apod-cn","categories":["picture"],"example":"/nasa/apod-cn","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apod.nasa.govundefined"]},"name":"NASA 中文","maintainers":["nczitzk","williamgateszhao"],"url":"apod.nasa.govundefined","description":":::tip\n [NASA 中文](https://www.nasachina.cn/) 提供了每日天文图的中英双语图文说明,但在更新上偶尔略有一两天的延迟。\n :::","location":"apod-cn.ts"}} />
-<Route author="LogicJake OrangeEd1t TonyRL" example="/natgeo/dailyphoto" path="/natgeo/dailyphoto" />
+:::tip
+[NASA 中文](https://www.nasachina.cn/) 提供了每日天文图的中英双语图文说明,但在更新上偶尔略有一两天的延迟。
+:::
## Pixabay {#pixabay}
### Search {#pixabay-search}
-<Route author="TonyRL" example="/pixabay/search/cat" path="/pixabay/search/:q/:order?" paramsDesc={['Search term', 'Order, `popular` or `latest`, `latest` by default']} radar="1" configRequired="1" />
-
-## Porn Image XXX {#porn-image-xxx}
-
-### 最新图片 {#porn-image-xxx-zui-xin-tu-pian}
-
-<Route author="hoilc" example="/porn-images-xxx/tag/jk" path="/porn-images-xxx/:type?/:name?" paramsDesc={['搜索类型, `tag`为标签, `keyword`为关键字, 默认留空为全部','搜索内容, 可在 URL 中找到,默认留空为全部']} anticrawler="1" />
-
-## Rare Historical Photos {#rare-historical-photos}
-
-### Home {#rare-historical-photos-home}
-
-<Route author="TonyRL" example="/rarehistoricalphotos" path="/rarehistoricalphotos" radar="1" />
-
-## Tits Guru {#tits-guru}
-
-### Home {#tits-guru-home}
-
-<Route author="MegrezZhu" example="/tits-guru/home" path="/tits-guru/home" />
-
-### Daily Best {#tits-guru-daily-best}
-
-<Route author="MegrezZhu" example="/tits-guru/daily" path="/tits-guru/daily" />
-
-### Models {#tits-guru-models}
-
-<Route author="MegrezZhu" example="/tits-guru/model/mila-azul" path="/tits-guru/model/:name" paramsDesc={['Module name, see [here](https://tits-guru.com/models) for details']} />
-
-### Categories {#tits-guru-categories}
-
-<Route author="MegrezZhu" example="/tits-guru/category/bikini" path="/tits-guru/category/:type" paramsDesc={['Category, see [here](https://tits-guru.com/categories) for details']} />
+<Route data={{"path":"/search/:q/:order?","categories":["picture"],"example":"/pixabay/search/cat","parameters":{"q":"Search term","order":"Order, `popular` or `latest`, `latest` by default"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["pixabay.com/:searchType/search/:q"],"target":"/search/:q"},"name":"Search","maintainers":["TonyRL"],"location":"search.ts"}} />
## wallhaven {#wallhaven}
@@ -429,111 +185,50 @@ However, the number of requests to the site increases a lot when it is turned on
For example [Latest Wallpapers](https://wallhaven.cc/latest), the route turning on **Need Details** is [/wallhaven/latest/true](https://rsshub.app/wallhaven/latest/true), and then specify a smaller `limit`. We can get [/wallhaven/latest/true?limit=5](https://rsshub.app/wallhaven/latest/true?limit=5).
:::
-### Category {#wallhaven-category}
-
-<Route author="nczitzk Fatpandac" example="/wallhaven/latest" path="/wallhaven/:category?/:needDetails?" paramsDesc={['Category, see below, Latest by default', 'Need Details, `true/yes` as yes, no by default']}>
- | Latest | Hot | Toplist | Random |
- | ------ | --- | ------- | ------ |
- | latest | hot | toplist | random |
-</Route>
-
### Search {#wallhaven-search}
-<Route author="nczitzk Fatpandac" example="/wallhaven/search/categories=110&purity=110&sorting=date_added&order=desc" path="/wallhaven/search/:filter?/:needDetails?" paramsDesc={['Filter, empty by default', 'Need Details, `true`/`yes` as yes, no by default']}>
- :::tip
- Subscribe pages starting with `https://wallhaven.cc/search`, fill the text after `?` as `filter` in the route. The following is an example:
+<Route data={{"path":["/search/:filter?/:needDetails?","/:filter?/:needDetails?"],"categories":["picture"],"example":"/wallhaven/search/categories=110&purity=110&sorting=date_added&order=desc","parameters":{"filter":"Filter, empty by default","needDetails":"Need Details, `true`/`yes` as yes, no by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wallhaven.cc/"]},"name":"Search","maintainers":["nczitzk","Fatpandac"],"url":"wallhaven.cc/","description":":::tip\n Subscribe pages starting with `https://wallhaven.cc/search`, fill the text after `?` as `filter` in the route. The following is an example:\n\n The text after `?` is `q=id%3A711&sorting=random&ref=fp&seed=8g0dgd` for [Wallpaper Search: #landscape - wallhaven.cc](https://wallhaven.cc/search?q=id%3A711&sorting=random&ref=fp&seed=8g0dgd), so the route is [/wallhaven/q=id%3A711&sorting=random&ref=fp&seed=8g0dgd](https://rsshub.app/wallhaven/q=id%3A711&sorting=random&ref=fp&seed=8g0dgd)\n :::","location":"index.ts"}} />
- The text after `?` is `q=id%3A711&sorting=random&ref=fp&seed=8g0dgd` for [Wallpaper Search: #landscape - wallhaven.cc](https://wallhaven.cc/search?q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd), so the route is [/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd](https://rsshub.app/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd)
- :::
-</Route>
-
-## WallpaperHub {#wallpaperhub}
+:::tip
+Subscribe pages starting with `https://wallhaven.cc/search`, fill the text after `?` as `filter` in the route. The following is an example:
-### Wallpapers {#wallpaperhub-wallpapers}
+The text after `?` is `q=id%3A711&sorting=random&ref=fp&seed=8g0dgd` for [Wallpaper Search: #landscape - wallhaven.cc](https://wallhaven.cc/search?q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd), so the route is [/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd](https://rsshub.app/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd)
+:::
-<Route author="nczitzk" example="/wallpaperhub" path="/wallpaperhub" radar="1" />
+### Search {#wallhaven-search}
-## yande.re {#yande-re}
+<Route data={{"path":["/search/:filter?/:needDetails?","/:filter?/:needDetails?"],"categories":["picture"],"example":"/wallhaven/search/categories=110&purity=110&sorting=date_added&order=desc","parameters":{"filter":"Filter, empty by default","needDetails":"Need Details, `true`/`yes` as yes, no by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wallhaven.cc/"]},"name":"Search","maintainers":["nczitzk","Fatpandac"],"url":"wallhaven.cc/","description":":::tip\n Subscribe pages starting with `https://wallhaven.cc/search`, fill the text after `?` as `filter` in the route. The following is an example:\n\n The text after `?` is `q=id%3A711&sorting=random&ref=fp&seed=8g0dgd` for [Wallpaper Search: #landscape - wallhaven.cc](https://wallhaven.cc/search?q=id%3A711&sorting=random&ref=fp&seed=8g0dgd), so the route is [/wallhaven/q=id%3A711&sorting=random&ref=fp&seed=8g0dgd](https://rsshub.app/wallhaven/q=id%3A711&sorting=random&ref=fp&seed=8g0dgd)\n :::","location":"index.ts"}} />
:::tip
-- Official RSS: `https://yande.re/post/piclens?tags=[tags]`
-:::
-
-### Popular Recent Posts {#yande-re-popular-recent-posts}
+Subscribe pages starting with `https://wallhaven.cc/search`, fill the text after `?` as `filter` in the route. The following is an example:
-<Route author="magic-akari SettingDust" example="/yande.re/post/popular_recent" path="/yande.re/post/popular_recent/:period?" paramsDesc={['Default to 24 hours']}>
- For example:
-
- - 24 hours: [https://rsshub.app/yande.re/post/popular\_recent/1d](https://rsshub.app/yande.re/post/popular_recent/1d)
- - 1 week: [https://rsshub.app/yande.re/post/popular\_recent/1w](https://rsshub.app/yande.re/post/popular_recent/1w)
- - 1 month: [https://rsshub.app/yande.re/post/popular\_recent/1m](https://rsshub.app/yande.re/post/popular_recent/1m)
- - 1 year: [https://rsshub.app/yande.re/post/popular\_recent/1y](https://rsshub.app/yande.re/post/popular_recent/1y)
-</Route>
+The text after `?` is `q=id%3A711&sorting=random&ref=fp&seed=8g0dgd` for [Wallpaper Search: #landscape - wallhaven.cc](https://wallhaven.cc/search?q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd), so the route is [/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd](https://rsshub.app/wallhaven/q=id%3A711\&sorting=random\&ref=fp\&seed=8g0dgd)
+:::
## 北京天文馆 {#bei-jing-tian-wen-guan}
### 每日一图 {#bei-jing-tian-wen-guan-mei-ri-yi-tu}
-<Route author="HenryQW" example="/bjp/apod" path="/bjp/apod" radar="1" />
-
-## 煎蛋 {#jian-dan}
-
-### 板块 {#jian-dan-ban-kuai}
-
-<Route author="nczitzk" example="/jandan/top" path="/jandan/:category?" paramsDesc={['板块,见下表,默认为无聊图热榜']}>
- | 问答 | 树洞 | 动物园 | 女装 | 随手拍 | 无聊图 | 鱼塘 |
- | ---- | -------- | ------ | ---- | ------ | ------ | ---- |
- | qa | treehole | zoo | girl | ooxx | pic | pond |
-</Route>
-
-### 热榜 {#jian-dan-re-bang}
-
-<Route author="kobemtl Xuanwo xyqfer 9uanhuo nczitzk" example="/jandan/top-4h" path="/jandan/:category?" paramsDesc={['板块,见下表,默认为无聊图热榜']} />
-
-| 4 小时热门 | 吐槽 | 无聊图 | 随手拍 | 动物园 | 优评 | 3 日最佳 | 7 日最佳 |
-| ---------- | --------- | ------ | -------- | ------- | ------------ | --------- | --------- |
-| top-4h | top-tucao | top | top-ooxx | top-zoo | top-comments | top-3days | top-7days |
-
-### 首页 {#jian-dan-shou-ye}
-
-<Route author="lonelykid nczitzk" example="/jandan" path="/jandan" />
-
-## 酷 18 {#ku-18}
-
-### 分站 {#ku-18-fen-zhan}
-
-<Route author="nczitzk" example="/cool18" path="/cool18/:id?" paramsDesc={['分站,见下表,默认为禁忌书屋']}>
- | 性趣贴图 | 色色动漫 | 情色靓影 | 私房自拍 | 禁忌书屋 | 性趣论坛 | 情色无忌 | 成人影视 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | bbs | bbs7 | bbs2 | bbs6 | bbs4 | bj | bbs5 | bbs3 |
-
- :::tip
- 留园网文档参见 [此处](https://docs.rsshub.app/routes/new-media#liu-yuan-wang)
-
- 禁忌书屋文档参见 [此处](https://docs.rsshub.app/routes/reading#jin-ji-shu-wu)
- :::
-</Route>
-
-### 精华区 {#ku-18-jing-hua-qu}
+<Route data={{"path":"/apod","categories":["picture"],"example":"/bjp/apod","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bjp.org.cn/APOD/today.shtml","bjp.org.cn/APOD/list.shtml","bjp.org.cn/"]},"name":"每日一图","maintainers":["HenryQW"],"url":"bjp.org.cn/APOD/today.shtml","location":"apod.ts"}} />
-<Route author="nczitzk" example="/cool18/bbs/gold" path="/cool18/:id/gold" paramsDesc={['分站,见上表,默认为禁忌书屋']} />
+## 国家地理 {#guo-jia-di-li}
-### 搜索关键字 {#ku-18-sou-suo-guan-jian-zi}
+### 每日一图 {#guo-jia-di-li-mei-ri-yi-tu}
-<Route author="nczitzk" example="/cool18/bbs/keywords/都市" path="/cool18/:id/keywords/:keyword?" paramsDesc={['分站,见上表,默认为禁忌书屋', '关键字']} />
+<Route data={{"path":"/dailyphoto","categories":["picture"],"example":"/natgeo/dailyphoto","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nationalgeographic.com/photo-of-the-day/*","nationalgeographic.com/"]},"name":"每日一图","maintainers":["LogicJake","OrangeEd1t","TonyRL"],"url":"nationalgeographic.com/photo-of-the-day/*","location":"dailyphoto.ts"}} />
## 喷嚏 {#pen-ti}
### 图卦 {#pen-ti-tu-gua}
-<Route author="tgly307" example="/dapenti/tugua" path="/dapenti/tugua" />
+<Route data={{"path":"/tugua","categories":["picture"],"example":"/dapenti/tugua","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"图卦","maintainers":["tgly307"],"location":"tugua.ts"}} />
### 主题 {#pen-ti-zhu-ti}
-<Route author="xyqfer" example="/dapenti/subject/184" path="/dapenti/subject/:id" paramsDesc={['主题 id']} />
+<Route data={{"path":"/subject/:id","categories":["picture"],"example":"/dapenti/subject/184","parameters":{"id":"主题 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"主题","maintainers":["xyqfer"],"location":"subject.ts"}} />
## 奇葩买家秀 {#qi-pa-mai-jia-xiu}
-### 频道 {#qi-pa-mai-jia-xiu-pin-dao}
+### Unknown {#qi-pa-mai-jia-xiu-unknown}
-<Route author="Fatpandac nczitzk" example="/qipamaijia/fuli" path="/qipamaijia/:cate?" paramsDesc={['频道名,可在对应网址中找到,默认为最新']} radar="1" />
+<Route data={{"path":"/:cate?","categories":["picture"],"example":"/qipamaijia/fuli","parameters":{"cate":"频道名,可在对应网址中找到,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qipamaijia.com/","qipamaijia.com/:cate"],"target":"/:cate"},"name":"Unknown","maintainers":["Fatpandac","nczitzk"],"url":"qipamaijia.com/","location":"index.ts"}} />
diff --git a/website/docs/routes/program-update.mdx b/website/docs/routes/program-update.mdx
index fef2cecd2fc6c0..3085c6abe81158 100644
--- a/website/docs/routes/program-update.mdx
+++ b/website/docs/routes/program-update.mdx
@@ -1,126 +1,76 @@
-# 🔄 Application Updates
+# program-update
## Amazon {#amazon}
### Kindle Software Updates {#amazon-kindle-software-updates}
-<Route author="EthanWng97" example="/amazon/kindle/software-updates" path="/amazon/kindle/software-updates" radar="1" anticrawler="1" />
-
-## AMD {#amd}
-
-### 显卡驱动更新 {#amd-xian-ka-qu-dong-geng-xin}
-
-<Route author="ysc3839" example="/amd/graphicsdrivers/731F/C0" path="/amd/graphicsdrivers/:id/:rid?" paramsDesc={['id', 'rid']}>
- 可从设备管理器查看 id 和 rid。如 `PCI\VEN_1002&DEV_731F&SUBSYS_05771043&REV_C1`,则 id 为 `731F`,rid 为 `C1`。
-</Route>
+<Route data={{"path":"/kindle/software-updates","categories":["program-update"],"example":"/amazon/kindle/software-updates","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Kindle Software Updates","maintainers":["EthanWng97"],"location":"kindle-software-updates.ts"}} />
## Android {#android}
### SDK Platform Tools release notes {#android-sdk-platform-tools-release-notes}
-<Route author="nczitzk" example="/android/platform-tools-releases" path="/android/platform-tools-releases" />
-
-## AnyTXT {#anytxt}
-
-### Release Notes {#anytxt-release-notes}
-
-<Route author="nczitzk" example="/anytxt/release-notes" path="/anytxt/release-notes" />
+<Route data={{"path":"/platform-tools-releases","categories":["program-update"],"example":"/android/platform-tools-releases","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["developer.android.com/studio/releases/platform-tools","developer.android.com/"]},"name":"SDK Platform Tools release notes","maintainers":["nczitzk"],"url":"developer.android.com/studio/releases/platform-tools","location":"platform-tools-releases.ts"}} />
## APKPure {#apkpure}
### Versions {#apkpure-versions}
-<Route author="maple3142" example="/apkpure/versions/jp.co.craftegg.band/jp" path="/apkpure/versions/:pkg/:region?" paramsDesc={['Package name', 'Region code, `en` by default']} radar="1" anticrawler="1" puppeteer="1" />
+<Route data={{"path":"/versions/:pkg/:region?","categories":["program-update"],"example":"/apkpure/versions/jp.co.craftegg.band/jp","parameters":{"pkg":"Package name","region":"Region code, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Versions","maintainers":["maple3142"],"location":"versions.ts"}} />
## App Center {#app-center}
### Release {#app-center-release}
-<Route author="Rongronggg9" example="/app-center/release/cloudflare/1.1.1.1-windows/beta" path="/app-center/release/:user/:app/:distribution_group" paramsDesc={['User', 'App name', 'Distribution group']} radar="1">
- :::tip
- The parameters can be extracted from the Release page URL: `https://install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group`
- :::
-</Route>
+<Route data={{"path":"/release/:user/:app/:distribution_group","categories":["program-update"],"example":"/app-center/release/cloudflare/1.1.1.1-windows/beta","parameters":{"user":"User","app":"App name","distribution_group":"Distribution group"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group","install.appcenter.ms/orgs/:user/apps/:app/distribution_groups/:distribution_group"]},"name":"Release","maintainers":["Rongronggg9"],"description":":::tip\n The parameters can be extracted from the Release page URL: `https://install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group`\n :::","location":"release.ts"}} />
-## App Store/Mac App Store {#app-store-mac-app-store}
+:::tip
+The parameters can be extracted from the Release page URL: `https://install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group`
+:::
-### App Update {#app-store-mac-app-store-app-update}
+## App Store/Mac App Store {#app-store-mac-app-store}
-<Route author="EkkoG nczitzk" example="/apple/apps/update/us/id408709785" path="/apple/apps/update/:country/:id/:platform?" paramsDesc={['App Store Country, obtain from the app URL, see below', 'App id, obtain from the app URL', 'App Platform, see below, all by default']} radar="1">
- | All | iOS | macOS | tvOS |
- | --- | --- | ----- | ---- |
- | | iOS | macOS | tvOS |
+### In-App-Purchase Price Drop Alert {#app-store-mac-app-store-in-app-purchase-price-drop-alert}
- :::tip
- For example, the URL of [GarageBand](https://apps.apple.com/us/app/messages/id408709785) in the App Store is `https://apps.apple.com/us/app/messages/id408709785`. In this case, the `App Store Country` parameter for the route is `us`, and the `App id` parameter is `id1146560473`. So the route should be [`/apple/apps/update/us/id408709785`](https://rsshub.app/apple/apps/update/us/id408709785).
- :::
-</Route>
+<Route data={{"path":"/iap/:country/:id","categories":["program-update"],"example":"/appstore/iap/us/id953286746","parameters":{"country":"App Store Country, obtain from the app URL https://apps.apple.com/us/app/id953286746, in this case, `us`","id":"App Store app id, obtain from the app URL https://apps.apple.com/us/app/id953286746, in this case, `id953286746`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"In-App-Purchase Price Drop Alert","maintainers":["HenryQW"],"location":"in-app-purchase.ts"}} />
### Price Drop {#app-store-mac-app-store-price-drop}
-<Route author="HenryQW" example="/appstore/price/us/mac/id1152443474" path="/appstore/price/:country/:type/:id" paramsDesc={['App Store Country, obtain from the app URL https://apps.apple.com/us/app/id1152443474, in this case, `us`', 'App type,either `iOS` or `mac`', 'App Store app id, obtain from the app URL https://apps.apple.com/us/app/id1152443474, in this case, `id1152443474`']} />
+<Route data={{"path":"/price/:country/:type/:id","categories":["program-update"],"example":"/appstore/price/us/mac/id1152443474","parameters":{"country":"App Store Country, obtain from the app URL https://apps.apple.com/us/app/id1152443474, in this case, `us`","type":"App type,either `iOS` or `mac`","id":"App Store app id, obtain from the app URL https://apps.apple.com/us/app/id1152443474, in this case, `id1152443474`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apps.apple.com/"]},"name":"Price Drop","maintainers":["HenryQW"],"url":"apps.apple.com/","location":"price.ts"}} />
-### In-App-Purchase Price Drop Alert {#app-store-mac-app-store-in-app-purchase-price-drop-alert}
+### 每日精品限免 / 促销应用(鲜面连线 by AppSo) {#app-store-mac-app-store-mei-ri-jing-pin-xian-mian-cu-xiao-ying-yong-xian-mian-lian-xian-by-appso}
-<Route author="HenryQW" example="/appstore/iap/us/id953286746" path="/appstore/iap/:country/:id" paramsDesc={['App Store Country, obtain from the app URL https://apps.apple.com/us/app/id953286746, in this case, `us`', 'App Store app id, obtain from the app URL https://apps.apple.com/us/app/id953286746, in this case, `id953286746`']} notOperational="1" />
+<Route data={{"path":"/xianmian","categories":["program-update"],"example":"/appstore/xianmian","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["app.so/xianmian"]},"name":"每日精品限免 / 促销应用(鲜面连线 by AppSo)","maintainers":["Andiedie"],"url":"app.so/xianmian","location":"xianmian.ts"}} />
-### 每日精品限免 / 促销应用(鲜面连线 by AppSo) {#app-store-mac-app-store-mei-ri-jing-pin-xian-mian-cu-xiao-ying-yong-xian-mian-lian-xian-by-appso}
+## Apple {#apple}
+
+### App Update {#apple-app-update}
+
+<Route data={{"path":"/apps/update/:country/:id/:platform?","categories":["program-update"],"example":"/apple/apps/update/us/id408709785","parameters":{"country":"App Store Country, obtain from the app URL, see below","id":"App id, obtain from the app URL","platform":"App Platform, see below, all by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apps.apple.com/:country/app/:appSlug/:id","apps.apple.com/:country/app/:id"],"target":"/apps/update/:country/:id"},"name":"App Update","maintainers":["EkkoG","nczitzk"],"description":"| All | iOS | macOS | tvOS |\n | --- | --- | ----- | ---- |\n | | iOS | macOS | tvOS |\n\n :::tip\n For example, the URL of [GarageBand](https://apps.apple.com/us/app/messages/id408709785) in the App Store is `https://apps.apple.com/us/app/messages/id408709785`. In this case, the `App Store Country` parameter for the route is `us`, and the `App id` parameter is `id1146560473`. So the route should be [`/apple/apps/update/us/id408709785`](https://rsshub.app/apple/apps/update/us/id408709785).\n :::","location":"apps.ts"}} />
+
+| All | iOS | macOS | tvOS |
+| --- | --- | ----- | ---- |
+| | iOS | macOS | tvOS |
-<Route author="Andiedie" example="/appstore/xianmian" path="/appstore/xianmian" />
+:::tip
+For example, the URL of [GarageBand](https://apps.apple.com/us/app/messages/id408709785) in the App Store is `https://apps.apple.com/us/app/messages/id408709785`. In this case, the `App Store Country` parameter for the route is `us`, and the `App id` parameter is `id1146560473`. So the route should be [`/apple/apps/update/us/id408709785`](https://rsshub.app/apple/apps/update/us/id408709785).
+:::
## ASUS {#asus}
### BIOS {#asus-bios}
-<Route author="Fatpandac" example="/asus/bios/RT-AX88U" path="/asus/bios/:model" paramsDesc={['Model, can be found in product page']} />
+<Route data={{"path":"/bios/:model","categories":["program-update"],"example":"/asus/bios/RT-AX88U","parameters":{"model":"Model, can be found in product page"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["asus.com.cn/"]},"name":"BIOS","maintainers":["Fatpandac"],"url":"asus.com.cn/","location":"bios.ts"}} />
### GPU Tweak {#asus-gpu-tweak}
-<Route author="TonyRL" example="/asus/gpu-tweak" path="/asus/gpu-tweak" radar="1" />
-
-## Bandisoft {#bandisoft}
-
-### History {#bandisoft-history}
-
-<Route author="nczitzk" example="/bandisoft/bandizip" path="/bandisoft/:id?/:lang?" paramsDesc={['Software id, see below, Bandizip by default', 'Language, see below, English by default']}>
- Software id
-
- | Bandizip (Win) | Bandizip (Mac) | Honeycam | Honeyview |
- | -------------- | -------------- | -------- | --------- |
- | bandizip | bandizip.mac | honeycam | honeyview |
-
- Language
-
- | Language | key |
- | -------------------- | --- |
- | English | en |
- | 中文 (简体) | cn |
- | 中文 (繁體) | tw |
- | 日本語 | jp |
- | Русский | ru |
- | Español | es |
- | Français | fr |
- | Deutsch | de |
- | Italiano | it |
- | Slovenčina | sk |
- | Українська | uk |
- | Беларуская | be |
- | Dansk | da |
- | Polski | pl |
- | Português Brasileiro | br |
- | Čeština | cs |
- | Nederlands | nl |
- | Slovenščina | sl |
- | Türkçe | tr |
- | ภาษาไทย | th |
- | 한국어 | kr |
-</Route>
+<Route data={{"path":"/gpu-tweak","categories":["program-update"],"example":"/asus/gpu-tweak","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["asus.com/campaign/GPU-Tweak-III/*","asus.com/"]},"name":"GPU Tweak","maintainers":["TonyRL"],"url":"asus.com/campaign/GPU-Tweak-III/*","location":"gpu-tweak.ts"}} />
## Bilibili {#bilibili}
### 更新情报 {#bilibili-geng-xin-qing-bao}
-<Route author="nczitzk" example="/bilibili/app/android" path="/bilibili/app/:id?" paramsDesc={['客户端 id,见下表,默认为安卓版']} />
+<Route data={{"path":"/app/:id?","categories":["program-update"],"example":"/bilibili/app/android","parameters":{"id":"客户端 id,见下表,默认为安卓版"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"更新情报","maintainers":["nczitzk"],"description":"| 安卓版 | iPhone 版 | iPad HD 版 | UWP 版 | TV 版 |\n| ------- | --------- | ---------- | ------ | ---------------- |\n| android | iphone | ipad | win | android_tv_yst |","location":"app.ts"}} />
| 安卓版 | iPhone 版 | iPad HD 版 | UWP 版 | TV 版 |
| ------- | --------- | ---------- | ------ | ---------------- |
@@ -130,165 +80,110 @@
### BlueStacks 5 Release Notes {#bluestacks-bluestacks-5-release-notes}
-<Route author="TonyRL" example="/bluestacks/release/5" path="/bluestacks/release/5" radar="1" anticrawler="1" puppeteer="1" />
+<Route data={{"path":"/release/5","categories":["program-update"],"example":"/bluestacks/release/5","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bluestacks.com/hc/en-us/articles/360056960211-Release-Notes-BlueStacks-5","bluestacks.com/"]},"name":"BlueStacks 5 Release Notes","maintainers":["TonyRL"],"url":"bluestacks.com/hc/en-us/articles/360056960211-Release-Notes-BlueStacks-5","location":"release.ts"}} />
## Brave {#brave}
### Release Notes {#brave-release-notes}
-<Route author="nczitzk" example="/brave/latest" path="/brave/latest" />
-
-## Cent Browser {#cent-browser}
-
-### 更新日志 {#cent-browser-geng-xin-ri-zhi}
-
-<Route author="hoilc" example="/centbrowser/history" path="/centbrowser/history" />
-
-## Checkra1n {#checkra1n}
-
-### 新版本发布 {#checkra1n-xin-ban-ben-fa-bu}
-
-<Route author="ntzyz" example="/checkra1n/releases" path="/checkra1n/releases" />
-
-## Chocolatey {#chocolatey}
-
-### Software Update {#chocolatey-software-update}
-
-<Route author="woodgear" example="/chocolatey/software/GoogleChrome" path="/chocolatey/software" />
+<Route data={{"path":"/latest","categories":["program-update"],"example":"/brave/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["brave.com/latest","brave.com/"]},"name":"Release Notes","maintainers":["nczitzk"],"url":"brave.com/latest","location":"latest.ts"}} />
## Civitai {#civitai}
### Latest models {#civitai-latest-models}
-<Route author="DIYgod" example="/civitai/models" path="/civitai/models" />
+<Route data={{"path":"/models","categories":["program-update"],"example":"/civitai/models","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["civitai.com/"]},"name":"Latest models","maintainers":["DIYgod"],"url":"civitai.com/","location":"models.ts"}} />
### Model discussions {#civitai-model-discussions}
+<Route data={{"path":"/discussions/:modelId","categories":["program-update"],"example":"/civitai/discussions/4384","parameters":{"modelId":"N"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["civitai.com/models/:modelId"]},"name":"Model discussions","maintainers":["DIYgod"],"description":":::warning\nNeed to configure `CIVITAI_COOKIE` to obtain image information of NSFW models.\n:::","location":"discussions.ts"}} />
+
:::warning
Need to configure `CIVITAI_COOKIE` to obtain image information of NSFW models.
:::
-<Route author="DIYgod" example="/civitai/discussions/4384" path="/civitai/discussions/:modelId" configRequired="1" />
-
## CPUID {#cpuid}
### News {#cpuid-news}
-<Route author="TonyRL" example="/cpuid/news" path="/cpuid/news" radar="1" />
-
-## cpython {#cpython}
-
-### 正式版本发布 {#cpython-zheng-shi-ban-ben-fa-bu}
-
-<Route author="trim21" example="/cpython" path="/cpython" />
-
-### 所有版本发布 {#cpython-suo-you-ban-ben-fa-bu}
-
-<Route author="trim21" example="/cpython/pre" path="/cpython/pre" />
-
-## Ditto clipboard manager {#ditto-clipboard-manager}
-
-### Changes {#ditto-clipboard-manager-changes}
-
-<Route author="nczitzk" example="/ditto/changes" path="/ditto/changes/:type?" paramsDesc={['Type, `beta` is an option']} />
+<Route data={{"path":"/news","categories":["program-update"],"example":"/cpuid/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cpuid.com/news.html","cpuid.com/"]},"name":"News","maintainers":[],"url":"cpuid.com/news.html","location":"news.ts"}} />
## Docker Hub {#docker-hub}
### Image New Build {#docker-hub-image-new-build}
-<Route author="HenryQW" example="/dockerhub/build/wangqiru/ttrss" path="/dockerhub/build/:owner/:image/:tag?" paramsDesc={['Image owner', 'Image name', 'Image tag,default to latest']}>
- :::warning
- The owner of the official image fills in the library, for example: [https://rsshub.app/dockerhub/build/library/mysql](https://rsshub.app/dockerhub/build/library/mysql)
- :::
-</Route>
+<Route data={{"path":"/build/:owner/:image/:tag?","categories":["program-update"],"example":"/dockerhub/build/wangqiru/ttrss","parameters":{"owner":"Image owner","image":"Image name","tag":"Image tag,default to latest"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Image New Build","maintainers":["HenryQW"],"description":":::warning\n The owner of the official image fills in the library, for example: [https://rsshub.app/dockerhub/build/library/mysql](https://rsshub.app/dockerhub/build/library/mysql)\n :::","location":"build.ts"}} />
+
+:::warning
+The owner of the official image fills in the library, for example: [https://rsshub.app/dockerhub/build/library/mysql](https://rsshub.app/dockerhub/build/library/mysql)
+:::
### Image New Tag {#docker-hub-image-new-tag}
-<Route author="outloudvi" example="/dockerhub/tag/library/mariadb" path="/dockerhub/tag/:owner/:image/:limits?" paramsDesc={['Image owner', 'Image name', 'Tag count, 10 by default']}>
- :::warning
- Use `library` as the `owner` for official images, such as [https://rsshub.app/dockerhub/tag/library/mysql](https://rsshub.app/dockerhub/tag/library/mysql)
- :::
-</Route>
+<Route data={{"path":"/tag/:owner/:image/:limits?","categories":["program-update"],"example":"/dockerhub/tag/library/mariadb","parameters":{"owner":"Image owner","image":"Image name","limits":"Tag count, 10 by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Image New Tag","maintainers":[],"description":":::warning\n Use `library` as the `owner` for official images, such as [https://rsshub.app/dockerhub/tag/library/mysql](https://rsshub.app/dockerhub/tag/library/mysql)\n :::","location":"tag.ts"}} />
+
+:::warning
+Use `library` as the `owner` for official images, such as [https://rsshub.app/dockerhub/tag/library/mysql](https://rsshub.app/dockerhub/tag/library/mysql)
+:::
## Eagle {#eagle}
### Changelog {#eagle-changelog}
-<Route author="tigercubden" example="/eagle/changelog/en" path="/eagle/changelog/:language?" paramsDesc={['Language, see list, default to be `cn`']} radar="1">
- Language
-
- | Simplified Chinese | Traditional Chinese | English |
- | ------------------ | ------------------- | ------- |
- | cn | tw | en |
-</Route>
-
-## Everything {#everything}
+<Route data={{"path":"/changelog/:language?","categories":["program-update"],"example":"/eagle/changelog/en","parameters":{"language":"Language, see list, default to be `cn`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Changelog","maintainers":["tigercubden"],"description":"Language\n\n | Simplified Chinese | Traditional Chinese | English |\n | ------------------ | ------------------- | ------- |\n | cn | tw | en |","location":"changelog.ts"}} />
-### Changes {#everything-changes}
+Language
-<Route author="nczitzk" example="/everything/changes" path="/everything/changes" />
+| Simplified Chinese | Traditional Chinese | English |
+| ------------------ | ------------------- | ------- |
+| cn | tw | en |
## F-Droid {#f-droid}
### App Update {#f-droid-app-update}
-<Route author="garywill" example="/f-droid/apprelease/com.termux" path="/f-droid/apprelease/:app" paramsDesc={['App\'s package name']} radar="1" />
-
-## Firefox {#firefox}
-
-### New Release {#firefox-new-release}
-
-<Route author="fengkx" example="/firefox/release/desktop" path="/firefox/release/:platform" paramsDesc={['the platform']}>
- | Desktop | Android | Beta | Nightly | Android Beta | ESR |
- | ------- | ------- | ---- | ------- | ------------ | ------------- |
- | desktop | android | beta | nightly | android-beta | organizations |
-</Route>
-
-### Add-ons Update {#firefox-add-ons-update}
-
-<Route author="DIYgod" example="/firefox/addons/rsshub-radar" path="/firefox/addons/:id" paramsDesc={['Add-ons id, can be found in add-ons url']} />
-
-## fish shell {#fish-shell}
-
-### Release Notes {#fish-shell-release-notes}
-
-<Route author="x2cf" example="/fishshell" path="/fishshell" radar="1" />
+<Route data={{"path":"/apprelease/:app","categories":["program-update"],"example":"/f-droid/apprelease/com.termux","parameters":{"app":"App's package name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["f-droid.org/en/packages/:app/"]},"name":"App Update","maintainers":["garywill"],"location":"apprelease.ts"}} />
## FossHub {#fosshub}
### Software Update {#fosshub-software-update}
-<Route author="nczitzk" example="/fosshub/qBittorrent" path="/fosshub/:id" paramsDesc={['Software id, can be found in URL']} />
+<Route data={{"path":"/:id","categories":["program-update"],"example":"/fosshub/qBittorrent","parameters":{"id":"Software id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Software Update","maintainers":["nczitzk"],"location":"index.ts"}} />
## GoFans {#gofans}
### 最新限免 / 促销应用 {#gofans-zui-xin-xian-mian-cu-xiao-ying-yong}
-<Route author="HenryQW" example="/gofans" path="/gofans/:kind?" paramsDesc={['Platform, either `macos` or `ios`, empty means both (default)']} radar="1" />
+<Route data={{"path":"/:kind?","categories":["program-update"],"example":"/gofans","parameters":{"kind":"Platform, either `macos` or `ios`, empty means both (default)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新限免 / 促销应用","maintainers":["HenryQW"],"location":"index.ts"}} />
-## Google Chrome Web Store {#google-chrome-web-store}
+## Google {#google}
-### Extension Update {#google-chrome-web-store-extension-update}
+### Extension Update {#google-extension-update}
-<Route author="DIYgod" example="/google/chrome/extension/kefjpfngnndepjbopdmoebkipbgkggaa" path="/google/chrome/extension/:id" paramsDesc={['Extension id, can be found in extension url']} />
+<Route data={{"path":"/chrome/extension/:id","categories":["program-update"],"example":"/google/chrome/extension/kefjpfngnndepjbopdmoebkipbgkggaa","parameters":{"id":"Extension id, can be found in extension url"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["chromewebstore.google.com/detail/:name/:id"]},"name":"Extension Update","maintainers":["DIYgod"],"location":"extension.ts"}} />
## Greasy Fork {#greasy-fork}
-### Script Update {#greasy-fork-script-update}
+### Script Feedback {#greasy-fork-script-feedback}
-<Route author="imlonghao" path="/greasyfork/:language/:domain?" example="/greasyfork/en/google.com" paramsDesc={['language, located on the top right corner of Greasy Fork\'s search page, set to `all` for including all languages', 'the script\'s target domain']} radar="1" />
+<Route data={{"path":"/scripts/:script/feedback","categories":["program-update"],"example":"/greasyfork/scripts/431691-bypass-all-shortlinks/feedback","parameters":{"script":"Script id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["greasyfork.org/:language/scripts/:script/feedback"]},"name":"Script Feedback","maintainers":["miles170"],"location":"feedback.ts"}} />
-### Script Version History {#greasy-fork-script-version-history}
-
-<Route author="miles170" example="/greasyfork/scripts/431691-bypass-all-shortlinks/versions" path="/greasyfork/scripts/:script/versions" paramsDesc={['Script id, can be found in URL']} radar="1" />
+### Script Update {#greasy-fork-script-update}
-### Script Feedback {#greasy-fork-script-feedback}
+<Route data={{"path":["/:language/:domain?","/scripts/sort/:sort/:language?"],"categories":["program-update"],"example":"/greasyfork/en/google.com","parameters":{"language":"language, located on the top right corner of Greasy Fork's search page, set to `all` for including all languages","domain":"the script's target domain"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["greasyfork.org/:language","greasyfork.org/:language/scripts/by-site/:domain?"]},"name":"Script Update","maintainers":["imlonghao","miles170"],"description":"| Sort | Description |\n| --------------- | -------------- |\n| today | Daily installs |\n| total_installs | Total installs |\n| ratings | Ratings |\n| created | Created date |\n| updated | Updated date |\n| name | Name |","location":"scripts.ts"}} />
-<Route author="miles170" example="/greasyfork/scripts/431691-bypass-all-shortlinks/feedback" path="/greasyfork/scripts/:script/feedback" paramsDesc={['Script id, can be found in URL']} radar="1" />
+| Sort | Description |
+| --------------- | -------------- |
+| today | Daily installs |
+| total\_installs | Total installs |
+| ratings | Ratings |
+| created | Created date |
+| updated | Updated date |
+| name | Name |
-### Script Ranking {#greasy-fork-script-ranking}
+### Script Update {#greasy-fork-script-update}
-<Route author="ingjieye" example="/greasyfork/scripts/sort/today/all" path="/greasyfork/scripts/sort/:sort/:language?" paramsDesc={['Sort method, see below table', 'Language, located on the top right corner of Greasy Fork\'s search page, set to all for including all languages']} />
+<Route data={{"path":["/:language/:domain?","/scripts/sort/:sort/:language?"],"categories":["program-update"],"example":"/greasyfork/en/google.com","parameters":{"language":"language, located on the top right corner of Greasy Fork's search page, set to `all` for including all languages","domain":"the script's target domain"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["greasyfork.org/:language","greasyfork.org/:language/scripts/by-site/:domain?"]},"name":"Script Update","maintainers":["imlonghao","miles170"],"description":"| Sort | Description |\n| --------------- | -------------- |\n| today | Daily installs |\n| total_installs | Total installs |\n| ratings | Ratings |\n| created | Created date |\n| updated | Updated date |\n| name | Name |","location":"scripts.ts"}} />
| Sort | Description |
| --------------- | -------------- |
@@ -299,11 +194,15 @@ Need to configure `CIVITAI_COOKIE` to obtain image information of NSFW models.
| updated | Updated date |
| name | Name |
+### Script Version History {#greasy-fork-script-version-history}
+
+<Route data={{"path":"/scripts/:script/versions","categories":["program-update"],"example":"/greasyfork/scripts/431691-bypass-all-shortlinks/versions","parameters":{"script":"Script id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["greasyfork.org/:language/scripts/:script/versions"]},"name":"Script Version History","maintainers":["miles170"],"location":"versions.ts"}} />
+
## iFi audio {#ifi-audio}
### Download Hub {#ifi-audio-download-hub}
-<Route author="EthanWng97" example="/ifi-audio/download/1503007035/44472" path="/ifi-audio/download/:val/:id" paramsDesc={['product val', 'product id']} />
+<Route data={{"path":"/download/:val/:id","categories":["program-update"],"example":"/ifi-audio/download/1503007035/44472","parameters":{"val":"product val","id":"product id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Download Hub","maintainers":["EthanWng97"],"description":":::warning\n1. Open [https://ifi-audio.com/download-hub](https://ifi-audio.com/download-hub) and the Network panel\n2. Select the device and the corresponding serial number in the website and click Search\n3. Find the last request named `https://ifi-audio.com/wp-admin/admin-ajax.php` in the Network panel, find out the val and id in the Payload panel, and fill in the url\n:::","location":"download.ts"}} />
:::warning
1. Open [https://ifi-audio.com/download-hub](https://ifi-audio.com/download-hub) and the Network panel
@@ -315,420 +214,161 @@ Need to configure `CIVITAI_COOKIE` to obtain image information of NSFW models.
### Changelog {#imagemagick-changelog}
-<Route author="nczitzk" example="/imagemagick/changelog" path="/imagemagick/changelog" />
+<Route data={{"path":"/changelog","categories":["program-update"],"example":"/imagemagick/changelog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["imagemagick.org/script/download.php","imagemagick.org/script","imagemagick.org/"]},"name":"Changelog","maintainers":["nczitzk"],"url":"imagemagick.org/script/download.php","location":"changelog.ts"}} />
## Infuse {#infuse}
### Release Notes {#infuse-release-notes}
-<Route author="NathanDai" example="/firecore/ios" path="/firecore/:os" paramsDesc={['`ios`,`tvos`,`macos`']} />
-
-## IPSW\.me {#ipsw-me}
-
-### Apple Firmware Update-IPSWs/OTAs version {#ipsw-me-apple-firmware-update-ipsws-otas-version}
-
-<Route author="Jeason0228" example="/ipsw/index/ipsws/iPhone11,8" path="/ipsw/index/:ptype/:pname/" paramsDesc={['Fill in ipsws or otas to get different versions of firmware','Product name, `http://rsshub.app/ipsw/index/ipsws/iPod`, if you fill in the iPad, follow the entire iPad series(ptype default to ipsws).`http://rsshub.app/ipsw/index/ipsws/iPhone11,8`, if you fill in the specific iPhone11,8, submit to the ipsws firmware information of this model']} />
-
-## KeePass {#keepass}
-
-### News {#keepass-news}
-
-<Route author="TonyRL" example="/keepass" path="/keepass" radar="1" />
-
-## Logseq {#logseq}
-
-:::warning
-Logseq 开发团队已经放弃了 [旧网站](https://logseq.com/blog)。
-请使用 `https://github.com/logseq/logseq/releases.atom` 代替。
-:::
+<Route data={{"path":"/:os","categories":["program-update"],"example":"/firecore/ios","parameters":{"os":"`ios`,`tvos`,`macos`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Release Notes","maintainers":["NathanDai"],"location":"index.ts"}} />
## MacUpdate {#macupdate}
### Update {#macupdate-update}
-<Route author="TonyRL" example="/macupdate/app/11942" path="/macupdate/app/:appId/:appSlug?" paramsDesc={['Application unique ID, can be found in URL', 'Application slug, can be found in URL']} radar="1" />
-
-## ManicTime {#manictime}
-
-### Relases {#manictime-relases}
-
-<Route author="nczitzk" example="/manictime/releases" path="/manictime/releases" />
-
-## Mathpix {#mathpix}
-
-### Latest Updates {#mathpix-latest-updates}
-
-<Route author="nczitzk" example="/mathpix/blog" path="/mathpix/blog" />
+<Route data={{"path":"/app/:appId/:appSlug?","categories":["program-update"],"example":"/macupdate/app/11942","parameters":{"appId":"Application unique ID, can be found in URL","appSlug":"Application slug, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["macupdate.com/app/mac/:appId/:appSlug"]},"name":"Update","maintainers":["TonyRL"],"location":"app.ts"}} />
## Microsoft Edge {#microsoft-edge}
### Addons Update {#microsoft-edge-addons-update}
-<Route author="hoilc DIYgod" example="/microsoft/edge/addon/gangkeiaobmjcjokiofpkfpcobpbmnln" path="/microsoft/edge/addon/:crxid" paramsDesc={['Addon id, can be found in addon url']} />
-
-## Microsoft Store {#microsoft-store}
-
-### Updates {#microsoft-store-updates}
+<Route data={{"path":"/edge/addon/:crxid","categories":["program-update"],"example":"/microsoft/edge/addon/gangkeiaobmjcjokiofpkfpcobpbmnln","parameters":{"crxid":"Addon id, can be found in addon url"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["microsoftedge.microsoft.com/addons/detail/:name/:crxid"]},"name":"Addons Update","maintainers":["hoilc","DIYgod"],"location":"addon.ts"}} />
-<Route author="hellodword" example="/microsoft-store/updates/9WZDNCRFHVN5/CN" path="/microsoft-store/updates/:productid/:market?" paramsDesc={['`Share` - `Copy Link` in the Store', '`CN` as default']} />
+## Mozilla {#mozilla}
-## MIUI {#miui}
+### Add-ons Update {#mozilla-add-ons-update}
-### New firmware {#miui-new-firmware}
-
-<Route author="Indexyz" example="/miui/aries/" path="/miui/:device/:type?/:region?" paramsDesc={['the device `codename` eg. `aries` for Mi 2S','type', 'Region, default to `cn`']}>
- | stable | development |
- | ------- | ----------- |
- | release | dev |
-
- | region | region |
- | ------ | ------ |
- | China | cn |
- | Global | global |
-</Route>
+<Route data={{"path":"/addons/:id","categories":["program-update"],"example":"/firefox/addons/rsshub-radar","parameters":{"id":"Add-ons id, can be found in add-ons url"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["addons.mozilla.org/:lang/firefox/addon/:id/versions","addons.mozilla.org/:lang/firefox/addon/:id"]},"name":"Add-ons Update","maintainers":["DIYgod"],"location":"addons.ts"}} />
## Neat Download Manager {#neat-download-manager}
### Download {#neat-download-manager-download}
-<Route author="nczitzk" example="/neatdownloadmanager/download" path="/neatdownloadmanager/download/:os?" paramsDesc={['Operating system, windows or macos, all by default']} />
+<Route data={{"path":"/download/:os?","categories":["program-update"],"example":"/neatdownloadmanager/download","parameters":{"os":"Operating system, windows or macos, all by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["neatdownloadmanager.com/index.php","neatdownloadmanager.com/"]},"name":"Download","maintainers":["nczitzk"],"url":"neatdownloadmanager.com/index.php","location":"download.ts"}} />
## Not a Tesla App {#not-a-tesla-app}
### Tesla Software Updates {#not-a-tesla-app-tesla-software-updates}
-<Route author="mrbruce516" example="/notateslaapp/ota" path="/notateslaapp/ota" radar="1" />
-
-## NPM {#npm}
-
-### Package {#npm-package}
-
-<Route author="Fatpandac" example="/npm/package/rsshub" path="/npm/package/:name" paramsDesc={['Package name']} />
-
-## Nvidia Web Driver {#nvidia-web-driver}
-
-### Changelog {#nvidia-web-driver-changelog}
-
-<Route author="EkkoG" example="/nvidia/webdriverupdate" path="/nvidia/webdriverupdate" />
+<Route data={{"path":"/ota","categories":["program-update"],"example":"/notateslaapp/ota","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["notateslaapp.com/software-updates/history","notateslaapp.com/software-updates","notateslaapp.com/"]},"name":"Tesla Software Updates","maintainers":["mrbruce516"],"url":"notateslaapp.com/software-updates/history","location":"update.ts"}} />
## O\&O Software {#o-o-software}
### Changelog {#o-o-software-changelog}
-<Route author="nczitzk" example="/oo-software/changelog/shutup10" path="/oo-software/changelog/:id" paramsDesc={['Software id, see below, shutup10 by default, can be found in URL']}>
- | Software | Id |
- | --------------- | ----------- |
- | O\&O ShutUp10++ | shutup10 |
- | O\&O AppBuster | ooappbuster |
- | O\&O Lanytix | oolanytix |
- | O\&O DeskInfo | oodeskinfo |
-</Route>
-
-## OneNote Gem Add-Ins {#onenote-gem-add-ins}
-
-### Release History {#onenote-gem-add-ins-release-history}
+<Route data={{"path":"/changelog/:id","categories":["program-update"],"example":"/oo-software/changelog/shutup10","parameters":{"id":"Software id, see below, shutup10 by default, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Changelog","maintainers":["nczitzk"],"description":"| Software | Id |\n | --------------- | ----------- |\n | O&O ShutUp10++ | shutup10 |\n | O&O AppBuster | ooappbuster |\n | O&O Lanytix | oolanytix |\n | O&O DeskInfo | oodeskinfo |","location":"changelog.ts"}} />
-<Route author="nczitzk" example="/onenotegem/release" path="/onenotegem/release" />
-
-## OpenWrt {#openwrt}
-
-### Releases {#openwrt-releases}
-
-<Route author="DIYgod" example="/openwrt/releases/xiaomi/xiaomi_redmi_router_ac2100" path="/releases/:brand/:model" paramsDesc={['Device Model, can be found in url of `Table of Hardware` -> `Device Page`', 'Same as above']} />
+| Software | Id |
+| --------------- | ----------- |
+| O\&O ShutUp10++ | shutup10 |
+| O\&O AppBuster | ooappbuster |
+| O\&O Lanytix | oolanytix |
+| O\&O DeskInfo | oodeskinfo |
## Postman {#postman}
### Release Notes {#postman-release-notes}
-<Route author="nczitzk" example="/postman/release-notes" path="/postman/release-notes" />
-
-## Potplayer {#potplayer}
-
-### Version History {#potplayer-version-history}
-
-<Route author="nczitzk" example="/potplayer/update" path="/potplayer/update/:language?" paramsDesc={['Language, see below, English by default']}>
- | 한국어 | 中文 (简体) | 中文 (繁体) | ENGLISH | Українська | РУССКИЙ | Polski |
- | ------ | ----------- | ----------- | ------- | ---------- | ------- | ------ |
- | ko | zh\_CN | zh\_TW | en | uk | ru | pl |
-</Route>
+<Route data={{"path":"/release-notes","categories":["program-update"],"example":"/postman/release-notes","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["postman.com/downloads/release-notes","postman.com/"]},"name":"Release Notes","maintainers":["nczitzk"],"url":"postman.com/downloads/release-notes","location":"release-notes.ts"}} />
## PuTTY {#putty}
### Change Log {#putty-change-log}
-<Route author="nczitzk" example="/putty/changes" path="/putty/changes" />
+<Route data={{"path":"/changes","categories":["program-update"],"example":"/putty/changes","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.chiark.greenend.org.uk/~sgtatham/putty/changes.html","www.chiark.greenend.org.uk/"]},"name":"Change Log","maintainers":["nczitzk"],"url":"www.chiark.greenend.org.uk/~sgtatham/putty/changes.html","location":"changes.ts"}} />
## qBittorrent {#qbittorrent}
### News {#qbittorrent-news}
-<Route author="TonyRL" example="/qbittorrent/news" path="/qbittorrent/news" radar="1" notOperational="1" />
-
-## QNAP {#qnap}
-
-### Release Notes {#qnap-release-notes}
-
-<Route author="nczitzk" example="/qnap/release-notes/qts" path="/qnap/release-notes/:id" paramsDesc={['OS id, see below']} notOperational="1">
- | QTS | QuTS hero | QuTScloud | QuWAN Orchestrator | QES | TAS | AfoBot |
- | --- | ---------- | --------- | ------------------- | --- | --- | ------ |
- | qts | quts\_hero | qutscloud | quwan\_orchestrator | qes | tas | afobot |
-</Route>
-
-## QQ 互联 SDK {#qq-hu-lian-sdk}
-
-### 更新日志 {#qq-hu-lian-sdk-geng-xin-ri-zhi}
-
-<Route author="nuomi1" example="/tencent/qq/sdk/changelog/iOS" path="/tencent/qq/sdk/changelog/:platform" paramsDesc={['平台,iOS / Android']} />
-
-## QTTabBar {#qttabbar}
-
-### Change Log {#qttabbar-change-log}
-
-<Route author="nczitzk" example="/qttabbar/change-log" path="/qttabbar/change-log" />
-
-## Quicker {#quicker}
-
-### 版本更新 {#quicker-ban-ben-geng-xin}
-
-<Route author="Cesaryuan nczitzk" example="/quicker/versions" path="/quicker/versions" />
+<Route data={{"path":"/news","categories":["program-update"],"example":"/qbittorrent/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qbittorrent.org/news.php","qbittorrent.org/"]},"name":"News","maintainers":["TonyRL"],"url":"qbittorrent.org/news.php","location":"news.ts"}} />
## RemNote {#remnote}
### Changelog {#remnote-changelog}
-<Route author="TonyRL amakerlife" example="/remnote/changelog" path="/remnote/changelog" radar="1" />
-
-## RescueTime {#rescuetime}
-
-### Release Notes {#rescuetime-release-notes}
-
-<Route author="nczitzk" example="/rescuetime/release-notes" path="/rescuetime/release-notes/:os?" paramsDesc={['OS id, see below']}>
- | Mac OS | Windows |
- | ------ | ------- |
- | mac | windows |
-</Route>
+<Route data={{"path":"/changelog","categories":["program-update"],"example":"/remnote/changelog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["remnote.com/changelog","remnote.com/"]},"name":"Changelog","maintainers":["TonyRL","amakerlife"],"url":"remnote.com/changelog","location":"changelog.ts"}} />
## RSSHub {#rsshub}
### New routes {#rsshub-new-routes}
-<Route author="DIYgod" path="/rsshub/routes/:lang?" example="/rsshub/routes/en" paramsDesc={['Language, `zh` means Chinese docs, other values or null means English docs, `en` by default']} />
-
-## Sesame {#sesame}
-
-### Release Notes {#sesame-release-notes}
-
-<Route author="nczitzk" example="/sesame/release_notes" path="/sesame/release_notes" />
-
-## simpread {#simpread}
-
-### 消息通知 {#simpread-xiao-xi-tong-zhi}
-
-<Route author="zytomorrow" example="/simpread/notice" path="/simpread/notice" />
-
-### 更新日志 {#simpread-geng-xin-ri-zhi}
-
-<Route author="zytomorrow" example="/simpread/changelog" path="/simpread/changelog" />
-
-## sketch.com {#sketch-com}
-
-### Beta update {#sketch-com-beta-update}
-
-<Route author="Jeason0228" example="/sketch/beta" path="/sketch/beta" />
-
-### Release update {#sketch-com-release-update}
-
-<Route author="Jeason0228" example="/sketch/updates" path="/sketch/updates" notOperational="1" />
+<Route data={{"path":"/routes/:lang?","categories":["program-update"],"example":"/rsshub/routes/en","parameters":{"lang":"Language, `zh` means Chinese docs, other values or null means English docs, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["docs.rsshub.app/*"],"target":"/routes"},"name":"New routes","maintainers":["DIYgod"],"url":"docs.rsshub.app/*","location":"routes.ts"}} />
## Sony {#sony}
### Software Downloads {#sony-software-downloads}
-<Route author="EthanWng97" example="/sony/downloads/product/nw-wm1am2" path="/sony/downloads/:productType/:productId" paramsDesc={['product type', 'product id']}>
- :::tip
- Open `https://www.sony.com/electronics/support` and search for the corresponding product, such as `Sony A7M4`, the website corresponding to which is `https://www.sony.com/electronics/support/e-mount-body-ilce-7-series/ilce-7m4/downloads`, where `productType` is `e-mount-body-ilce-7-series` and `productId` is `ilce-7m4`.
- :::
-</Route>
+<Route data={{"path":"/downloads/:productType/:productId","categories":["program-update"],"example":"/sony/downloads/product/nw-wm1am2","parameters":{"productType":"product type","productId":"product id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sony.com/electronics/support/:productType/:productId/downloads"]},"name":"Software Downloads","maintainers":["EthanWng97"],"description":":::tip\n Open `https://www.sony.com/electronics/support` and search for the corresponding product, such as `Sony A7M4`, the website corresponding to which is `https://www.sony.com/electronics/support/e-mount-body-ilce-7-series/ilce-7m4/downloads`, where `productType` is `e-mount-body-ilce-7-series` and `productId` is `ilce-7m4`.\n :::","location":"downloads.ts"}} />
+
+:::tip
+Open `https://www.sony.com/electronics/support` and search for the corresponding product, such as `Sony A7M4`, the website corresponding to which is `https://www.sony.com/electronics/support/e-mount-body-ilce-7-series/ilce-7m4/downloads`, where `productType` is `e-mount-body-ilce-7-series` and `productId` is `ilce-7m4`.
+:::
## SourceForge {#sourceforge}
### Software {#sourceforge-software}
-<Route author="JimenezLi" example="/sourceforge/topic=artificial-intelligence&os=windows" path="/sourceforge/:routeParams?" paramsDesc={['route params, see below']}>
- For some URL like [https://sourceforge.net/directory/artificial-intelligence/windows/](https://sourceforge.net/directory/artificial-intelligence/windows/), it is equal to [https://sourceforge.net/directory/?topic=artificial-intelligence\&os=windows"](https://sourceforge.net/directory/?topic=artificial-intelligence\&os=windows), thus subscribing to `/sourceforge/topic=artificial-intelligence&os=windows`.
-
- URL params can duplicate, such as `/sourceforge/topic=artificial-intelligence&os=windows&os=linux`.
-</Route>
-
-## Thunderbird {#thunderbird}
-
-### Changelog {#thunderbird-changelog}
-
-<Route author="garywill" example="/thunderbird/release" path="/thunderbird/release" />
+<Route data={{"path":"/:routeParams?","categories":["program-update"],"example":"/sourceforge/topic=artificial-intelligence&os=windows","parameters":{"routeParams":"route params, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Software","maintainers":["JimenezLi"],"description":"For some URL like [https://sourceforge.net/directory/artificial-intelligence/windows/](https://sourceforge.net/directory/artificial-intelligence/windows/), it is equal to [https://sourceforge.net/directory/?topic=artificial-intelligence&os=windows\"](https://sourceforge.net/directory/?topic=artificial-intelligence&os=windows), thus subscribing to `/sourceforge/topic=artificial-intelligence&os=windows`.\n\n URL params can duplicate, such as `/sourceforge/topic=artificial-intelligence&os=windows&os=linux`.","location":"index.ts"}} />
-## Total Commander {#total-commander}
+For some URL like [https://sourceforge.net/directory/artificial-intelligence/windows/](https://sourceforge.net/directory/artificial-intelligence/windows/), it is equal to [https://sourceforge.net/directory/?topic=artificial-intelligence\&os=windows"](https://sourceforge.net/directory/?topic=artificial-intelligence\&os=windows), thus subscribing to `/sourceforge/topic=artificial-intelligence&os=windows`.
-### What's New {#total-commander-what-s-new}
-
-<Route author="nczitzk" example="/totalcommander/whatsnew" path="/totalcommander/whatsnew" />
+URL params can duplicate, such as `/sourceforge/topic=artificial-intelligence&os=windows&os=linux`.
## TradingView {#tradingview}
-### Blog {#tradingview-blog}
-
-<Route author="nczitzk" example="/tradingview/blog/en" path="/tradingview/blog/:language?/category/:category?" paramsDesc={['Language, see below, `en` as English by default', 'Category, see below, all by default']} radar="1">
- #### Language
-
- | Id | Language |
- | -- | ------------------- |
- | en | English |
- | ru | Русский |
- | ja | 日本語 |
- | es | Español |
- | tr | Türkçe |
- | ko | 한국어 |
- | it | Italiano |
- | pt | Português do Brasil |
- | de | Deutsch |
- | fr | Français |
- | pl | Polski |
- | id | Bahasa Indonesia |
- | my | Bahasa Malaysia |
- | tw | 繁體 |
- | cn | 简体 |
- | vi | Tiếng Việt |
- | th | ภาษาไทย |
- | sv | Svenska |
- | ar | العربية |
- | il | Hebrew |
-
- #### Category
-
- | Category | ID |
- | ---------------------------------------------------------------------------------------------- | ----------------------------- |
- | [Alerts](https://www.tradingview.com/blog/en/category/alerts/) | category/alerts |
- | [Bitcoin and Crypto](https://www.tradingview.com/blog/en/category/bitcoin-charts/) | category/bitcoin-charts |
- | [Business Updates](https://www.tradingview.com/blog/en/category/business-updates/) | category/business-updates |
- | [Charting](https://www.tradingview.com/blog/en/category/charts/) | category/charts |
- | [Charting Library](https://www.tradingview.com/blog/en/category/charting-library/) | category/charting-library |
- | [Data Feeds and Exchanges](https://www.tradingview.com/blog/en/category/data-feeds-exchanges/) | category/data-feeds-exchanges |
- | [Desktop](https://www.tradingview.com/blog/en/category/desktop/) | category/desktop |
- | [Market Analysis](https://www.tradingview.com/blog/en/category/market-analysis/) | category/market-analysis |
- | [Mobile](https://www.tradingview.com/blog/en/category/mobile/) | category/mobile |
- | [Pine Script®](https://www.tradingview.com/blog/en/category/pine/) | category/pine |
- | [Screener](https://www.tradingview.com/blog/en/category/stock-screener/) | category/stock-screener |
- | [Social](https://www.tradingview.com/blog/en/category/social/) | category/social |
- | [Trading and Brokerage](https://www.tradingview.com/blog/en/category/trading/) | category/trading |
- | [Widgets](https://www.tradingview.com/blog/en/category/widgets/) | category/widgets |
-</Route>
-
### Desktop releases and release notes {#tradingview-desktop-releases-and-release-notes}
-<Route author="nczitzk" example="/tradingview/desktop" path="/tradingview/desktop" radar="1" />
-
-### Pine Script™ Release notes {#tradingview-pine-script%E2%84%A2-release-notes}
-
-<Route author="nczitzk" example="/tradingview/pine" path="/tradingview/pine/version?" paramsDesc={['Version, see below, `v5` by default']} radar="1">
- | v5 | v4 |
- | -- | -- |
-</Route>
+<Route data={{"path":"/desktop","categories":["program-update"],"example":"/tradingview/desktop","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tradingview.com/support/solutions/43000673888-tradingview-desktop-releases-and-release-notes/"]},"name":"Desktop releases and release notes","maintainers":["nczitzk"],"url":"tradingview.com/support/solutions/43000673888-tradingview-desktop-releases-and-release-notes/","location":"desktop.ts"}} />
## Typora {#typora}
### Changelog {#typora-changelog}
-<Route author="cnzgray" example="/typora/changelog" path="/typora/changelog" radar="1" />
+<Route data={{"path":"/changelog","categories":["program-update"],"example":"/typora/changelog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["support.typora.io/"]},"name":"Changelog","maintainers":["cnzgray"],"url":"support.typora.io/","location":"changelog.ts"}} />
### Dev Release Changelog {#typora-dev-release-changelog}
-<Route author="nczitzk" example="/typora/changelog/dev" path="/typora/changelog/dev" radar="1" />
+<Route data={{"path":"/changelog/dev","categories":["program-update"],"example":"/typora/changelog/dev","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["support.typora.io/"],"target":"/changelog"},"name":"Dev Release Changelog","maintainers":["nczitzk"],"url":"support.typora.io/","location":"changelog-dev.ts"}} />
## Unraid {#unraid}
### Community Apps {#unraid-community-apps}
-<Route author="KTachibanaM" example="/unraid/community-apps" path="/unraid/community-apps" radar="1" />
+<Route data={{"path":"/community-apps","categories":["program-update"],"example":"/unraid/community-apps","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["unraid.net/community/apps"]},"name":"Community Apps","maintainers":["KTachibanaM"],"url":"unraid.net/community/apps","location":"community-apps.ts"}} />
## Western Digital {#western-digital}
### Download {#western-digital-download}
-<Route author="nczitzk" example="/wdc/download/279" path="/wdc/download/:id?" paramsDesc={['Software id, can be found in URL, 279 as Western Digital Dashboard by default']} />
+<Route data={{"path":"/download/:id?","categories":["program-update"],"example":"/wdc/download/279","parameters":{"id":"Software id, can be found in URL, 279 as Western Digital Dashboard by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Download","maintainers":[],"location":"download.ts"}} />
## winstall {#winstall}
### Apps Update {#winstall-apps-update}
-<Route author="TonyRL" example="/winstall/Mozilla.Firefox" path="/winstall/:appId" paramsDesc={['Application ID']} radar="1" />
+<Route data={{"path":"/:appId","categories":["program-update"],"example":"/winstall/Mozilla.Firefox","parameters":{"appId":"Application ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["winstall.app/apps/:appId"]},"name":"Apps Update","maintainers":["TonyRL"],"location":"update.ts"}} />
## WizTree {#wiztree}
### What's New {#wiztree-what-s-new}
-<Route author="nczitzk" example="/diskanalyzer/whats-new" path="/diskanalyzer/whats-new" />
+<Route data={{"path":"/whats-new","categories":["program-update"],"example":"/diskanalyzer/whats-new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["diskanalyzer.com/whats-new","diskanalyzer.com/"]},"name":"What's New","maintainers":["nczitzk"],"url":"diskanalyzer.com/whats-new","location":"whats-new.ts"}} />
## WziFile {#wzifile}
### Version History {#wzifile-version-history}
-<Route author="Fatpandac" example="/wizfile/updates" path="/wizfile/updates" />
-
-## X410 {#x410}
-
-### News {#x410-news}
-
-<Route author="nczitzk" example="/x410/news" path="/x410/news" />
-
-## xclient.info {#xclient-info}
-
-### 应用更新 {#xclient-info-ying-yong-geng-xin}
-
-<Route author="DIYgod" example="/xclient/app/sketch" path="/xclient/app/:name" paramsDesc={['应用名, 可在应用页 URL 中找到']} />
-
-## Xiaomi.eu {#xiaomi-eu}
-
-### ROM Releases {#xiaomi-eu-rom-releases}
-
-<Route author="maple3142" example="/xiaomieu/releases" path="/xiaomieu/releases" />
-
-## XYplorer {#xyplorer}
-
-### What's New {#xyplorer-what-s-new}
-
-<Route author="nczitzk" example="/xyplorer/whatsnew" path="/xyplorer/whatsnew" />
+<Route data={{"path":"/updates","categories":["program-update"],"example":"/wizfile/updates","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["antibody-software.com/wizfile/download"]},"name":"Version History","maintainers":["Fatpandac"],"url":"antibody-software.com/wizfile/download","location":"index.ts"}} />
## Zotero {#zotero}
### Version History {#zotero-version-history}
-<Route author="jasongzy" example="/zotero/versions" path="/zotero/versions" />
-
-## 腾讯云移动直播 SDK {#teng-xun-yun-yi-dong-zhi-bo-sdk}
-
-### 更新日志 {#teng-xun-yun-yi-dong-zhi-bo-sdk-geng-xin-ri-zhi}
-
-<Route author="EkkoG" example="/qcloud/mlvb/changelog" path="/qcloud/mlvb/changelog" />
-
-## 小米应用商店 {#xiao-mi-ying-yong-shang-dian}
-
-### 金米奖 {#xiao-mi-ying-yong-shang-dian-jin-mi-jiang}
-
-<Route author="nczitzk" example="/mi/golden" path="/mi/golden" />
-
-## 猿料 {#yuan-liao}
-
-### 标签 {#yuan-liao-biao-qian}
-
-<Route author="nczitzk" example="/yuanliao" path="/yuanliao/:tag/:sort?" paramsDesc={['标签,见下表,默认为 `utools`', '排序,见下表,默认为最新回复']}>
- 标签
+<Route data={{"path":"/versions","categories":["program-update"],"example":"/zotero/versions","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zotero.org/","zotero.org/support/changelog"]},"name":"Version History","maintainers":["jasongzy"],"url":"zotero.org/","location":"versions.ts"}} />
- | uTools | 插件发布 |
- | ------ | -------- |
- | utools | plugins |
+## 王者荣耀 {#wang-zhe-rong-yao}
- 排序
+### 更新日志 {#wang-zhe-rong-yao-geng-xin-ri-zhi}
- | 最新回复 | 热门回复 | 新鲜出炉 | 陈年旧贴 |
- | -------- | ------------- | ---------- | --------- |
- | | -commentCount | -createdAt | createdAt |
-</Route>
+<Route data={{"path":"/qq/sdk/changelog/:platform","categories":["program-update"],"example":"/tencent/qq/sdk/changelog/iOS","parameters":{"platform":"平台,iOS / Android"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"更新日志","maintainers":["nuomi1"],"location":"qq/sdk/changelog.ts"}} />
diff --git a/website/docs/routes/programming.mdx b/website/docs/routes/programming.mdx
index 97cf7c56d69294..dadacb0119c9a8 100644
--- a/website/docs/routes/programming.mdx
+++ b/website/docs/routes/programming.mdx
@@ -1,232 +1,174 @@
-# 💻 Programming
+# programming
## A List Apart {#a-list-apart}
-### Articles {#a-list-apart-articles}
-
-<Route author="Rjnishant530" example="/alistapart" path="/alistapart" radar="1" />
-
### Topics {#a-list-apart-topics}
-<Route author="Rjnishant530" example="/alistapart/application-development" path="/alistapart/:topic" paramsDesc={['Any Topic or from the table below. Defaults to All Articles']} radar="1">
- You have the option to utilize the main heading or use individual categories as topics for the path.
-
- | **Code** | *code* |
- | --------------------------- | ------------------------- |
- | **Application Development** | *application-development* |
- | **Browsers** | *browsers* |
- | **CSS** | *css* |
- | **HTML** | *html* |
- | **JavaScript** | *javascript* |
- | **The Server Side** | *the-server-side* |
-
- | **Content** | *content* |
- | -------------------- | ------------------ |
- | **Community** | *community* |
- | **Content Strategy** | *content-strategy* |
- | **Writing** | *writing* |
-
- | **Design** | *design* |
- | -------------------------- | ---------------------- |
- | **Brand Identity** | *brand-identity* |
- | **Graphic Design** | *graphic-design* |
- | **Layout & Grids** | *layout-grids* |
- | **Mobile/Multidevice** | *mobile-multidevice* |
- | **Responsive Design** | *responsive-design* |
- | **Typography & Web Fonts** | *typography-web-fonts* |
-
- | **Industry & Business** | *industry-business* |
- | ----------------------- | ------------------- |
- | **Business** | *business* |
- | **Career** | *career* |
- | **Industry** | *industry* |
- | **State of the Web** | *state-of-the-web* |
-
- | **Process** | *process* |
- | ---------------------- | -------------------- |
- | **Creativity** | *creativity* |
- | **Project Management** | *project-management* |
- | **Web Strategy** | *web-strategy* |
- | **Workflow & Tools** | *workflow-tools* |
-
- | **User Experience** | *user-experience* |
- | ---------------------------- | -------------------------- |
- | **Accessibility** | *accessibility* |
- | **Information Architecture** | *information-architecture* |
- | **Interaction Design** | *interaction-design* |
- | **Usability** | *usability* |
- | **User Research** | *user-research* |
-</Route>
-
-## ACM {#acm}
-
-### A.M.Turing Award Winners {#acm-a-m-turing-award-winners}
-
-<Route author="nczitzk" example="/acm/amturingaward" path="/acm/amturingaward" />
-
-## AI 研习社 {#ai-yan-xi-she}
-
-### 首页 {#ai-yan-xi-she-shou-ye}
-
-<Route author="kt286" example="/aiyanxishe/109/hot" path="/aiyanxishe/:id/:sort?" paramsDesc={['领域 id,全部领域为 `all`,单独领域 id 抓包可得','排序方式,默认为 `new`(最新),也可选择 `hot`(最热)或 `recommend`(推荐)']} />
+<Route data={{"path":"/:topic","categories":["programming"],"example":"/alistapart/application-development","parameters":{"topic":"Any Topic or from the table below. Defaults to All Articles"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["alistapart.com/blog/topic/:topic"]},"name":"Topics","maintainers":["Rjnishant530"],"url":"alistapart.com/articles/","description":"You have the option to utilize the main heading or use individual categories as topics for the path.\n\n | **Code** | *code* |\n | --------------------------- | ------------------------- |\n | **Application Development** | *application-development* |\n | **Browsers** | *browsers* |\n | **CSS** | *css* |\n | **HTML** | *html* |\n | **JavaScript** | *javascript* |\n | **The Server Side** | *the-server-side* |\n\n | **Content** | *content* |\n | -------------------- | ------------------ |\n | **Community** | *community* |\n | **Content Strategy** | *content-strategy* |\n | **Writing** | *writing* |\n\n | **Design** | *design* |\n | -------------------------- | ---------------------- |\n | **Brand Identity** | *brand-identity* |\n | **Graphic Design** | *graphic-design* |\n | **Layout & Grids** | *layout-grids* |\n | **Mobile/Multidevice** | *mobile-multidevice* |\n | **Responsive Design** | *responsive-design* |\n | **Typography & Web Fonts** | *typography-web-fonts* |\n\n | **Industry & Business** | *industry-business* |\n | ----------------------- | ------------------- |\n | **Business** | *business* |\n | **Career** | *career* |\n | **Industry** | *industry* |\n | **State of the Web** | *state-of-the-web* |\n\n | **Process** | *process* |\n | ---------------------- | -------------------- |\n | **Creativity** | *creativity* |\n | **Project Management** | *project-management* |\n | **Web Strategy** | *web-strategy* |\n | **Workflow & Tools** | *workflow-tools* |\n\n | **User Experience** | *user-experience* |\n | ---------------------------- | -------------------------- |\n | **Accessibility** | *accessibility* |\n | **Information Architecture** | *information-architecture* |\n | **Interaction Design** | *interaction-design* |\n | **Usability** | *usability* |\n | **User Research** | *user-research* |","location":"topic.ts"}} />
+
+You have the option to utilize the main heading or use individual categories as topics for the path.
+
+| **Code** | *code* |
+| --------------------------- | ------------------------- |
+| **Application Development** | *application-development* |
+| **Browsers** | *browsers* |
+| **CSS** | *css* |
+| **HTML** | *html* |
+| **JavaScript** | *javascript* |
+| **The Server Side** | *the-server-side* |
+
+| **Content** | *content* |
+| -------------------- | ------------------ |
+| **Community** | *community* |
+| **Content Strategy** | *content-strategy* |
+| **Writing** | *writing* |
+
+| **Design** | *design* |
+| -------------------------- | ---------------------- |
+| **Brand Identity** | *brand-identity* |
+| **Graphic Design** | *graphic-design* |
+| **Layout & Grids** | *layout-grids* |
+| **Mobile/Multidevice** | *mobile-multidevice* |
+| **Responsive Design** | *responsive-design* |
+| **Typography & Web Fonts** | *typography-web-fonts* |
+
+| **Industry & Business** | *industry-business* |
+| ----------------------- | ------------------- |
+| **Business** | *business* |
+| **Career** | *career* |
+| **Industry** | *industry* |
+| **State of the Web** | *state-of-the-web* |
+
+| **Process** | *process* |
+| ---------------------- | -------------------- |
+| **Creativity** | *creativity* |
+| **Project Management** | *project-management* |
+| **Web Strategy** | *web-strategy* |
+| **Workflow & Tools** | *workflow-tools* |
+
+| **User Experience** | *user-experience* |
+| ---------------------------- | -------------------------- |
+| **Accessibility** | *accessibility* |
+| **Information Architecture** | *information-architecture* |
+| **Interaction Design** | *interaction-design* |
+| **Usability** | *usability* |
+| **User Research** | *user-research* |
-## AlgoCasts {#algocasts}
+## AlternativeTo {#alternativeto}
-### 视频更新 {#algocasts-shi-pin-geng-xin}
+### Platform Software {#alternativeto-platform-software}
-<Route author="ImSingee" example="/algocasts" path="/algocasts" radar="1">
- > AlgoCasts 需要付费订阅,RSS 仅做更新提醒,不含付费内容.
-</Route>
+<Route data={{"path":"/platform/:name/:routeParams?","categories":["programming"],"example":"/alternativeto/platform/firefox","parameters":{"name":"Platform name","routeParams":"Filters of software type"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.alternativeto.net/platform/:name"],"target":"/platform/:name"},"name":"Platform Software","maintainers":["JimenezLi"],"description":"> routeParms can be copied from original site URL, example: `/alternativeto/platform/firefox/license=free`","location":"platform.ts"}} />
-## AlternativeTo {#alternativeto}
+> routeParms can be copied from original site URL, example: `/alternativeto/platform/firefox/license=free`
### Software Alternatives {#alternativeto-software-alternatives}
-<Route author="JimenezLi" example="/alternativeto/software/cpp" path="/alternativeto/software/:name/:routeParams?" paramsDesc={['Software name', 'Filters of software type']} puppeteer="1" radar="1" anticrawler="1">
- > routeParms can be copied from original site URL, example: `/alternativeto/software/cpp/license=opensource&platform=windows`
-</Route>
+<Route data={{"path":"/software/:name/:routeParams?","categories":["programming"],"example":"/alternativeto/software/cpp","parameters":{"name":"Software name","routeParams":"Filters of software type"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.alternativeto.net/software/:name"],"target":"/software/:name"},"name":"Software Alternatives","maintainers":["JimenezLi"],"description":"> routeParms can be copied from original site URL, example: `/alternativeto/software/cpp/license=opensource&platform=windows`","location":"software.ts"}} />
-### Platform Software {#alternativeto-platform-software}
-
-<Route author="JimenezLi" example="/alternativeto/platform/firefox" path="/alternativeto/platform/:name/:routeParams?" paramsDesc={['Platform name', 'Filters of software type']} puppeteer="1" radar="1" anticrawler="1">
- > routeParms can be copied from original site URL, example: `/alternativeto/platform/firefox/license=free`
-</Route>
+> routeParms can be copied from original site URL, example: `/alternativeto/software/cpp/license=opensource&platform=windows`
## AtCoder {#atcoder}
-### Present Contests {#atcoder-present-contests}
-
-<Route author="nczitzk" example="/atcoder/contest/en/upcoming" path="/atcoder/contest/:language?/:status?" paramsDesc={['Language, `jp` as Japanese or `en` as English, English by default', 'Status, see below, Recent Contests by default']}>
- Status
-
- | Active Contests | Upcoming Contests | Recent Contests |
- | --------------- | ----------------- | --------------- |
- | active | upcoming | recent |
-</Route>
-
### Contests Archive {#atcoder-contests-archive}
-<Route author="nczitzk" example="/atcoder/contest" path="/atcoder/contest/:language?/:rated?/:category?/:keyword?" paramsDesc={['Language, `jp` as Japanese or `en` as English, English by default', 'Rated Range, see below, all by default', 'Category, see below, all by default', 'Keyword']}>
- Rated Range
+<Route data={{"path":"/contest/:language?/:rated?/:category?/:keyword?","categories":["programming"],"example":"/atcoder/contest","parameters":{"language":"Language, `jp` as Japanese or `en` as English, English by default","rated":"Rated Range, see below, all by default","category":"Category, see below, all by default","keyword":"Keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Contests Archive","maintainers":["nczitzk"],"description":"Rated Range\n\n | ABC Class (Rated for ~1999) | ARC Class (Rated for ~2799) | AGC Class (Rated for ~9999) |\n | ---------------------------- | ---------------------------- | ---------------------------- |\n | 1 | 2 | 3 |\n\n Category\n\n | All | AtCoder Typical Contest | PAST Archive | Unofficial(unrated) |\n | --- | ----------------------- | ------------ | ------------------- |\n | 0 | 6 | 50 | 101 |\n\n | JOI Archive | Sponsored Tournament | Sponsored Parallel(rated) |\n | ----------- | -------------------- | ------------------------- |\n | 200 | 1000 | 1001 |\n\n | Sponsored Parallel(unrated) | Optimization Contest |\n | --------------------------- | -------------------- |\n | 1002 | 1200 |","location":"contest.ts"}} />
+
+Rated Range
- | ABC Class (Rated for \~1999) | ARC Class (Rated for \~2799) | AGC Class (Rated for \~9999) |
- | ---------------------------- | ---------------------------- | ---------------------------- |
- | 1 | 2 | 3 |
+| ABC Class (Rated for \~1999) | ARC Class (Rated for \~2799) | AGC Class (Rated for \~9999) |
+| ---------------------------- | ---------------------------- | ---------------------------- |
+| 1 | 2 | 3 |
- Category
+Category
- | All | AtCoder Typical Contest | PAST Archive | Unofficial(unrated) |
- | --- | ----------------------- | ------------ | ------------------- |
- | 0 | 6 | 50 | 101 |
+| All | AtCoder Typical Contest | PAST Archive | Unofficial(unrated) |
+| --- | ----------------------- | ------------ | ------------------- |
+| 0 | 6 | 50 | 101 |
- | JOI Archive | Sponsored Tournament | Sponsored Parallel(rated) |
- | ----------- | -------------------- | ------------------------- |
- | 200 | 1000 | 1001 |
+| JOI Archive | Sponsored Tournament | Sponsored Parallel(rated) |
+| ----------- | -------------------- | ------------------------- |
+| 200 | 1000 | 1001 |
- | Sponsored Parallel(unrated) | Optimization Contest |
- | --------------------------- | -------------------- |
- | 1002 | 1200 |
-</Route>
+| Sponsored Parallel(unrated) | Optimization Contest |
+| --------------------------- | -------------------- |
+| 1002 | 1200 |
### Posts {#atcoder-posts}
-<Route author="nczitzk" example="/atcoder/post" path="/atcoder/post/:language?/:keyword?" paramsDesc={['Language, `jp` as Japanese or `en` as English, English by default', 'Keyword']} />
+<Route data={{"path":"/post/:language?/:keyword?","categories":["programming"],"example":"/atcoder/post","parameters":{"language":"Language, `jp` as Japanese or `en` as English, English by default","keyword":"Keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Posts","maintainers":["nczitzk"],"location":"post.ts"}} />
## BBC News Labs {#bbc-news-labs}
### News {#bbc-news-labs-news}
-<Route author="elxy" example="/bbcnewslabs/news" path="/bbcnewslabs/news" />
+<Route data={{"path":"/news","categories":["programming"],"example":"/bbcnewslabs/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bbcnewslabs.co.uk/"]},"name":"News","maintainers":["elxy"],"url":"bbcnewslabs.co.uk/","location":"news.ts"}} />
## Bitbucket {#bitbucket}
### Commits {#bitbucket-commits}
-<Route author="AuroraDysis" example="/bitbucket/commits/blaze-lib/blaze" path="/bitbucket/commits/:workspace/:repo_slug" paramsDesc={['Workspace', 'Repository']} radar="1" />
+<Route data={{"path":"/commits/:workspace/:repo_slug","categories":["programming"],"example":"/bitbucket/commits/blaze-lib/blaze","parameters":{"workspace":"Workspace","repo_slug":"Repository"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bitbucket.com/commits/:workspace/:repo_slug"]},"name":"Commits","maintainers":["AuroraDysis"],"location":"commits.ts"}} />
### Tags {#bitbucket-tags}
-<Route author="AuroraDysis" example="/bitbucket/tags/blaze-lib/blaze" path="/bitbucket/tags/:workspace/:repo_slug" paramsDesc={['Workspace', 'Repository']} radar="1" />
+<Route data={{"path":"/tags/:workspace/:repo_slug","categories":["programming"],"example":"/bitbucket/tags/blaze-lib/blaze","parameters":{"workspace":"Workspace","repo_slug":"Repository"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Tags","maintainers":["AuroraDysis"],"location":"tags.ts"}} />
## Bitmovin {#bitmovin}
### Blog {#bitmovin-blog}
-<Route author="elxy" example="/bitmovin/blog" path="/bitmovin/blog" />
+<Route data={{"path":"/blog","categories":["programming"],"example":"/bitmovin/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bitmovin.com/blog","bitmovin.com/"]},"name":"Blog","maintainers":["elxy"],"url":"bitmovin.com/blog","location":"blog.ts"}} />
## CNCF {#cncf}
### Category {#cncf-category}
-<Route author="Fatpandac" example="/cncf" path="/cncf/:cate?" radar="1" paramsDesc={['blog by default']}>
- | Blog | News | Announcements | Reports |
- | ---- | ---- | ------------- | ------- |
- | blog | news | announcements | reports |
-</Route>
+<Route data={{"path":"/:cate?","categories":["programming"],"example":"/cncf","parameters":{"cate":"blog by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["Fatpandac"],"description":"| Blog | News | Announcements | Reports |\n | ---- | ---- | ------------- | ------- |\n | blog | news | announcements | reports |","location":"index.ts"}} />
+
+| Blog | News | Announcements | Reports |
+| ---- | ---- | ------------- | ------- |
+| blog | news | announcements | reports |
## Codeforces {#codeforces}
### Latest contests {#codeforces-latest-contests}
-<Route author="Fatpandac" example="/codeforces/contests" path="/codeforces/contests" />
+<Route data={{"path":"/contests","categories":["programming"],"example":"/codeforces/contests","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.codeforces.com/contests"]},"name":"Latest contests","maintainers":["Fatpandac"],"url":"www.codeforces.com/contests","location":"contests.ts"}} />
### Recent actions {#codeforces-recent-actions}
-<Route author="ftiasch" example="/codeforces/recent-actions" path="/codeforces/recent-actions/:minrating?" paramsDesc={['The minimum blog/comment rating required. Default: 1']} />
-
-## dbaplus 社群 {#dbaplus-she-qun}
-
-### 栏目 {#dbaplus-she-qun-lan-mu}
-
-<Route author="nczitzk" example="/dbaplus" path="/dbaplus/:tab?" paramsDesc={['栏目,见下表,默认为全部']}>
- | 全部 | 数据库 | 运维 | 大数据 | 架构 | PaaS 云 | 职场生涯 | 这里有毒 |
- | ---- | ------ | ---- | ------ | ---- | ------- | -------- | -------- |
- | All | 153 | 134 | 73 | 141 | 72 | 149 | 21 |
-</Route>
-
-### 活动 {#dbaplus-she-qun-huo-dong}
-
-<Route author="nczitzk" example="/dbaplus/activity" path="/dbaplus/activity/:type?" paramsDesc={['分类,见下表,默认为线上分享']}>
- | 线上分享 | 线下峰会 |
- | -------- | -------- |
- | online | offline |
-</Route>
+<Route data={{"path":"/recent-actions/:minrating?","categories":["programming"],"example":"/codeforces/recent-actions","parameters":{"minrating":"The minimum blog/comment rating required. Default: 1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["codeforces.com/recent-actions"],"target":"/recent-actions"},"name":"Recent actions","maintainers":[],"url":"codeforces.com/recent-actions","location":"recent-actions.ts"}} />
## deeplearning.ai {#deeplearning-ai}
### TheBatch 周报 {#deeplearning-ai-thebatch-zhou-bao}
-<Route author="nczitzk juvenn" example="/deeplearning/thebatch" path="/deeplearning/thebatch" radar="1" />
-
-## Distill {#distill}
-
-### Latest {#distill-latest}
-
-<Route author="nczitzk" example="/distill" path="/distill" />
+<Route data={{"path":"/thebatch","categories":["programming"],"example":"/deeplearning/thebatch","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.deeplearning.ai/thebatch","www.deeplearning.ai/"]},"name":"TheBatch 周报","maintainers":["nczitzk","juvenn"],"url":"www.deeplearning.ai/thebatch","location":"thebatch.ts"}} />
## gihyo.jp {#gihyo-jp}
### Series {#gihyo-jp-series}
-<Route author="masakichi" example="/gihyo/list/group/Ubuntu-Weekly-Recipe" path="/gihyo/list/group/:id" paramsDesc={['Series']} />
+<Route data={{"path":"/list/group/:id","categories":["programming"],"example":"/gihyo/list/group/Ubuntu-Weekly-Recipe","parameters":{"id":"Series"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gihyo.jp/list/group/:id"]},"name":"Series","maintainers":["masakichi"],"location":"group.ts"}} />
## Gitee {#gitee}
### 仓库 Releases {#gitee-cang-ku-releases}
-<Route author="TonyRL" example="/gitee/releases/y_project/RuoYi" path="/gitee/releases/:owner/:repo" paramsDesc={['用户名', '仓库名']} radar="1" />
+<Route data={{"path":"/releases/:owner/:repo","categories":["programming"],"example":"/gitee/releases/y_project/RuoYi","parameters":{"owner":"用户名","repo":"仓库名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitee.com/:owner/:repo/releases"]},"name":"仓库 Releases","maintainers":["TonyRL"],"location":"repos/releases.ts"}} />
-### 仓库提交 {#gitee-cang-ku-ti-jiao}
+### 仓库动态 {#gitee-cang-ku-dong-tai}
-<Route author="TonyRL" example="/gitee/commits/y_project/RuoYi" path="/gitee/commits/:owner/:repo" paramsDesc={['用户名', '仓库名']} radar="1" />
+<Route data={{"path":"/events/:owner/:repo","categories":["programming"],"example":"/gitee/events/y_project/RuoYi","parameters":{"owner":"用户名","repo":"仓库名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitee.com/:owner/:repo"]},"name":"仓库动态","maintainers":["TonyRL"],"location":"repos/events.ts"}} />
-### 用户公开动态 {#gitee-yong-hu-gong-kai-dong-tai}
+### 仓库提交 {#gitee-cang-ku-ti-jiao}
-<Route author="TonyRL" example="/gitee/events/y_project" path="/gitee/events/:username" paramsDesc={['用户名']} radar="1" />
+<Route data={{"path":"/commits/:owner/:repo","categories":["programming"],"example":"/gitee/commits/y_project/RuoYi","parameters":{"owner":"用户名","repo":"仓库名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitee.com/:owner/:repo/commits"]},"name":"仓库提交","maintainers":["TonyRL"],"location":"repos/commits.ts"}} />
-### 仓库动态 {#gitee-cang-ku-dong-tai}
+### 用户公开动态 {#gitee-yong-hu-gong-kai-dong-tai}
-<Route author="TonyRL" example="/gitee/events/y_project/RuoYi" path="/gitee/events/:owner/:repo" paramsDesc={['用户名', '仓库名']} radar="1" />
+<Route data={{"path":"/events/:username","categories":["programming"],"example":"/gitee/events/y_project","parameters":{"username":"用户名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitee.com/:username"]},"name":"用户公开动态","maintainers":["TonyRL"],"location":"users/events.ts"}} />
## GitHub {#github}
@@ -240,267 +182,182 @@ GitHub provides some official RSS feeds:
- Wiki history: `https://github.com/:owner/:repo/wiki.atom`
:::
-### User Repo {#github-user-repo}
+### Gist Commits {#github-gist-commits}
-<Route author="dragon-yuan" path="/github/repos/:user" example="/github/repos/DIYgod" paramsDesc={['GitHub username']} radar="1" />
+<Route data={{"path":"/gist/:gistId","categories":["programming"],"example":"/github/gist/d2c152bb7179d07015f336b1a0582679","parameters":{"gistId":"Gist ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gist.github.com/:owner/:gistId/revisions","gist.github.com/:owner/:gistId/stargazers","gist.github.com/:owner/:gistId/forks","gist.github.com/:owner/:gistId"]},"name":"Gist Commits","maintainers":["TonyRL"],"location":"gist.ts"}} />
-### Trending {#github-trending}
+### Notifications {#github-notifications}
-<Route author="DIYgod" path="/github/trending/:since/:language/:spoken_language?" example="/github/trending/daily/javascript/en" paramsDesc={['time frame, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL, possible values are: `daily`, `weekly` or `monthly`', 'the feed language, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL, don\'t filter option is `any`', 'natural language, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL']} radar="1" configRequired="1" />
+<Route data={{"path":"/notifications","categories":["programming"],"example":"/github/notifications","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/notifications"]},"name":"Notifications","maintainers":["zhzy0077"],"url":"github.com/notifications","location":"notifications.ts"}} />
-### Topics {#github-topics}
+### Repo Branches {#github-repo-branches}
-<Route author="queensferryme" example="/github/topics/framework" path="/github/topics/:name/:qs?" paramsDesc={['Topic name, which can be found in the URL of the corresponding [Topics Page](https://github.com/topics/framework)', 'Query string, like `l=php&o=desc&s=stars`. Details listed as follows:']} radar="1">
- | Parameter | Description | Values |
- | --------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- |
- | `l` | Language | For instance `php`, which can be found in the URL of the corresponding [Topics page](https://github.com/topics/framework?l=php) |
- | `o` | Sorting Order | `asc`, `desc` |
- | `s` | Sorting Criteria | `stars`, `forks`, `updated` |
+<Route data={{"path":"/branches/:user/:repo","categories":["programming"],"example":"/github/branches/DIYgod/RSSHub","parameters":{"user":"User name","repo":"Repo name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/branches","github.com/:user/:repo"]},"name":"Repo Branches","maintainers":["max-arnold"],"location":"branches.ts"}} />
- For instance, the `/github/topics/framework/l=php&o=desc&s=stars` route will generate the RSS feed corresponding to this [page](https://github.com/topics/framework?l=php\&o=desc\&s=stars).
-</Route>
+### Repo Contributors {#github-repo-contributors}
+
+<Route data={{"path":"/contributors/:user/:repo/:order?/:anon?","categories":["programming"],"example":"/github/contributors/DIYgod/RSSHub","parameters":{"user":"User name","repo":"Repo name","order":"Sort order by commit numbers, desc and asc (descending by default)","anon":"Show anonymous users. Defaults to no, use any values for yes."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/graphs/contributors","github.com/:user/:repo"],"target":"/contributors/:user/:repo"},"name":"Repo Contributors","maintainers":["zoenglinghou"],"location":"contributors.ts"}} />
### Repo Issues {#github-repo-issues}
-<Route author="HenryQW AndreyMZ" path="/github/issue/:user/:repo/:state?/:labels?" example="/github/issue/vuejs/core/all/wontfix" paramsDesc={['GitHub username', 'GitHub repo name', 'the state of the issues. Can be either `open`, `closed`, or `all`. Default: `open`.', 'a list of comma separated label names']} radar="1" />
+<Route data={{"path":"/issue/:user/:repo/:state?/:labels?","categories":["programming"],"example":"/github/issue/vuejs/core/all/wontfix","parameters":{"user":"GitHub username","repo":"GitHub repo name","state":"the state of the issues. Can be either `open`, `closed`, or `all`. Default: `open`.","labels":"a list of comma separated label names"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/issues","github.com/:user/:repo/issues/:id","github.com/:user/:repo"],"target":"/issue/:user/:repo"},"name":"Repo Issues","maintainers":["HenryQW","AndreyMZ"],"location":"issue.ts"}} />
### Repo Pull Requests {#github-repo-pull-requests}
-<Route author="hashman TonyRL" example="/github/pull/DIYgod/RSSHub" path="/github/pull/:user/:repo/:state?/:labels?" paramsDesc={['User name', 'Repo name', 'the state of pull requests. Can be either `open`, `closed`, or `all`. Default: `open`.', 'a list of comma separated label names']} radar="1" />
+<Route data={{"path":"/pull/:user/:repo/:state?/:labels?","categories":["programming"],"example":"/github/pull/DIYgod/RSSHub","parameters":{"user":"User name","repo":"Repo name","state":"the state of pull requests. Can be either `open`, `closed`, or `all`. Default: `open`.","labels":"a list of comma separated label names"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/pulls","github.com/:user/:repo/pulls/:id","github.com/:user/:repo"],"target":"/pull/:user/:repo"},"name":"Repo Pull Requests","maintainers":[],"location":"pulls.ts"}} />
### Repo Pulse {#github-repo-pulse}
-<Route author="jameschensmith" example="/github/pulse/DIYgod/RSSHub" path="/github/pulse/:user/:repo/:period?" paramsDesc={['User name', 'Repo name', 'Time frame, selected from a repository\'s Pulse/Insights page. Possible values are: `daily`, `halfweekly`, `weekly`, or `monthly`. Default: `weekly`. If your RSS client supports it, consider aligning the polling frequency of the feed to the period.']} radar="1" />
-
-### User Followers {#github-user-followers}
-
-<Route author="HenryQW" path="/github/user/followers/:user" example="/github/user/followers/HenryQW" paramsDesc={['GitHub username']} radar="1" />
+<Route data={{"path":"/pulse/:user/:repo/:period?","categories":["programming"],"example":"/github/pulse/DIYgod/RSSHub","parameters":{"user":"User name","repo":"Repo name","period":"Time frame, selected from a repository's Pulse/Insights page. Possible values are: `daily`, `halfweekly`, `weekly`, or `monthly`. Default: `weekly`. If your RSS client supports it, consider aligning the polling frequency of the feed to the period."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/pulse","github.com/:user/:repo/pulse/:period"]},"name":"Repo Pulse","maintainers":["jameschensmith"],"location":"pulse.ts"}} />
### Repo Stars {#github-repo-stars}
-<Route author="HenryQW" path="/github/stars/:user/:repo" example="/github/stars/DIYGod/RSSHub" paramsDesc={['GitHub username', 'GitHub repo name']} radar="1" />
-
-### Repo Branches {#github-repo-branches}
-
-<Route author="max-arnold" example="/github/branches/DIYgod/RSSHub" path="/github/branches/:user/:repo" paramsDesc={['User name', 'Repo name']} radar="1" />
-
-### Files Commits {#github-files-commits}
-
-<Route author="zengxs" example="/github/file/DIYgod/RSSHub/master/lib/router.ts" path="/github/file/:user/:repo/:branch/:filepath+" paramsDesc={['User name', 'Repo name', 'Branch name', 'File path']} radar="1">
- | User name | Repo name | Branch name | File path |
- | --------- | --------- | ----------- | --------------- |
- | `DIYgod` | `RSSHub` | `master` | `lib/router.ts` |
-
- > - If there are special characters such as `/` in the **branch name**, they need to be encoded with urlencode, usually `/` needs to be replaced with `%2f`
- >
- > - If there are special characters in the **file path**, you need to use urlencode to encode them, but the file path can be recognized normally `/` characters
- >
- > - If the **file path** ends with `.rss`, `.atom`, `.json`, you need to replace the `.` in the suffix with `%2e`
- >
- > > Reeder will make an error when subscribing to `% 2erss` or similar suffixes. At this time, add`.rss` after the route to subscribe
- > >
- > > Such as: replace `https://rsshub.app/github/file/DIYgod/RSSHub/master/lib/router%2ejs` to `https://rsshub.app/github/file/DIYgod/RSSHub/master/lib/router%2ejs.rss`
-</Route>
+<Route data={{"path":"/stars/:user/:repo","categories":["programming"],"example":"/github/stars/DIYGod/RSSHub","parameters":{"user":"GitHub username","repo":"GitHub repo name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/stargazers","github.com/:user/:repo"]},"name":"Repo Stars","maintainers":["HenryQW"],"location":"star.ts"}} />
### Search Result {#github-search-result}
-<Route author="LogicJake" example="/github/search/RSSHub/bestmatch/desc" path="/github/search/:query/:sort?/:order?" paramsDesc={['search keyword', 'Sort options (default to bestmatch)','Sort order, desc and asc (desc descending by default)']}>
- | Sort options | sort |
- | ---------------- | --------- |
- | Best match | bestmatch |
- | Most stars | stars |
- | Most forks | forks |
- | Recently updated | updated |
-</Route>
-
-### User Starred Repositories {#github-user-starred-repositories}
-
-<Route author="LanceZhu" example="/github/starred_repos/DIYgod" path="/github/starred_repos/:user" paramsDesc={['User name']} radar="1" />
-
-### Repo Contributors {#github-repo-contributors}
-
-<Route author="zoenglinghou" example="/github/contributors/DIYgod/RSSHub" path="/github/contributors/:user/:repo/:order?/:anon?" paramsDesc={['User name','Repo name','Sort order by commit numbers, desc and asc (descending by default)','Show anonymous users. Defaults to no, use any values for yes.']} radar="1" />
+<Route data={{"path":"/search/:query/:sort?/:order?","categories":["programming"],"example":"/github/search/RSSHub/bestmatch/desc","parameters":{"query":"search keyword","sort":"Sort options (default to bestmatch)","order":"Sort order, desc and asc (desc descending by default)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Search Result","maintainers":["LogicJake"],"description":"| Sort options | sort |\n | ---------------- | --------- |\n | Best match | bestmatch |\n | Most stars | stars |\n | Most forks | forks |\n | Recently updated | updated |","location":"search.ts"}} />
-### Issue / Pull Request comments {#github-issue-pull-request-comments}
+| Sort options | sort |
+| ---------------- | --------- |
+| Best match | bestmatch |
+| Most stars | stars |
+| Most forks | forks |
+| Recently updated | updated |
-<Route author="TonyRL FliegendeWurst" example="/github/comments/DIYgod/RSSHub/8116" path="/github/comments/:user/:repo/:number?" paramsDesc={['User / Org name', 'Repo name', 'Issue or pull number (if omitted: all)']} radar="1" />
+### Topics {#github-topics}
-### Wiki History {#github-wiki-history}
+<Route data={{"path":"/topics/:name/:qs?","categories":["programming"],"example":"/github/topics/framework","parameters":{"name":"Topic name, which can be found in the URL of the corresponding [Topics Page](https://github.com/topics/framework)","qs":"Query string, like `l=php&o=desc&s=stars`. Details listed as follows:"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/topics"]},"name":"Topics","maintainers":["queensferryme"],"url":"github.com/topics","description":"| Parameter | Description | Values |\n | --------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- |\n | `l` | Language | For instance `php`, which can be found in the URL of the corresponding [Topics page](https://github.com/topics/framework?l=php) |\n | `o` | Sorting Order | `asc`, `desc` |\n | `s` | Sorting Criteria | `stars`, `forks`, `updated` |\n\n For instance, the `/github/topics/framework/l=php&o=desc&s=stars` route will generate the RSS feed corresponding to this [page](https://github.com/topics/framework?l=php&o=desc&s=stars).","location":"topic.ts"}} />
-<Route author="TonyRL" example="/github/wiki/flutter/flutter/Roadmap" path="/github/wiki/:user/:repo/:page?" paramsDesc={['User / Org name', 'Repo name', 'Page slug, can be found in URL, empty means Home']} radar="1" />
+| Parameter | Description | Values |
+| --------- | ---------------- | ------------------------------------------------------------------------------------------------------------------------------- |
+| `l` | Language | For instance `php`, which can be found in the URL of the corresponding [Topics page](https://github.com/topics/framework?l=php) |
+| `o` | Sorting Order | `asc`, `desc` |
+| `s` | Sorting Criteria | `stars`, `forks`, `updated` |
-### Notifications {#github-notifications}
+For instance, the `/github/topics/framework/l=php&o=desc&s=stars` route will generate the RSS feed corresponding to this [page](https://github.com/topics/framework?l=php\&o=desc\&s=stars).
-<Route author="zhzy0077" example="/github/notifications" path="/github/notifications" radar="1" configRequired="1" />
+### Trending {#github-trending}
-### Gist Commits {#github-gist-commits}
+<Route data={{"path":"/trending/:since/:language/:spoken_language?","categories":["programming"],"example":"/github/trending/daily/javascript/en","parameters":{"since":"time frame, available in [Trending page](https://github.com/trending/javascript?since=monthly) 's URL, possible values are: `daily`, `weekly` or `monthly`","language":"the feed language, available in [Trending page](https://github.com/trending/javascript?since=monthly) 's URL, don't filter option is `any`","spoken_language":"natural language, available in [Trending page](https://github.com/trending/javascript?since=monthly) 's URL"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/trending"],"target":"/trending/:since"},"name":"Trending","maintainers":["DIYgod","jameschensmith"],"url":"github.com/trending","location":"trending.ts"}} />
-<Route author="TonyRL" example="/github/gist/d2c152bb7179d07015f336b1a0582679" path="/github/gist/:gistId" paramsDesc={['Gist ID']} radar="1" />
+### User Followers {#github-user-followers}
-## GitLab {#gitlab}
+<Route data={{"path":"/user/followers/:user","categories":["programming"],"example":"/github/user/followers/HenryQW","parameters":{"user":"GitHub username"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user"]},"name":"User Followers","maintainers":["HenryQW"],"location":"follower.ts"}} />
-### Explore {#gitlab-explore}
+### User Repo {#github-user-repo}
-<Route author="imlonghao zoenglinghou" example="/gitlab/explore/trending" path="/gitlab/explore/:type/:host?" paramsDesc={['type', 'Gitlab instance hostname, default to gitlab.com']}>
- | Trending | Most stars | All |
- | -------- | ---------- | --- |
- | trending | starred | all |
-</Route>
+<Route data={{"path":"/repos/:user","categories":["programming"],"example":"/github/repos/DIYgod","parameters":{"user":"GitHub username"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user"]},"name":"User Repo","maintainers":["DIYgod"],"location":"repos.ts"}} />
-### Releases {#gitlab-releases}
+### User Starred Repositories {#github-user-starred-repositories}
-<Route author="zoenglinghou" example="/gitlab/release/pleroma/pleroma/git.pleroma.social" path="/gitlab/release/:namespace/:project/:host?" paramsDesc={['owner or namespace. `/` needs to be replaced with `%2F`', 'project name', 'Gitlab instance hostname, default to gitlab.com']} notOperational="1" />
+<Route data={{"path":"/starred_repos/:user","categories":["programming"],"example":"/github/starred_repos/DIYgod","parameters":{"user":"User name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user"]},"name":"User Starred Repositories","maintainers":["LanceZhu"],"location":"starred-repos.ts"}} />
-### Tags {#gitlab-tags}
+### Wiki History {#github-wiki-history}
-<Route author="zoenglinghou" example="/gitlab/tag/rluna-open-source%2Ffile-management%2Fowncloud/core/gitlab.com" path="/gitlab/tag/:namespace/:project/:host?" paramsDesc={['owner or namespace. `/` needs to be replaced with `%2F`', 'project name', 'Gitlab instance hostname, default to gitlab.com']} anticrawler="1" />
+<Route data={{"path":"/wiki/:user/:repo/:page?","categories":["programming"],"example":"/github/wiki/flutter/flutter/Roadmap","parameters":{"user":"User / Org name","repo":"Repo name","page":"Page slug, can be found in URL, empty means Home"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["github.com/:user/:repo/wiki/:page/_history","github.com/:user/:repo/wiki/:page","github.com/:user/:repo/wiki/_history","github.com/:user/:repo/wiki"],"target":"/wiki/:user/:repo/:page"},"name":"Wiki History","maintainers":["TonyRL"],"location":"wiki.ts"}} />
## Gitpod {#gitpod}
### Blog {#gitpod-blog}
-<Route author="TonyRL" example="/gitpod/blog" path="/gitpod/blog" />
+<Route data={{"path":"/blog","categories":["programming"],"example":"/gitpod/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitpod.io/blog","gitpod.io/"]},"name":"Blog","maintainers":["TonyRL"],"url":"gitpod.io/blog","location":"blog.ts"}} />
### Changelog {#gitpod-changelog}
-<Route author="TonyRL" example="/gitpod/changelog" path="/gitpod/changelog" />
+<Route data={{"path":"/changelog","categories":["programming"],"example":"/gitpod/changelog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gitpod.io/changelog","gitpod.io/"]},"name":"Changelog","maintainers":["TonyRL"],"url":"gitpod.io/changelog","location":"changelog.ts"}} />
## Go 语言中文网 {#go-yu-yan-zhong-wen-wang}
### 板块 {#go-yu-yan-zhong-wen-wang-ban-kuai}
-<Route author="nczitzk" example="/studygolang/go/daily" path="/studygolang/go/:id?" paramsDesc={['板块 id,默认为周刊']} radar="1" />
-
-### 周刊 {#go-yu-yan-zhong-wen-wang-zhou-kan}
-
-<Route author="Weilet nczitzk" example="/studygolang/weekly" path="/studygolang/weekly" radar="1" />
+<Route data={{"path":"/go/:id?","categories":["programming"],"example":"/studygolang/go/daily","parameters":{"id":"板块 id,默认为周刊"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["studygolang.com/go/:id","studygolang.com/"]},"name":"板块","maintainers":["nczitzk"],"location":"go.ts"}} />
### 招聘 {#go-yu-yan-zhong-wen-wang-zhao-pin}
-<Route author="CcccFz nczitzk" example="/studygolang/jobs" path="/studygolang/jobs" radar="1" />
+<Route data={{"path":"/jobs","categories":["programming"],"example":"/studygolang/jobs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"招聘","maintainers":["CcccFz","nczitzk"],"location":"jobs.ts"}} />
-## GoCN {#gocn}
+### 周刊 {#go-yu-yan-zhong-wen-wang-zhou-kan}
-### 最新动态 {#gocn-zui-xin-dong-tai}
+<Route data={{"path":"/weekly","categories":["programming"],"example":"/studygolang/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"周刊","maintainers":["CWeilet","nczitzk"],"location":"weekly.ts"}} />
-<Route author="AtlanCI" example="/gocn/news" path="/gocn/news" radar="1" anticrawler="1" />
+## GoCN {#gocn}
### 每日新闻 {#gocn-mei-ri-xin-wen}
-<Route author="AtlanCI CcccFz" example="/gocn/topics" path="/gocn/topics" radar="1" />
+<Route data={{"path":"/topics","categories":["programming"],"example":"/gocn/topics","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gocn.vip/"]},"name":"每日新闻","maintainers":["AtlanCI","CcccFz"],"url":"gocn.vip/","location":"topics.ts"}} />
### 招聘 {#gocn-zhao-pin}
-<Route author="AtlanCI CcccFz" example="/gocn/jobs" path="/gocn/jobs" radar="1" />
+<Route data={{"path":"/jobs","categories":["programming"],"example":"/gocn/jobs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gocn.vip/"]},"name":"招聘","maintainers":["AtlanCI","CcccFz"],"url":"gocn.vip/","location":"jobs.ts"}} />
## Hacker News {#hacker-news}
-### Follow User {#hacker-news-follow-user}
-
-Subscribe to the updates (threads and submission) from a paritcular Hacker News user
-
-<Route author="cf020031308 nczitzk xie-dongping" example="/hackernews/threads/comments_list/dang" path="/hackernews/:section?/:type?/:user?" paramsDesc={['Section, see above, `index` by default', 'Link, see above, `sources` by default', 'User, only valid for section `threads` and `submitted`']} />
-
### 用户 {#hacker-news-yong-hu}
-订阅特定用户的内容
+<Route data={{"path":"/:section?/:type?/:user?","categories":["programming"],"example":"/hackernews/threads/comments_list/dang","parameters":{"section":"内容分区,见上表,默认为 `index`","type":"链接类型,见上表,默认为 `sources`","user":"设定用户,只在 `threads` 和 `submitted` 分区有效"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ycombinator.com/:section","ycombinator.com/"]},"name":"用户","maintainers":["nczitzk","xie-dongping"],"description":"订阅特定用户的内容","location":"index.ts"}} />
-<Route author="cf020031308 nczitzk xie-dongping" example="/hackernews/threads/comments_list/dang" path="/hackernews/:section?/:type?/:user?" paramsDesc={['内容分区,见上表,默认为 `index`', '链接类型,见上表,默认为 `sources`', '设定用户,只在 `threads` 和 `submitted` 分区有效']} />
+订阅特定用户的内容
## Hacking8 {#hacking8}
-### 信息流 {#hacking8-xin-xi-liu}
-
-<Route author="nczitzk" example="/hacking8" path="/hacking8/:category?" paramsDesc={['分类,见下表,默认为最近更新']}>
- | 推荐 | 最近更新 | 漏洞 / PoC 监控 | PDF |
- | ----- | -------- | --------------- | --- |
- | likes | index | vul-poc | pdf |
-</Route>
-
### 搜索 {#hacking8-sou-suo}
-<Route author="nczitzk" example="/hacking8/search/rsshub" path="/hacking8/search/:keyword?" paramsDesc={['关键字,默认为空']} anticrawler="1" />
+<Route data={{"path":"/search/:keyword?","categories":["programming"],"example":"/hacking8/search/rsshub","parameters":{"keyword":"关键字,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hacking8.com/index/:category","hacking8.com/"],"target":"/:category?"},"name":"搜索","maintainers":["nczitzk"],"location":"search.ts"}} />
-## HackMD {#hackmd}
+### 信息流 {#hacking8-xin-xi-liu}
-### Profile {#hackmd-profile}
+<Route data={{"path":"/:category?","categories":["programming"],"example":"/hacking8","parameters":{"category":"分类,见下表,默认为最近更新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hacking8.com/index/:category","hacking8.com/"]},"name":"信息流","maintainers":["nczitzk"],"description":"| 推荐 | 最近更新 | 漏洞 / PoC 监控 | PDF |\n | ----- | -------- | --------------- | --- |\n | likes | index | vul-poc | pdf |","location":"index.ts"}} />
-<Route author="Yukaii kaiix" example="/hackmd/profile/hackmd" path="/hackmd/profile/:path" paramsDesc={['userpath or teampath']} radar="1" />
+| 推荐 | 最近更新 | 漏洞 / PoC 监控 | PDF |
+| ----- | -------- | --------------- | --- |
+| likes | index | vul-poc | pdf |
-## HackYourNews {#hackyournews}
+## HackMD {#hackmd}
-### Index {#hackyournews-index}
+### Profile {#hackmd-profile}
-<Route author="ftiasch" example="/hackyournews" path="/hackyournews" anticrawler="1" />
+<Route data={{"path":"/profile/:path","categories":["programming"],"example":"/hackmd/profile/hackmd","parameters":{"path":"userpath or teampath"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Profile","maintainers":["Yukaii","kaiix"],"location":"profile.ts"}} />
## HelloGitHub {#hellogithub}
-### 热门 {#hellogithub-re-men}
-
-<Route author="nczitzk" example="/hellogithub/hot" path="/hellogithub/hot/:id?" paramsDesc={['标签 id,可在对应标签页 URL 中找到,默认为全部标签']}>
- 以下为部分标签:
-
- | id | 标签 |
- | ---------- | -------- |
- | Z8PipJsHCX | Python |
- | YQHn0gERoi | C |
- | WTbsu5GAfC | CLI |
- | juBLV86qa5 | 机器学习 |
- | D4JBAUo967 | Rust |
- | dFA60uKLgr | GUI |
- | 0LByh3tjUO | 教程 |
- | 4lpGK0sUyk | Web 应用 |
- | yrZkGsUC9M | C++ |
- | mbP20HIEYD | Ruby |
-</Route>
-
-### 最近 {#hellogithub-zui-jin}
-
-<Route author="nczitzk" example="/hellogithub/last" path="/hellogithub/last/:id?" paramsDesc={['标签 id,可在对应标签页 URL 中找到,默认为全部标签']}>
- 部分标签见上表
-</Route>
-
### 文章 {#hellogithub-wen-zhang}
-<Route author="moke8 nczitzk" example="/hellogithub/article" path="/hellogithub/article/:sort?/:id?" paramsDesc={['排序方式,见下表,默认为 `hot`,即热门', '标签 id,可在对应标签页 URL 中找到,默认为全部标签']}>
- | 热门 | 最近 |
- | ---- | ---- |
- | hot | last |
-</Route>
+<Route data={{"path":["/article/:sort?/:id?","/:sort?/:id?"],"categories":["programming"],"example":"/hellogithub/article","parameters":{"sort":"排序方式,见下表,默认为 `hot`,即热门","id":"标签 id,可在对应标签页 URL 中找到,默认为全部标签"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["moke8","nczitzk"],"description":"| 热门 | 最近 |\n | ---- | ---- |\n | hot | last |","location":"index.ts"}} />
-### 排行榜 {#hellogithub-pai-hang-bang}
+| 热门 | 最近 |
+| ---- | ---- |
+| hot | last |
-<Route author="moke8 nczitzk" example="/hellogithub/report" path="/hellogithub/report/:type?" paramsDesc={['分类,见下表,默认为编程语言排行榜']}>
- | 编程语言 | 服务器 | 数据库 |
- | -------- | -------- | ---------- |
- | tiobe | netcraft | db-engines |
-</Route>
+### 文章 {#hellogithub-wen-zhang}
-### 月刊 {#hellogithub-yue-kan}
+<Route data={{"path":["/article/:sort?/:id?","/:sort?/:id?"],"categories":["programming"],"example":"/hellogithub/article","parameters":{"sort":"排序方式,见下表,默认为 `hot`,即热门","id":"标签 id,可在对应标签页 URL 中找到,默认为全部标签"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["moke8","nczitzk"],"description":"| 热门 | 最近 |\n | ---- | ---- |\n | hot | last |","location":"index.ts"}} />
-<Route author="moke8 nczitzk CaoMeiYouRen" example="/hellogithub/volume" path="/hellogithub/volume" />
+| 热门 | 最近 |
+| ---- | ---- |
+| hot | last |
## Hex-Rays {#hex-rays}
### Hex-Rays News {#hex-rays-hex-rays-news}
-<Route author="hellodword" example="/hex-rays/news" path="/hex-rays/news" />
+<Route data={{"path":"/news","categories":["programming"],"example":"/hex-rays/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hex-rays.com/","hex-rays.com/blog"]},"name":"Hex-Rays News","maintainers":["hellodword ","TonyRL"],"url":"hex-rays.com/","location":"index.ts"}} />
## Huggingface {#huggingface}
### Daily Papers {#huggingface-daily-papers}
-<Route author="zeyugao" example="/huggingface/daily-papers" path="/huggingface/daily-papers" />
+<Route data={{"path":"/daily-papers","categories":["programming"],"example":"/huggingface/daily-papers","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["huggingface.co/papers","huggingface.co/"]},"name":"Daily Papers","maintainers":["zeyugao"],"url":"huggingface.co/papers","location":"daily-papers.ts"}} />
### 中文博客 {#huggingface-zhong-wen-bo-ke}
-<Route author="zcf0508" example="/huggingface/blog-zh" path="/huggingface/blog-zh" />
+<Route data={{"path":"/blog-zh","categories":["programming"],"example":"/huggingface/blog-zh","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["huggingface.co/blog/zh","huggingface.co/"]},"name":"中文博客","maintainers":["zcf0508"],"url":"huggingface.co/blog/zh","location":"blog-zh.ts"}} />
## Issue Hunt {#issue-hunt}
### Project Funded {#issue-hunt-project-funded}
-<Route author="running-grass" radar="1" example="/issuehunt/funded/DIYgod/RSSHub" path="/issuehunt/funded/:username/:repo" paramsDesc={['Github user/org','Repository name']} />
+<Route data={{"path":"/funded/:username/:repo","categories":["programming"],"example":"/issuehunt/funded/DIYgod/RSSHub","parameters":{"username":"Github user/org","repo":"Repository name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Project Funded","maintainers":["running-grass"],"location":"funded.ts"}} />
## Kong API 网关平台 {#kong-api-wang-guan-ping-tai}
@@ -508,296 +365,198 @@ Subscribe to the updates (threads and submission) from a paritcular Hacker News
### 博客最新文章 {#kong-api-wang-guan-ping-tai-bo-ke-zui-xin-wen-zhang}
-<Route author="piglei" example="/konghq/blog-posts" path="/konghq/blog-posts" />
+<Route data={{"path":"/blog-posts","categories":["programming"],"example":"/konghq/blog-posts","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["konghq.com/blog/*"]},"name":"博客最新文章","maintainers":["piglei"],"url":"konghq.com/blog/*","location":"blog-posts.ts"}} />
## LeetCode {#leetcode}
### Articles {#leetcode-articles}
-<Route author="LogicJake" example="/leetcode/articles" path="/leetcode/articles" />
-
-### Daily Question {#leetcode-daily-question}
-
-<Route author="EthanWng97" example="/leetcode/dailyquestion/en" path="/leetcode/dailyquestion/:lang" paramsDesc={['site, Chines(cn) and Engligh(en)']} />
-
-### Daily Question Solution {#leetcode-daily-question-solution}
-
-<Route author="woaidouya123" example="/leetcode/dailyquestion/solution/en" path="/leetcode/dailyquestion/solution/:lang" paramsDesc={['site, Chines(cn) and Engligh(en)']} />
-
-## Linux Patchwork {#linux-patchwork}
-
-### Patch Comments {#linux-patchwork-patch-comments}
-
-<Route author="ysc3839" example="/patchwork.kernel.org/comments/10723629" path="/patchwork.kernel.org/comments/:id" paramsDesc={['Patch ID']} />
-
-## LWN.net {#lwn-net}
-
-### Security alerts {#lwn-net-security-alerts}
-
-<Route author="zengxs" example="/lwn/alerts/CentOS" path="/lwn/alerts/:distributor" paramsDesc={['Distribution identification']}>
- | Distribution | Identification |
- | :--------------- | :----------------- |
- | Arch Linux | `Arch_Linux` |
- | CentOS | `CentOS` |
- | Debian | `Debian` |
- | Fedora | `Fedora` |
- | Gentoo | `Gentoo` |
- | Mageia | `Mageia` |
- | openSUSE | `openSUSE` |
- | Oracle | `Oracle` |
- | Red Hat | `Red_Hat` |
- | Scientific Linux | `Scientific_Linux` |
- | Slackware | `Slackware` |
- | SUSE | `SUSE` |
- | Ubuntu | `Ubuntu` |
-</Route>
+<Route data={{"path":"/articles","categories":["programming"],"example":"/leetcode/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["leetcode.com/articles"]},"name":"Articles","maintainers":["LogicJake"],"url":"leetcode.com/articles","location":"articles.ts"}} />
## ModelScope 魔搭社区 {#modelscope-mo-da-she-qu}
-### 数据集 {#modelscope-mo-da-she-qu-shu-ju-ji}
+### 创空间 {#modelscope-mo-da-she-qu-chuang-kong-jian}
-<Route author="TonyRL" example="/modelscope/datasets" path="/modelscope/datasets" radar="1" />
+<Route data={{"path":"/studios","categories":["programming"],"example":"/modelscope/studios","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["modelscope.cn/studios"]},"name":"创空间","maintainers":["TonyRL"],"url":"modelscope.cn/studios","location":"studios.ts"}} />
### 模型库 {#modelscope-mo-da-she-qu-mo-xing-ku}
-<Route author="TonyRL" example="/modelscope/models" path="/modelscope/models" radar="1" notOperational="1" />
+<Route data={{"path":"/models","categories":["programming"],"example":"/modelscope/models","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["modelscope.cn/models"]},"name":"模型库","maintainers":["TonyRL"],"url":"modelscope.cn/models","location":"models.ts"}} />
-### 创空间 {#modelscope-mo-da-she-qu-chuang-kong-jian}
+### 数据集 {#modelscope-mo-da-she-qu-shu-ju-ji}
-<Route author="TonyRL" example="/modelscope/studios" path="/modelscope/studios" radar="1" />
+<Route data={{"path":"/datasets","categories":["programming"],"example":"/modelscope/datasets","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["modelscope.cn/datasets"]},"name":"数据集","maintainers":["TonyRL"],"url":"modelscope.cn/datasets","location":"datasets.ts"}} />
### DevPress 官方社区 {#modelscope-mo-da-she-qu-devpress-guan-fang-she-qu}
-<Route author="TonyRL" example="/modelscope/community" path="/modelscope/community" radar="1" />
+<Route data={{"path":"/community","categories":["programming"],"example":"/modelscope/community","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["community.modelscope.cn/"]},"name":"DevPress 官方社区","maintainers":["TonyRL"],"url":"community.modelscope.cn/","location":"community.ts"}} />
## MySQL {#mysql}
### Release Notes {#mysql-release-notes}
-<Route author="nczitzk" example="/mysql/release/8.0" path="/mysql/release/:version?" paramsDesc={['Version, see below, 8.0 by default']}>
- | 8.0 | 5.7 | 5.6 |
- | --- | --- | --- |
-</Route>
+<Route data={{"path":"/release/:version?","categories":["programming"],"example":"/mysql/release/8.0","parameters":{"version":"Version, see below, 8.0 by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Release Notes","maintainers":["nczitzk"],"description":"| 8.0 | 5.7 | 5.6 |\n | --- | --- | --- |","location":"release.ts"}} />
+
+| 8.0 | 5.7 | 5.6 |
+| --- | --- | --- |
## Node.js {#node-js}
### News {#node-js-news}
-<Route author="nczitzk" example="/nodejs/blog" path="/nodejs/blog/:language?" paramsDesc={['Language, see below, en by default']}>
- | العربية | Catalan | Deutsch | Español | زبان فارسی |
- | ------- | ------- | ------- | ------- | ---------- |
- | ar | ca | de | es | fa |
-
- | Français | Galego | Italiano | 日本語 | 한국어 |
- | -------- | ------ | -------- | ------ | ------ |
- | fr | gl | it | ja | ko |
-
- | Português do Brasil | limba română | Русский | Türkçe | Українська |
- | ------------------- | ------------ | ------- | ------ | ---------- |
- | pt-br | ro | ru | tr | uk |
-
- | 简体中文 | 繁體中文 |
- | -------- | -------- |
- | zh-cn | zh-tw |
-</Route>
-
-## NOSEC.org {#nosec-org}
+<Route data={{"path":"/blog/:language?","categories":["programming"],"example":"/nodejs/blog","parameters":{"language":"Language, see below, en by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nodejs.org/:language/blog","nodejs.org/"]},"name":"News","maintainers":["nczitzk"],"description":"| العربية | Catalan | Deutsch | Español | زبان فارسی |\n | ------- | ------- | ------- | ------- | ---------- |\n | ar | ca | de | es | fa |\n\n | Français | Galego | Italiano | 日本語 | 한국어 |\n | -------- | ------ | -------- | ------ | ------ |\n | fr | gl | it | ja | ko |\n\n | Português do Brasil | limba română | Русский | Türkçe | Українська |\n | ------------------- | ------------ | ------- | ------ | ---------- |\n | pt-br | ro | ru | tr | uk |\n\n | 简体中文 | 繁體中文 |\n | -------- | -------- |\n | zh-cn | zh-tw |","location":"blog.ts"}} />
-### Posts {#nosec-org-posts}
+| العربية | Catalan | Deutsch | Español | زبان فارسی |
+| ------- | ------- | ------- | ------- | ---------- |
+| ar | ca | de | es | fa |
-<Route author="hellodword" example="/nosec/hole" path="/nosec/:keykind?" paramsDesc={['对应文章分类']}>
- | 分类 | 标识 |
- | :------- | :--------- |
- | 威胁情报 | `threaten` |
- | 安全动态 | `security` |
- | 漏洞预警 | `hole` |
- | 数据泄露 | `leakage` |
- | 专题报告 | `speech` |
- | 技术分析 | `skill` |
- | 安全工具 | `tool` |
-</Route>
+| Français | Galego | Italiano | 日本語 | 한국어 |
+| -------- | ------ | -------- | ------ | ------ |
+| fr | gl | it | ja | ko |
-## project-zero issues {#project-zero-issues}
+| Português do Brasil | limba română | Русский | Türkçe | Українська |
+| ------------------- | ------------ | ------- | ------ | ---------- |
+| pt-br | ro | ru | tr | uk |
-### issues {#project-zero-issues-issues}
-
-<Route author="hellodword" example="/project-zero-issues" path="/project-zero-issues" />
+| 简体中文 | 繁體中文 |
+| -------- | -------- |
+| zh-cn | zh-tw |
## Quicker {#quicker}
### 动作分享 {#quicker-dong-zuo-fen-xiang}
-<Route author="nczitzk" example="/quicker/share/Recent" path="/quicker/share/:category?" paramsDesc={['分类,见下表,默认为动作库最新更新']}>
- | 动作库最新更新 | 动作库最多赞 | 动作库新动作 | 动作库最近赞 |
- | -------------- | ------------ | ------------ | ------------ |
- | Recent | Recommended | NewActions | RecentLiked |
+<Route data={{"path":"/share/:category?","categories":["programming"],"example":"/quicker/share/Recent","parameters":{"category":"分类,见下表,默认为动作库最新更新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["getquicker.net/Share/:category","getquicker.net/"]},"name":"动作分享","maintainers":["nczitzk"],"description":"| 动作库最新更新 | 动作库最多赞 | 动作库新动作 | 动作库最近赞 |\n | -------------- | ------------ | ------------ | ------------ |\n | Recent | Recommended | NewActions | RecentLiked |\n\n | 子程序 | 扩展热键 | 文本指令 |\n | ----------- | --------- | ------------ |\n | SubPrograms | PowerKeys | TextCommands |","location":"share.ts"}} />
- | 子程序 | 扩展热键 | 文本指令 |
- | ----------- | --------- | ------------ |
- | SubPrograms | PowerKeys | TextCommands |
-</Route>
+| 动作库最新更新 | 动作库最多赞 | 动作库新动作 | 动作库最近赞 |
+| -------------- | ------------ | ------------ | ------------ |
+| Recent | Recommended | NewActions | RecentLiked |
-### 讨论区 {#quicker-tao-lun-qu}
+| 子程序 | 扩展热键 | 文本指令 |
+| ----------- | --------- | ------------ |
+| SubPrograms | PowerKeys | TextCommands |
-<Route author="Cesaryuan nczitzk" example="/quicker/qa" path="/quicker/qa/:category?/:state?" paramsDesc={['分类,见下表,默认为全部', '状态,见下表,默认为全部']}>
- 分类
+### 讨论区 {#quicker-tao-lun-qu}
- | 使用问题 | 动作开发 | BUG 反馈 | 功能建议 |
- | -------- | -------- | -------- | -------- |
- | 1 | 9 | 3 | 4 |
+<Route data={{"path":"/qa/:category?/:state?","categories":["programming"],"example":"/quicker/qa","parameters":{"category":"分类,见下表,默认为全部","state":"状态,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"讨论区","maintainers":["Cesaryuan","nczitzk"],"description":"分类\n\n | 使用问题 | 动作开发 | BUG 反馈 | 功能建议 |\n | -------- | -------- | -------- | -------- |\n | 1 | 9 | 3 | 4 |\n\n | 动作需求 | 经验创意 | 动作推荐 | 信息发布 |\n | -------- | -------- | -------- | -------- |\n | 6 | 2 | 7 | 5 |\n\n | 随便聊聊 | 异常报告 | 全部 |\n | -------- | -------- | ---- |\n | 8 | 10 | all |\n\n 状态\n\n | 全部 | 精华 | 已归档 |\n | ---- | ------ | ------- |\n | | digest | achived |","location":"qa.ts"}} />
- | 动作需求 | 经验创意 | 动作推荐 | 信息发布 |
- | -------- | -------- | -------- | -------- |
- | 6 | 2 | 7 | 5 |
+分类
- | 随便聊聊 | 异常报告 | 全部 |
- | -------- | -------- | ---- |
- | 8 | 10 | all |
+| 使用问题 | 动作开发 | BUG 反馈 | 功能建议 |
+| -------- | -------- | -------- | -------- |
+| 1 | 9 | 3 | 4 |
- 状态
+| 动作需求 | 经验创意 | 动作推荐 | 信息发布 |
+| -------- | -------- | -------- | -------- |
+| 6 | 2 | 7 | 5 |
- | 全部 | 精华 | 已归档 |
- | ---- | ------ | ------- |
- | | digest | achived |
-</Route>
+| 随便聊聊 | 异常报告 | 全部 |
+| -------- | -------- | ---- |
+| 8 | 10 | all |
-### 用户更新 {#quicker-yong-hu-geng-xin}
+状态
-<Route author="Cesaryuan nczitzk" example="/quicker/user/Actions/3-CL" path="/quicker/user/:category/:id" paramsDesc={['分类,见下表', '用户 id,可在对应用户页 URL 中找到']}>
- | 动作 | 子程序 | 动作单 |
- | ------- | ----------- | ----------- |
- | Actions | SubPrograms | ActionLists |
-</Route>
+| 全部 | 精华 | 已归档 |
+| ---- | ------ | ------- |
+| | digest | achived |
-## react {#react}
+### 用户更新 {#quicker-yong-hu-geng-xin}
-### react-native {#react-react-native}
+<Route data={{"path":"/user/:category/:id","categories":["programming"],"example":"/quicker/user/Actions/3-CL","parameters":{"category":"分类,见下表","id":"用户 id,可在对应用户页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户更新","maintainers":["Cesaryuan","nczitzk"],"description":"| 动作 | 子程序 | 动作单 |\n | ------- | ----------- | ----------- |\n | Actions | SubPrograms | ActionLists |","location":"user.ts"}} />
-<Route author="xixi" example="/react/react-native-weekly" path="/react/react-native-weekly" />
+| 动作 | 子程序 | 动作单 |
+| ------- | ----------- | ----------- |
+| Actions | SubPrograms | ActionLists |
## Rust 语言中文社区 {#rust-yu-yan-zhong-wen-she-qu}
### 招聘 {#rust-yu-yan-zhong-wen-she-qu-zhao-pin}
-<Route author="CcccFz" example="/rustcc/jobs" path="/rustcc/jobs" radar="1" />
+<Route data={{"path":"/jobs","categories":["programming"],"example":"/rustcc/jobs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rustcc.cn/"]},"name":"招聘","maintainers":["CcccFz"],"url":"rustcc.cn/","location":"jobs.ts"}} />
## SecWiki - 安全维基 {#secwiki-an-quan-wei-ji}
### 最新周刊 {#secwiki-an-quan-wei-ji-zui-xin-zhou-kan}
-<Route author="p7e4" example="/sec-wiki/weekly" path="/sec-wiki/weekly" />
+<Route data={{"path":"/weekly","categories":["programming"],"example":"/sec-wiki/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新周刊","maintainers":["p7e4"],"location":"weekly.ts"}} />
## SegmentFault {#segmentfault}
-### 频道 {#segmentfault-pin-dao}
+### 博客 {#segmentfault-bo-ke}
-<Route author="LogicJake Fatpandac" example="/segmentfault/channel/frontend" path="/segmentfault/channel/:name" paramsDesc={['频道名称,在频道 URL 可以找到']} radar="1" />
+<Route data={{"path":"/blogs/:tag","categories":["programming"],"example":"/segmentfault/blogs/go","parameters":{"tag":"标签名称,在 [标签](https://segmentfault.com/tags) 中可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["segmentfault.com/t/:tag/blogs"]},"name":"博客","maintainers":["shiluanzzz"],"location":"blogs.ts"}} />
-### 用户 {#segmentfault-yong-hu}
+### 频道 {#segmentfault-pin-dao}
-<Route author="leyuuu Fatpandac" example="/segmentfault/user/minnanitkong" path="/segmentfault/user/:name" paramsDesc={['用户 Id,用户详情页 URL 可以找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/channel/:name","categories":["programming"],"example":"/segmentfault/channel/frontend","parameters":{"name":"频道名称,在频道 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["segmentfault.com/channel/:name"]},"name":"频道","maintainers":["LogicJake","Fatpandac"],"location":"channel.ts"}} />
-### 博客 {#segmentfault-bo-ke}
+### 用户 {#segmentfault-yong-hu}
-<Route author="shiluanzzz" example="/segmentfault/blogs/go" path="/segmentfault/blogs/:tag" paramsDesc={['标签名称,在 [标签](https://segmentfault.com/tags) 中可以找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/user/:name","categories":["programming"],"example":"/segmentfault/user/minnanitkong","parameters":{"name":"用户 Id,用户详情页 URL 可以找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["segmentfault.com/u/:name"]},"name":"用户","maintainers":["leyuuu","Fatpandac"],"location":"user.ts"}} />
## Smashing Magazine {#smashing-magazine}
-### Articles {#smashing-magazine-articles}
-
-<Route author="Rjnishant530" example="/smashingmagazine" path="/smashingmagazine" radar="1" />
-
### Category {#smashing-magazine-category}
-<Route author="Rjnishant530" example="/smashingmagazine/react" path="/smashingmagazine/:category?" paramsDesc={['Find in URL or Table below']} radar="1">
- | **Category** | |
- | ------------------ | ------------------ |
- | Accessibility | accessibility |
- | Best practices | best-practices |
- | Business | business |
- | Career | career |
- | Checklists | checklists |
- | CSS | css |
- | Data Visualization | data-visualization |
- | Design | design |
- | Design Patterns | design-patterns |
- | Design Systems | design-systems |
- | E-Commerce | e-commerce |
- | Figma | figma |
- | Freebies | freebies |
- | HTML | html |
- | Illustrator | illustrator |
- | Inspiration | inspiration |
- | JavaScript | javascript |
- | Mobile | mobile |
- | Performance | performance |
- | Privacy | privacy |
- | React | react |
- | Responsive Design | responsive-design |
- | Round-Ups | round-ups |
- | SEO | seo |
- | Typography | typography |
- | Tools | tools |
- | UI | ui |
- | Usability | usability |
- | UX | ux |
- | Vue | vue |
- | Wallpapers | wallpapers |
- | Web Design | web-design |
- | Workflow | workflow |
-</Route>
-
-## TesterHome {#testerhome}
-
-### 最新发布 {#testerhome-zui-xin-fa-bu}
-
-<Route author="xyqfer" example="/testerhome/newest" path="/testerhome/newest" />
-
-## ui.dev {#ui-dev}
-
-### BYTES - Your weekly dose of JS {#ui-dev-bytes-your-weekly-dose-of-js}
-
-Staying informed on the JavaScript ecosystem has never been so entertaining. Delivered every Monday and Thursday, for free. [https://bytes.dev](https://bytes.dev)
-
-<Route author="meixger" example="/bytes" path="/bytes" />
-
-### React Newsletter {#ui-dev-react-newsletter}
-
-Stay up to date on the latest React news, tutorials, resources, and more. Delivered every Tuesday, for free. [https://reactnewsletter.com](https://reactnewsletter.com)
-
-<Route author="meixger" example="/reactnewsletter" path="/reactnewsletter" />
-
-## Visual Studio Code Marketplace {#visual-studio-code-marketplace}
-
-### Visual Studio Code Plugins Marketplace {#visual-studio-code-marketplace-visual-studio-code-plugins-marketplace}
-
-<Route author="SeanChao" example="/vscode/marketplace" path="/vscode/marketplace/:category?" paramsDesc={['Category']}>
- | Featured | Trending Weekly | Trending Monthly | Trending Daily | Most Popular | Recently Added |
- | -------- | --------------- | ---------------- | -------------- | ------------ | -------------- |
- | featured | trending | trending\_m | trending\_d | popular | new |
-</Route>
+<Route data={{"path":"/:category?","categories":["programming"],"example":"/smashingmagazine/react","parameters":{"category":"Find in URL or Table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["smashingmagazine.com/category/:category"],"target":"/:category"},"name":"Category","maintainers":["Rjnishant530"],"url":"smashingmagazine.com/articles/","description":"| **Category** | |\n | ------------------ | ------------------ |\n | Accessibility | accessibility |\n | Best practices | best-practices |\n | Business | business |\n | Career | career |\n | Checklists | checklists |\n | CSS | css |\n | Data Visualization | data-visualization |\n | Design | design |\n | Design Patterns | design-patterns |\n | Design Systems | design-systems |\n | E-Commerce | e-commerce |\n | Figma | figma |\n | Freebies | freebies |\n | HTML | html |\n | Illustrator | illustrator |\n | Inspiration | inspiration |\n | JavaScript | javascript |\n | Mobile | mobile |\n | Performance | performance |\n | Privacy | privacy |\n | React | react |\n | Responsive Design | responsive-design |\n | Round-Ups | round-ups |\n | SEO | seo |\n | Typography | typography |\n | Tools | tools |\n | UI | ui |\n | Usability | usability |\n | UX | ux |\n | Vue | vue |\n | Wallpapers | wallpapers |\n | Web Design | web-design |\n | Workflow | workflow |","location":"category.ts"}} />
+
+| **Category** | |
+| ------------------ | ------------------ |
+| Accessibility | accessibility |
+| Best practices | best-practices |
+| Business | business |
+| Career | career |
+| Checklists | checklists |
+| CSS | css |
+| Data Visualization | data-visualization |
+| Design | design |
+| Design Patterns | design-patterns |
+| Design Systems | design-systems |
+| E-Commerce | e-commerce |
+| Figma | figma |
+| Freebies | freebies |
+| HTML | html |
+| Illustrator | illustrator |
+| Inspiration | inspiration |
+| JavaScript | javascript |
+| Mobile | mobile |
+| Performance | performance |
+| Privacy | privacy |
+| React | react |
+| Responsive Design | responsive-design |
+| Round-Ups | round-ups |
+| SEO | seo |
+| Typography | typography |
+| Tools | tools |
+| UI | ui |
+| Usability | usability |
+| UX | ux |
+| Vue | vue |
+| Wallpapers | wallpapers |
+| Web Design | web-design |
+| Workflow | workflow |
## 阿里云 {#a-li-yun}
-### 数据库内核月报 {#a-li-yun-shu-ju-ku-nei-he-yue-bao}
-
-<Route author="junbaor" example="/aliyun/database_month" path="/aliyun/database_month" />
-
### 公告 {#a-li-yun-gong-gao}
-<Route author="muzea" example="/aliyun/notice" path="/aliyun/notice/:type?">
- | 类型 | type |
- | -------- | ---- |
- | 全部 | |
- | 升级公告 | 1 |
- | 安全公告 | 2 |
- | 备案公告 | 3 |
- | 其他 | 4 |
-</Route>
+<Route data={{"path":"/notice/:type?","categories":["programming"],"example":"/aliyun/notice","parameters":{"type":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"公告","maintainers":["muzea"],"description":"| 类型 | type |\n | -------- | ---- |\n | 全部 | |\n | 升级公告 | 1 |\n | 安全公告 | 2 |\n | 备案公告 | 3 |\n | 其他 | 4 |","location":"notice.ts"}} />
+
+| 类型 | type |
+| -------- | ---- |
+| 全部 | |
+| 升级公告 | 1 |
+| 安全公告 | 2 |
+| 备案公告 | 3 |
+| 其他 | 4 |
### 开发者社区 - 主题 {#a-li-yun-kai-fa-zhe-she-qu-zhu-ti}
-<Route author="umm233" example="/aliyun/developer/group/alitech" path="/aliyun/developer/group/:type" paramsDesc={['对应技术领域分类']} notOperational="1" />
+<Route data={{"path":"/developer/group/:type","categories":["programming"],"example":"/aliyun/developer/group/alitech","parameters":{"type":"对应技术领域分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["developer.aliyun.com/group/:type"]},"name":"开发者社区 - 主题","maintainers":["umm233"],"location":"developer/group.ts"}} />
+
+### 数据库内核月报 {#a-li-yun-shu-ju-ku-nei-he-yue-bao}
+
+<Route data={{"path":"/database_month","categories":["programming"],"example":"/aliyun/database_month","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mysql.taobao.org/monthly","mysql.taobao.org/"]},"name":"数据库内核月报","maintainers":["junbaor"],"url":"mysql.taobao.org/monthly","location":"database-month.ts"}} />
## 安全客 {#an-quan-ke}
@@ -807,342 +566,232 @@ Stay up to date on the latest React news, tutorials, resources, and more. Delive
### 分类订阅 {#an-quan-ke-fen-lei-ding-yue}
-<Route author="qwertyuiop6" example="/anquanke/week" path="/anquanke/:category/:fulltext?" paramsDesc={['分类订阅', '是否获取全文,如需获取全文参数传入 `quanwen` 或 `fulltext`']} radar="1">
- | 360 网络安全周报 | 活动 | 知识 | 资讯 | 招聘 | 工具 |
- | ---------------- | -------- | --------- | ---- | ---- | ---- |
- | week | activity | knowledge | news | job | tool |
-</Route>
+<Route data={{"path":"/:category/:fulltext?","categories":["programming"],"example":"/anquanke/week","parameters":{"category":"分类订阅","fulltext":"是否获取全文,如需获取全文参数传入 `quanwen` 或 `fulltext`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类订阅","maintainers":["qwertyuiop6"],"description":"| 360 网络安全周报 | 活动 | 知识 | 资讯 | 招聘 | 工具 |\n | ---------------- | -------- | --------- | ---- | ---- | ---- |\n | week | activity | knowledge | news | job | tool |","location":"category.ts"}} />
+
+| 360 网络安全周报 | 活动 | 知识 | 资讯 | 招聘 | 工具 |
+| ---------------- | -------- | --------- | ---- | ---- | ---- |
+| week | activity | knowledge | news | job | tool |
## 安全内参 {#an-quan-nei-can}
### 分类 {#an-quan-nei-can-fen-lei}
-<Route author="XinRoom SunBK201" example="/secrss/category/产业趋势" path="/secrss/category/:category?" radar="1" />
+<Route data={{"path":"/category/:category?","categories":["programming"],"example":"/secrss/category/产业趋势","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["XinRoom","SunBK201"],"location":"category.ts"}} />
### 作者 {#an-quan-nei-can-zuo-zhe}
-<Route author="XinRoom SunBK201" example="/secrss/author/网络安全威胁和漏洞信息共享平台" path="/secrss/author/:author" radar="1" />
+<Route data={{"path":"/author/:author","categories":["programming"],"example":"/secrss/author/网络安全威胁和漏洞信息共享平台","parameters":{"author":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作者","maintainers":["XinRoom","SunBK201"],"location":"author.ts"}} />
## 北京智源人工智能研究院 {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan}
-### 智源社区 {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-zhi-yuan-she-qu}
-
-<Route author="TonyRL" example="/baai/hub" path="/baai/hub/:tagId?/:sort?/:range?" paramsDesc={['社群 ID,可在 [社群页](https://hub.baai.ac.cn/taglist) 或 URL 中找到', '分类,见下表,默认为 `new`', '时间跨度,仅在分类 `readCnt` 时有效']} radar="1">
- 分类
-
- | 最热 | 最新 | 头条 |
- | ---- | ---- | ------- |
- | hot | new | readCnt |
-
- 时间跨度
-
- | 3 天 | 7 天 | 30 天 |
- | ---- | ---- | ----- |
- | 3 | 7 | 30 |
-</Route>
-
### 智源社区 - 活动 {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-zhi-yuan-she-qu-huo-dong}
-<Route author="TonyRL" example="/baai/hub/events" path="/baai/hub/events" radar="1" />
+<Route data={{"path":"/hub/events","categories":["programming"],"example":"/baai/hub/events","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hub.baai.ac.cn/events","hub.baai.ac.cn/"]},"name":"智源社区 - 活动","maintainers":["TonyRL"],"url":"hub.baai.ac.cn/events","location":"events.ts"}} />
### 智源社区 - 评论 {#bei-jing-zhi-yuan-ren-gong-zhi-neng-yan-jiu-yuan-zhi-yuan-she-qu-ping-lun}
-<Route author="TonyRL" example="/baai/hub/comments" path="/baai/hub/comments" radar="1" />
+<Route data={{"path":"/hub/comments","categories":["programming"],"example":"/baai/hub/comments","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hub.baai.ac.cn/comments","hub.baai.ac.cn/"]},"name":"智源社区 - 评论","maintainers":["TonyRL"],"url":"hub.baai.ac.cn/comments","location":"comments.ts"}} />
## 登链社区 {#deng-lian-she-qu}
### 文章 {#deng-lian-she-qu-wen-zhang}
-<Route author="running-grass" example="/learnblockchain/posts/DApp/newest" path="/learnblockchain/posts/:cid/:sort?" paramsDesc={['分类id,更多分类可以论坛的URL找到', '排序方式,默认精选']} radar="1">
- | id | 分类 |
- | -------- | ------------ |
- | all | 全部 |
- | DApp | 去中心化应用 |
- | chains | 公链 |
- | 联盟链 | 联盟链 |
- | scaling | Layer2 |
- | langs | 编程语言 |
- | security | 安全 |
- | dst | 存储 |
- | basic | 理论研究 |
- | other | 其他 |
-
- | id | 排序方式 |
- | -------- | ----------- |
- | newest | 最新 |
- | featured | 精选 (默认) |
- | featured | 最赞 |
- | hottest | 最热 |
-</Route>
+<Route data={{"path":"/posts/:cid/:sort?","categories":["programming"],"example":"/learnblockchain/posts/DApp/newest","parameters":{"cid":"分类id,更多分类可以论坛的URL找到","sort":"排序方式,默认精选"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"文章","maintainers":["running-grass"],"description":"| id | 分类 |\n | -------- | ------------ |\n | all | 全部 |\n | DApp | 去中心化应用 |\n | chains | 公链 |\n | 联盟链 | 联盟链 |\n | scaling | Layer2 |\n | langs | 编程语言 |\n | security | 安全 |\n | dst | 存储 |\n | basic | 理论研究 |\n | other | 其他 |\n\n | id | 排序方式 |\n | -------- | ----------- |\n | newest | 最新 |\n | featured | 精选 (默认) |\n | featured | 最赞 |\n | hottest | 最热 |","location":"posts.ts"}} />
+
+| id | 分类 |
+| -------- | ------------ |
+| all | 全部 |
+| DApp | 去中心化应用 |
+| chains | 公链 |
+| 联盟链 | 联盟链 |
+| scaling | Layer2 |
+| langs | 编程语言 |
+| security | 安全 |
+| dst | 存储 |
+| basic | 理论研究 |
+| other | 其他 |
+
+| id | 排序方式 |
+| -------- | ----------- |
+| newest | 最新 |
+| featured | 精选 (默认) |
+| featured | 最赞 |
+| hottest | 最热 |
-## 饿了么开放平台 {#e-le-me-kai-fang-ping-tai}
-
-### 商家开放平台公告 {#e-le-me-kai-fang-ping-tai-shang-jia-kai-fang-ping-tai-gong-gao}
+## 极术社区 {#ji-shu-she-qu}
-<Route author="phantomk" example="/eleme/open/announce" path="/eleme/open/announce" />
+### 频道、专栏、用户 {#ji-shu-she-qu-pin-dao-zhuan-lan-yong-hu}
-## 极客时间 {#ji-ke-shi-jian}
+<Route data={{"path":"/:type/:name?","categories":["programming"],"example":"/aijishu/channel/ai","parameters":{"type":"文章类型,可以取值如下","name":"名字,取自URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道、专栏、用户","maintainers":[],"description":"| type | 说明 |\n | ------- | ---- |\n | channel | 频道 |\n | blog | 专栏 |\n | u | 用户 |","location":"index.ts"}} />
-### 专栏文章 {#ji-ke-shi-jian-zhuan-lan-wen-zhang}
+| type | 说明 |
+| ------- | ---- |
+| channel | 频道 |
+| blog | 专栏 |
+| u | 用户 |
-<Route author="fengchang" example="/geektime/column/48" path="/geektime/column/:cid" paramsDesc={['专栏 id,可从[全部专栏](https://time.geekbang.org/paid-content)进入专栏介绍页,在 URL 中找到']} />
+## 掘金 {#jue-jin}
-## 极术社区 {#ji-shu-she-qu}
+### 标签 {#jue-jin-biao-qian}
-### 频道、专栏、用户 {#ji-shu-she-qu-pin-dao-zhuan-lan-yong-hu}
+<Route data={{"path":"/tag/:tag","categories":["programming"],"example":"/juejin/tag/JavaScript","parameters":{"tag":"标签名,可在标签 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/tag/:tag"]},"name":"标签","maintainers":["isheng5"],"location":"tag.ts"}} />
-<Route author="bigfei" example="/aijishu/channel/ai" path="/aijishu/:type/:name?" paramsDesc={['文章类型,可以取值如下', '名字,取自URL']} radar="1">
- | type | 说明 |
- | ------- | ---- |
- | channel | 频道 |
- | blog | 专栏 |
- | u | 用户 |
-</Route>
+### 单个收藏夹 {#jue-jin-dan-ge-shou-cang-jia}
-## 技术头条 {#ji-shu-tou-tiao}
+<Route data={{"path":"/collection/:collectionId","categories":["programming"],"example":"/juejin/collection/6845243180586123271","parameters":{"collectionId":"收藏夹唯一标志符, 在浏览器地址栏URL中能够找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/collection/:collectionId"]},"name":"单个收藏夹","maintainers":["isQ"],"location":"collection.ts"}} />
-### 最新分享 {#ji-shu-tou-tiao-zui-xin-fen-xiang}
+### 沸点 {#jue-jin-fei-dian}
-<Route author="xyqfer" example="/blogread/newest" path="/blogread/newest" />
+<Route data={{"path":"/pins/:type?","categories":["programming"],"example":"/juejin/pins/6824710202487472141","parameters":{"type":"默认为 recommend,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"沸点","maintainers":["xyqfer","laampui"],"description":"| 推荐 | 热门 | 上班摸鱼 | 内推招聘 | 一图胜千言 | 今天学到了 | 每天一道算法题 | 开发工具推荐 | 树洞一下 |\n | --------- | ---- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- |\n | recommend | hot | 6824710203301167112 | 6819970850532360206 | 6824710202487472141 | 6824710202562969614 | 6824710202378436621 | 6824710202000932877 | 6824710203112423437 |","location":"pins.ts"}} />
-## 掘金 {#jue-jin}
+| 推荐 | 热门 | 上班摸鱼 | 内推招聘 | 一图胜千言 | 今天学到了 | 每天一道算法题 | 开发工具推荐 | 树洞一下 |
+| --------- | ---- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- |
+| recommend | hot | 6824710203301167112 | 6819970850532360206 | 6824710202487472141 | 6824710202562969614 | 6824710202378436621 | 6824710202000932877 | 6824710203112423437 |
### 分类 {#jue-jin-fen-lei}
-<Route author="DIYgod" example="/juejin/category/frontend" path="/juejin/category/:category" paramsDesc={['分类名']} radar="1">
- | 后端 | 前端 | Android | iOS | 人工智能 | 开发工具 | 代码人生 | 阅读 |
- | ------- | -------- | ------- | --- | -------- | -------- | -------- | ------- |
- | backend | frontend | android | ios | ai | freebie | career | article |
-</Route>
+<Route data={{"path":"/category/:category","categories":["programming"],"example":"/juejin/category/frontend","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["DIYgod"],"description":"| 后端 | 前端 | Android | iOS | 人工智能 | 开发工具 | 代码人生 | 阅读 |\n | ------- | -------- | ------- | --- | -------- | -------- | -------- | ------- |\n | backend | frontend | android | ios | ai | freebie | career | article |","location":"category.ts"}} />
-### 标签 {#jue-jin-biao-qian}
-
-<Route author="isheng5" example="/juejin/tag/JavaScript" path="/juejin/tag/:tag" paramsDesc={['标签名,可在标签 URL 中找到']} radar="1" />
+| 后端 | 前端 | Android | iOS | 人工智能 | 开发工具 | 代码人生 | 阅读 |
+| ------- | -------- | ------- | --- | -------- | -------- | -------- | ------- |
+| backend | frontend | android | ios | ai | freebie | career | article |
### 热门 {#jue-jin-re-men}
-<Route author="moaix" example="/juejin/trending/ios/monthly" path="/juejin/trending/:category/:type" paramsDesc={['分类名', '类型']} radar="1">
- | category | 标签 |
- | -------- | -------- |
- | android | Android |
- | frontend | 前端 |
- | ios | iOS |
- | backend | 后端 |
- | design | 设计 |
- | product | 产品 |
- | freebie | 工具资源 |
- | article | 阅读 |
- | ai | 人工智能 |
- | devops | 运维 |
- | all | 全部 |
-
- | type | 类型 |
- | ---------- | -------- |
- | weekly | 本周最热 |
- | monthly | 本月最热 |
- | historical | 历史最热 |
-</Route>
+<Route data={{"path":"/trending/:category/:type","categories":["programming"],"example":"/juejin/trending/ios/monthly","parameters":{"category":"分类名","type":"类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热门","maintainers":["moaix"],"description":"| category | 标签 |\n | -------- | -------- |\n | android | Android |\n | frontend | 前端 |\n | ios | iOS |\n | backend | 后端 |\n | design | 设计 |\n | product | 产品 |\n | freebie | 工具资源 |\n | article | 阅读 |\n | ai | 人工智能 |\n | devops | 运维 |\n | all | 全部 |\n\n | type | 类型 |\n | ---------- | -------- |\n | weekly | 本周最热 |\n | monthly | 本月最热 |\n | historical | 历史最热 |","location":"trending.ts"}} />
+
+| category | 标签 |
+| -------- | -------- |
+| android | Android |
+| frontend | 前端 |
+| ios | iOS |
+| backend | 后端 |
+| design | 设计 |
+| product | 产品 |
+| freebie | 工具资源 |
+| article | 阅读 |
+| ai | 人工智能 |
+| devops | 运维 |
+| all | 全部 |
+
+| type | 类型 |
+| ---------- | -------- |
+| weekly | 本周最热 |
+| monthly | 本月最热 |
+| historical | 历史最热 |
-### 小册 {#jue-jin-xiao-ce}
+### 收藏集 {#jue-jin-shou-cang-ji}
-<Route author="xyqfer" example="/juejin/books" path="/juejin/books" radar="1" />
+<Route data={{"path":"/collections/:userId","categories":["programming"],"example":"/juejin/collections/1697301682482439","parameters":{"userId":"用户唯一标志符, 在浏览器地址栏URL中能够找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/user/:id","juejin.cn/user/:id/collections"],"target":"/collections/:id"},"name":"收藏集","maintainers":["isQ"],"location":"favorites.ts"}} />
-> 掘金小册需要付费订阅,RSS 仅做更新提醒,不含付费内容.
+### 小册 {#jue-jin-xiao-ce}
-### 沸点 {#jue-jin-fei-dian}
+<Route data={{"path":"/books","categories":["programming"],"example":"/juejin/books","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/books"]},"name":"小册","maintainers":["xyqfer"],"url":"juejin.cn/books","description":"> 掘金小册需要付费订阅,RSS 仅做更新提醒,不含付费内容.","location":"books.ts"}} />
-<Route author="xyqfer laampui" example="/juejin/pins/6824710202487472141" path="/juejin/pins/:type?" paramsDesc={['默认为 recommend,见下表']} radar="1">
- | 推荐 | 热门 | 上班摸鱼 | 内推招聘 | 一图胜千言 | 今天学到了 | 每天一道算法题 | 开发工具推荐 | 树洞一下 |
- | --------- | ---- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- |
- | recommend | hot | 6824710203301167112 | 6819970850532360206 | 6824710202487472141 | 6824710202562969614 | 6824710202378436621 | 6824710202000932877 | 6824710203112423437 |
-</Route>
+> 掘金小册需要付费订阅,RSS 仅做更新提醒,不含付费内容.
### 用户文章 {#jue-jin-yong-hu-wen-zhang}
-<Route author="Maecenas" example="/juejin/posts/3051900006845944" path="/juejin/posts/:id" paramsDesc={['用户 id, 可在用户页 URL 中找到']} radar="1" />
-
-### 收藏集 {#jue-jin-shou-cang-ji}
-
-<Route author="isQ" example="/juejin/collections/1697301682482439" path="/juejin/collections/:userId" paramsDesc={['用户唯一标志符, 在浏览器地址栏URL中能够找到']} radar="1" />
-
-### 单个收藏夹 {#jue-jin-dan-ge-shou-cang-jia}
-
-<Route author="isQ" example="/juejin/collection/6845243180586123271" path="/juejin/collection/:collectionId" paramsDesc={['收藏夹唯一标志符, 在浏览器地址栏URL中能够找到']} radar="1" />
+<Route data={{"path":"/posts/:id","categories":["programming"],"example":"/juejin/posts/3051900006845944","parameters":{"id":"用户 id, 可在用户页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/user/:id","juejin.cn/user/:id/posts"]},"name":"用户文章","maintainers":["Maecenas"],"location":"posts.ts"}} />
### 专栏 {#jue-jin-zhuan-lan}
-<Route author="xiangzy1" example="/juejin/column/6960559453037199391" path="/juejin/column/:id" paramsDesc={['专栏 id, 可在专栏页 URL 中找到']} radar="1" />
+<Route data={{"path":"/column/:id","categories":["programming"],"example":"/juejin/column/6960559453037199391","parameters":{"id":"专栏 id, 可在专栏页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["juejin.cn/column/:id"]},"name":"专栏","maintainers":["xiangzy1"],"location":"column.ts"}} />
## 开源中国 {#kai-yuan-zhong-guo}
-### 资讯 {#kai-yuan-zhong-guo-zi-xun}
-
-<Route author="tgly307 zengxs" example="/oschina/news/project" path="/oschina/news/:category?" paramsDesc={['板块名']} radar="1">
- | [综合资讯][osc_gen] | [软件更新资讯][osc_proj] | [行业资讯][osc_ind] | [编程语言资讯][osc_pl] |
- | ------------------- | ------------------------ | ------------------- | ---------------------- |
- | industry | project | industry-news | programming |
+### 数字型账号用户博客 {#kai-yuan-zhong-guo-shu-zi-xing-zhang-hao-yong-hu-bo-ke}
- 订阅 [全部板块资讯][osc_all] 可以使用 [https://rsshub.app/oschina/news](https://rsshub.app/oschina/news)
+<Route data={{"path":["/u/:uid","/user/:id"],"categories":["programming"],"example":"/oschina/u/3920392","parameters":{"uid":"用户 id,可通过查看用户博客网址得到,以 u/数字结尾,数字即为 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["my.oschina.net/u/:uid"]},"name":"数字型账号用户博客","maintainers":[],"location":"user.ts"}} />
- [osc_all]: https://www.oschina.net/news "开源中国 - 全部资讯"
+### 数字型账号用户博客 {#kai-yuan-zhong-guo-shu-zi-xing-zhang-hao-yong-hu-bo-ke}
- [osc_gen]: https://www.oschina.net/news/industry "开源中国 - 综合资讯"
+<Route data={{"path":["/u/:uid","/user/:id"],"categories":["programming"],"example":"/oschina/u/3920392","parameters":{"uid":"用户 id,可通过查看用户博客网址得到,以 u/数字结尾,数字即为 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["my.oschina.net/u/:uid"]},"name":"数字型账号用户博客","maintainers":[],"location":"user.ts"}} />
- [osc_proj]: https://www.oschina.net/news/project "开源中国 - 软件更新资讯"
+### 问答主题 {#kai-yuan-zhong-guo-wen-da-zhu-ti}
- [osc_ind]: https://www.oschina.net/news/industry-news "开源中国 - 行业资讯"
+<Route data={{"path":"/topic/:topic","categories":["programming"],"example":"/oschina/topic/weekly-news","parameters":{"topic":"主题名,可从 [全部主题](https://www.oschina.net/question/topics) 进入主题页,在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["oschina.net/question/topic/:topic"]},"name":"问答主题","maintainers":["loveely7"],"location":"topic.ts"}} />
- [osc_pl]: https://www.oschina.net/news/programming "开源中国 - 编程语言资讯"
-</Route>
+### 资讯 {#kai-yuan-zhong-guo-zi-xun}
-### 用户博客 {#kai-yuan-zhong-guo-yong-hu-bo-ke}
+<Route data={{"path":"/news/:category?","categories":["programming"],"example":"/oschina/news/project","parameters":{"category":"板块名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["oschina.net/news/:category"],"target":"/news/:category"},"name":"资讯","maintainers":["tgly307","zengxs"],"description":"| [综合资讯][osc_gen] | [软件更新资讯][osc_proj] | [行业资讯][osc_ind] | [编程语言资讯][osc_pl] |\n | ------------------- | ------------------------ | ------------------- | ---------------------- |\n | industry | project | industry-news | programming |\n\n 订阅 [全部板块资讯][osc_all] 可以使用 [https://rsshub.app/oschina/news](https://rsshub.app/oschina/news)\n\n [osc_all]: https://www.oschina.net/news \"开源中国 - 全部资讯\"\n\n [osc_gen]: https://www.oschina.net/news/industry \"开源中国 - 综合资讯\"\n\n [osc_proj]: https://www.oschina.net/news/project \"开源中国 - 软件更新资讯\"\n\n [osc_ind]: https://www.oschina.net/news/industry-news \"开源中国 - 行业资讯\"\n\n [osc_pl]: https://www.oschina.net/news/programming \"开源中国 - 编程语言资讯\"","location":"news.ts"}} />
-<Route author="dxmpalb" example="/oschina/user/lenve" path="/oschina/user/:id" paramsDesc={['用户 id,可通过查看用户博客网址得到,如果博客以 u/数字结尾,使用下一条路由']} radar="1" />
+| [综合资讯][osc_gen] | [软件更新资讯][osc_proj] | [行业资讯][osc_ind] | [编程语言资讯][osc_pl] |
+| ------------------- | ------------------------ | ------------------- | ---------------------- |
+| industry | project | industry-news | programming |
-### 数字型账号用户博客 {#kai-yuan-zhong-guo-shu-zi-xing-zhang-hao-yong-hu-bo-ke}
+订阅 [全部板块资讯][osc_all] 可以使用 [https://rsshub.app/oschina/news](https://rsshub.app/oschina/news)
-<Route author="dxmpalb" example="/oschina/u/3920392" path="/oschina/u/:uid" paramsDesc={['用户 id,可通过查看用户博客网址得到,以 u/数字结尾,数字即为 id']} radar="1" />
+[osc_all]: https://www.oschina.net/news "开源中国 - 全部资讯"
-### 问答主题 {#kai-yuan-zhong-guo-wen-da-zhu-ti}
+[osc_gen]: https://www.oschina.net/news/industry "开源中国 - 综合资讯"
-<Route author="loveely7" example="/oschina/topic/weekly-news" path="/oschina/topic/:topic" paramsDesc={['主题名,可从 [全部主题](https://www.oschina.net/question/topics) 进入主题页,在 URL 中找到']} radar="1" />
+[osc_proj]: https://www.oschina.net/news/project "开源中国 - 软件更新资讯"
-## 拉勾网 {#la-gou-wang}
+[osc_ind]: https://www.oschina.net/news/industry-news "开源中国 - 行业资讯"
-:::tip
-拉勾网官方提供职位的[邮件订阅](https://www.lagou.com/s/subscribe.html),请根据自身需要选择使用。
-:::
+[osc_pl]: https://www.oschina.net/news/programming "开源中国 - 编程语言资讯"
-### 职位招聘 {#la-gou-wang-zhi-wei-zhao-pin}
+## 蓝桥云课 {#lan-qiao-yun-ke}
-<Route author="hoilc" example="/lagou/jobs/JavaScript/上海" path="/lagou/jobs/:position/:city" paramsDesc={['职位名,可以参考[拉勾网首页](https://www.lagou.com)的职位列表', '城市名,请参考[拉勾网支持的全部城市](https://www.lagou.com/jobs/allCity.html)']} anticrawler="1" />
+### 技术社区 {#lan-qiao-yun-ke-ji-shu-she-qu}
-## 蓝桥云课 {#lan-qiao-yun-ke}
+<Route data={{"path":"/questions/:id","categories":["programming"],"example":"/lanqiao/questions/2","parameters":{"id":"topic_id 主题 `id` 可在社区板块 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lanqiao.cn/questions/","lanqiao.cn/questions/topics/:id"]},"name":"技术社区","maintainers":["huhuhang"],"url":"lanqiao.cn/questions/","location":"questions.ts"}} />
### 全站发布的课程 {#lan-qiao-yun-ke-quan-zhan-fa-bu-de-ke-cheng}
-<Route author="huhuhang" example="/lanqiao/courses/latest/all" path="/lanqiao/courses/:sort/:tag" paramsDesc={['排序规则 sort, 默认(`default`)、最新(`latest`)、最热(`hotest`)', '课程标签 `tag`,可在该页面找到:https://www.lanqiao.cn/courses/']} radar="1" anticrawler="1" />
+<Route data={{"path":"/courses/:sort/:tag","categories":["programming"],"example":"/lanqiao/courses/latest/all","parameters":{"sort":"排序规则 sort, 默认(`default`)、最新(`latest`)、最热(`hotest`)","tag":"课程标签 `tag`,可在该页面找到:https://www.lanqiao.cn/courses/"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"全站发布的课程","maintainers":["huhuhang"],"location":"courses.ts"}} />
### 作者发布的课程 {#lan-qiao-yun-ke-zuo-zhe-fa-bu-de-ke-cheng}
-<Route author="huhuhang" example="/lanqiao/author/1701267" path="/lanqiao/author/:uid" paramsDesc={['作者 `uid` 可在作者主页 URL 中找到']} radar="1" />
-
-### 技术社区 {#lan-qiao-yun-ke-ji-shu-she-qu}
-
-<Route author="huhuhang" example="/lanqiao/questions/2" path="/lanqiao/questions/:id" paramsDesc={['topic_id 主题 `id` 可在社区板块 URL 中找到']} radar="1" anticrawler="1" />
+<Route data={{"path":"/author/:uid","categories":["programming"],"example":"/lanqiao/author/1701267","parameters":{"uid":"作者 `uid` 可在作者主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lanqiao.cn/users/:uid"]},"name":"作者发布的课程","maintainers":["huhuhang"],"location":"author.ts"}} />
## 洛谷 {#luo-gu}
-### 日报 {#luo-gu-ri-bao}
-
-<Route author="LogicJake prnake nczitzk" example="/luogu/daily" path="/luogu/daily/:id?" paramsDesc={['年度日报所在帖子 id,可在 URL 中找到,不填默认为 `47327`']} radar="1" notOperational="1" />
-
### 比赛列表 {#luo-gu-bi-sai-lie-biao}
-<Route author="prnake" example="/luogu/contest" path="/luogu/contest" radar="1" />
+<Route data={{"path":"/contest","categories":["programming"],"example":"/luogu/contest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["luogu.com.cn/contest/list","luogu.com.cn/"]},"name":"比赛列表","maintainers":["prnake"],"url":"luogu.com.cn/contest/list","location":"contest.ts"}} />
-### 用户动态 {#luo-gu-yong-hu-dong-tai}
+### 日报 {#luo-gu-ri-bao}
-<Route author="solstice23" example="/luogu/user/feed/1" path="/luogu/user/feed/:uid" paramsDesc={['用户 UID']} radar="1" />
+<Route data={{"path":"/daily/:id?","categories":["programming"],"example":"/luogu/daily","parameters":{"id":"年度日报所在帖子 id,可在 URL 中找到,不填默认为 `47327`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["luogu.com.cn/discuss/47327","luogu.com.cn/"],"target":"/daily"},"name":"日报","maintainers":["LogicJake ","prnake ","nczitzk"],"url":"luogu.com.cn/discuss/47327","location":"daily.ts"}} />
### 用户博客 {#luo-gu-yong-hu-bo-ke}
-<Route author="ftiasch" example="/luogu/user/blog/ftiasch" path="/luogu/user/blog/:name" paramsDesc={['博客名称']} radar="1" />
-
-## 美团开放平台 {#mei-tuan-kai-fang-ping-tai}
+<Route data={{"path":"/user/blog/:name","categories":["programming"],"example":"/luogu/user/blog/ftiasch","parameters":{"name":"博客名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["luogu.com.cn/blog/:name"]},"name":"用户博客","maintainers":[],"location":"user-blog.ts"}} />
-### 美团开放平台公告 {#mei-tuan-kai-fang-ping-tai-mei-tuan-kai-fang-ping-tai-gong-gao}
+### 用户动态 {#luo-gu-yong-hu-dong-tai}
-<Route author="youzipi" example="/meituan/open/announce" path="/meituan/open/announce" notOperational="1" />
+<Route data={{"path":"/user/feed/:uid","categories":["programming"],"example":"/luogu/user/feed/1","parameters":{"uid":"用户 UID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["luogu.com.cn/user/:uid"]},"name":"用户动态","maintainers":["solstice23"],"location":"user-feed.ts"}} />
## 墨天轮 {#mo-tian-lun}
### 合辑 {#mo-tian-lun-he-ji}
-<Route author="yueneiqi" example="/modb/topic/44158" path="/modb/topic/:id" paramsDesc={['合辑序号']} radar="1" />
-
-## 平安银河实验室 {#ping-an-yin-he-shi-yan-shi}
-
-### posts {#ping-an-yin-he-shi-yan-shi-posts}
-
-<Route author="hellodword" example="/galaxylab" path="/galaxylab" />
+<Route data={{"path":"/topic/:id","categories":["programming"],"example":"/modb/topic/44158","parameters":{"id":"合辑序号"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"合辑","maintainers":["yueneiqi"],"location":"topic.ts"}} />
## 前端早早聊 {#qian-duan-zao-zao-liao}
### 文章 {#qian-duan-zao-zao-liao-wen-zhang}
-<Route author="shaomingbo" example="/zaozao/article/quality" path="/zaozao/article/:type?" paramsDesc={['文章分类']} radar="1">
- | 精品推荐 | 技术干货 | 职场成长 | 社区动态 | 组件物料 | 行业动态 |
- | --------- | -------- | -------- | --------- | -------- | -------- |
- | recommend | quality | growth | community | material | industry |
-</Route>
-
-## 微信开放平台 {#wei-xin-kai-fang-ping-tai}
-
-### 微信开放社区 - 小程序公告 {#wei-xin-kai-fang-ping-tai-wei-xin-kai-fang-she-qu-xiao-cheng-xu-gong-gao}
-
-<Route author="phantomk" example="/wechat-open/community/xcx-announce" path="/wechat-open/community/xcx-announce" />
-
-### 微信开放社区 - 小游戏公告 {#wei-xin-kai-fang-ping-tai-wei-xin-kai-fang-she-qu-xiao-you-xi-gong-gao}
-
-<Route author="phantomk" example="/wechat-open/community/xyx-announce" path="/wechat-open/community/xyx-announce" />
-
-### 微信开放社区 - 微信支付公告 {#wei-xin-kai-fang-ping-tai-wei-xin-kai-fang-she-qu-wei-xin-zhi-fu-gong-gao}
-
-<Route author="phantomk" example="/wechat-open/community/pay-announce" path="/wechat-open/community/pay-announce" />
-
-### 微信开放社区 - 小游戏问答 {#wei-xin-kai-fang-ping-tai-wei-xin-kai-fang-she-qu-xiao-you-xi-wen-da}
-
-<Route author="bestony" example="/wechat-open/community/xyx-question/0" path="/wechat-open/community/xyx-question/:category" paramsDesc={['0', 'hot', 'topic']}>
- | 全部 | 游戏引擎 | 规则 | 账号 | 运营 | 游戏审核 | API 和组件 | 框架 | 管理后台 | 开发者工具 | 客户端 | 插件 | 云开发 | 教程反馈 | 其他 |
- | ---- | -------- | ---- | ----- | ---- | -------- | ---------- | ---- | -------- | ---------- | ------ | ---- | ------ | -------- | ---- |
- | 0 | 4096 | 8192 | 16384 | 2048 | 1 | 2 | 64 | 4 | 8 | 16 | 256 | 1024 | 128 | 32 |
-</Route>
-
-### 微信开放社区 - 小程序问答 {#wei-xin-kai-fang-ping-tai-wei-xin-kai-fang-she-qu-xiao-cheng-xu-wen-da}
+<Route data={{"path":"/article/:type?","categories":["programming"],"example":"/zaozao/article/quality","parameters":{"type":"文章分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zaozao.run/article/:type"],"target":"/article/:type"},"name":"文章","maintainers":["shaomingbo"],"description":"| 精品推荐 | 技术干货 | 职场成长 | 社区动态 | 组件物料 | 行业动态 |\n | --------- | -------- | -------- | --------- | -------- | -------- |\n | recommend | quality | growth | community | material | industry |","location":"article.ts"}} />
-<Route author="bestony" example="/wechat-open/community/xcx-question/new" path="/wechat-open/community/xcx-question/:tag" paramsDesc={['new', 'hot', 'topic']}>
- | 最新 | 最热 | 热门话题 |
- | ---- | ---- | -------- |
- | new | hot | topic |
-</Route>
-
-### 微信支付 - 商户平台公告 {#wei-xin-kai-fang-ping-tai-wei-xin-zhi-fu-shang-hu-ping-tai-gong-gao}
-
-<Route author="phantomk" example="/wechat-open/pay/announce" path="/wechat-open/pay/announce" />
+| 精品推荐 | 技术干货 | 职场成长 | 社区动态 | 组件物料 | 行业动态 |
+| --------- | -------- | -------- | --------- | -------- | -------- |
+| recommend | quality | growth | community | material | industry |
## 微信小程序 {#wei-xin-xiao-cheng-xu}
-### 公众平台系统公告栏目 {#wei-xin-xiao-cheng-xu-gong-zhong-ping-tai-xi-tong-gong-gao-lan-mu}
-
-<Route author="xyqfer" example="/wechat/announce" path="/wechat/announce" />
-
-### 基础库更新日志 {#wei-xin-xiao-cheng-xu-ji-chu-ku-geng-xin-ri-zhi}
-
-<Route author="magicLaLa nczitzk" example="/weixin/miniprogram/framework" path="/weixin/miniprogram/framework" />
-
-### 开发者工具更新日志 {#wei-xin-xiao-cheng-xu-kai-fa-zhe-gong-ju-geng-xin-ri-zhi}
-
-<Route author="nczitzk" example="/weixin/miniprogram/devtools" path="/weixin/miniprogram/devtools" />
-
-### 小程序插件 {#wei-xin-xiao-cheng-xu-xiao-cheng-xu-cha-jian}
-
-<Route author="xyqfer" example="/wechat/miniprogram/plugins" path="/wechat/miniprogram/plugins" notOperational="1" />
+:::tip
+公众号直接抓取困难,故目前提供几种间接抓取方案,请自行选择
+:::
-### 云开发更新日志 {#wei-xin-xiao-cheng-xu-yun-kai-fa-geng-xin-ri-zhi}
+### 公众平台系统公告栏目 {#wei-xin-xiao-cheng-xu-gong-zhong-ping-tai-xi-tong-gong-gao-lan-mu}
-<Route author="nczitzk" example="/weixin/miniprogram/wxcloud/cloud-sdk" path="/weixin/miniprogram/wxcloud/:caty?" paramsDesc={['日志分类']}>
- | 小程序基础库更新日志(云开发部分) | IDE 云开发 & 云控制台更新日志 | wx-server-sdk 更新日志 |
- | ---------------------------------- | ----------------------------- | ---------------------- |
- | cloud-sdk | ide | server-sdk |
-</Route>
+<Route data={{"path":"/announce","categories":["programming"],"example":"/wechat/announce","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mp.weixin.qq.com/cgi-bin/announce"]},"name":"公众平台系统公告栏目","maintainers":["xyqfer"],"url":"mp.weixin.qq.com/cgi-bin/announce","location":"announce.ts"}} />
## 印记中文 {#yin-ji-zhong-wen}
-### 周刊 - JavaScript {#yin-ji-zhong-wen-zhou-kan-javascript}
+### Unknown {#yin-ji-zhong-wen-unknown}
-<Route author="hestudy" example="/docschina/weekly" path="/docschina/weekly/:category?" paramsDesc={['周刊分类,见下表,默认为js']}>
- | javascript | node | react |
- | ---------- | ---- | ----- |
- | js | node | react |
-</Route>
+<Route data={{"path":"/weekly/:category?","categories":["programming"],"example":"/docschina/weekly","parameters":{"category":"周刊分类,见下表,默认为js"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["daijinru","hestudy"],"location":"weekly.ts"}} />
diff --git a/website/docs/routes/reading.mdx b/website/docs/routes/reading.mdx
index 0a9257d71ecc9a..9b64d5d6f5a760 100644
--- a/website/docs/routes/reading.mdx
+++ b/website/docs/routes/reading.mdx
@@ -1,426 +1,233 @@
-# 📚 Reading
-
-## All Poetry {#all-poetry}
-
-### Poems {#all-poetry-poems}
-
-<Route author="HenryQW" example="/allpoetry/newest" path="/allpoetry/:order?" paramsDesc={['Ordering, `best` or `newest`, `best` by default']} />
-
-## Free Computer Books {#free-computer-books}
-
-### Selected New Books {#free-computer-books-selected-new-books}
-
-<Route author="cubroe" example="/freecomputerbooks" path="/freecomputerbooks" radar="1" />
-
-### Current Book List {#free-computer-books-current-book-list}
-
-<Route author="cubroe" example="/freecomputerbooks/compscAlgorithmBooks" path="/freecomputerbooks/:category" paramsDesc={['A category id., which should be the HTML file name (but **without** the `.html` suffix) in the URL path of a book list page.']} radar="1" />
+# reading
## hameln {#hameln}
### chapter {#hameln-chapter}
-<Route author="huangliangshusheng" example="/hameln/chapter/264928" path="/hameln/chapter/:id" paramsDesc={['Novel id, can be found in URL']}>
- Eg: [https://syosetu.org/novel/264928](https://syosetu.org/novel/264928)
-</Route>
-
-## Inoreader {#inoreader}
-
-### HTML Clip {#inoreader-html-clip}
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/hameln/chapter/264928","parameters":{"id":"Novel id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["syosetu.org/novel/:id"]},"name":"chapter","maintainers":["huangliangshusheng"],"description":"Eg: [https://syosetu.org/novel/264928](https://syosetu.org/novel/264928)","location":"chapter.ts"}} />
-<Route author="BeautyyuYanli" example="/inoreader/html_clip/1006346356/News?limit=3" path="/html_clip/:user/:tag" paramsDesc={['user id, the interger after user/ in the example URL','tag, the string after tag/ in the example URL']}>
- Use common query parameter `limit=n` to limit the number of articles, default to 20
+Eg: [https://syosetu.org/novel/264928](https://syosetu.org/novel/264928)
- Eg: [https://www.inoreader.com/stream/user/1006346356/tag/News/view/html?limit=3](https://www.inoreader.com/stream/user/1006346356/tag/News/view/html?limit=3)
-</Route>
+## Inoreader {#inoreader}
### RSS {#inoreader-rss}
-<Route author="EthanWng97" example="/inoreader/rss/1005137674/user-favorites" path="/inoreader/rss/:user/:tag" paramsDesc={['user id, the interger after user/ in the example URL','tag, the string after tag/ in the example URL']} />
+<Route data={{"path":"/rss/:user/:tag","categories":["reading"],"example":"/inoreader/rss/1005137674/user-favorites","parameters":{"user":"user id, the interger after user/ in the example URL","tag":"tag, the string after tag/ in the example URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"RSS","maintainers":["EthanWng97"],"location":"rss.ts"}} />
## Literotica {#literotica}
### New Stories {#literotica-new-stories}
-<Route author="nczitzk" example="/literotica/new" path="/literotica/new" />
-
-### Category {#literotica-category}
-
-<Route author="nczitzk" example="/literotica/category/anal-sex-stories" path="/literotica/category/:category?" paramsDesc={['Category, can be found in URL']} />
+<Route data={{"path":"/new","categories":["reading"],"example":"/literotica/new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["literotica.com/"]},"name":"New Stories","maintainers":["nczitzk"],"url":"literotica.com/","location":"new.ts"}} />
## MagazineLib {#magazinelib}
### Latest Magazine {#magazinelib-latest-magazine}
-<Route author="EthanWng97" example="/magazinelib/latest-magazine/new+yorker" path="/magazinelib/latest-magazine/:query?" paramsDesc={['query, search page querystring']} notOperational="1">
- For instance, when doing search at [https://magazinelib.com](https://magazinelib.com) and you get url `https://magazinelib.com/?s=new+yorker`, the query is `new+yorker`
-</Route>
+<Route data={{"path":"/latest-magazine/:query?","categories":["reading"],"example":"/magazinelib/latest-magazine/new+yorker","parameters":{"query":"query, search page querystring"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Latest Magazine","maintainers":["EthanWng97"],"description":"For instance, when doing search at [https://magazinelib.com](https://magazinelib.com) and you get url `https://magazinelib.com/?s=new+yorker`, the query is `new+yorker`","location":"latest-magazine.ts"}} />
+
+For instance, when doing search at [https://magazinelib.com](https://magazinelib.com) and you get url `https://magazinelib.com/?s=new+yorker`, the query is `new+yorker`
## Penguin Random House {#penguin-random-house}
-### Book Lists {#penguin-random-house-book-lists}
+### Articles {#penguin-random-house-articles}
-<Route author="StevenRCE0" example="/penguin-random-house/the-read-down" path="/penguin-random-house/the-read-down" />
+<Route data={{"path":"/articles","categories":["reading"],"example":"/penguin-random-house/articles","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["penguinrandomhouse.com/articles"]},"name":"Articles","maintainers":["StevenRCE0"],"url":"penguinrandomhouse.com/articles","location":"articles.ts"}} />
-### Articles {#penguin-random-house-articles}
+### Book Lists {#penguin-random-house-book-lists}
-<Route author="StevenRCE0" example="/penguin-random-house/articles" path="/penguin-random-house/articles" />
+<Route data={{"path":"/the-read-down","categories":["reading"],"example":"/penguin-random-house/the-read-down","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["penguinrandomhouse.com/the-read-down"]},"name":"Book Lists","maintainers":["StevenRCE0"],"url":"penguinrandomhouse.com/the-read-down","location":"thereaddown.ts"}} />
## SF 轻小说 {#sf-qing-xiao-shuo}
### 章节 {#sf-qing-xiao-shuo-zhang-jie}
-<Route author="keocheung" example="/sfacg/novel/chapter/672431" path="/sfacg/novel/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} radar="1" />
+<Route data={{"path":"/novel/chapter/:id","categories":["reading"],"example":"/sfacg/novel/chapter/672431","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["book.sfacg.com/Novel/:id/*"]},"name":"章节","maintainers":["keocheung"],"location":"novel-chapter.ts"}} />
## SoBooks {#sobooks}
-### 首页 {#sobooks-shou-ye}
-
-<Route author="nczitzk" example="/sobooks" path="/sobooks/:category?" paramsDesc={['分类, 见下表']}>
- | 分类 | 分类名 |
- | -------- | ---------------- |
- | 小说文学 | xiaoshuowenxue |
- | 历史传记 | lishizhuanji |
- | 人文社科 | renwensheke |
- | 励志成功 | lizhichenggong |
- | 经济管理 | jingjiguanli |
- | 学习教育 | xuexijiaoyu |
- | 生活时尚 | shenghuoshishang |
- | 英文原版 | yingwenyuanban |
-</Route>
-
### 标签 {#sobooks-biao-qian}
-<Route author="nczitzk" example="/sobooks/tag/小说" path="/sobooks/tag/:id?" paramsDesc={['标签, 见下表,默认为小说']}>
- 热门标签
+<Route data={{"path":"/tag/:id?","categories":["reading"],"example":"/sobooks/tag/小说","parameters":{"id":"标签, 见下表,默认为小说"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sobooks.net/books/tag/:tag"],"target":"/tag/:tag"},"name":"标签","maintainers":["nczitzk"],"description":"热门标签\n\n | 小说 | 文学 | 历史 | 日本 | 科普 | 管理 | 推理 | 社会 | 经济 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |\n | 传记 | 美国 | 悬疑 | 哲学 | 心理 | 商业 | 金融 | 思维 | 经典 |\n | 随笔 | 投资 | 文化 | 励志 | 科幻 | 成长 | 中国 | 英国 | 政治 |\n | 漫画 | 纪实 | 艺术 | 科学 | 生活 | 职场 | 散文 | 法国 | 互联网 |\n | 营销 | 奇幻 | 二战 | 股票 | 女性 | 德国 | 学习 | 战争 | 创业 |\n | 绘本 | 名著 | 爱情 | 军事 | 理财 | 教育 | 世界 | 人物 | 沟通 |","location":"tag.ts"}} />
+
+热门标签
- | 小说 | 文学 | 历史 | 日本 | 科普 | 管理 | 推理 | 社会 | 经济 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |
- | 传记 | 美国 | 悬疑 | 哲学 | 心理 | 商业 | 金融 | 思维 | 经典 |
- | 随笔 | 投资 | 文化 | 励志 | 科幻 | 成长 | 中国 | 英国 | 政治 |
- | 漫画 | 纪实 | 艺术 | 科学 | 生活 | 职场 | 散文 | 法国 | 互联网 |
- | 营销 | 奇幻 | 二战 | 股票 | 女性 | 德国 | 学习 | 战争 | 创业 |
- | 绘本 | 名著 | 爱情 | 军事 | 理财 | 教育 | 世界 | 人物 | 沟通 |
-</Route>
+| 小说 | 文学 | 历史 | 日本 | 科普 | 管理 | 推理 | 社会 | 经济 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |
+| 传记 | 美国 | 悬疑 | 哲学 | 心理 | 商业 | 金融 | 思维 | 经典 |
+| 随笔 | 投资 | 文化 | 励志 | 科幻 | 成长 | 中国 | 英国 | 政治 |
+| 漫画 | 纪实 | 艺术 | 科学 | 生活 | 职场 | 散文 | 法国 | 互联网 |
+| 营销 | 奇幻 | 二战 | 股票 | 女性 | 德国 | 学习 | 战争 | 创业 |
+| 绘本 | 名著 | 爱情 | 军事 | 理财 | 教育 | 世界 | 人物 | 沟通 |
### 归档 {#sobooks-gui-dang}
-<Route author="nczitzk" example="/sobooks/date/2020-11" path="/sobooks/date/:date?" paramsDesc={['日期,见例子,默认为当前年月']} />
+<Route data={{"path":"/date/:date?","categories":["reading"],"example":"/sobooks/date/2020-11","parameters":{"date":"日期,见例子,默认为当前年月"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sobooks.net/:category"],"target":"/:category"},"name":"归档","maintainers":["nczitzk"],"location":"date.ts"}} />
-## syosetu {#syosetu}
+### 首页 {#sobooks-shou-ye}
-### chapter {#syosetu-chapter}
+<Route data={{"path":"/:category?","categories":["reading"],"example":"/sobooks","parameters":{"category":"分类, 见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sobooks.net/:category"],"target":"/:category"},"name":"首页","maintainers":["nczitzk"],"description":"| 分类 | 分类名 |\n | -------- | ---------------- |\n | 小说文学 | xiaoshuowenxue |\n | 历史传记 | lishizhuanji |\n | 人文社科 | renwensheke |\n | 励志成功 | lizhichenggong |\n | 经济管理 | jingjiguanli |\n | 学习教育 | xuexijiaoyu |\n | 生活时尚 | shenghuoshishang |\n | 英文原版 | yingwenyuanban |","location":"index.ts"}} />
-<Route author="huangliangshusheng" example="/syosetu/chapter/n1976ey" path="/syosetu/chapter/:id" paramsDesc={['Novel id, can be found in URL']}>
- Eg: `https://ncode.syosetu.com/n1976ey/`
-</Route>
+| 分类 | 分类名 |
+| -------- | ---------------- |
+| 小说文学 | xiaoshuowenxue |
+| 历史传记 | lishizhuanji |
+| 人文社科 | renwensheke |
+| 励志成功 | lizhichenggong |
+| 经济管理 | jingjiguanli |
+| 学习教育 | xuexijiaoyu |
+| 生活时尚 | shenghuoshishang |
+| 英文原版 | yingwenyuanban |
-## UU 看书 {#uu-kan-shu}
+## syosetu {#syosetu}
+
+### chapter {#syosetu-chapter}
-### 小说更新 {#uu-kan-shu-xiao-shuo-geng-xin}
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/syosetu/chapter/n1976ey","parameters":{"id":"Novel id, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["novel18.syosetu.com/:id"]},"name":"chapter","maintainers":["huangliangshusheng"],"description":"Eg: `https://ncode.syosetu.com/n1976ey/`","location":"chapter.ts"}} />
-<Route author="jacky2001114" example="/novel/uukanshu/49621" path="/novel/uukanshu/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} />
+Eg: `https://ncode.syosetu.com/n1976ey/`
## 爱思想 {#ai-si-xiang}
### 栏目 {#ai-si-xiang-lan-mu}
-<Route author="HenryQW nczitzk" example="/aisixiang/column/722" path="/aisixiang/column/:id" paramsDesc={['栏目 ID, 可在对应栏目 URL 中找到']} />
+<Route data={{"path":"/column/:id","categories":["reading"],"example":"/aisixiang/column/722","parameters":{"id":"栏目 ID, 可在对应栏目 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["HenryQW","nczitzk"],"location":"column.ts"}} />
-### 专题 {#ai-si-xiang-zhuan-ti}
-
-<Route author="nczitzk" example="/aisixiang/zhuanti/211" path="/aisixiang/zhuanti/:id" paramsDesc={['专题 ID, 可在对应专题 URL 中找到']}>
- :::tip
- 更多专题请见 [关键词](http://www.aisixiang.com/zhuanti/)
- :::
-</Route>
+### 思想库(专栏) {#ai-si-xiang-si-xiang-ku-zhuan-lan}
-### 排行 {#ai-si-xiang-pai-hang}
+<Route data={{"path":"/thinktank/:id/:type?","categories":["reading"],"example":"/aisixiang/thinktank/WuQine/论文","parameters":{"id":"专栏 ID,一般为作者拼音,可在URL中找到","type":"栏目类型,参考下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"思想库(专栏)","maintainers":["hoilc","nczitzk"],"description":"| 论文 | 时评 | 随笔 | 演讲 | 访谈 | 著作 | 读书 | 史论 | 译作 | 诗歌 | 书信 | 科学 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |","location":"thinktank.ts"}} />
-<Route author="HenryQW nczitzk" example="/aisixiang/toplist/1/7" path="/aisixiang/toplist/:id?/:period?" paramsDesc={['类型', '范围, 仅适用于点击排行榜, 可选一天(1),一周(7),一月(30),所有(-1),默认为一天']}>
- | 文章点击排行 | 最近更新文章 | 文章推荐排行 |
- | ------------ | ------------ | ------------ |
- | 1 | 10 | 11 |
-</Route>
+| 论文 | 时评 | 随笔 | 演讲 | 访谈 | 著作 | 读书 | 史论 | 译作 | 诗歌 | 书信 | 科学 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
-### 思想库(专栏) {#ai-si-xiang-si-xiang-ku-zhuan-lan}
-
-<Route author="hoilc nczitzk" example="/aisixiang/thinktank/WuQine/论文" path="/aisixiang/thinktank/:id/:type?" paramsDesc={['专栏 ID,一般为作者拼音,可在URL中找到', '栏目类型,参考下表,默认为全部']}>
- | 论文 | 时评 | 随笔 | 演讲 | 访谈 | 著作 | 读书 | 史论 | 译作 | 诗歌 | 书信 | 科学 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
-</Route>
+### 专题 {#ai-si-xiang-zhuan-ti}
-## 笔趣阁 {#bi-qu-ge}
+<Route data={{"path":"/zhuanti/:id","categories":["reading"],"example":"/aisixiang/zhuanti/211","parameters":{"id":"专题 ID, 可在对应专题 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专题","maintainers":["nczitzk"],"description":":::tip\n 更多专题请见 [关键词](http://www.aisixiang.com/zhuanti/)\n :::","location":"zhuanti.ts"}} />
:::tip
-此处的 **笔趣阁** 指网络上使用和 **笔趣阁** 样式相似模板的小说阅读网站,包括但不限于下方列举的网址。
+更多专题请见 [关键词](http://www.aisixiang.com/zhuanti/)
:::
-| 网址 | 名称 |
-| ---------------------------------------------------- | ---------- |
-| [https://www.xbiquwx.la](https://www.xbiquwx.la) | 笔尖中文 |
-| [http://www.biqu5200.net](http://www.biqu5200.net) | 笔趣阁 |
-| [https://www.xbiquge.so](https://www.xbiquge.so) | 笔趣阁 |
-| [https://www.biqugeu.net](https://www.biqugeu.net) | 顶点小说网 |
-| [http://www.b520.cc](http://www.b520.cc) | 笔趣阁 |
-| [https://www.ahfgb.com](https://www.ahfgb.com) | 笔趣鸽 |
-| [https://www.ibiquge.la](https://www.ibiquge.la) | 香书小说 |
-| [https://www.biquge.tv](https://www.biquge.tv) | 笔趣阁 |
-| [https://www.bswtan.com](https://www.bswtan.com) | 笔书网 |
-| [https://www.biquge.co](https://www.biquge.co) | 笔趣阁 |
-| [https://www.bqzhh.com](https://www.bqzhh.com) | 笔趣阁 |
-| [http://www.biqugse.com](http://www.biqugse.com) | 笔趣阁 |
-| [https://www.ibiquge.info](https://www.ibiquge.info) | 爱笔楼 |
-| [https://www.ishuquge.com](https://www.ishuquge.com) | 书趣阁 |
-| [https://www.mayiwxw.com](https://www.mayiwxw.com) | 蚂蚁文学 |
-
-### 小说 {#bi-qu-ge-xiao-shuo}
-
-<Route author="nczitzk" example="/biquge/http://www.biqu5200.net/0_7/" path="/biquge/:url" paramsDesc={['小说 Url,即对应小说详情页的 Url,可在地址栏中找到']} anticrawler="1" radar="1">
- :::tip
- #### 使用方法
-
- 如订阅 [《大主宰》](http://www.biqu5200.net/0_7/),此时在 [biqu5200.net](http://www.biqu5200.net) 中查询得到对应小说详情页 URL 为 `http://www.biqu5200.net/0_7/`。此时,路由为 [`/biquge/http://www.biqu5200.net/0_7/`](https://rsshub.app/biquge/http://www.biqu5200.net/0_7/)
-
- 又如同样订阅 [《大主宰》](https://www.shuquge.com/txt/70/index.html),此时在 [shuquge.com](https://www.shuquge.com) 中查询得到对应小说详情页 URL 为 `https://www.shuquge.com/txt/70/index.html`。此时,把末尾的 `index.html` 去掉,路由为 [`/biquge/https://www.shuquge.com/txt/70/`](https://rsshub.app/biquge/https://www.shuquge.com/txt/70/)
-
- #### 关于章节数
-
- 路由默认返回最新 **1** 个章节,如有需要一次性获取多个章节,可在路由后指定 `limit` 参数。如上面的例子:订阅 [《大主宰》](http://www.biqu5200.net/0_7/) 并获取最新的 **10** 个章节。此时,路由为 [`/biquge/http://www.biqu5200.net/0_7/?limit=10`](https://rsshub.app/biquge/http://www.biqu5200.net/0_7/?limit=10)
-
- 需要注意的是,单次获取的所有章节更新时间统一设定为最新章节的更新时间。也就是说,获取最新的 **10** 个章节时,除了最新 **1** 个章节的更新时间是准确的(和网站一致的),其他 **9** 个章节的更新时间是不准确的。
-
- 另外,若设置获取章节数目过多,可能会触发网站反爬,导致路由不可用。
- :::
-
- :::warning
- 上方列举的网址可能部分不可用,这取决于该网站的维护者是否持续运营网站。请选择可以正常访问的网址,获取更新的前提是该网站可以正常访问。
- :::
-</Route>
-
## 超星 {#chao-xing}
### 期刊 {#chao-xing-qi-kan}
-<Route author="nczitzk" example="/chaoxing/qk/6b5c39b3dd84352be512e29df0297437" path="/chaoxing/qk/:id/:needContent?" paramsDesc={['期刊 id,可在期刊页 URL 中找到', '需要获取文章全文,填写 true/yes 表示需要,默认需要']} anticrawler="1" radar="1">
- :::tip
- 全部期刊可以在 [这里](http://qk.chaoxing.com/space/index) 找到,你也可以从 [学科分类](https://qikan.chaoxing.com/jourclassify) 和 [期刊导航](https://qikan.chaoxing.com/search/openmag) 中发现更多期刊。
+<Route data={{"path":"/qk/:id/:needContent?","categories":["reading"],"example":"/chaoxing/qk/6b5c39b3dd84352be512e29df0297437","parameters":{"id":"期刊 id,可在期刊页 URL 中找到","needContent":"需要获取文章全文,填写 true/yes 表示需要,默认需要"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"期刊","maintainers":["nczitzk"],"description":":::tip\n 全部期刊可以在 [这里](http://qk.chaoxing.com/space/index) 找到,你也可以从 [学科分类](https://qikan.chaoxing.com/jourclassify) 和 [期刊导航](https://qikan.chaoxing.com/search/openmag) 中发现更多期刊。\n\n 如订阅 [**上海文艺**](http://m.chaoxing.com/mqk/list?sw=&mags=6b5c39b3dd84352be512e29df0297437&isort=20&from=space),其 URL 为 `http://m.chaoxing.com/mqk/list?mags=6b5c39b3dd84352be512e29df0297437`。`6b5c39b3dd84352be512e29df0297437` 即为期刊 id,所得路由为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437)\n :::\n\n :::warning\n 你可以设置参数 **需要获取文章全文** 为 `true` `yes` `t` `y` 等值(或者忽略这个参数),RSS 的条目会携带期刊中的 **文章全文**,而不仅仅是 **文章概要**。但因为发起访问请求过多会被该网站屏蔽,你可以将其关闭(设置该参数为 `false` `no` `f` `n` 等值),这将会大大减少请求次数从而更难触发网站的反爬机制。\n\n 路由默认会获取 **30** 个条目。在路由后指定 `?limit=<条目数量>` 减少或增加单次获取条目数量,同样可以减少请求次数,如设置为一次获取 **10** 个条目,路由可以更改为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10)\n\n 在根据上文设置 **需要获取文章全文** 为不需要时,你可以将 `limit` 值增大,从而获取更多的条目,此时因为不获取全文也不会触发反爬机制,如 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100)\n :::","location":"qk.ts"}} />
- 如订阅 [**上海文艺**](http://m.chaoxing.com/mqk/list?sw=\&mags=6b5c39b3dd84352be512e29df0297437\&isort=20\&from=space),其 URL 为 `http://m.chaoxing.com/mqk/list?mags=6b5c39b3dd84352be512e29df0297437`。`6b5c39b3dd84352be512e29df0297437` 即为期刊 id,所得路由为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437)
- :::
+:::tip
+全部期刊可以在 [这里](http://qk.chaoxing.com/space/index) 找到,你也可以从 [学科分类](https://qikan.chaoxing.com/jourclassify) 和 [期刊导航](https://qikan.chaoxing.com/search/openmag) 中发现更多期刊。
+
+如订阅 [**上海文艺**](http://m.chaoxing.com/mqk/list?sw=\&mags=6b5c39b3dd84352be512e29df0297437\&isort=20\&from=space),其 URL 为 `http://m.chaoxing.com/mqk/list?mags=6b5c39b3dd84352be512e29df0297437`。`6b5c39b3dd84352be512e29df0297437` 即为期刊 id,所得路由为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437)
+:::
- :::warning
- 你可以设置参数 **需要获取文章全文** 为 `true` `yes` `t` `y` 等值(或者忽略这个参数),RSS 的条目会携带期刊中的 **文章全文**,而不仅仅是 **文章概要**。但因为发起访问请求过多会被该网站屏蔽,你可以将其关闭(设置该参数为 `false` `no` `f` `n` 等值),这将会大大减少请求次数从而更难触发网站的反爬机制。
+:::warning
+你可以设置参数 **需要获取文章全文** 为 `true` `yes` `t` `y` 等值(或者忽略这个参数),RSS 的条目会携带期刊中的 **文章全文**,而不仅仅是 **文章概要**。但因为发起访问请求过多会被该网站屏蔽,你可以将其关闭(设置该参数为 `false` `no` `f` `n` 等值),这将会大大减少请求次数从而更难触发网站的反爬机制。
- 路由默认会获取 **30** 个条目。在路由后指定 `?limit=<条目数量>` 减少或增加单次获取条目数量,同样可以减少请求次数,如设置为一次获取 **10** 个条目,路由可以更改为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10)
+路由默认会获取 **30** 个条目。在路由后指定 `?limit=<条目数量>` 减少或增加单次获取条目数量,同样可以减少请求次数,如设置为一次获取 **10** 个条目,路由可以更改为 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437?limit=10)
- 在根据上文设置 **需要获取文章全文** 为不需要时,你可以将 `limit` 值增大,从而获取更多的条目,此时因为不获取全文也不会触发反爬机制,如 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100)
- :::
-</Route>
+在根据上文设置 **需要获取文章全文** 为不需要时,你可以将 `limit` 值增大,从而获取更多的条目,此时因为不获取全文也不会触发反爬机制,如 [`/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100`](https://rsshub.app/chaoxing/qk/6b5c39b3dd84352be512e29df0297437/false?limit=100)
+:::
## 刺猬猫 {#ci-wei-mao}
### 章节 {#ci-wei-mao-zhang-jie}
-<Route author="keocheung" example="/ciweimao/chapter/100043404" path="/ciweimao/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} radar="1" />
-
-## 单向空间 {#dan-xiang-kong-jian}
-
-### 单读 {#dan-xiang-kong-jian-dan-du}
-
-<Route author="imkero" example="/owspace/read/0" path="/owspace/read/:type?" paramsDesc={['栏目分类,不填则默认为首页']}>
- | 首页 | 文字 | 影像 | 声音 | 单向历 | 谈论 |
- | ---- | ---- | ---- | ---- | ------ | ---- |
- | 0 | 1 | 2 | 3 | 4 | 6 |
-</Route>
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/ciweimao/chapter/100043404","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wap.ciweimao.com/book/:id"]},"name":"章节","maintainers":["keocheung"],"location":"chapter.ts"}} />
## 東立出版社 {#dong-li-chu-ban-she}
### 新聞 {#dong-li-chu-ban-she-xin-wen}
-<Route author="CokeMine" example="/tongli/news/6" path="/tongli/news/:type" paramsDesc={['分類,可以在“新聞”鏈接中找到']} radar="1" />
-
-## 飞地 {#fei-di}
-
-### 分类 {#fei-di-fen-lei}
-
-<Route author="LogicJake" example="/enclavebooks/category/1" path="/enclavebooks/category/:id" paramsDesc={['类别 id,可在[分类api](https://app.enclavebooks.cn/v2/discovery)返回数据中的category查看']} />
-
-### 用户创作 {#fei-di-yong-hu-chuang-zuo}
-
-<Route author="junbaor" example="/enclavebooks/user/103702" path="/enclavebooks/user/:uid" paramsDesc={['用户ID, 自行抓包寻找']} />
-
-### 用户收藏 {#fei-di-yong-hu-shou-cang}
-
-<Route author="junbaor" example="/enclavebooks/collection/103702" path="/enclavebooks/collection/:uid" paramsDesc={['用户ID, 自行抓包寻找']} />
+<Route data={{"path":"/news/:type","categories":["reading"],"example":"/tongli/news/6","parameters":{"type":"分類,可以在“新聞”鏈接中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新聞","maintainers":["CokeMine"],"location":"news.ts"}} />
## 欢乐书客 {#huan-le-shu-ke}
### 章节 {#huan-le-shu-ke-zhang-jie}
-<Route author="keocheung" example="/hbooker/chapter/100113279" path="/hbooker/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} radar="1" />
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/hbooker/chapter/100113279","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hbooker.com/book/:id"]},"name":"章节","maintainers":["keocheung"],"location":"chapter.ts"}} />
## 晋江文学城 {#jin-jiang-wen-xue-cheng}
-### 作者最新作品 {#jin-jiang-wen-xue-cheng-zuo-zhe-zui-xin-zuo-pin}
-
-<Route author="nczitzk" example="/jjwxc/author/4364484" path="/jjwxc/author/:id?" paramsDesc={['作者 id,可在对应作者页中找到']} radar="1" />
-
### 作品 {#jin-jiang-wen-xue-cheng-zuo-pin}
-<Route author="nczitzk" example="/jjwxc/book/7013024" path="/jjwxc/book/:id?" paramsDesc={['作品 id,可在对应作品页中找到']} radar="1" />
-
-## 禁忌书屋 {#jin-ji-shu-wu}
-
-### 首页 {#jin-ji-shu-wu-shou-ye}
+<Route data={{"path":"/book/:id?","categories":["reading"],"example":"/jjwxc/book/7013024","parameters":{"id":"作品 id,可在对应作品页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作品","maintainers":["nczitzk"],"location":"book.ts"}} />
-<Route author="nczitzk" example="/cool18/bbs4" path="/cool18/bbs4" />
-
-### 精华区 {#jin-ji-shu-wu-jing-hua-qu}
-
-<Route author="nczitzk" example="/cool18/bbs4/gold" path="/cool18/bbs4/gold" />
-
-### 栏目分类 {#jin-ji-shu-wu-lan-mu-fen-lei}
-
-<Route author="nczitzk" example="/cool18/bbs4/type/都市" path="/cool18/bbs4/type/:keyword?" paramsDesc={['分类,见下表,默认为首页']}>
- | 都市 | 校园 | 乡野 | 古风 | 异国 | 玄幻 | 红杏 | 伦理 | 浪漫 | 暴虐 | 摄心 | 其他 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
-</Route>
-
-### 搜索关键字 {#jin-ji-shu-wu-sou-suo-guan-jian-zi}
-
-<Route author="nczitzk" example="/cool18/bbs4/keywords/都市" path="/cool18/bbs4/keywords/:keyword?" paramsDesc={['关键字']} />
-
-## 孔夫子旧书网 {#kong-fu-zi-jiu-shu-wang}
-
-### 用户动态 {#kong-fu-zi-jiu-shu-wang-yong-hu-dong-tai}
-
-<Route author="nczitzk" example="/kongfz/people/5032170" path="/kongfz/people/:id" paramsDesc={['用户 id, 可在对应用户页 URL 中找到']} />
-
-### 店铺上架 {#kong-fu-zi-jiu-shu-wang-dian-pu-shang-jia}
+### 作者最新作品 {#jin-jiang-wen-xue-cheng-zuo-zhe-zui-xin-zuo-pin}
-<Route author="nczitzk" example="/kongfz/shop/238901/1" path="/kongfz/shop/:id/:cat?" paramsDesc={['店铺 id, 可在对应店铺页 URL 中找到', '分类 id,可在对应分类页 URL 中找到,默认为店铺最新上架']} />
+<Route data={{"path":"/author/:id?","categories":["reading"],"example":"/jjwxc/author/4364484","parameters":{"id":"作者 id,可在对应作者页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"作者最新作品","maintainers":["nczitzk"],"location":"author.ts"}} />
## 哩哔轻小说 {#li-bi-qing-xiao-shuo}
### 小说更新 {#li-bi-qing-xiao-shuo-xiao-shuo-geng-xin}
-<Route author="misakicoca" path="/linovelib/novel/:id" example="/linovelib/novel/2547" paramsDesc={['小说 id,对应书架开始阅读 URL 中找到']} anticrawler="1" />
+<Route data={{"path":"/novel/:id","categories":["reading"],"example":"/linovelib/novel/2547","parameters":{"id":"小说 id,对应书架开始阅读 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"小说更新","maintainers":["misakicoca"],"location":"novel.ts"}} />
## 明月中文网 {#ming-yue-zhong-wen-wang}
-### 分类 {#ming-yue-zhong-wen-wang-fen-lei}
+### 榜单 {#ming-yue-zhong-wen-wang-bang-dan}
-<Route author="nczitzk" example="/56kog/class/1_1" path="/56kog/class/:category?" paramsDesc={['分类,见下表,默认为玄幻魔法']} radar="1">
- | [玄幻魔法](https://www.56kog.com/class/1_1.html) | [武侠修真](https://www.56kog.com/class/2_1.html) | [历史军事](https://www.56kog.com/class/4_1.html) | [侦探推理](https://www.56kog.com/class/5_1.html) | [网游动漫](https://www.56kog.com/class/6_1.html) |
- | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ |
- | 1\_1 | 2\_1 | 4\_1 | 5\_1 | 6\_1 |
+<Route data={{"path":"/top/:category?","categories":["reading"],"example":"/56kog/top/weekvisit","parameters":{"category":"分类,见下表,默认为周点击榜"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"榜单","maintainers":["nczitzk"],"description":"| [周点击榜](https://www.56kog.com/top/weekvisit.html) | [总收藏榜](https://www.56kog.com/top/goodnum.html) | [最新 入库](https://www.56kog.com/top/postdate.html) |\n | ---------------------------------------------------- | -------------------------------------------------- | ---------------------------------------------------- |\n | weekvisit | goodnum | postdate |","location":"top.ts"}} />
- | [恐怖灵异](https://www.56kog.com/class/8_1.html) | [都市言情](https://www.56kog.com/class/3_1.html) | [科幻](https://www.56kog.com/class/7_1.html) | [女生小说](https://www.56kog.com/class/9_1.html) | [其他](https://www.56kog.com/class/10_1.html) |
- | ------------------------------------------------ | ------------------------------------------------ | -------------------------------------------- | ------------------------------------------------ | --------------------------------------------- |
- | 8\_1 | 3\_1 | 7\_1 | 9\_1 | 10\_1 |
-</Route>
+| [周点击榜](https://www.56kog.com/top/weekvisit.html) | [总收藏榜](https://www.56kog.com/top/goodnum.html) | [最新 入库](https://www.56kog.com/top/postdate.html) |
+| ---------------------------------------------------- | -------------------------------------------------- | ---------------------------------------------------- |
+| weekvisit | goodnum | postdate |
-### 榜单 {#ming-yue-zhong-wen-wang-bang-dan}
+### 分类 {#ming-yue-zhong-wen-wang-fen-lei}
-<Route author="nczitzk" example="/56kog/top/weekvisit" path="/56kog/top/:category?" paramsDesc={['分类,见下表,默认为周点击榜']} radar="1">
- | [周点击榜](https://www.56kog.com/top/weekvisit.html) | [总收藏榜](https://www.56kog.com/top/goodnum.html) | [最新 入库](https://www.56kog.com/top/postdate.html) |
- | ---------------------------------------------------- | -------------------------------------------------- | ---------------------------------------------------- |
- | weekvisit | goodnum | postdate |
-</Route>
+<Route data={{"path":"/class/:category?","categories":["reading"],"example":"/56kog/class/1_1","parameters":{"category":"分类,见下表,默认为玄幻魔法"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| [玄幻魔法](https://www.56kog.com/class/1_1.html) | [武侠修真](https://www.56kog.com/class/2_1.html) | [历史军事](https://www.56kog.com/class/4_1.html) | [侦探推理](https://www.56kog.com/class/5_1.html) | [网游动漫](https://www.56kog.com/class/6_1.html) |\n | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ |\n | 1_1 | 2_1 | 4_1 | 5_1 | 6_1 |\n\n | [恐怖灵异](https://www.56kog.com/class/8_1.html) | [都市言情](https://www.56kog.com/class/3_1.html) | [科幻](https://www.56kog.com/class/7_1.html) | [女生小说](https://www.56kog.com/class/9_1.html) | [其他](https://www.56kog.com/class/10_1.html) |\n | ------------------------------------------------ | ------------------------------------------------ | -------------------------------------------- | ------------------------------------------------ | --------------------------------------------- |\n | 8_1 | 3_1 | 7_1 | 9_1 | 10_1 |","location":"class.ts"}} />
-## 起点 {#qi-dian}
+| [玄幻魔法](https://www.56kog.com/class/1_1.html) | [武侠修真](https://www.56kog.com/class/2_1.html) | [历史军事](https://www.56kog.com/class/4_1.html) | [侦探推理](https://www.56kog.com/class/5_1.html) | [网游动漫](https://www.56kog.com/class/6_1.html) |
+| ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ | ------------------------------------------------ |
+| 1\_1 | 2\_1 | 4\_1 | 5\_1 | 6\_1 |
-### 章节 {#qi-dian-zhang-jie}
+| [恐怖灵异](https://www.56kog.com/class/8_1.html) | [都市言情](https://www.56kog.com/class/3_1.html) | [科幻](https://www.56kog.com/class/7_1.html) | [女生小说](https://www.56kog.com/class/9_1.html) | [其他](https://www.56kog.com/class/10_1.html) |
+| ------------------------------------------------ | ------------------------------------------------ | -------------------------------------------- | ------------------------------------------------ | --------------------------------------------- |
+| 8\_1 | 3\_1 | 7\_1 | 9\_1 | 10\_1 |
-<Route author="fuzy112" example="/qidian/chapter/1010400217" path="/qidian/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} />
+## 起点 {#qi-dian}
### 讨论区 {#qi-dian-tao-lun-qu}
-<Route author="fuzy112" example="/qidian/forum/1010400217" path="/qidian/forum/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} notOperational="1" />
+<Route data={{"path":"/forum/:id","categories":["reading"],"example":"/qidian/forum/1010400217","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["book.qidian.com/info/:id"]},"name":"讨论区","maintainers":["fuzy112"],"location":"forum.ts"}} />
### 限时免费 {#qi-dian-xian-shi-mian-fei}
-<Route author="LogicJake" example="/qidian/free" path="/qidian/free/:type?" paramsDesc={['默认不填为起点中文网,填 mm 为起点女生网']} />
+<Route data={{"path":"/free/:type?","categories":["reading"],"example":"/qidian/free","parameters":{"type":"默认不填为起点中文网,填 mm 为起点女生网"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.qidian.com/free"],"target":"/free"},"name":"限时免费","maintainers":["LogicJake"],"url":"www.qidian.com/free","location":"free.ts"}} />
### 限时免费下期预告 {#qi-dian-xian-shi-mian-fei-xia-qi-yu-gao}
-<Route author="LogicJake" example="/qidian/free-next" path="/qidian/free-next/:type?" paramsDesc={['默认不填为起点中文网,填 mm 为起点女生网']} />
-
-### 作者 {#qi-dian-zuo-zhe}
+<Route data={{"path":"/free-next/:type?","categories":["reading"],"example":"/qidian/free-next","parameters":{"type":"默认不填为起点中文网,填 mm 为起点女生网"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.qidian.com/free"],"target":"/free"},"name":"限时免费下期预告","maintainers":["LogicJake"],"url":"www.qidian.com/free","location":"free-next.ts"}} />
-<Route author="miles170" example="/qidian/author/9639927" path="/qidian/author/:id" paramsDesc={['作者 id, 可在作者页面 URL 找到']} />
+### 章节 {#qi-dian-zhang-jie}
-## 青空文庫 {#qing-kong-wen-ku}
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/qidian/chapter/1010400217","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["book.qidian.com/info/:id"]},"name":"章节","maintainers":["fuzy112"],"location":"chapter.ts"}} />
-### 青空文庫新着リスト {#qing-kong-wen-ku-qing-kong-wen-ku-xin-zhe-%E3%83%AA%E3%82%B9%E3%83%88}
+### 作者 {#qi-dian-zuo-zhe}
-<Route author="sgqy" example="/aozora/newbook/10" path="/aozora/newbook/:count?" paramsDesc={['更新数量. 设置每次下载列表大小. 范围是 1 到 50.']}>
- 书籍网站每日一更。信息更新时间为书籍最初出版时间,排序可能不符合网络发表时间,请认准未读消息.
-</Route>
+<Route data={{"path":"/author/:id","categories":["reading"],"example":"/qidian/author/9639927","parameters":{"id":"作者 id, 可在作者页面 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["my.qidian.com/author/:id"]},"name":"作者","maintainers":["miles170"],"location":"author.ts"}} />
## 轻小说文库 {#qing-xiao-shuo-wen-ku}
### 章节 {#qing-xiao-shuo-wen-ku-zhang-jie}
-<Route author="zsakvo" example="/wenku8/chapter/74" path="/wenku8/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} anticrawler="1" />
+<Route data={{"path":"/chapter/:id","categories":["reading"],"example":"/wenku8/chapter/74","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"章节","maintainers":["zsakvo"],"location":"chapter.ts"}} />
### 最新卷 {#qing-xiao-shuo-wen-ku-zui-xin-juan}
-<Route author="huangliangshusheng" example="/wenku8/volume/1163" path="/wenku8/volume/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} radar="1" />
-
-### 首页分类 {#qing-xiao-shuo-wen-ku-shou-ye-fen-lei}
-
-<Route author="Fatpandac" example="/wenku8/lastupdate" path="/wenku8/:categoty?" paramsDesc={['首页分类,见下表,默认为今日更新']} configRequired="1">
- :::warning
- 首页需要登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-
- | 今日更新 | 完结全本 | 新书一览 | 动画化作品 | 热门轻小说 | 轻小说列表 |
- | :--------: | :------: | :------: | :--------: | :--------: | :---------: |
- | lastupdate | fullflag | postdate | anime | allvisit | articlelist |
-</Route>
+<Route data={{"path":"/volume/:id","categories":["reading"],"example":"/wenku8/volume/1163","parameters":{"id":"小说 id, 可在对应小说页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新卷","maintainers":["huangliangshusheng"],"location":"volume.ts"}} />
## 日本語多読道場 {#ri-ben-yu-duo-du-dao-chang}
### 等级 {#ri-ben-yu-duo-du-dao-chang-deng-ji}
-<Route author="eternasuno" example="/yomujp/n1" path="/yomujp/:level?" paramsDesc={['等级,n1~n6,为空默认全部']} />
+<Route data={{"path":"/:level?","categories":["reading"],"example":"/yomujp/n1","parameters":{"level":"等级,n1~n6,为空默认全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yomujp.com/","yomujp.com/:level"],"target":"/:level"},"name":"等级","maintainers":["eternasuno"],"url":"yomujp.com/","location":"level.ts"}} />
## 书伴 {#shu-ban}
### 分类 {#shu-ban-fen-lei}
-<Route author="OdinZhang" example="/bookfere/skills" path="/bookfere/:category" paramsDesc={['分类名']}>
- | 每周一书 | 使用技巧 | 图书推荐 | 新闻速递 | 精选短文 |
- | -------- | -------- | -------- | -------- | -------- |
- | weekly | skills | books | news | essay |
-</Route>
-
-## 虛詞 {#xu-ci}
-
-### 版块 {#xu-ci-ban-kuai}
-
-<Route author="LogicJake" example="/p-articles/section/critics-art" path="/p-articles/section/:section" paramsDesc={['版块链接, 可在对应版块 URL 中找到, 子版块链接用`-`连接']} />
-
-### 作者 {#xu-ci-zuo-zhe}
-
-<Route author="LogicJake" example="/p-articles/contributors/朗天" path="/p-articles/contributors/:author" paramsDesc={['作者 id, 可在作者页面 URL 找到']} />
-
-## 中国的中古 {#zhong-guo-de-zhong-gu}
-
-### 首页 {#zhong-guo-de-zhong-gu-shou-ye}
-
-<Route author="artefaritaKuniklo" example="/medieval-china" path="/medieval-china" />
-
-## 纵横 {#zong-heng}
-
-### 章节 {#zong-heng-zhang-jie}
-
-<Route author="georeth" example="/zongheng/chapter/672340" path="/zongheng/chapter/:id" paramsDesc={['小说 id, 可在对应小说页 URL 中找到']} />
-
-## 左岸读书 {#zuo-an-du-shu}
-
-### 主页 {#zuo-an-du-shu-zhu-ye}
+<Route data={{"path":"/:category","categories":["reading"],"example":"/bookfere/skills","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["OdinZhang"],"description":"| 每周一书 | 使用技巧 | 图书推荐 | 新闻速递 | 精选短文 |\n | -------- | -------- | -------- | -------- | -------- |\n | weekly | skills | books | news | essay |","location":"category.ts"}} />
-<Route author="kt286" example="/zreading" path="/zreading" />
+| 每周一书 | 使用技巧 | 图书推荐 | 新闻速递 | 精选短文 |
+| -------- | -------- | -------- | -------- | -------- |
+| weekly | skills | books | news | essay |
diff --git a/website/docs/routes/shopping.mdx b/website/docs/routes/shopping.mdx
index 3b611d111634f1..b62d59ba5f36e8 100644
--- a/website/docs/routes/shopping.mdx
+++ b/website/docs/routes/shopping.mdx
@@ -1,201 +1,165 @@
-# 🛍️ Shopping
+# shopping
## 0818 团 {#0818-tuan}
### 分类 {#0818-tuan-fen-lei}
-<Route author="TonyRL" example="/0818tuan" path="/0818tuan/:listId?" paramsDesc={['活动分类,见下表,默认为 `1`']} radar="1">
- | 最新线报 | 实测活动 | 优惠券 |
- | -------- | -------- | ------ |
- | 1 | 2 | 3 |
-</Route>
+<Route data={{"path":"/:listId?","categories":["shopping"],"example":"/0818tuan","parameters":{"listId":"活动分类,见下表,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["TonyRL"],"description":"| 最新线报 | 实测活动 | 优惠券 |\n | -------- | -------- | ------ |\n | 1 | 2 | 3 |","location":"index.ts"}} />
-## AppSales {#appsales}
-
-### Apps {#appsales-apps}
-
-<Route author="nczitzk" example="/appsales/highlights" path="/appsales/:caty?/:time?" paramsDesc={['Category, `highlights` by default', 'Time, `24h` by default']}>
- Category
-
- | Highlights | Active Sales | Now Free | Watchlist Charts |
- | ---------- | ------------ | -------- | ---------------- |
- | highlights | activesales | nowfree | mostwanted |
-
- Time
-
- | the latest 24 hours | the latest week | all the time |
- | ------------------- | --------------- | ------------ |
- | 24h | week | alltime |
-
- :::tip
- Parameter `time` only works when `mostwanted` is chosen as the category.
- :::
-</Route>
+| 最新线报 | 实测活动 | 优惠券 |
+| -------- | -------- | ------ |
+| 1 | 2 | 3 |
## Arcteryx {#arcteryx}
### New Arrivals {#arcteryx-new-arrivals}
-<Route author="EthanWng97" example="/arcteryx/new-arrivals/us/mens" path="/arcteryx/new-arrivals/:country/:gender" paramsDesc={['country', 'gender']} anticrawler="1">
- Country
+<Route data={{"path":"/new-arrivals/:country/:gender","categories":["shopping"],"example":"/arcteryx/new-arrivals/us/mens","parameters":{"country":"country","gender":"gender"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["arcteryx.com/:country/en/c/:gender/new-arrivals"]},"name":"New Arrivals","maintainers":["EthanWng97"],"description":"Country\n\n | United States | Canada | United Kingdom |\n | ------------- | ------ | -------------- |\n | us | ca | gb |\n\n gender\n\n | male | female |\n | ---- | ------ |\n | mens | womens |\n\n :::tip\n Parameter `country` can be found within the url of `Arcteryx` website.\n :::","location":"new-arrivals.ts"}} />
- | United States | Canada | United Kingdom |
- | ------------- | ------ | -------------- |
- | us | ca | gb |
+Country
- gender
+| United States | Canada | United Kingdom |
+| ------------- | ------ | -------------- |
+| us | ca | gb |
- | male | female |
- | ---- | ------ |
- | mens | womens |
+gender
- :::tip
- Parameter `country` can be found within the url of `Arcteryx` website.
- :::
-</Route>
+| male | female |
+| ---- | ------ |
+| mens | womens |
+
+:::tip
+Parameter `country` can be found within the url of `Arcteryx` website.
+:::
### Outlet {#arcteryx-outlet}
-<Route author="EthanWng97" example="/arcteryx/outlet/us/mens" path="/arcteryx/outlet/:country/:gender" paramsDesc={['country', 'gender']} anticrawler="1">
- Country
+<Route data={{"path":"/outlet/:country/:gender","categories":["shopping"],"example":"/arcteryx/outlet/us/mens","parameters":{"country":"country","gender":"gender"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["outlet.arcteryx.com/:country/en/c/:gender"]},"name":"Outlet","maintainers":["EthanWng97"],"description":"Country\n\n | United States | Canada | United Kingdom |\n | ------------- | ------ | -------------- |\n | us | ca | gb |\n\n gender\n\n | male | female |\n | ---- | ------ |\n | mens | womens |\n\n :::tip\n Parameter `country` can be found within the url of `Arcteryx` website.\n :::","location":"outlet.ts"}} />
+
+Country
- | United States | Canada | United Kingdom |
- | ------------- | ------ | -------------- |
- | us | ca | gb |
+| United States | Canada | United Kingdom |
+| ------------- | ------ | -------------- |
+| us | ca | gb |
- gender
+gender
- | male | female |
- | ---- | ------ |
- | mens | womens |
+| male | female |
+| ---- | ------ |
+| mens | womens |
- :::tip
- Parameter `country` can be found within the url of `Arcteryx` website.
- :::
-</Route>
+:::tip
+Parameter `country` can be found within the url of `Arcteryx` website.
+:::
### Regear New Arrivals {#arcteryx-regear-new-arrivals}
-<Route author="EthanWng97" example="/arcteryx/regear/new-arrivals" path="/arcteryx/regear/new-arrivals" />
+<Route data={{"path":"/regear/new-arrivals","categories":["shopping"],"example":"/arcteryx/regear/new-arrivals","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["regear.arcteryx.com/shop/new-arrivals","regear.arcteryx.com/"]},"name":"Regear New Arrivals","maintainers":["EthanWng97"],"url":"regear.arcteryx.com/shop/new-arrivals","location":"regear-new-arrivals.ts"}} />
## Bellroy {#bellroy}
### New Releases {#bellroy-new-releases}
-<Route author="EthanWng97" example="/bellroy/new-releases" path="/bellroy/new-releases" />
-
-## booth.pm {#booth-pm}
-
-### Shop {#booth-pm-shop}
-
-<Route author="KTachibanaM" example="/booth.pm/shop/annn-boc0123" path="/booth.pm/shop/:subdomain" paramsDesc={['Shop subdomain']} />
+<Route data={{"path":"/new-releases","categories":["shopping"],"example":"/bellroy/new-releases","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bellroy.com/collection/new-releases","bellroy.com/"]},"name":"New Releases","maintainers":["EthanWng97"],"url":"bellroy.com/collection/new-releases","location":"new-releases.ts"}} />
## Furstar {#furstar}
-### 最新售卖角色列表 {#furstar-zui-xin-shou-mai-jue-se-lie-biao}
+### 画师列表 {#furstar-hua-shi-lie-biao}
-<Route author="NeverBehave" example="/furstar/characters/cn" path="/furstar/characters/:lang?" paramsDesc={['语言, 留空为jp, 支持cn, en']} />
+<Route data={{"path":"/artists/:lang?","categories":["shopping"],"example":"/furstar/artists/cn","parameters":{"lang":"语言, 留空为jp, 支持cn, en"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["furstar.jp/"],"target":"/artists"},"name":"画师列表","maintainers":["NeverBehave"],"url":"furstar.jp/","location":"artists.ts"}} />
### 已经出售的角色列表 {#furstar-yi-jing-chu-shou-de-jue-se-lie-biao}
-<Route author="NeverBehave" example="/furstar/archive/cn" path="/furstar/archive/:lang?" paramsDesc={['语言, 留空为jp, 支持cn, en']} />
+<Route data={{"path":"/archive/:lang?","categories":["shopping"],"example":"/furstar/archive/cn","parameters":{"lang":"语言, 留空为jp, 支持cn, en"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["furstar.jp/:lang/archive.php","furstar.jp/archive.php"],"target":"/archive/:lang"},"name":"已经出售的角色列表","maintainers":["NeverBehave"],"location":"archive.ts"}} />
-### 画师列表 {#furstar-hua-shi-lie-biao}
+### 最新售卖角色列表 {#furstar-zui-xin-shou-mai-jue-se-lie-biao}
-<Route author="NeverBehave" example="/furstar/artists/cn" path="/furstar/artists/:lang?" paramsDesc={['语言, 留空为jp, 支持cn, en']} />
+<Route data={{"path":"/characters/:lang?","categories":["shopping"],"example":"/furstar/characters/cn","parameters":{"lang":"语言, 留空为jp, 支持cn, en"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["furstar.jp/:lang","furstar.jp/"],"target":"/characters/:lang"},"name":"最新售卖角色列表","maintainers":["NeverBehave"],"location":"index.ts"}} />
## Gumroad {#gumroad}
### Products {#gumroad-products}
-<Route author="Fatpandac" example="/gumroad/afkmaster/Eve10" path="/gumroad/:username/:products" paramsDesc={['username, can be found in URL', 'products name, can be found in URL']} radar="1" notOperational="1">
- `https://afkmaster.gumroad.com/l/Eve10` -> `/gumroad/afkmaster/Eve10`
-</Route>
+<Route data={{"path":"/:username/:products","categories":["shopping"],"example":"/gumroad/afkmaster/Eve10","parameters":{"username":"username, can be found in URL","products":"products name, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Products","maintainers":["Fatpandac"],"description":"`https://afkmaster.gumroad.com/l/Eve10` -> `/gumroad/afkmaster/Eve10`","location":"index.ts"}} />
+
+`https://afkmaster.gumroad.com/l/Eve10` -> `/gumroad/afkmaster/Eve10`
## hotukdeals {#hotukdeals}
-### thread {#hotukdeals-thread}
+### hottest {#hotukdeals-hottest}
-<Route author="DIYgod" example="/hotukdeals/hot" path="/hotukdeals/:type" paramsDesc={['should be one of highlights, hot, new, discussed']} anticrawler="1" />
+<Route data={{"path":"/hottest","categories":["shopping"],"example":"/hotukdeals/hottest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.hotukdeals.com/"]},"name":"hottest","maintainers":["DIYgod"],"url":"www.hotukdeals.com/","location":"hottest.ts"}} />
-### hottest {#hotukdeals-hottest}
+### thread {#hotukdeals-thread}
-<Route author="DIYgod" example="/hotukdeals/hottest" path="/hotukdeals/hottest" anticrawler="1" />
+<Route data={{"path":"/:type","categories":["shopping"],"example":"/hotukdeals/hot","parameters":{"type":"should be one of highlights, hot, new, discussed"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"thread","maintainers":["DIYgod"],"location":"index.ts"}} />
## IKEA {#ikea}
### UK - New Product Release {#ikea-uk-new-product-release}
-<Route author="HenryQW" example="/ikea/gb/new" path="/ikea/gb/new" notOperational="1" />
+<Route data={{"path":"/gb/new","categories":["shopping"],"example":"/ikea/gb/new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ikea.com/gb/en/new/new-products/","ikea.com/"]},"name":"UK - New Product Release","maintainers":["HenryQW"],"url":"ikea.com/gb/en/new/new-products/","location":"gb/new.ts"}} />
### UK - Offers {#ikea-uk-offers}
-<Route author="HenryQW" example="/ikea/gb/offer" path="/ikea/gb/offer" notOperational="1" />
+<Route data={{"path":"/gb/offer","categories":["shopping"],"example":"/ikea/gb/offer","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ikea.com/gb/en/offers","ikea.com/"]},"name":"UK - Offers","maintainers":["HenryQW"],"url":"ikea.com/gb/en/offers","location":"gb/offer.ts"}} />
-### 中国 - 会员特惠 {#ikea-zhong-guo-hui-yuan-te-hui}
+### 中国 - 当季新品推荐 {#ikea-zhong-guo-dang-ji-xin-pin-tui-jian}
-<Route author="jzhangdev" example="/ikea/cn/family_offers" path="/ikea/cn/family_offers" radar="1" notOperational="1" />
+<Route data={{"path":"/cn/new","categories":["shopping"],"example":"/ikea/cn/new","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ikea.cn/cn/zh/new/","ikea.cn/"]},"name":"中国 - 当季新品推荐","maintainers":["jzhangdev"],"url":"ikea.cn/cn/zh/new/","location":"cn/new.ts"}} />
### 中国 - 低价优选 {#ikea-zhong-guo-di-jia-you-xuan}
-<Route author="jzhangdev" example="/ikea/cn/low_price" path="/ikea/cn/low_price" radar="1" />
+<Route data={{"path":"/cn/low_price","categories":["shopping"],"example":"/ikea/cn/low_price","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ikea.cn/cn/zh/campaigns/wo3-men2-de-chao1-zhi2-di1-jia4-pub8b08af40","ikea.cn/"]},"name":"中国 - 低价优选","maintainers":["jzhangdev"],"url":"ikea.cn/cn/zh/campaigns/wo3-men2-de-chao1-zhi2-di1-jia4-pub8b08af40","location":"cn/low-price.ts"}} />
-### 中国 - 当季新品推荐 {#ikea-zhong-guo-dang-ji-xin-pin-tui-jian}
+### 中国 - 会员特惠 {#ikea-zhong-guo-hui-yuan-te-hui}
-<Route author="jzhangdev" example="/ikea/cn/new" path="/ikea/cn/new" radar="1" />
+<Route data={{"path":"/cn/family_offers","categories":["shopping"],"example":"/ikea/cn/family_offers","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ikea.cn/cn/zh/offers/family-offers","ikea.cn/"]},"name":"中国 - 会员特惠","maintainers":["jzhangdev"],"url":"ikea.cn/cn/zh/offers/family-offers","location":"cn/family-offers.ts"}} />
## MyFigureCollection {#myfigurecollection}
### Activity {#myfigurecollection-activity}
-<Route author="nczitzk" example="/myfigurecollection/activity" path="/myfigurecollection/activity/:category?/:language?/:latestAdditions?/:latestEdits?/:latestAlerts?/:latestPictures?" paramsDesc={['Category, Figures by default', 'Language, as above, `en` by default', 'Latest Additions, on as `1` by default, off as `0`', 'Changes, on as `1` by default, off as `0`', 'Alerts, on as `1` by default, off as `0`', 'Pictures, on as `1` by default, off as `0`']}>
- Category
-
- | Figures | Goods | Media |
- | ------- | ----- | ----- |
- | 0 | 1 | 2 |
-
- Language
-
- | Id | Language |
- | -- | ---------- |
- | | en |
- | de | Deutsch |
- | es | Español |
- | fi | Suomeksi |
- | fr | Français |
- | it | Italiano |
- | ja | 日本語 |
- | nl | Nederlands |
- | no | Norsk |
- | pl | Polski |
- | pt | Português |
- | ru | Русский |
- | sv | Svenska |
- | zh | 中文 |
-</Route>
-
-### Pictures {#myfigurecollection-pictures}
-
-<Route author="nczitzk" example="/myfigurecollection/potd" path="/myfigurecollection/:category?/:language?" paramsDesc={['Category, Pictures OTD by default', 'Language, as above, `en` by default']}>
- | Pictures OTD | Pictures OTW | Pictures OTM |
- | ------------ | ------------ | ------------ |
- | potd | potw | potm |
-</Route>
+<Route data={{"path":"/activity/:category?/:language?/:latestAdditions?/:latestEdits?/:latestAlerts?/:latestPictures?","categories":["shopping"],"example":"/myfigurecollection/activity","parameters":{"category":"Category, Figures by default","language":"Language, as above, `en` by default","latestAdditions":"Latest Additions, on as `1` by default, off as `0`","latestEdits":"Changes, on as `1` by default, off as `0`","latestAlerts":"Alerts, on as `1` by default, off as `0`","latestPictures":"Pictures, on as `1` by default, off as `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zh.myfigurecollection.net/browse","zh.myfigurecollection.net/"],"target":"/:category?/:language?"},"name":"Activity","maintainers":["nczitzk"],"url":"zh.myfigurecollection.net/browse","description":"Category\n\n | Figures | Goods | Media |\n | ------- | ----- | ----- |\n | 0 | 1 | 2 |\n\n Language\n\n | Id | Language |\n | -- | ---------- |\n | | en |\n | de | Deutsch |\n | es | Español |\n | fi | Suomeksi |\n | fr | Français |\n | it | Italiano |\n | ja | 日本語 |\n | nl | Nederlands |\n | no | Norsk |\n | pl | Polski |\n | pt | Português |\n | ru | Русский |\n | sv | Svenska |\n | zh | 中文 |","location":"activity.ts"}} />
+
+Category
+
+| Figures | Goods | Media |
+| ------- | ----- | ----- |
+| 0 | 1 | 2 |
+
+Language
+
+| Id | Language |
+| -- | ---------- |
+| | en |
+| de | Deutsch |
+| es | Español |
+| fi | Suomeksi |
+| fr | Français |
+| it | Italiano |
+| ja | 日本語 |
+| nl | Nederlands |
+| no | Norsk |
+| pl | Polski |
+| pt | Português |
+| ru | Русский |
+| sv | Svenska |
+| zh | 中文 |
### 圖片 {#myfigurecollection-tu-pian}
-<Route author="nczitzk" example="/myfigurecollection/potd" path="/myfigurecollection/:category?/:language?" paramsDesc={['分类,默认为每日圖片', '语言,见上表,默认为空,即 `en`']}>
- | 每日圖片 | 每週圖片 | 每月圖片 |
- | -------- | -------- | -------- |
- | potd | potw | potm |
-</Route>
+<Route data={{"path":"/:category?/:language?","categories":["shopping"],"example":"/myfigurecollection/potd","parameters":{"category":"分类,默认为每日圖片","language":"语言,见上表,默认为空,即 `en`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zh.myfigurecollection.net/browse","zh.myfigurecollection.net/"]},"name":"圖片","maintainers":["nczitzk"],"url":"zh.myfigurecollection.net/browse","description":"| 每日圖片 | 每週圖片 | 每月圖片 |\n | -------- | -------- | -------- |\n | potd | potw | potm |","location":"index.ts"}} />
+
+| 每日圖片 | 每週圖片 | 每月圖片 |
+| -------- | -------- | -------- |
+| potd | potw | potm |
## MyMusicSheet {#mymusicsheet}
### User Sheets {#mymusicsheet-user-sheets}
-<Route author="Freddd13" example="/mymusicsheet/user/sheets/HalcyonMusic/USD/1" path="/mymusicsheet/user/sheets/:username/:iso?/:freeOnly?" paramsDesc={['用户名,可在URL中找到', '用于显示价格的ISO 4217货币代码, 支持常见代码, 默认为人民币, 即`CNY`', '只返回免费谱, 任意值为开启']} radar="1" />
+<Route data={{"path":"/user/sheets/:username/:iso?/:freeOnly?","categories":["shopping"],"example":"/mymusicsheet/user/sheets/HalcyonMusic/USD/1","parameters":{"username":"用户名,可在URL中找到","iso":"用于显示价格的ISO 4217货币代码, 支持常见代码, 默认为人民币, 即`CNY`","freeOnly":"只返回免费谱, 任意值为开启"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mymusicsheet.com/:username/*","mymusicsheet.com/:username"],"target":"/user/sheets/:username"},"name":"User Sheets","maintainers":["Freddd13"],"description":"关于 ISO 4217,请参考[维基百科](https://zh.wikipedia.org/zh-cn/ISO_4217#%E7%8E%B0%E8%A1%8C%E4%BB%A3%E7%A0%81)","location":"usersheets.ts"}} />
关于 ISO 4217,请参考[维基百科](https://zh.wikipedia.org/zh-cn/ISO_4217#%E7%8E%B0%E8%A1%8C%E4%BB%A3%E7%A0%81)
@@ -203,35 +167,35 @@
### New Arrivals {#patagonia-new-arrivals}
-<Route author="EthanWng97" example="/patagonia/new-arrivals/mens" path="/patagonia/new-arrivals/:category" paramsDesc={['category, see below']}>
- | Men's | Women's | Kids' & Baby | Packs & Gear |
- | ----- | ------- | ------------ | ------------ |
- | mens | womens | kids | luggage |
-</Route>
+<Route data={{"path":"/new-arrivals/:category","categories":["shopping"],"example":"/patagonia/new-arrivals/mens","parameters":{"category":"category, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"New Arrivals","maintainers":[],"description":"| Men's | Women's | Kids' & Baby | Packs & Gear |\n | ----- | ------- | ------------ | ------------ |\n | mens | womens | kids | luggage |","location":"new-arrivals.ts"}} />
+
+| Men's | Women's | Kids' & Baby | Packs & Gear |
+| ----- | ------- | ------------ | ------------ |
+| mens | womens | kids | luggage |
## ShopBack {#shopback}
### Store {#shopback-store}
-<Route author="nczitzk" example="/shopback/shopee-mart" path="/shopback/:store" paramsDesc={['Store, can be found in URL']} />
+<Route data={{"path":"/:store","categories":["shopping"],"example":"/shopback/shopee-mart","parameters":{"store":"Store, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["shopback.com.tw/:category","shopback.com.tw/"]},"name":"Store","maintainers":["nczitzk"],"location":"store.ts"}} />
## Snow Peak {#snow-peak}
### New Arrivals(USA) {#snow-peak-new-arrivals-usa}
-<Route author="EthanWng97" example="/snowpeak/us/new-arrivals" path="/snowpeak/us/new-arrivals" />
+<Route data={{"path":"/us/new-arrivals","categories":["shopping"],"example":"/snowpeak/us/new-arrivals","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["snowpeak.com/collections/new-arrivals","snowpeak.com/"]},"name":"New Arrivals(USA)","maintainers":["EthanWng97"],"url":"snowpeak.com/collections/new-arrivals","location":"us-new-arrivals.ts"}} />
## Uniqlo {#uniqlo}
### New Arrivals {#uniqlo-new-arrivals}
-<Route author="DIYgod" example="/uniqlo/new/sg/men" path="/uniqlo/new/:country/:category" paramsDesc={['currently only supports sg, us, jp', 'supports `men` `women`, `kids`, `baby`']} radar="1" />
+<Route data={{"path":"/new/:country/:category","categories":["shopping"],"example":"/uniqlo/new/sg/men","parameters":{"country":"currently only supports sg, us, jp","category":"supports `men` `women`, `kids`, `baby`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"New Arrivals","maintainers":["DIYgod"],"location":"new.ts"}} />
## Zagg {#zagg}
### New Arrivals {#zagg-new-arrivals}
-<Route author="EthanWng97" example="/zagg/new-arrivals/brand=164&cat=3038,3041" path="/zagg/new-arrivals/:query?" paramsDesc={['query, search page querystring']} notOperational="1" />
+<Route data={{"path":"/new-arrivals/:query?","categories":["shopping"],"example":"/zagg/new-arrivals/brand=164&cat=3038,3041","parameters":{"query":"query, search page querystring"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"New Arrivals","maintainers":["EthanWng97"],"description":"For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3041`, the query is `brand=164&cat=3038%2C3041`","location":"new-arrivals.ts"}} />
For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3041`, the query is `brand=164&cat=3038%2C3041`
@@ -239,7 +203,7 @@ For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3
### 票务更新 {#da-mai-wang-piao-wu-geng-xin}
-<Route author="hoilc" example="/damai/activity/上海/音乐会/全部/柴可夫斯基" path="/damai/activity/:city/:category/:subcategory/:keyword?" paramsDesc={['城市,如果不需要限制,请填入`全部`', '分类,如果不需要限制,请填入`全部`', '子分类,如果不需要限制,请填入`全部`', '搜索关键字,置空为不限制']} radar="1" />
+<Route data={{"path":"/activity/:city/:category/:subcategory/:keyword?","categories":["shopping"],"example":"/damai/activity/上海/音乐会/全部/柴可夫斯基","parameters":{"city":"城市,如果不需要限制,请填入`全部`","category":"分类,如果不需要限制,请填入`全部`","subcategory":"子分类,如果不需要限制,请填入`全部`","keyword":"搜索关键字,置空为不限制"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"票务更新","maintainers":["hoilc"],"description":"城市、分类名、子分类名,请参见[大麦网搜索页面](https://search.damai.cn/search.htm)","location":"activity.ts"}} />
城市、分类名、子分类名,请参见[大麦网搜索页面](https://search.damai.cn/search.htm)
@@ -247,87 +211,51 @@ For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3
### 搜索结果 {#duo-zhua-yu-sou-suo-jie-guo}
-<Route author="fengkx" example="/duozhuayu/search/JavaScript" path="/duozhuayu/search/:wd" paramsDesc={['搜索关键词']} radar="1" />
+<Route data={{"path":"/search/:wd","categories":["shopping"],"example":"/duozhuayu/search/JavaScript","parameters":{"wd":"搜索关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["duozhuayu.com/search/book/:wd"]},"name":"搜索结果","maintainers":["fengkx"],"location":"search.ts"}} />
## 逛丢 {#guang-diu}
-### 国内折扣 / 海外折扣 {#guang-diu-guo-nei-zhe-kou-hai-wai-zhe-kou}
-
-<Route author="Fatpandac" example="/guangdiu/k=daily" path="/guangdiu/:query?" paramsDesc={['链接参数,对应网址问号后的内容']}>
- :::tip
- 海外折扣: [`/guangdiu/k=daily&c=us`](https://rsshub.app/guangdiu/k=daily\&c=us)
- :::
-</Route>
-
-### 一小时风云榜 {#guang-diu-yi-xiao-shi-feng-yun-bang}
-
-<Route author="Fatpandac" example="/guangdiu/rank" path="/guangdiu/rank" />
-
-### 九块九 {#guang-diu-jiu-kuai-jiu}
+### 关键字搜索 {#guang-diu-guan-jian-zi-sou-suo}
-<Route author="Fatpandac" example="/guangdiu/cheaps/k=clothes" path="/guangdiu/cheaps/:query?" paramsDesc={['链接参数,对应网址问号后的内容']} />
+<Route data={{"path":"/search/:query?","categories":["shopping"],"example":"/guangdiu/search/k=百度网盘","parameters":{"query":"链接参数,对应网址问号后的内容"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"关键字搜索","maintainers":["Huzhixin00"],"location":"search.ts"}} />
-### 关键字搜索 {#guang-diu-guan-jian-zi-sou-suo}
+### 国内折扣 / 海外折扣 {#guang-diu-guo-nei-zhe-kou-hai-wai-zhe-kou}
-<Route author="Huzhixin00" example="/guangdiu/search/k=百度网盘" path="/guangdiu/search/:query?" paramsDesc={['链接参数,对应网址问号后的内容']} />
+<Route data={{"path":"/:query?","categories":["shopping"],"example":"/guangdiu/k=daily","parameters":{"query":"链接参数,对应网址问号后的内容"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"国内折扣 / 海外折扣","maintainers":["Fatpandac"],"description":":::tip\n 海外折扣: [`/guangdiu/k=daily&c=us`](https://rsshub.app/guangdiu/k=daily&c=us)\n :::","location":"index.ts"}} />
-## 好好住 {#hao-hao-zhu}
+:::tip
+海外折扣: [`/guangdiu/k=daily&c=us`](https://rsshub.app/guangdiu/k=daily\&c=us)
+:::
-### 整屋案例 {#hao-hao-zhu-zheng-wu-an-li}
+### 九块九 {#guang-diu-jiu-kuai-jiu}
-<Route author="hoilc" example="/haohaozhu/whole-house/日式" path="/haohaozhu/whole-house/:keyword?" paramsDesc={['分类名或关键字,请使用中文']} />
+<Route data={{"path":"/cheaps/:query?","categories":["shopping"],"example":"/guangdiu/cheaps/k=clothes","parameters":{"query":"链接参数,对应网址问号后的内容"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"九块九","maintainers":["fatpandac"],"location":"cheaps.ts"}} />
-### 发现 {#hao-hao-zhu-fa-xian}
+### 一小时风云榜 {#guang-diu-yi-xiao-shi-feng-yun-bang}
-<Route author="hoilc" example="/haohaozhu/discover/厨房" path="/haohaozhu/discover/:keyword?" paramsDesc={['分类名或关键字,请使用中文']} />
+<Route data={{"path":"/rank","categories":["shopping"],"example":"/guangdiu/rank","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["guangdiu.com/rank"]},"name":"一小时风云榜","maintainers":["fatpandac"],"url":"guangdiu.com/rank","location":"rank.ts"}} />
## 京东 {#jing-dong}
### 商品价格 {#jing-dong-shang-pin-jia-ge}
-<Route author="nczitzk" example="/jd/price/526835" path="/jd/price/:id" paramsDesc={['商品 id,可在商品详情页 URL 中找到']} notOperational="1">
- :::tip
- 如商品 `https://item.jd.com/526835.html` 中的 id 为 `526835`,所以路由为 [`/jd/price/526835`](https://rsshub.app/jd/price/526835)
- :::
-</Route>
-
-## 麦当劳 {#mai-dang-lao}
+<Route data={{"path":"/price/:id","categories":["shopping"],"example":"/jd/price/526835","parameters":{"id":"商品 id,可在商品详情页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"商品价格","maintainers":["nczitzk"],"description":":::tip\n 如商品 `https://item.jd.com/526835.html` 中的 id 为 `526835`,所以路由为 [`/jd/price/526835`](https://rsshub.app/jd/price/526835)\n :::","location":"price.ts"}} />
-### 麦当劳活动资讯 {#mai-dang-lao-mai-dang-lao-huo-dong-zi-xun}
-
-<Route author="huyyi" example="/mcdonalds/sales+event" path="/mcdonalds/:category" paramsDesc={['分类名(可用+连接多个分类)']}>
- | 全部分类 | 社会责任 | 人员品牌 | 产品故事 | 优惠 | 品牌文化 | 活动速报 |
- | ---------- | -------------- | -------- | -------- | ----- | -------- | -------- |
- | news\_list | responsibility | brand | product | sales | culture | event |
-</Route>
-
-## 缺书网 {#que-shu-wang}
-
-### 促销 {#que-shu-wang-cu-xiao}
-
-<Route author="kt286" example="/queshu/sale" path="/queshu/sale" />
-
-### 单品活动信息 {#que-shu-wang-dan-pin-huo-dong-xin-xi}
-
-<Route author="kt286" example="/queshu/book/34626813" path="/queshu/book/:bookid" paramsDesc={['图书ID,可在链接中获取']} />
-
-## 人民邮电出版社 {#ren-min-you-dian-chu-ban-she}
-
-### 图书列表 {#ren-min-you-dian-chu-ban-she-tu-shu-lie-biao}
-
-<Route author="hoilc" example="/ptpress/book/new" path="/ptpress/book/:type?" paramsDesc={['排序方式,默认`new`为最新图书,可选`hot`为最热图书']} />
+:::tip
+如商品 `https://item.jd.com/526835.html` 中的 id 为 `526835`,所以路由为 [`/jd/price/526835`](https://rsshub.app/jd/price/526835)
+:::
## 上海东方艺术中心 {#shang-hai-dong-fang-yi-shu-zhong-xin}
### 演出月历 {#shang-hai-dong-fang-yi-shu-zhong-xin-yan-chu-yue-li}
-<Route author="TonyRL" example="/shoac/recent-show" path="/shoac/recent-show" />
+<Route data={{"path":"/recent-show","categories":["shopping"],"example":"/shoac/recent-show","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["shoac.com.cn/"]},"name":"演出月历","maintainers":["TonyRL"],"url":"shoac.com.cn/","location":"recent-show.ts"}} />
## 上海文化广场 {#shang-hai-wen-hua-guang-chang}
### 节目列表 {#shang-hai-wen-hua-guang-chang-jie-mu-lie-biao}
-<Route author="fuzy112" example="/shcstheatre/programs" path="/shcstheatre/programs" />
+<Route data={{"path":"/programs","categories":["shopping"],"example":"/shcstheatre/programs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.shcstheatre.com/Program/programList.aspx"]},"name":"节目列表","maintainers":["fuzy112"],"url":"www.shcstheatre.com/Program/programList.aspx","location":"programs.ts"}} />
## 什么值得买 {#shen-me-zhi-de-mai}
@@ -337,212 +265,202 @@ For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3
### 关键词 {#shen-me-zhi-de-mai-guan-jian-ci}
-<Route author="DIYgod" example="/smzdm/keyword/女装" path="/smzdm/keyword/:keyword" paramsDesc={['你想订阅的关键词']} radar="1" />
+<Route data={{"path":"/keyword/:keyword","categories":["shopping"],"example":"/smzdm/keyword/女装","parameters":{"keyword":"你想订阅的关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"关键词","maintainers":["DIYgod","MeanZhang"],"location":"keyword.ts"}} />
-### 排行榜 {#shen-me-zhi-de-mai-pai-hang-bang}
+### 好文 {#shen-me-zhi-de-mai-hao-wen}
-<Route author="DIYgod" example="/smzdm/ranking/pinlei/11/3" path="/smzdm/ranking/:rank_type/:rank_id/:hour" paramsDesc={['榜单类型','榜单ID','时间跨度']} radar="1">
- - 榜单类型
+<Route data={{"path":"/haowen/:day?","categories":["shopping"],"example":"/smzdm/haowen/1","parameters":{"day":"以天为时间跨度,默认为 `all`,其余可以选择 `1`,`7`,`30`,`365`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"好文","maintainers":["LogicJake"],"location":"haowen.ts"}} />
- | 好价品类榜 | 好价电商榜 | 海淘 TOP 榜 | 好文排行榜 | 好物排行榜 |
- | ---------- | ---------- | ----------- | ---------- | ---------- |
- | pinlei | dianshang | haitao | haowen | haowu |
+### 好文分类 {#shen-me-zhi-de-mai-hao-wen-fen-lei}
- - 榜单 ID
+<Route data={{"path":"/haowen/fenlei/:name/:sort?","categories":["shopping"],"example":"/smzdm/haowen/fenlei/shenghuodianqi","parameters":{"name":"分类名,可在 URL 中查看","sort":"排序方式,默认为最新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["post.smzdm.com/fenlei/:name"],"target":"/haowen/fenlei/:name"},"name":"好文分类","maintainers":["LogicJake"],"description":"| 最新 | 周排行 | 月排行 |\n | ---- | ------ | ------ |\n | 0 | 7 | 30 |","location":"haowen-fenlei.ts"}} />
- 好价品类榜
+| 最新 | 周排行 | 月排行 |
+| ---- | ------ | ------ |
+| 0 | 7 | 30 |
- | 全部 | 食品生鲜 | 电脑数码 | 运动户外 | 家用电器 | 白菜 | 服饰鞋包 | 日用百货 |
- | ---- | -------- | -------- | -------- | -------- | ---- | -------- | -------- |
- | 11 | 12 | 13 | 14 | 15 | 17 | 74 | 75 |
+### 排行榜 {#shen-me-zhi-de-mai-pai-hang-bang}
- 好价电商榜
+<Route data={{"path":"/ranking/:rank_type/:rank_id/:hour","categories":["shopping"],"example":"/smzdm/ranking/pinlei/11/3","parameters":{"rank_type":"榜单类型","rank_id":"榜单ID","hour":"时间跨度"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"排行榜","maintainers":["DIYgod"],"description":"- 榜单类型\n\n | 好价品类榜 | 好价电商榜 | 海淘 TOP 榜 | 好文排行榜 | 好物排行榜 |\n | ---------- | ---------- | ----------- | ---------- | ---------- |\n | pinlei | dianshang | haitao | haowen | haowu |\n\n - 榜单 ID\n\n 好价品类榜\n\n | 全部 | 食品生鲜 | 电脑数码 | 运动户外 | 家用电器 | 白菜 | 服饰鞋包 | 日用百货 |\n | ---- | -------- | -------- | -------- | -------- | ---- | -------- | -------- |\n | 11 | 12 | 13 | 14 | 15 | 17 | 74 | 75 |\n\n 好价电商榜\n\n | 券活动 | 京东 | 天猫 | 亚马逊中国 | 国美在线 | 苏宁易购 | 网易 | 西集网 | 美国亚马逊 | 日本亚马逊 | ebay |\n | ------ | ---- | ---- | ---------- | -------- | -------- | ---- | ------ | ---------- | ---------- | ---- |\n | 24 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |\n\n 海淘 TOP 榜\n\n | 全部 | 海外直邮 | 美国榜 | 欧洲榜 | 澳新榜 | 亚洲榜 | 晒物榜 |\n | ---- | -------- | ------ | ------ | ------ | ------ | ------ |\n | 39 | 34 | 35 | 36 | 37 | 38 | hsw |\n\n 好文排行榜\n\n | 原创 | 资讯 |\n | ---- | ---- |\n | yc | zx |\n\n 好物排行榜\n\n | 新晋榜 | 消费众测 | 新锐品牌 | 好物榜单 |\n | ------ | -------- | -------- | -------- |\n | hwall | zc | nb | hw |\n\n - 时间跨度\n\n | 3 小时 | 12 小时 | 24 小时 |\n | ------ | ------- | ------- |\n | 3 | 12 | 24 |","location":"ranking.ts"}} />
- | 券活动 | 京东 | 天猫 | 亚马逊中国 | 国美在线 | 苏宁易购 | 网易 | 西集网 | 美国亚马逊 | 日本亚马逊 | ebay |
- | ------ | ---- | ---- | ---------- | -------- | -------- | ---- | ------ | ---------- | ---------- | ---- |
- | 24 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
+- 榜单类型
- 海淘 TOP 榜
+| 好价品类榜 | 好价电商榜 | 海淘 TOP 榜 | 好文排行榜 | 好物排行榜 |
+| ---------- | ---------- | ----------- | ---------- | ---------- |
+| pinlei | dianshang | haitao | haowen | haowu |
- | 全部 | 海外直邮 | 美国榜 | 欧洲榜 | 澳新榜 | 亚洲榜 | 晒物榜 |
- | ---- | -------- | ------ | ------ | ------ | ------ | ------ |
- | 39 | 34 | 35 | 36 | 37 | 38 | hsw |
+- 榜单 ID
- 好文排行榜
+好价品类榜
- | 原创 | 资讯 |
- | ---- | ---- |
- | yc | zx |
+| 全部 | 食品生鲜 | 电脑数码 | 运动户外 | 家用电器 | 白菜 | 服饰鞋包 | 日用百货 |
+| ---- | -------- | -------- | -------- | -------- | ---- | -------- | -------- |
+| 11 | 12 | 13 | 14 | 15 | 17 | 74 | 75 |
- 好物排行榜
+好价电商榜
- | 新晋榜 | 消费众测 | 新锐品牌 | 好物榜单 |
- | ------ | -------- | -------- | -------- |
- | hwall | zc | nb | hw |
+| 券活动 | 京东 | 天猫 | 亚马逊中国 | 国美在线 | 苏宁易购 | 网易 | 西集网 | 美国亚马逊 | 日本亚马逊 | ebay |
+| ------ | ---- | ---- | ---------- | -------- | -------- | ---- | ------ | ---------- | ---------- | ---- |
+| 24 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
- - 时间跨度
+海淘 TOP 榜
- | 3 小时 | 12 小时 | 24 小时 |
- | ------ | ------- | ------- |
- | 3 | 12 | 24 |
-</Route>
+| 全部 | 海外直邮 | 美国榜 | 欧洲榜 | 澳新榜 | 亚洲榜 | 晒物榜 |
+| ---- | -------- | ------ | ------ | ------ | ------ | ------ |
+| 39 | 34 | 35 | 36 | 37 | 38 | hsw |
-### 好文 {#shen-me-zhi-de-mai-hao-wen}
+好文排行榜
-<Route author="LogicJake" example="/smzdm/haowen/1" path="/smzdm/haowen/:day?" paramsDesc={['以天为时间跨度,默认为 `all`,其余可以选择 `1`,`7`,`30`,`365`']} />
+| 原创 | 资讯 |
+| ---- | ---- |
+| yc | zx |
-### 好文分类 {#shen-me-zhi-de-mai-hao-wen-fen-lei}
+好物排行榜
-<Route author="LogicJake" example="/smzdm/haowen/fenlei/shenghuodianqi" path="/smzdm/haowen/fenlei/:name/:sort?" paramsDesc={['分类名,可在 URL 中查看','排序方式,默认为最新']}>
- | 最新 | 周排行 | 月排行 |
- | ---- | ------ | ------ |
- | 0 | 7 | 30 |
-</Route>
+| 新晋榜 | 消费众测 | 新锐品牌 | 好物榜单 |
+| ------ | -------- | -------- | -------- |
+| hwall | zc | nb | hw |
-### 用户文章 {#shen-me-zhi-de-mai-yong-hu-wen-zhang}
+- 时间跨度
-<Route author="xfangbao" example="/smzdm/article/6902738986" path="/smzdm/article/:uid" paramsDesc={['用户id,网址上直接可以看到']} />
+| 3 小时 | 12 小时 | 24 小时 |
+| ------ | ------- | ------- |
+| 3 | 12 | 24 |
### 用户爆料 {#shen-me-zhi-de-mai-yong-hu-bao-liao}
-<Route author="nczitzk" example="/smzdm/baoliao/7367111021" path="/smzdm/baoliao/:uid" paramsDesc={['用户id,网址上直接可以看到']} />
+<Route data={{"path":"/baoliao/:uid","categories":["shopping"],"example":"/smzdm/baoliao/7367111021","parameters":{"uid":"用户id,网址上直接可以看到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhiyou.smzdm.com/member/:uid/baoliao"]},"name":"用户爆料","maintainers":["nczitzk"],"location":"baoliao.ts"}} />
+
+### 用户文章 {#shen-me-zhi-de-mai-yong-hu-wen-zhang}
+
+<Route data={{"path":"/article/:uid","categories":["shopping"],"example":"/smzdm/article/6902738986","parameters":{"uid":"用户id,网址上直接可以看到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhiyou.smzdm.com/member/:uid/article"]},"name":"用户文章","maintainers":["xfangbao"],"location":"article.ts"}} />
## 淘宝众筹 {#tao-bao-zhong-chou}
### 众筹项目 {#tao-bao-zhong-chou-zhong-chou-xiang-mu}
-<Route author="xyqfer Fatpandac" example="/taobao/zhongchou/all" path="/taobao/zhongchou/:type?" paramsDesc={['类型, 默认为 `all` 全部']}>
- | 全部 | 科技 | 食品 | 动漫 | 设计 | 公益 | 娱乐 | 影音 | 书籍 | 游戏 | 其他 |
- | ---- | ---- | ----------- | ---- | ------ | ---- | ---- | ----- | ---- | ---- | ----- |
- | all | tech | agriculture | acg | design | love | tele | music | book | game | other |
-</Route>
+<Route data={{"path":"/zhongchou/:type?","categories":["shopping"],"example":"/taobao/zhongchou/all","parameters":{"type":"类型, 默认为 `all` 全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"众筹项目","maintainers":["xyqfer","Fatpandac"],"description":"| 全部 | 科技 | 食品 | 动漫 | 设计 | 公益 | 娱乐 | 影音 | 书籍 | 游戏 | 其他 |\n | ---- | ---- | ----------- | ---- | ------ | ---- | ---- | ----- | ---- | ---- | ----- |\n | all | tech | agriculture | acg | design | love | tele | music | book | game | other |","location":"zhongchou.ts"}} />
+
+| 全部 | 科技 | 食品 | 动漫 | 设计 | 公益 | 娱乐 | 影音 | 书籍 | 游戏 | 其他 |
+| ---- | ---- | ----------- | ---- | ------ | ---- | ---- | ----- | ---- | ---- | ----- |
+| all | tech | agriculture | acg | design | love | tele | music | book | game | other |
## 特斯拉中国 {#te-si-la-zhong-guo}
### 价格 {#te-si-la-zhong-guo-jia-ge}
-<Route author="xiaokyo" example="/tesla/price" path="/tesla/price" radar="1" />
+<Route data={{"path":"/price","categories":["shopping"],"example":"/tesla/price","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tesla.cn/model3/design","tesla.cn/"]},"name":"价格","maintainers":["xiaokyo"],"url":"tesla.cn/model3/design","location":"price/index.ts"}} />
### 权益中心 {#te-si-la-zhong-guo-quan-yi-zhong-xin}
-<Route author="simonsmh nczitzk" example="/tesla/cx/生活方式/北京" path="/tesla/cx/:category?/:city?" paramsDesc={['分类,见下表,默认为空,即全部', '城市,默认为空,即全国']} radar="1">
- | 充电免停 | 酒店 | 美食 | 生活方式 |
- | -------- | ---- | ---- | -------- |
-
- :::tip
- 分类为 **充电免停** 时,城市参数不起作用
- :::
+<Route data={{"path":"/cx/:category?/:city?","categories":["shopping"],"example":"/tesla/cx/生活方式/北京","parameters":{"category":"分类,见下表,默认为空,即全部","city":"城市,默认为空,即全国"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"权益中心","maintainers":["simonsmh","nczitzk"],"description":"| 充电免停 | 酒店 | 美食 | 生活方式 |\n | -------- | ---- | ---- | -------- |\n\n :::tip\n 分类为 **充电免停** 时,城市参数不起作用\n :::\n\n <details>\n <summary>可选城市</summary>\n\n | 成都 | 深圳 | 洛阳 | 北京 | 南京 | 绍兴 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 西安 | 上海 | 阿坝藏族羌族自治州 | 重庆 | 郑州 | 天津 |\n | ---- | ---- | ------------------ | ---- | ---- | ---- |\n\n | 晋中 | 三亚 | 湖州 | 苏州 | 扬州 | 秦皇岛 |\n | ---- | ---- | ---- | ---- | ---- | ------ |\n\n | 长沙 | 武汉 | 安阳 | 温州 | 瑞安 | 石家庄 |\n | ---- | ---- | ---- | ---- | ---- | ------ |\n\n | 佛山 | 广州 | 杭州 | 烟台 | 沧州 | 张家港 |\n | ---- | ---- | ---- | ---- | ---- | ------ |\n\n | 金华 | 临沧 | 大理 | 南昌 | 贵阳 | 信阳 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 张家口 | 铜仁 | 沈阳 | 合肥 | 黔东 | 高邮 |\n | ------ | ---- | ---- | ---- | ---- | ---- |\n\n | 三河 | 安顺 | 莆田 | 阳江 | 南宁 | 台州 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 余姚 | 淄博 | 三明 | 中山 | 宁波 | 厦门 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 永康 | 慈溪 | 台山 | 福州 | 无锡 | 宜昌 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 泉州 | 肇庆 | 太仓 | 珠海 | 邢台 | 衡水 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 温岭 | 宜兴 | 东莞 | 威海 | 南通 | 舟山 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 都匀 | 长治 | 江阴 | 云浮 | 常州 | 唐山 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 平湖 | 商丘 | 保定 | 泰州 | 青岛 | 龙口 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 泰安 | 岳阳 | 惠州 | 徐州 | 哈尔滨 | 潍坊 |\n | ---- | ---- | ---- | ---- | ------ | ---- |\n\n | 大同 | 嘉兴 | 毕节 | 临汾 | 江门 | 诸暨 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 儋州 | 衢州 | 大连 | 昆山 | 靖江 | 常熟 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 罗定 | 丽江 | 晋江 | 乐清 | 茂名 | 福清 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 廊坊 | 兰溪 | 汕尾 | 滨州 | 昆明 | 玉环 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 绵阳 | 漳州 | 德州 | 聊城 | 龙岩 | 临沂 |\n | ---- | ---- | ---- | ---- | ---- | ---- |\n\n | 新沂 | 桐乡 | 迪庆藏族自治州 | 汕头 | 潮州 | 驻马店 |\n | ---- | ---- | -------------- | ---- | ---- | ------ |\n\n | 曲阜 | 郴州 | 济源 | 兴义 |\n | ---- | ---- | ---- | ---- |\n </details>","location":"cx.ts"}} />
- <details>
- <summary>可选城市</summary>
+| 充电免停 | 酒店 | 美食 | 生活方式 |
+| -------- | ---- | ---- | -------- |
- | 成都 | 深圳 | 洛阳 | 北京 | 南京 | 绍兴 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
-
- | 西安 | 上海 | 阿坝藏族羌族自治州 | 重庆 | 郑州 | 天津 |
- | ---- | ---- | ------------------ | ---- | ---- | ---- |
-
- | 晋中 | 三亚 | 湖州 | 苏州 | 扬州 | 秦皇岛 |
- | ---- | ---- | ---- | ---- | ---- | ------ |
-
- | 长沙 | 武汉 | 安阳 | 温州 | 瑞安 | 石家庄 |
- | ---- | ---- | ---- | ---- | ---- | ------ |
-
- | 佛山 | 广州 | 杭州 | 烟台 | 沧州 | 张家港 |
- | ---- | ---- | ---- | ---- | ---- | ------ |
+:::tip
+分类为 **充电免停** 时,城市参数不起作用
+:::
- | 金华 | 临沧 | 大理 | 南昌 | 贵阳 | 信阳 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+<details>
+ <summary>可选城市</summary>
- | 张家口 | 铜仁 | 沈阳 | 合肥 | 黔东 | 高邮 |
- | ------ | ---- | ---- | ---- | ---- | ---- |
+ | 成都 | 深圳 | 洛阳 | 北京 | 南京 | 绍兴 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 三河 | 安顺 | 莆田 | 阳江 | 南宁 | 台州 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 西安 | 上海 | 阿坝藏族羌族自治州 | 重庆 | 郑州 | 天津 |
+ | ---- | ---- | ------------------ | ---- | ---- | ---- |
- | 余姚 | 淄博 | 三明 | 中山 | 宁波 | 厦门 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 晋中 | 三亚 | 湖州 | 苏州 | 扬州 | 秦皇岛 |
+ | ---- | ---- | ---- | ---- | ---- | ------ |
- | 永康 | 慈溪 | 台山 | 福州 | 无锡 | 宜昌 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 长沙 | 武汉 | 安阳 | 温州 | 瑞安 | 石家庄 |
+ | ---- | ---- | ---- | ---- | ---- | ------ |
- | 泉州 | 肇庆 | 太仓 | 珠海 | 邢台 | 衡水 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 佛山 | 广州 | 杭州 | 烟台 | 沧州 | 张家港 |
+ | ---- | ---- | ---- | ---- | ---- | ------ |
- | 温岭 | 宜兴 | 东莞 | 威海 | 南通 | 舟山 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 金华 | 临沧 | 大理 | 南昌 | 贵阳 | 信阳 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 都匀 | 长治 | 江阴 | 云浮 | 常州 | 唐山 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 张家口 | 铜仁 | 沈阳 | 合肥 | 黔东 | 高邮 |
+ | ------ | ---- | ---- | ---- | ---- | ---- |
- | 平湖 | 商丘 | 保定 | 泰州 | 青岛 | 龙口 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 三河 | 安顺 | 莆田 | 阳江 | 南宁 | 台州 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 泰安 | 岳阳 | 惠州 | 徐州 | 哈尔滨 | 潍坊 |
- | ---- | ---- | ---- | ---- | ------ | ---- |
+ | 余姚 | 淄博 | 三明 | 中山 | 宁波 | 厦门 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 大同 | 嘉兴 | 毕节 | 临汾 | 江门 | 诸暨 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 永康 | 慈溪 | 台山 | 福州 | 无锡 | 宜昌 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 儋州 | 衢州 | 大连 | 昆山 | 靖江 | 常熟 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 泉州 | 肇庆 | 太仓 | 珠海 | 邢台 | 衡水 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 罗定 | 丽江 | 晋江 | 乐清 | 茂名 | 福清 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 温岭 | 宜兴 | 东莞 | 威海 | 南通 | 舟山 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 廊坊 | 兰溪 | 汕尾 | 滨州 | 昆明 | 玉环 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 都匀 | 长治 | 江阴 | 云浮 | 常州 | 唐山 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 绵阳 | 漳州 | 德州 | 聊城 | 龙岩 | 临沂 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
+ | 平湖 | 商丘 | 保定 | 泰州 | 青岛 | 龙口 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
- | 新沂 | 桐乡 | 迪庆藏族自治州 | 汕头 | 潮州 | 驻马店 |
- | ---- | ---- | -------------- | ---- | ---- | ------ |
+ | 泰安 | 岳阳 | 惠州 | 徐州 | 哈尔滨 | 潍坊 |
+ | ---- | ---- | ---- | ---- | ------ | ---- |
- | 曲阜 | 郴州 | 济源 | 兴义 |
- | ---- | ---- | ---- | ---- |
- </details>
-</Route>
+ | 大同 | 嘉兴 | 毕节 | 临汾 | 江门 | 诸暨 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
-## 玩物志 {#wan-wu-zhi}
+ | 儋州 | 衢州 | 大连 | 昆山 | 靖江 | 常熟 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
-### 最新 {#wan-wu-zhi-zui-xin}
+ | 罗定 | 丽江 | 晋江 | 乐清 | 茂名 | 福清 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
-<Route author="xyqfer" example="/coolbuy/newest" path="/coolbuy/newest" />
+ | 廊坊 | 兰溪 | 汕尾 | 滨州 | 昆明 | 玉环 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
-## 微店 {#wei-dian}
+ | 绵阳 | 漳州 | 德州 | 聊城 | 龙岩 | 临沂 |
+ | ---- | ---- | ---- | ---- | ---- | ---- |
-### 商品上新 {#wei-dian-shang-pin-shang-xin}
+ | 新沂 | 桐乡 | 迪庆藏族自治州 | 汕头 | 潮州 | 驻马店 |
+ | ---- | ---- | -------------- | ---- | ---- | ------ |
-<Route author="LogicJake" example="/weidian/goods/431508863" path="/weidian/goods/:id" paramsDesc={['商铺 id']} />
+ | 曲阜 | 郴州 | 济源 | 兴义 |
+ | ---- | ---- | ---- | ---- |
+</details>
## 消费者报道 {#xiao-fei-zhe-bao-dao}
### 要闻 {#xiao-fei-zhe-bao-dao-yao-wen}
-<Route author="EsuRt Fatpandac" example="/ccreports/article" path="/ccreports/article" />
-
-## 小米 {#xiao-mi}
+<Route data={{"path":"/article","categories":["shopping"],"example":"/ccreports/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ccreports.com.cn/"]},"name":"要闻","maintainers":["EsuRt","Fatpandac"],"url":"www.ccreports.com.cn/","location":"index.ts"}} />
-### 小米众筹 {#xiao-mi-xiao-mi-zhong-chou}
+## 小米有品 {#xiao-mi-you-pin}
-<Route author="DIYgod" example="/mi/crowdfunding" path="/mi/crowdfunding" />
+### 小米有品每日上新 {#xiao-mi-you-pin-xiao-mi-you-pin-mei-ri-shang-xin}
-## 小米有品 {#xiao-mi-you-pin}
+<Route data={{"path":"/latest","categories":["shopping"],"example":"/xiaomiyoupin/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaomiyoupin.com/"]},"name":"小米有品每日上新","maintainers":["xyqfer","DIYgod","bigfei"],"url":"xiaomiyoupin.com/","location":"latest.ts"}} />
### 小米有品众筹 {#xiao-mi-you-pin-xiao-mi-you-pin-zhong-chou}
-<Route author="bigfei" example="/xiaomiyoupin/crowdfunding" path="/xiaomiyoupin/crowdfunding" />
+<Route data={{"path":"/crowdfunding","categories":["shopping"],"example":"/xiaomiyoupin/crowdfunding","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaomiyoupin.com/"]},"name":"小米有品众筹","maintainers":["bigfei"],"url":"xiaomiyoupin.com/","location":"crowdfunding.ts"}} />
-### 小米有品每日上新 {#xiao-mi-you-pin-xiao-mi-you-pin-mei-ri-shang-xin}
+## 秀动网 {#xiu-dong-wang}
-<Route author="xyqfer DIYgod bigfei" example="/xiaomiyoupin/latest" path="/xiaomiyoupin/latest" />
+### 厂牌 - 演出更新 {#xiu-dong-wang-chang-pai-yan-chu-geng-xin}
-## 秀动网 {#xiu-dong-wang}
+<Route data={{"path":"/brand/:id","categories":["shopping"],"example":"/showstart/brand/34707","parameters":{"id":"厂牌 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.showstart.com/host/:id"]},"name":"厂牌 - 演出更新","maintainers":["lchtao26"],"description":":::tip\n厂牌 ID 查询: `/showstart/search/brand/:keyword`,如: [https://rsshub.app/showstart/search/brand/ 声场](https://rsshub.app/showstart/search/brand/声场)\n:::","location":"brand.ts"}} />
+
+:::tip
+厂牌 ID 查询: `/showstart/search/brand/:keyword`,如: [https://rsshub.app/showstart/search/brand/ 声场](https://rsshub.app/showstart/search/brand/声场)
+:::
### 演出更新 {#xiu-dong-wang-yan-chu-geng-xin}
-<Route author="lchtao26" example="/showstart/event/571/3" path="/showstart/event/:cityCode/:showStyle?" paramsDesc={['演出城市 (编号)', '演出风格 (编号)']} />
+<Route data={{"path":"/event/:cityCode/:showStyle?","categories":["shopping"],"example":"/showstart/event/571/3","parameters":{"cityCode":"演出城市 (编号)","showStyle":"演出风格 (编号)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"演出更新","maintainers":["lchtao26"],"description":":::tip\n- 演出城市 `cityCode` 查询: `/showstart/search/city/:keyword`, 如: [https://rsshub.app/showstart/search/city/ 杭州](https://rsshub.app/showstart/search/city/杭州)\n\n- 演出风格 `showStyle` 查询: `/showstart/search/style/:keyword`,如: [https://rsshub.app/showstart/search/style/ 摇滚](https://rsshub.app/showstart/search/style/摇滚)\n:::","location":"event.ts"}} />
:::tip
- 演出城市 `cityCode` 查询: `/showstart/search/city/:keyword`, 如: [https://rsshub.app/showstart/search/city/ 杭州](https://rsshub.app/showstart/search/city/杭州)
@@ -552,103 +470,18 @@ For instance, in `https://www.zagg.com/en_us/new-arrivals?brand=164&cat=3038%2C3
### 演出搜索 {#xiu-dong-wang-yan-chu-sou-suo}
-<Route author="lchtao26" example="/showstart/search/live" path="/showstart/search/:type/:keyword?" paramsDesc={['类别', '搜索关键词']} />
+<Route data={{"path":"/search/:type/:keyword?","categories":["shopping"],"example":"/showstart/search/live","parameters":{"type":"类别","keyword":"搜索关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"演出搜索","maintainers":["lchtao26"],"location":"search.ts"}} />
### 音乐人 - 演出更新 {#xiu-dong-wang-yin-yue-ren-yan-chu-geng-xin}
-<Route author="lchtao26" example="/showstart/artist/301783" path="/showstart/artist/:id" paramsDesc={['音乐人 ID']} />
+<Route data={{"path":"/artist/:id","categories":["shopping"],"example":"/showstart/artist/301783","parameters":{"id":"音乐人 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.showstart.com/artist/:id"]},"name":"音乐人 - 演出更新","maintainers":["lchtao26"],"description":":::tip\n音乐人 ID 查询: `/showstart/search/artist/:keyword`,如: [https://rsshub.app/showstart/search/artist/ 周杰伦](https://rsshub.app/showstart/search/artist/周杰伦)\n:::","location":"artist.ts"}} />
:::tip
音乐人 ID 查询: `/showstart/search/artist/:keyword`,如: [https://rsshub.app/showstart/search/artist/ 周杰伦](https://rsshub.app/showstart/search/artist/周杰伦)
:::
-### 厂牌 - 演出更新 {#xiu-dong-wang-chang-pai-yan-chu-geng-xin}
-
-<Route author="lchtao26" example="/showstart/brand/34707" path="/showstart/brand/:id" paramsDesc={['厂牌 ID']} />
-
-:::tip
-厂牌 ID 查询: `/showstart/search/brand/:keyword`,如: [https://rsshub.app/showstart/search/brand/ 声场](https://rsshub.app/showstart/search/brand/声场)
-:::
-
-## 有赞 {#you-zan}
-
-### 商品上新 {#you-zan-shang-pin-shang-xin}
-
-<Route author="LogicJake" example="/youzan/goods/13328377" path="/youzan/goods/:id" paramsDesc={['商铺id']} />
-
-## 正版中国 {#zheng-ban-zhong-guo}
-
-### 分类 {#zheng-ban-zhong-guo-fen-lei}
-
-<Route author="sanmmm nczitzk" example="/getitfree/category/pc" path="/getitfree/category/:id" paramsDesc={['分类,见下表,可在对应分类页中找到,默认为所有类别']} radar="1">
- :::tip
- 可以叠加使用得到分类结果并集,如 [`/getitfree/category/pc,android`](https://rsshub.app/getitfree/category/pc,android)
- :::
-
- | 所有类别 | Android | iOS | Mac | PC | UWP | 公告 | 永久免费 | 限时免费 | 正版折扣 |
- | -------- | ------- | --- | --- | -- | --- | ------------ | -------- | -------- | -------- |
- | | android | ios | mac | pc | uwp | notification | free | giveaway | discount |
-</Route>
-
-### 标签 {#zheng-ban-zhong-guo-biao-qian}
-
-<Route author="nczitzk" example="/getitfree/tag/ai" path="/getitfree/tag/:id" paramsDesc={['标签,见下表,可在对应标签页中找到,默认为所有标签']} radar="1">
- :::tip
- 可以叠加使用得到标签结果并集,如 [`/getitfree/tag/ai,office`](https://rsshub.app/getitfree/tag/ai,office)
- :::
-
- | AI | Android | DVD | GIF | iCloud |
- | -- | ------- | --- | --- | ------ |
-
- | ICON | iOS | iPhone | Leawo | Mac |
- | ---- | --- | ------ | ----- | --- |
-
- | Markdown | OCR | Office | Office 办公 | PDF |
- | -------- | --- | ------ | ----------- | --- |
-
- | PDF 转换 | Windows | 下载 | 书签管理 | 健康 |
- | -------- | ------- | ---- | -------- | ---- |
-
- | 全平台 | 办公软件 | 加密保护 | 卸载 / 清理 / 优化 | 卸载清理 |
- | ------ | -------- | -------- | ------------------ | -------- |
-
- | 图像处理 | 图片 / 编辑 / 管理 | 壁纸 | 备份 / 恢复 / 加密 | 备份恢复 |
- | -------- | ------------------ | ---- | ------------------ | -------- |
-
- | 字体 | 学习 | 密码管理 | 导航 | 开始菜单 |
- | ---- | ---- | -------- | ---- | -------- |
-
- | 录屏截图 | 影音 / 刻录 / 转换 | 投屏镜像 | 提醒 | 摄影 |
- | -------- | ------------------ | -------- | ---- | ---- |
-
- | 播放器 | 收藏夹 | 效率工具 | 数据传输 | 数据恢复 |
- | ------ | ------ | -------- | -------- | -------- |
-
- | 数据擦除 | 文件管理 | 文档 / 转换 / 压缩 | 文档扫描 | 日历 |
- | -------- | -------- | ------------------ | -------- | ---- |
-
- | 杀毒防护 | 查重 | 正版特惠 | 水印 | 清理优化 |
- | -------- | ---- | -------- | ---- | -------- |
-
- | 滤镜 | 硬件外设 | 硬盘 / 分区 / 驱动 | 硬盘检测 | 稍后阅读 |
- | ---- | -------- | ------------------ | -------- | -------- |
-
- | 笔记 | 系统工具 | 素材 | 网络 / 安全 / 传输 | 网络安全 |
- | ---- | -------- | ---- | ------------------ | -------- |
-
- | 色彩 | 视频剪辑 | 视频转换 | 记账 | 设计 |
- | ---- | -------- | -------- | ---- | ---- |
-
- | 软件卸载 | 远程控制 | 音乐 | 音频 | 驱动 |
- | -------- | -------- | ---- | ---- | ---- |
-</Route>
-
-### 搜索 {#zheng-ban-zhong-guo-sou-suo}
-
-<Route author="sanmmm nczitzk" example="/getitfree/search/windows" path="/getitfree/search/:keyword" paramsDesc={['关键字']} radar="1" />
-
## 中国养猪网 {#zhong-guo-yang-zhu-wang}
-### 每日生猪价格更新 {#zhong-guo-yang-zhu-wang-mei-ri-sheng-zhu-jia-ge-geng-xin}
+### Unknown {#zhong-guo-yang-zhu-wang-unknown}
-<Route author="importcjj" example="/zhuwang/zhujia" path="/zhuwang/zhujia" radar="1" />
+<Route data={{"path":"/zhujia","categories":["shopping"],"example":"/zhuwang/zhujia","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhujia.zhuwang.cc/"]},"name":"Unknown","maintainers":[],"url":"zhujia.zhuwang.cc/","location":"index.ts"}} />
diff --git a/website/docs/routes/social-media.mdx b/website/docs/routes/social-media.mdx
index 50fef929325db0..48e1903b240ced 100644
--- a/website/docs/routes/social-media.mdx
+++ b/website/docs/routes/social-media.mdx
@@ -1,517 +1,381 @@
-# 💬 Social Media
+# social-media
-## 755 {#755}
+## Bilibili {#bilibili}
-### 用户时间线 {#755-yong-hu-shi-jian-xian}
+### 分区视频 {#bilibili-fen-qu-shi-pin}
-<Route author="hoilc" example="/755/user/akimoto-manatsu" path="/755/user/:username" paramsDesc={['用户名, 可在 URL 中找到']} />
+<Route data={{"path":"/partion/:tid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/partion/33","parameters":{"tid":"分区 id","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分区视频","maintainers":["DIYgod"],"description":"动画\n\n | MAD·AMV | MMD·3D | 短片・手书・配音 | 特摄 | 综合 |\n | ------- | ------ | ---------------- | ---- | ---- |\n | 24 | 25 | 47 | 86 | 27 |\n\n 番剧\n\n | 连载动画 | 完结动画 | 资讯 | 官方延伸 |\n | -------- | -------- | ---- | -------- |\n | 33 | 32 | 51 | 152 |\n\n 国创\n\n | 国产动画 | 国产原创相关 | 布袋戏 | 动态漫・广播剧 | 资讯 |\n | -------- | ------------ | ------ | -------------- | ---- |\n | 153 | 168 | 169 | 195 | 170 |\n\n 音乐\n\n | 原创音乐 | 翻唱 | VOCALOID·UTAU | 电音 | 演奏 | MV | 音乐现场 | 音乐综合 | ~~OP/ED/OST~~ |\n | -------- | ---- | ------------- | ---- | ---- | --- | -------- | -------- | ------------- |\n | 28 | 31 | 30 | 194 | 59 | 193 | 29 | 130 | 54 |\n\n 舞蹈\n\n | 宅舞 | 街舞 | 明星舞蹈 | 中国舞 | 舞蹈综合 | 舞蹈教程 |\n | ---- | ---- | -------- | ------ | -------- | -------- |\n | 20 | 198 | 199 | 200 | 154 | 156 |\n\n 游戏\n\n | 单机游戏 | 电子竞技 | 手机游戏 | 网络游戏 | 桌游棋牌 | GMV | 音游 | Mugen |\n | -------- | -------- | -------- | -------- | -------- | --- | ---- | ----- |\n | 17 | 171 | 172 | 65 | 173 | 121 | 136 | 19 |\n\n 知识\n\n | 科学科普 | 社科人文 | 财经 | 校园学习 | 职业职场 | 野生技术协会 |\n | -------- | -------- | ---- | -------- | -------- | ------------ |\n | 201 | 124 | 207 | 208 | 209 | 122 |\n\n ~~科技~~\n\n | ~~演讲・公开课~~ | ~~星海~~ | ~~机械~~ | ~~汽车~~ |\n | ---------------- | -------- | -------- | -------- |\n | 39 | 96 | 98 | 176 |\n\n 数码\n\n | 手机平板 | 电脑装机 | 摄影摄像 | 影音智能 |\n | -------- | -------- | -------- | -------- |\n | 95 | 189 | 190 | 191 |\n\n 生活\n\n | 搞笑 | 日常 | 美食圈 | 动物圈 | 手工 | 绘画 | 运动 | 汽车 | 其他 | ~~ASMR~~ |\n | ---- | ---- | ------ | ------ | ---- | ---- | ---- | ---- | ---- | -------- |\n | 138 | 21 | 76 | 75 | 161 | 162 | 163 | 176 | 174 | 175 |\n\n 鬼畜\n\n | 鬼畜调教 | 音 MAD | 人力 VOCALOID | 教程演示 |\n | -------- | ------ | ------------- | -------- |\n | 22 | 26 | 126 | 127 |\n\n 时尚\n\n | 美妆 | 服饰 | 健身 | T 台 | 风向标 |\n | ---- | ---- | ---- | ---- | ------ |\n | 157 | 158 | 164 | 159 | 192 |\n\n ~~广告~~\n\n | ~~广告~~ |\n | -------- |\n | 166 |\n\n 资讯\n\n | 热点 | 环球 | 社会 | 综合 |\n | ---- | ---- | ---- | ---- |\n | 203 | 204 | 205 | 206 |\n\n 娱乐\n\n | 综艺 | 明星 | Korea 相关 |\n | ---- | ---- | ---------- |\n | 71 | 137 | 131 |\n\n 影视\n\n | 影视杂谈 | 影视剪辑 | 短片 | 预告・资讯 |\n | -------- | -------- | ---- | ---------- |\n | 182 | 183 | 85 | 184 |\n\n 纪录片\n\n | 全部 | 人文・历史 | 科学・探索・自然 | 军事 | 社会・美食・旅行 |\n | ---- | ---------- | ---------------- | ---- | ---------------- |\n | 177 | 37 | 178 | 179 | 180 |\n\n 电影\n\n | 全部 | 华语电影 | 欧美电影 | 日本电影 | 其他国家 |\n | ---- | -------- | -------- | -------- | -------- |\n | 23 | 147 | 145 | 146 | 83 |\n\n 电视剧\n\n | 全部 | 国产剧 | 海外剧 |\n | ---- | ------ | ------ |\n | 11 | 185 | 187 |","location":"partion.ts"}} />
-## bilibili {#bilibili}
+动画
-### 番剧 {#bilibili-fan-ju}
+| MAD·AMV | MMD·3D | 短片・手书・配音 | 特摄 | 综合 |
+| ------- | ------ | ---------------- | ---- | ---- |
+| 24 | 25 | 47 | 86 | 27 |
-<Route author="DIYgod" example="/bilibili/bangumi/media/9192" path="/bilibili/bangumi/media/:mediaid" paramsDesc={['番剧媒体 id, 番剧主页 URL 中获取']} />
+番剧
-### 用户追番列表 {#bilibili-yong-hu-zhui-fan-lie-biao}
+| 连载动画 | 完结动画 | 资讯 | 官方延伸 |
+| -------- | -------- | ---- | -------- |
+| 33 | 32 | 51 | 152 |
-<Route author="wdssmq" example="/bilibili/user/bangumi/208259" path="/bilibili/user/bangumi/:uid/:type?" paramsDesc={['用户 id','1为番,2为剧,留空为1']} radar="1" />
+国创
-### UP 主投稿 {#bilibili-up-zhu-tou-gao}
+| 国产动画 | 国产原创相关 | 布袋戏 | 动态漫・广播剧 | 资讯 |
+| -------- | ------------ | ------ | -------------- | ---- |
+| 153 | 168 | 169 | 195 | 170 |
-<Route author="DIYgod" example="/bilibili/user/video/2267573" path="/bilibili/user/video/:uid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']} anticrawler="1" radar="1">
- :::tip[动态的专栏显示全文]
- 可以使用 [UP 主动态](#bilibili-up-zhu-dong-tai)路由作为代替绕过反爬限制
- :::
-</Route>
+音乐
-### UP 主专栏 {#bilibili-up-zhu-zhuan-lan}
+| 原创音乐 | 翻唱 | VOCALOID·UTAU | 电音 | 演奏 | MV | 音乐现场 | 音乐综合 | ~~OP/ED/OST~~ |
+| -------- | ---- | ------------- | ---- | ---- | --- | -------- | -------- | ------------- |
+| 28 | 31 | 30 | 194 | 59 | 193 | 29 | 130 | 54 |
-<Route author="lengthmin" example="/bilibili/user/article/334958638" path="/bilibili/user/article/:uid" paramsDesc={['用户 id, 可在 UP 主主页中找到']} radar="1" />
+舞蹈
-### UP 主动态 {#bilibili-up-zhu-dong-tai}
-
-<Route author="DIYgod zytomorrow CaoMeiYouRen JimenezLi" example="/bilibili/user/dynamic/2267573" path="/bilibili/user/dynamic/:uid/:routeParams?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '额外参数;请参阅以下说明和表格']} radar="1">
- | 键 | 含义 | 接受的值 | 默认值 |
- | ------------ | --------------------------------- | -------------- | ------ |
- | showEmoji | 显示或隐藏表情图片 | 0/1/true/false | false |
- | disableEmbed | 关闭内嵌视频 | 0/1/true/false | false |
- | useAvid | 视频链接使用 AV 号 (默认为 BV 号) | 0/1/true/false | false |
- | directLink | 使用内容直链 | 0/1/true/false | false |
+| 宅舞 | 街舞 | 明星舞蹈 | 中国舞 | 舞蹈综合 | 舞蹈教程 |
+| ---- | ---- | -------- | ------ | -------- | -------- |
+| 20 | 198 | 199 | 200 | 154 | 156 |
- 用例:`/bilibili/user/dynamic/2267573/showEmoji=1&disableEmbed=1&useAvid=1`
+游戏
- :::tip[动态的专栏显示全文]
- 动态的专栏显示全文请使用通用参数里的 `mode=fulltext`
+| 单机游戏 | 电子竞技 | 手机游戏 | 网络游戏 | 桌游棋牌 | GMV | 音游 | Mugen |
+| -------- | -------- | -------- | -------- | -------- | --- | ---- | ----- |
+| 17 | 171 | 172 | 65 | 173 | 121 | 136 | 19 |
- 举例: bilibili 专栏全文输出 /bilibili/user/dynamic/2267573/?mode=fulltext
- :::
-</Route>
+知识
-### UP 主频道的合集 {#bilibili-up-zhu-pin-dao-de-he-ji}
+| 科学科普 | 社科人文 | 财经 | 校园学习 | 职业职场 | 野生技术协会 |
+| -------- | -------- | ---- | -------- | -------- | ------------ |
+| 201 | 124 | 207 | 208 | 209 | 122 |
-<Route author="shininome" example="/bilibili/user/collection/245645656/529166" path="/bilibili/user/collection/:uid/:sid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '合集 id, 可在合集页面的 URL 中找到', '默认为开启内嵌视频, 任意值为关闭']} />
+~~科技~~
-### UP 主频道的视频列表 {#bilibili-up-zhu-pin-dao-de-shi-pin-lie-biao}
+| ~~演讲・公开课~~ | ~~星海~~ | ~~机械~~ | ~~汽车~~ |
+| ---------------- | -------- | -------- | -------- |
+| 39 | 96 | 98 | 176 |
-<Route author="weirongxu" example="/bilibili/user/channel/2267573/396050" path="/bilibili/user/channel/:uid/:sid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '频道 id, 可在频道的 URL 中找到', '默认为开启内嵌视频, 任意值为关闭']} />
+数码
-### UP 主默认收藏夹 {#bilibili-up-zhu-mo-ren-shou-cang-jia}
+| 手机平板 | 电脑装机 | 摄影摄像 | 影音智能 |
+| -------- | -------- | -------- | -------- |
+| 95 | 189 | 190 | 191 |
-<Route author="DIYgod" example="/bilibili/user/fav/2267573" path="/bilibili/user/fav/:uid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']} radar="1" />
+生活
-### UP 主非默认收藏夹 {#bilibili-up-zhu-fei-mo-ren-shou-cang-jia}
+| 搞笑 | 日常 | 美食圈 | 动物圈 | 手工 | 绘画 | 运动 | 汽车 | 其他 | ~~ASMR~~ |
+| ---- | ---- | ------ | ------ | ---- | ---- | ---- | ---- | ---- | -------- |
+| 138 | 21 | 76 | 75 | 161 | 162 | 163 | 176 | 174 | 175 |
-<Route author="Qixingchen" example="/bilibili/fav/756508/50948568" path="/bilibili/fav/:uid/:fid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '收藏夹 ID, 可在收藏夹的 URL 中找到, 默认收藏夹建议使用 UP 主默认收藏夹功能', '默认为开启内嵌视频, 任意值为关闭']} />
+鬼畜
-### UP 主投币视频 {#bilibili-up-zhu-tou-bi-shi-pin}
+| 鬼畜调教 | 音 MAD | 人力 VOCALOID | 教程演示 |
+| -------- | ------ | ------------- | -------- |
+| 22 | 26 | 126 | 127 |
-<Route author="DIYgod" example="/bilibili/user/coin/208259" path="/bilibili/user/coin/:uid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']} radar="1" />
+时尚
-### UP 主点赞视频 {#bilibili-up-zhu-dian-zan-shi-pin}
+| 美妆 | 服饰 | 健身 | T 台 | 风向标 |
+| ---- | ---- | ---- | ---- | ------ |
+| 157 | 158 | 164 | 159 | 192 |
-<Route author="ygguorun" example="/bilibili/user/like/208259" path="/bilibili/user/like/:uid/:disableEmbed?" paramsDesc={['用户 id, 可在 UP 主主页中找到', '默认为开启内嵌视频, 任意值为关闭']} radar="1" />
+~~广告~~
-### UP 主粉丝 {#bilibili-up-zhu-fen-si}
+| ~~广告~~ |
+| -------- |
+| 166 |
-<Route author="Qixingchen" example="/bilibili/user/followers/2267573/3" path="/bilibili/user/followers/:uid/:loginUid" paramsDesc={['用户 id, 可在 UP 主主页中找到','用于登入的用户id,需要配置对应的 Cookie 值']} radar="1" configRequired="1">
- :::warning
- UP 主粉丝现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+资讯
-### UP 主关注用户 {#bilibili-up-zhu-guan-zhu-yong-hu}
+| 热点 | 环球 | 社会 | 综合 |
+| ---- | ---- | ---- | ---- |
+| 203 | 204 | 205 | 206 |
-<Route author="Qixingchen" example="/bilibili/user/followings/2267573/3" path="/bilibili/user/followings/:uid/:loginUid" paramsDesc={['用户 id, 可在 UP 主主页中找到','用于登入的用户id,需要配置对应的 Cookie 值']} radar="1" configRequired="1">
- :::warning
- UP 主关注用户现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+娱乐
-### 分区视频 {#bilibili-fen-qu-shi-pin}
+| 综艺 | 明星 | Korea 相关 |
+| ---- | ---- | ---------- |
+| 71 | 137 | 131 |
-<Route author="DIYgod" example="/bilibili/partion/33" path="/bilibili/partion/:tid/:disableEmbed?" paramsDesc={['分区 id', '默认为开启内嵌视频, 任意值为关闭']} radar="1">
- 动画
+影视
- | MAD·AMV | MMD·3D | 短片・手书・配音 | 特摄 | 综合 |
- | ------- | ------ | ---------------- | ---- | ---- |
- | 24 | 25 | 47 | 86 | 27 |
+| 影视杂谈 | 影视剪辑 | 短片 | 预告・资讯 |
+| -------- | -------- | ---- | ---------- |
+| 182 | 183 | 85 | 184 |
- 番剧
+纪录片
- | 连载动画 | 完结动画 | 资讯 | 官方延伸 |
- | -------- | -------- | ---- | -------- |
- | 33 | 32 | 51 | 152 |
+| 全部 | 人文・历史 | 科学・探索・自然 | 军事 | 社会・美食・旅行 |
+| ---- | ---------- | ---------------- | ---- | ---------------- |
+| 177 | 37 | 178 | 179 | 180 |
- 国创
+电影
- | 国产动画 | 国产原创相关 | 布袋戏 | 动态漫・广播剧 | 资讯 |
- | -------- | ------------ | ------ | -------------- | ---- |
- | 153 | 168 | 169 | 195 | 170 |
+| 全部 | 华语电影 | 欧美电影 | 日本电影 | 其他国家 |
+| ---- | -------- | -------- | -------- | -------- |
+| 23 | 147 | 145 | 146 | 83 |
- 音乐
+电视剧
- | 原创音乐 | 翻唱 | VOCALOID·UTAU | 电音 | 演奏 | MV | 音乐现场 | 音乐综合 | ~~OP/ED/OST~~ |
- | -------- | ---- | ------------- | ---- | ---- | --- | -------- | -------- | ------------- |
- | 28 | 31 | 30 | 194 | 59 | 193 | 29 | 130 | 54 |
+| 全部 | 国产剧 | 海外剧 |
+| ---- | ------ | ------ |
+| 11 | 185 | 187 |
- 舞蹈
+### 分区视频排行榜 {#bilibili-fen-qu-shi-pin-pai-hang-bang}
- | 宅舞 | 街舞 | 明星舞蹈 | 中国舞 | 舞蹈综合 | 舞蹈教程 |
- | ---- | ---- | -------- | ------ | -------- | -------- |
- | 20 | 198 | 199 | 200 | 154 | 156 |
+<Route data={{"path":"/partion/ranking/:tid/:days?/:disableEmbed?","categories":["social-media"],"example":"/bilibili/partion/ranking/171/3","parameters":{"tid":"分区 id, 见上方表格","days":"缺省为 7, 指最近多少天内的热度排序","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分区视频排行榜","maintainers":["lengthmin"],"location":"partion-ranking.ts"}} />
- 游戏
+### 歌单 {#bilibili-ge-dan}
- | 单机游戏 | 电子竞技 | 手机游戏 | 网络游戏 | 桌游棋牌 | GMV | 音游 | Mugen |
- | -------- | -------- | -------- | -------- | -------- | --- | ---- | ----- |
- | 17 | 171 | 172 | 65 | 173 | 121 | 136 | 19 |
+<Route data={{"path":"/audio/:id","categories":["social-media"],"example":"/bilibili/audio/10624","parameters":{"id":"歌单 id, 可在歌单页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"歌单","maintainers":["LogicJake"],"location":"audio.ts"}} />
- 知识
+### 会员购票务 {#bilibili-hui-yuan-gou-piao-wu}
- | 科学科普 | 社科人文 | 财经 | 校园学习 | 职业职场 | 野生技术协会 |
- | -------- | -------- | ---- | -------- | -------- | ------------ |
- | 201 | 124 | 207 | 208 | 209 | 122 |
+<Route data={{"path":"/platform/:area?/:p_type?/:uid?","categories":["social-media"],"example":"/bilibili/platform/-1","parameters":{"area":"省市-国标码,默认为-1即全国","p_type":"类型:见下表,默认为全部类型","uid":"用户id,可以不填,不过不填不设置cookie,搜索结果与登入账号后搜索结果不一样。可以在url中找到,需要配置cookie值,只需要SESSDATA的值即可"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["show.bilibili.com/platform"]},"name":"会员购票务","maintainers":["nightmare-mio"],"url":"show.bilibili.com/platform","description":"| 类型 |\n| -------- |\n| 演出 |\n| 展览 |\n| 本地生活 |","location":"platform.ts"}} />
- ~~科技~~
+| 类型 |
+| -------- |
+| 演出 |
+| 展览 |
+| 本地生活 |
- | ~~演讲・公开课~~ | ~~星海~~ | ~~机械~~ | ~~汽车~~ |
- | ---------------- | -------- | -------- | -------- |
- | 39 | 96 | 98 | 176 |
+### 会员购新品上架 {#bilibili-hui-yuan-gou-xin-pin-shang-jia}
- 数码
+<Route data={{"path":"/mall/new/:category?","categories":["social-media"],"example":"/bilibili/mall/new/1","parameters":{"category":"分类,默认全部,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"会员购新品上架","maintainers":["DIYgod"],"description":"| 全部 | 手办 | 魔力赏 | 周边 | 游戏 |\n | ---- | ---- | ------ | ---- | ---- |\n | 0 | 1 | 7 | 3 | 6 |","location":"mall-new.ts"}} />
- | 手机平板 | 电脑装机 | 摄影摄像 | 影音智能 |
- | -------- | -------- | -------- | -------- |
- | 95 | 189 | 190 | 191 |
+| 全部 | 手办 | 魔力赏 | 周边 | 游戏 |
+| ---- | ---- | ------ | ---- | ---- |
+| 0 | 1 | 7 | 3 | 6 |
- 生活
+### 会员购作品 {#bilibili-hui-yuan-gou-zuo-pin}
- | 搞笑 | 日常 | 美食圈 | 动物圈 | 手工 | 绘画 | 运动 | 汽车 | 其他 | ~~ASMR~~ |
- | ---- | ---- | ------ | ------ | ---- | ---- | ---- | ---- | ---- | -------- |
- | 138 | 21 | 76 | 75 | 161 | 162 | 163 | 176 | 174 | 175 |
+<Route data={{"path":"/mall/ip/:id","categories":["social-media"],"example":"/bilibili/mall/ip/0_3000294","parameters":{"id":"作品 id, 可在作品列表页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"会员购作品","maintainers":["DIYgod"],"location":"mall-ip.ts"}} />
- 鬼畜
+### 漫画更新 {#bilibili-man-hua-geng-xin}
- | 鬼畜调教 | 音 MAD | 人力 VOCALOID | 教程演示 |
- | -------- | ------ | ------------- | -------- |
- | 22 | 26 | 126 | 127 |
+<Route data={{"path":"/manga/update/:comicid","categories":["social-media"],"example":"/bilibili/manga/update/26009","parameters":{"comicid":"漫画 id, 可在 URL 中找到, 支持带有`mc`前缀"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["manga.bilibili.com/detail/:comicid"]},"name":"漫画更新","maintainers":["hoilc"],"location":"manga-update.ts"}} />
- 时尚
+### 热搜 {#bilibili-re-sou}
- | 美妆 | 服饰 | 健身 | T 台 | 风向标 |
- | ---- | ---- | ---- | ---- | ------ |
- | 157 | 158 | 164 | 159 | 192 |
+<Route data={{"path":"/hot-search","categories":["social-media"],"example":"/bilibili/hot-search","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.bilibili.com/"]},"name":"热搜","maintainers":["CaoMeiYouRen"],"url":"www.bilibili.com/","location":"hot-search.ts"}} />
- ~~广告~~
+### 视频弹幕 {#bilibili-shi-pin-tan-mu}
- | ~~广告~~ |
- | -------- |
- | 166 |
+<Route data={{"path":"/video/danmaku/:bvid/:pid?","categories":["social-media"],"example":"/bilibili/video/danmaku/BV1vA411b7ip/1","parameters":{"bvid":"视频AV号,可在视频页 URL 中找到","pid":"分P号,不填默认为1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"视频弹幕","maintainers":["Qixingchen"],"location":"danmaku.ts"}} />
- 资讯
+### 视频评论 {#bilibili-shi-pin-ping-lun}
- | 热点 | 环球 | 社会 | 综合 |
- | ---- | ---- | ---- | ---- |
- | 203 | 204 | 205 | 206 |
+<Route data={{"path":"/video/reply/:bvid","categories":["social-media"],"example":"/bilibili/video/reply/BV1vA411b7ip","parameters":{"bvid":"可在视频页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"视频评论","maintainers":["Qixingchen"],"location":"reply.ts"}} />
- 娱乐
+### 视频搜索 {#bilibili-shi-pin-sou-suo}
- | 综艺 | 明星 | Korea 相关 |
- | ---- | ---- | ---------- |
- | 71 | 137 | 131 |
+<Route data={{"path":"/vsearch/:kw/:order?/:disableEmbed?/:tid?","categories":["social-media"],"example":"/bilibili/vsearch/RSSHub","parameters":{"kw":"检索关键字","order":"排序方式, 综合:totalrank 最多点击:click 最新发布:pubdate(缺省) 最多弹幕:dm 最多收藏:stow","disableEmbed":"默认为开启内嵌视频, 任意值为关闭","tid":"分区 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"视频搜索","maintainers":["Symty"],"description":"分区 id 的取值请参考下表:\n\n | 全部分区 | 动画 | 番剧 | 国创 | 音乐 | 舞蹈 | 游戏 | 知识 | 科技 | 运动 | 汽车 | 生活 | 美食 | 动物圈 | 鬼畜 | 时尚 | 资讯 | 娱乐 | 影视 | 纪录片 | 电影 | 电视剧 |\n | -------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ------ |\n | 0 | 1 | 13 | 167 | 3 | 129 | 4 | 36 | 188 | 234 | 223 | 160 | 211 | 217 | 119 | 155 | 202 | 5 | 181 | 177 | 23 | 11 |","location":"vsearch.ts"}} />
- 影视
+分区 id 的取值请参考下表:
- | 影视杂谈 | 影视剪辑 | 短片 | 预告・资讯 |
- | -------- | -------- | ---- | ---------- |
- | 182 | 183 | 85 | 184 |
+| 全部分区 | 动画 | 番剧 | 国创 | 音乐 | 舞蹈 | 游戏 | 知识 | 科技 | 运动 | 汽车 | 生活 | 美食 | 动物圈 | 鬼畜 | 时尚 | 资讯 | 娱乐 | 影视 | 纪录片 | 电影 | 电视剧 |
+| -------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ------ |
+| 0 | 1 | 13 | 167 | 3 | 129 | 4 | 36 | 188 | 234 | 223 | 160 | 211 | 217 | 119 | 155 | 202 | 5 | 181 | 177 | 23 | 11 |
- 纪录片
+### 视频选集列表 {#bilibili-shi-pin-xuan-ji-lie-biao}
- | 全部 | 人文・历史 | 科学・探索・自然 | 军事 | 社会・美食・旅行 |
- | ---- | ---------- | ---------------- | ---- | ---------------- |
- | 177 | 37 | 178 | 179 | 180 |
+<Route data={{"path":"/video/page/:bvid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/video/page/BV1i7411M7N9","parameters":{"bvid":"可在视频页 URL 中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"视频选集列表","maintainers":["sxzz"],"location":"page.ts"}} />
- 电影
+### 用户关注动态 {#bilibili-yong-hu-guan-zhu-dong-tai}
- | 全部 | 华语电影 | 欧美电影 | 日本电影 | 其他国家 |
- | ---- | -------- | -------- | -------- | -------- |
- | 23 | 147 | 145 | 146 | 83 |
+<Route data={{"path":"/followings/dynamic/:uid/:routeParams?","categories":["social-media"],"example":"/bilibili/followings/dynamic/109937383","parameters":{"uid":"用户 id","routeParams":"额外参数;请参阅 [#UP 主动态](#bilibili-up-zhu-dong-tai) 的说明和表格"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户关注动态","maintainers":["TigerCubDen","JimenezLi"],"description":":::warning\n 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"followings-dynamic.ts"}} />
- 电视剧
+:::warning
+用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
- | 全部 | 国产剧 | 海外剧 |
- | ---- | ------ | ------ |
- | 11 | 185 | 187 |
-</Route>
+### 用户关注视频动态 {#bilibili-yong-hu-guan-zhu-shi-pin-dong-tai}
-### 分区视频排行榜 {#bilibili-fen-qu-shi-pin-pai-hang-bang}
+<Route data={{"path":"/followings/video/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/followings/video/2267573","parameters":{"uid":"用户 id","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户关注视频动态","maintainers":["LogicJake"],"description":":::warning\n 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"followings-video.ts"}} />
-<Route author="lengthmin" example="/bilibili/partion/ranking/171/3" path="/bilibili/partion/ranking/:tid/:days?/:disableEmbed?" paramsDesc={['分区 id, 见上方表格', '缺省为 7, 指最近多少天内的热度排序', '默认为开启内嵌视频, 任意值为关闭']} />
+:::warning
+用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-### 视频选集列表 {#bilibili-shi-pin-xuan-ji-lie-biao}
+### 用户关注专栏 {#bilibili-yong-hu-guan-zhu-zhuan-lan}
-<Route author="sxzz" example="/bilibili/video/page/BV1i7411M7N9" path="/bilibili/video/page/:bvid/:disableEmbed?" paramsDesc={['可在视频页 URL 中找到', '默认为开启内嵌视频, 任意值为关闭']} />
+<Route data={{"path":"/followings/article/:uid","categories":["social-media"],"example":"/bilibili/followings/article/99800931","parameters":{"uid":"用户 id"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户关注专栏","maintainers":["woshiluo"],"description":":::warning\n 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"followings-article.ts"}} />
-### 视频评论 {#bilibili-shi-pin-ping-lun}
+:::warning
+用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-<Route author="Qixingchen" example="/bilibili/video/reply/BV1vA411b7ip" path="/bilibili/video/reply/:bvid" paramsDesc={['可在视频页 URL 中找到']} />
+### 用户稍后再看 {#bilibili-yong-hu-shao-hou-zai-kan}
-### 视频弹幕 {#bilibili-shi-pin-tan-mu}
+<Route data={{"path":"/watchlater/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/watchlater/2267573","parameters":{"uid":"用户 id","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户稍后再看","maintainers":["JimenezLi"],"description":":::warning\n 用户稍后再看需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"watchlater.ts"}} />
-<Route author="Qixingchen" example="/bilibili/video/danmaku/BV1vA411b7ip/1" path="/bilibili/video/danmaku/:bvid/:pid?" paramsDesc={['视频AV号,可在视频页 URL 中找到','分P号,不填默认为1']} />
+:::warning
+用户稍后再看需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-### link 公告 {#bilibili-link-gong-gao}
+### 用户追番列表 {#bilibili-yong-hu-zhui-fan-lie-biao}
-<Route author="Qixingchen" example="/bilibili/link/news/live" path="/bilibili/link/news/:product" paramsDesc={['公告分类, 包括 直播:live 小视频:vc 相簿:wh']} />
+<Route data={{"path":"/user/bangumi/:uid/:type?","categories":["social-media"],"example":"/bilibili/user/bangumi/208259","parameters":{"uid":"用户 id","type":"1为番,2为剧,留空为1"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/bangumi/:uid"},"name":"用户追番列表","maintainers":["wdssmq"],"location":"user-bangumi.ts"}} />
-### 视频搜索 {#bilibili-shi-pin-sou-suo}
+### 用户追漫更新 {#bilibili-yong-hu-zhui-man-geng-xin}
-<Route author="Symty" example="/bilibili/vsearch/RSSHub" path="/bilibili/vsearch/:kw/:order?/:disableEmbed?/:tid?" paramsDesc={['检索关键字', '排序方式, 综合:totalrank 最多点击:click 最新发布:pubdate(缺省) 最多弹幕:dm 最多收藏:stow', '默认为开启内嵌视频, 任意值为关闭', '分区 id']}>
- 分区 id 的取值请参考下表:
+<Route data={{"path":"/manga/followings/:uid/:limits?","categories":["social-media"],"example":"/bilibili/manga/followings/26009","parameters":{"uid":"用户 id","limits":"抓取最近更新前多少本漫画,默认为10"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户追漫更新","maintainers":["yindaheng98"],"description":":::warning\n 用户追漫需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"manga-followings.ts"}} />
- | 全部分区 | 动画 | 番剧 | 国创 | 音乐 | 舞蹈 | 游戏 | 知识 | 科技 | 运动 | 汽车 | 生活 | 美食 | 动物圈 | 鬼畜 | 时尚 | 资讯 | 娱乐 | 影视 | 纪录片 | 电影 | 电视剧 |
- | -------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ------ |
- | 0 | 1 | 13 | 167 | 3 | 129 | 4 | 36 | 188 | 234 | 223 | 160 | 211 | 217 | 119 | 155 | 202 | 5 | 181 | 177 | 23 | 11 |
-</Route>
+:::warning
+用户追漫需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-### 用户关注动态 {#bilibili-yong-hu-guan-zhu-dong-tai}
+### 专栏文集 {#bilibili-zhuan-lan-wen-ji}
-<Route author="TigerCubDen JimenezLi" example="/bilibili/followings/dynamic/109937383" path="/bilibili/followings/dynamic/:uid/:routeParams?" paramsDesc={['用户 id', '额外参数;请参阅 [#UP 主动态](#bilibili-up-zhu-dong-tai) 的说明和表格']} configRequired="1">
- :::warning
- 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/readlist/:listid","categories":["social-media"],"example":"/bilibili/readlist/25611","parameters":{"listid":"文集 id, 可在专栏文集 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"专栏文集","maintainers":["hoilc"],"location":"readlist.ts"}} />
-### 用户关注视频动态 {#bilibili-yong-hu-guan-zhu-shi-pin-dong-tai}
+### 综合热门 {#bilibili-zong-he-re-men}
-<Route author="LogicJake" example="/bilibili/followings/video/2267573" path="/bilibili/followings/video/:uid/:disableEmbed?" paramsDesc={['用户 id', '默认为开启内嵌视频, 任意值为关闭']} configRequired="1">
- :::warning
- 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/popular/all","categories":["social-media"],"example":"/bilibili/popular/all","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"综合热门","maintainers":["ziminliu"],"location":"popular.ts"}} />
-### 用户关注专栏 {#bilibili-yong-hu-guan-zhu-zhuan-lan}
+### B 站每周必看 {#bilibili-b-zhan-mei-zhou-bi-kan}
-<Route author="woshiluo" example="/bilibili/followings/article/99800931" path="/bilibili/followings/article/:uid" paramsDesc={['用户 id']} configRequired="1">
- :::warning
- 用户动态需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/weekly/:disableEmbed?","categories":["social-media"],"example":"/bilibili/weekly","parameters":{"disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"B 站每周必看","maintainers":["ttttmr"],"location":"weekly-recommend.ts"}} />
-### 用户稍后再看 {#bilibili-yong-hu-shao-hou-zai-kan}
+### link 公告 {#bilibili-link-gong-gao}
-<Route author="JimenezLi" example="/bilibili/watchlater/2267573" path="/bilibili/watchlater/:uid/:disableEmbed?" paramsDesc={['用户 id', '默认为开启内嵌视频, 任意值为关闭']} configRequired="1">
- :::warning
- 用户稍后再看需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/link/news/:product","categories":["social-media"],"example":"/bilibili/link/news/live","parameters":{"product":"公告分类, 包括 直播:live 小视频:vc 相簿:wh"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"link 公告","maintainers":["Qixingchen"],"location":"link-news.ts"}} />
-### 直播开播 {#bilibili-zhi-bo-kai-bo}
+### UP 主点赞视频 {#bilibili-up-zhu-dian-zan-shi-pin}
-见 [#哔哩哔哩直播](/routes/live#bi-li-bi-li-zhi-bo)
+<Route data={{"path":"/user/like/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/like/208259","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/like/:uid"},"name":"UP 主点赞视频","maintainers":["ygguorun"],"location":"like.ts"}} />
-### 直播搜索 {#bilibili-zhi-bo-sou-suo}
+### UP 主动态 {#bilibili-up-zhu-dong-tai}
-见 [#哔哩哔哩直播](/routes/live#bi-li-bi-li-zhi-bo)
+<Route data={{"path":"/user/dynamic/:uid/:routeParams?","categories":["social-media"],"example":"/bilibili/user/dynamic/2267573","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","routeParams":"额外参数;请参阅以下说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/dynamic/:uid"},"name":"UP 主动态","maintainers":["DIYgod","zytomorrow","CaoMeiYouRen","JimenezLi"],"description":"| 键 | 含义 | 接受的值 | 默认值 |\n | ------------ | --------------------------------- | -------------- | ------ |\n | showEmoji | 显示或隐藏表情图片 | 0/1/true/false | false |\n | disableEmbed | 关闭内嵌视频 | 0/1/true/false | false |\n | useAvid | 视频链接使用 AV 号 (默认为 BV 号) | 0/1/true/false | false |\n | directLink | 使用内容直链 | 0/1/true/false | false |\n\n 用例:`/bilibili/user/dynamic/2267573/showEmoji=1&disableEmbed=1&useAvid=1`\n\n :::tip[动态的专栏显示全文]\n 动态的专栏显示全文请使用通用参数里的 `mode=fulltext`\n\n 举例: bilibili 专栏全文输出 /bilibili/user/dynamic/2267573/?mode=fulltext\n :::","location":"dynamic.ts"}} />
-### 直播分区 {#bilibili-zhi-bo-fen-qu}
+| 键 | 含义 | 接受的值 | 默认值 |
+| ------------ | --------------------------------- | -------------- | ------ |
+| showEmoji | 显示或隐藏表情图片 | 0/1/true/false | false |
+| disableEmbed | 关闭内嵌视频 | 0/1/true/false | false |
+| useAvid | 视频链接使用 AV 号 (默认为 BV 号) | 0/1/true/false | false |
+| directLink | 使用内容直链 | 0/1/true/false | false |
-见 [#哔哩哔哩直播](/routes/live#bi-li-bi-li-zhi-bo)
+用例:`/bilibili/user/dynamic/2267573/showEmoji=1&disableEmbed=1&useAvid=1`
-### 会员购新品上架 {#bilibili-hui-yuan-gou-xin-pin-shang-jia}
+:::tip[动态的专栏显示全文]
+动态的专栏显示全文请使用通用参数里的 `mode=fulltext`
-<Route author="DIYgod" example="/bilibili/mall/new/1" path="/bilibili/mall/new/:category?" paramsDesc={['分类,默认全部,见下表']}>
- | 全部 | 手办 | 魔力赏 | 周边 | 游戏 |
- | ---- | ---- | ------ | ---- | ---- |
- | 0 | 1 | 7 | 3 | 6 |
-</Route>
+举例: bilibili 专栏全文输出 /bilibili/user/dynamic/2267573/?mode=fulltext
+:::
-### 会员购作品 {#bilibili-hui-yuan-gou-zuo-pin}
+### UP 主非默认收藏夹 {#bilibili-up-zhu-fei-mo-ren-shou-cang-jia}
-<Route author="DIYgod" example="/bilibili/mall/ip/0_3000294" path="/bilibili/mall/ip/:id" paramsDesc={['作品 id, 可在作品列表页 URL 中找到']} />
+<Route data={{"path":"/fav/:uid/:fid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/fav/756508/50948568","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","fid":"收藏夹 ID, 可在收藏夹的 URL 中找到, 默认收藏夹建议使用 UP 主默认收藏夹功能","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"UP 主非默认收藏夹","maintainers":["Qixingchen"],"location":"fav.ts"}} />
-### 会员购票务 {#bilibili-hui-yuan-gou-piao-wu}
+### UP 主粉丝 {#bilibili-up-zhu-fen-si}
-<Route author="nightmare-mio" example="/bilibili/platform/-1" path="/bilibili/platform/:area?/:p_type?/:uid?" paramsDesc={['省市-国标码,默认为-1即全国','类型:见下表,默认为全部类型','用户id,可以不填,不过不填不设置cookie,搜索结果与登入账号后搜索结果不一样。可以在url中找到,需要配置cookie值,只需要SESSDATA的值即可']} />
+<Route data={{"path":"/user/followers/:uid/:loginUid","categories":["social-media"],"example":"/bilibili/user/followers/2267573/3","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","loginUid":"用于登入的用户id,需要配置对应的 Cookie 值"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/followers/:uid"},"name":"UP 主粉丝","maintainers":["Qixingchen"],"description":":::warning\n UP 主粉丝现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"followers.ts"}} />
-| 类型 |
-| -------- |
-| 演出 |
-| 展览 |
-| 本地生活 |
+:::warning
+UP 主粉丝现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-### 综合热门 {#bilibili-zong-he-re-men}
+### UP 主关注用户 {#bilibili-up-zhu-guan-zhu-yong-hu}
-<Route author="ziminliu" example="/bilibili/popular/all" path="/bilibili/popular/all" />
+<Route data={{"path":"/user/followings/:uid/:loginUid","categories":["social-media"],"example":"/bilibili/user/followings/2267573/3","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","loginUid":"用于登入的用户id,需要配置对应的 Cookie 值"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/followings/:uid"},"name":"UP 主关注用户","maintainers":["Qixingchen"],"description":":::warning\n UP 主关注用户现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"followings.ts"}} />
-### 热搜 {#bilibili-re-sou}
+:::warning
+UP 主关注用户现在需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
-<Route author="CaoMeiYouRen" example="/bilibili/hot-search" path="/bilibili/hot-search" />
+### UP 主默认收藏夹 {#bilibili-up-zhu-mo-ren-shou-cang-jia}
-### 排行榜 {#bilibili-pai-hang-bang}
+<Route data={{"path":"/user/fav/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/fav/2267573","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid","space.bilibili.com/:uid/favlist"],"target":"/user/fav/:uid"},"name":"UP 主默认收藏夹","maintainers":["DIYgod"],"location":"user-fav.ts"}} />
-<Route author="DIYgod" example="/bilibili/ranking/0/3/1" path="/bilibili/ranking/:tid/:days?/:arc_type?/:disableEmbed?" paramsDesc={['排行榜分区 id, 默认 0', '时间跨度, 可为 1 3 7 30', '投稿时间, 可为 0(全部投稿) 1(近期投稿) , 默认 1', '默认为开启内嵌视频, 任意值为关闭']}>
- | 全站 | 动画 | 国创相关 | 音乐 | 舞蹈 | 游戏 | 科技 | 数码 | 生活 | 鬼畜 | 时尚 | 娱乐 | 影视 |
- | ---- | ---- | -------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 0 | 1 | 168 | 3 | 129 | 4 | 36 | 188 | 160 | 119 | 155 | 5 | 181 |
-</Route>
+### UP 主频道的合集 {#bilibili-up-zhu-pin-dao-de-he-ji}
-### 歌单 {#bilibili-ge-dan}
+<Route data={{"path":"/user/collection/:uid/:sid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/collection/245645656/529166","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","sid":"合集 id, 可在合集页面的 URL 中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"UP 主频道的合集","maintainers":["shininome"],"location":"user-collection.ts"}} />
-<Route author="LogicJake" example="/bilibili/audio/10624" path="/bilibili/audio/:id" paramsDesc={['歌单 id, 可在歌单页 URL 中找到']} />
+### UP 主频道的视频列表 {#bilibili-up-zhu-pin-dao-de-shi-pin-lie-biao}
-### 专栏文集 {#bilibili-zhuan-lan-wen-ji}
+<Route data={{"path":"/user/channel/:uid/:sid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/channel/2267573/396050","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","sid":"频道 id, 可在频道的 URL 中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"UP 主频道的视频列表","maintainers":["weirongxu"],"location":"user-channel.ts"}} />
-<Route author="hoilc" example="/bilibili/readlist/25611" path="/bilibili/readlist/:listid" paramsDesc={['文集 id, 可在专栏文集 URL 中找到']} />
+### UP 主投币视频 {#bilibili-up-zhu-tou-bi-shi-pin}
-### B 站每周必看 {#bilibili-b-zhan-mei-zhou-bi-kan}
+<Route data={{"path":"/user/coin/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/coin/208259","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/coin/:uid"},"name":"UP 主投币视频","maintainers":["DIYgod"],"location":"coin.ts"}} />
-<Route author="ttttmr" example="/bilibili/weekly" path="/bilibili/weekly/:disableEmbed?" paramsDesc={['默认为开启内嵌视频, 任意值为关闭']} />
+### UP 主投稿 {#bilibili-up-zhu-tou-gao}
-### 漫画更新 {#bilibili-man-hua-geng-xin}
+<Route data={{"path":"/user/video/:uid/:disableEmbed?","categories":["social-media"],"example":"/bilibili/user/video/2267573","parameters":{"uid":"用户 id, 可在 UP 主主页中找到","disableEmbed":"默认为开启内嵌视频, 任意值为关闭"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"],"target":"/user/video/:uid"},"name":"UP 主投稿","maintainers":["DIYgod"],"description":":::tip[动态的专栏显示全文]\n 可以使用 [UP 主动态](#bilibili-up-zhu-dong-tai)路由作为代替绕过反爬限制\n :::","location":"video.ts"}} />
-<Route author="hoilc" example="/bilibili/manga/update/26009" path="/bilibili/manga/update/:comicid" paramsDesc={['漫画 id, 可在 URL 中找到, 支持带有`mc`前缀']} />
+:::tip[动态的专栏显示全文]
+可以使用 [UP 主动态](#bilibili-up-zhu-dong-tai)路由作为代替绕过反爬限制
+:::
-### 用户追漫更新 {#bilibili-yong-hu-zhui-man-geng-xin}
+### UP 主专栏 {#bilibili-up-zhu-zhuan-lan}
-<Route author="yindaheng98" example="/bilibili/manga/followings/26009" path="/bilibili/manga/followings/:uid/:limits?" paramsDesc={['用户 id', '抓取最近更新前多少本漫画,默认为10']} configRequired="1">
- :::warning
- 用户追漫需要 b 站登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/user/article/:uid","categories":["social-media"],"example":"/bilibili/user/article/334958638","parameters":{"uid":"用户 id, 可在 UP 主主页中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["space.bilibili.com/:uid"]},"name":"UP 主专栏","maintainers":["lengthmin","Qixingchen"],"location":"article.ts"}} />
## Bluesky (bsky) {#bluesky-bsky}
-### Post {#bluesky-bsky-post}
+### Keywords {#bluesky-bsky-keywords}
-<Route author="TonyRL" example="/bsky/profile/bsky.app" path="/bsky/profile/:handle" paramsDesc={['User handle, can be found in URL']} radar="1" />
+<Route data={{"path":"/keyword/:keyword","categories":["social-media"],"example":"/bsky/keyword/hello","parameters":{"keyword":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keywords","maintainers":["untitaker"],"location":"keyword.ts"}} />
-### Keywords {#bluesky-bsky-keywords}
+### Post {#bluesky-bsky-post}
-<Route author="untitaker" example="/bsky/keyword/hello" path="/bsky/keyword/:keyword" radar="1" />
+<Route data={{"path":"/profile/:handle","categories":["social-media"],"example":"/bsky/profile/bsky.app","parameters":{"handle":"User handle, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bsky.app/profile/:handle"]},"name":"Post","maintainers":["TonyRL"],"location":"posts.ts"}} />
## Crossbell {#crossbell}
+### Feeds of following {#crossbell-feeds-of-following}
+
+<Route data={{"path":"/feeds/following/:characterId","categories":["social-media"],"example":"/crossbell/feeds/following/10","parameters":{"characterId":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Feeds of following","maintainers":["DIYgod"],"location":"feeds/following.ts"}} />
+
### Notes {#crossbell-notes}
-<Route author="DIYgod" example="/crossbell/notes" path="/crossbell/notes" radar="1" />
+<Route data={{"path":"/notes","categories":["social-media"],"example":"/crossbell/notes","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["crossbell.io/*"]},"name":"Notes","maintainers":["DIYgod"],"url":"crossbell.io/*","location":"notes/index.ts"}} />
### Notes of character {#crossbell-notes-of-character}
-<Route author="DIYgod" example="/crossbell/notes/character/10" path="/crossbell/notes/character/:characterId" radar="1" />
+<Route data={{"path":"/notes/character/:characterId","categories":["social-media"],"example":"/crossbell/notes/character/10","parameters":{"characterId":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["crossbell.io/*"],"target":"/notes"},"name":"Notes of character","maintainers":["DIYgod"],"url":"crossbell.io/*","location":"notes/character.ts"}} />
### Notes of source {#crossbell-notes-of-source}
-<Route author="DIYgod" example="/crossbell/notes/source/xlog" path="/crossbell/notes/source/:source" radar="1" />
-
-### Feeds of following {#crossbell-feeds-of-following}
-
-<Route author="DIYgod" example="/crossbell/feeds/following/10" path="/crossbell/feeds/following/:characterId" radar="1" />
-
-## CuriousCat {#curiouscat}
-
-### User {#curiouscat-user}
-
-<Route author="lucasew" path="/curiouscat/user/:name" example="/curiouscat/user/kretyn" paramsDesc={['name, username that is in the URL']} />
+<Route data={{"path":"/notes/source/:source","categories":["social-media"],"example":"/crossbell/notes/source/xlog","parameters":{"source":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["crossbell.io/*"],"target":"/notes"},"name":"Notes of source","maintainers":["DIYgod"],"url":"crossbell.io/*","location":"notes/source.ts"}} />
## Curius {#curius}
### User {#curius-user}
-<Route author="Ovler-Young" example="/curius/links/yuu-yuu" path="/curius/links/:name" paramsDesc={['Username, can be found in URL']} />
+<Route data={{"path":"/links/:name","categories":["social-media"],"example":"/curius/links/yuu-yuu","parameters":{"name":"Username, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["curius.app/:name"]},"name":"User","maintainers":["Ovler-Young"],"location":"links.ts"}} />
## Daily.dev {#daily-dev}
-### Popular {#daily-dev-popular}
-
-<Route author="Rjnishant530" example="/daily" path="/daily" />
-
### Most Discussed {#daily-dev-most-discussed}
-<Route author="Rjnishant530" example="/daily/discussed" path="/daily/discussed" />
+<Route data={{"path":"/discussed","categories":["social-media"],"example":"/daily/discussed","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["daily.dev/popular"],"target":""},"name":"Most Discussed","maintainers":["Rjnishant530"],"url":"daily.dev/popular","location":"discussed.ts"}} />
### Most upvoted {#daily-dev-most-upvoted}
-<Route author="Rjnishant530" example="/daily/upvoted" path="/daily/upvoted" />
-
-## Dev.to {#dev-to}
-
-### Top Posts {#dev-to-top-posts}
-
-<Route author="dwemerx" example="/dev.to/top/month" path="/dev.to/top/:period" paramsDesc={['period']}>
- | dev.to weekly top | dev.to monthly top | dev.to yearly top | dev.to top posts of all time |
- | ----------------- | ------------------ | ----------------- | ---------------------------- |
- | week | month | year | infinity |
-</Route>
+<Route data={{"path":"/upvoted","categories":["social-media"],"example":"/daily/upvoted","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["daily.dev/popular"],"target":""},"name":"Most upvoted","maintainers":["Rjnishant530"],"url":"daily.dev/popular","location":"upvoted.ts"}} />
## Discord {#discord}
### Channel Messages {#discord-channel-messages}
-<Route author="TonyRL" path="/discord/channel/:channelId" example="/discord/channel/950465850056536084" paramsDesc={['Channel ID']} radar="1" configRequired="1" />
-
-## Disqus {#disqus}
-
-### Comment {#disqus-comment}
-
-<Route author="DIYgod" path="/disqus/posts/:forum" example="/disqus/posts/diygod-me" paramsDesc={['forum, disqus name of the target website']} />
+<Route data={{"path":"/channel/:channelId","categories":["social-media"],"example":"/discord/channel/950465850056536084","parameters":{"channelId":"Channel ID"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["discord.com/channels/:guildId/:channelId/:messageID","discord.com/channels/:guildId/:channelId"]},"name":"Channel Messages","maintainers":["TonyRL"],"location":"channel.ts"}} />
## Fansly {#fansly}
-### User Timeline {#fansly-user-timeline}
-
-<Route author="TonyRL" example="/fansly/user/AeriGoMoo" path="/fansly/user/:username" paramsDesc={['User ID']} radar="1" />
-
### Hashtag {#fansly-hashtag}
-<Route author="TonyRL" example="/fansly/tag/free" path="/fansly/tag/:tag" paramsDesc={['Hashtag']} radar="1" />
-
-## Fur Affinity {#fur-affinity}
-
-### Home {#fur-affinity-home}
-
-<Route author="TigerCubDen" example="/furaffinity/home" path="/furaffinity/home/:type?/:nsfw?" paramsDesc={['Art Type, default to be `artwork`', 'NSFW Mode, do not filter NSFW contents when value set to `1`']} radar="1">
- Type
-
- | artwork | crafts | music | writing |
- | ------- | ------ | ----- | ------- |
- | artwork | crafts | music | writing |
-</Route>
-
-### Browse {#fur-affinity-browse}
-
-<Route author="TigerCubDen" example="/furaffinity/browse" path="/furaffinity/browse/:nsfw?" paramsDesc={['NSFW Mode, do not filter NSFW contents when value set to `1`']} radar="1" />
-
-### Website Status {#fur-affinity-website-status}
-
-<Route author="TigerCubDen" example="/furaffinity/status" path="/furaffinity/status" radar="1" />
-
-### Search {#fur-affinity-search}
-
-<Route author="TigerCubDen" example="/furaffinity/search/tiger" path="/furaffinity/search/:keyword/:nsfw?" paramsDesc={['Search keyword, enter any words you want to search, require English', 'NSFW Mode,do not filter NSFW contents when value set to `1`']} radar="1" />
-
-### Userpage Profile {#fur-affinity-userpage-profile}
-
-<Route author="TigerCubDen" example="/furaffinity/user/tiger-jungle" path="/furaffinity/user/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
-
-### User's Watching List {#fur-affinity-user-s-watching-list}
-
-<Route author="TigerCubDen" example="/furaffinity/watching/okami9312" path="/furaffinity/watching/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
-
-### User's Watcher List {#fur-affinity-user-s-watcher-list}
-
-<Route author="TigerCubDen" example="/furaffinity/watchers/malikshadowclaw" path="/furaffinity/watchers/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
-
-### User's Commission Information {#fur-affinity-user-s-commission-information}
-
-<Route author="TigerCubDen" example="/furaffinity/commissions/flashlioness" path="/furaffinity/commissions/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
-
-### User's Shouts {#fur-affinity-user-s-shouts}
-
-<Route author="TigerCubDen" example="/furaffinity/shouts/redodgft" path="/furaffinity/shouts/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
+<Route data={{"path":"/tag/:tag","categories":["social-media"],"example":"/fansly/tag/free","parameters":{"tag":"Hashtag"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fansly.com/explore/tag/:tag"]},"name":"Hashtag","maintainers":["TonyRL"],"location":"tag.ts"}} />
-### User's Journals {#fur-affinity-user-s-journals}
-
-<Route author="TigerCubDen" example="/furaffinity/journals/rukis" path="/furaffinity/journals/:username" paramsDesc={['Username, can find in userpage']} radar="1" />
-
-### User's Gallery {#fur-affinity-user-s-gallery}
-
-<Route author="TigerCubDen" example="/furaffinity/gallery/flashlioness" path="/furaffinity/gallery/:username/:nsfw?" paramsDesc={['Username, can find in userpage', 'NSFW Mode, do not filter NSFW contents when value set to `1`']} radar="1" />
-
-### User's Scraps {#fur-affinity-user-s-scraps}
-
-<Route author="TigerCubDen" example="/furaffinity/scraps/flashlioness" path="/furaffinity/scraps/:username/:nsfw?" paramsDesc={['Username, can find in userpage', 'NSFW Mode, do not filter NSFW contents when value set to `1`']} radar="1" />
-
-### User's Favorites {#fur-affinity-user-s-favorites}
-
-<Route author="TigerCubDen" example="/furaffinity/favorites/tiger-jungle" path="/furaffinity/favorites/:username/:nsfw?" paramsDesc={['Username, can find in userpage', 'NSFW Mode, do not filter NSFW contents when value set to `1`']} radar="1" />
-
-### Submission Comments {#fur-affinity-submission-comments}
-
-<Route author="TigerCubDen" example="/furaffinity/submission_comments/34909983" path="/furaffinity/submission_comments/:id" paramsDesc={['Submission id, can find in URL of submission page']} radar="1" />
-
-### Journal Comments {#fur-affinity-journal-comments}
-
-<Route author="TigerCubDen" example="/furaffinity/journal_comments/9750669" path="/furaffinity/journal_comments/:id" paramsDesc={['Journal id, can find in URL of journal page']} radar="1" />
-
-## Gab {#gab}
-
-### User's Posts {#gab-user-s-posts}
+### User Timeline {#fansly-user-timeline}
-<Route author="zphw" example="/gab/user/realdonaldtrump" path="/gab/user/:username" paramsDesc={['Username']} />
+<Route data={{"path":"/user/:username","categories":["social-media"],"example":"/fansly/user/AeriGoMoo","parameters":{"username":"User ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fansly.com/:username/posts","fansly.com/:username/media"]},"name":"User Timeline","maintainers":["TonyRL"],"location":"post.ts"}} />
## GETTR {#gettr}
### User timeline {#gettr-user-timeline}
-<Route author="TonyRL" example="/gettr/user/jasonmillerindc" path="/gettr/user/:id" paramsDesc={['User id']} radar="1" />
-
-## iCity {#icity}
-
-### 用户动态 {#icity-yong-hu-dong-tai}
-
-<Route author="nczitzk" example="/icity/sai" path="/icity/:id" paramsDesc={['用户 id']} />
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/gettr/user/jasonmillerindc","parameters":{"id":"User id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gettr.com/user/:id"]},"name":"User timeline","maintainers":["TonyRL"],"location":"user.ts"}} />
## Instagram {#instagram}
@@ -521,68 +385,70 @@ It's highly recommended to deploy with Redis cache enabled.
### User Profile / Hashtag {#instagram-user-profile-hashtag}
+<Route data={{"path":"/2/:category/:key","categories":["social-media"],"example":"/instagram/2/user/stefaniejoosten","parameters":{"category":"Feed category, see table below","key":"Username / Hashtag name"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Profile / Hashtag","maintainers":["TonyRL"],"description":":::tip\nYou may need to setup cookie for a less restrictive rate limit and private profiles.\n:::\n\n\n| User timeline | Hashtag |\n| ------------- | ------- |\n| user | tags |","location":"web-api/index.ts"}} />
+
:::tip
You may need to setup cookie for a less restrictive rate limit and private profiles.
:::
-<Route author="TonyRL" example="/instagram/2/user/stefaniejoosten" path="/instagram/2/:category/:key" paramsDesc={['Feed category, see table below','Username / Hashtag name']} radar="1" anticrawler="1" />
-
| User timeline | Hashtag |
| ------------- | ------- |
| user | tags |
### User Profile / Hashtag - Private API {#instagram-user-profile-hashtag-private-api}
+<Route data={{"path":"/:category/:key","categories":["social-media"],"example":"/instagram/user/stefaniejoosten","parameters":{"category":"Feed category, see table above","key":"Username / Hashtag name"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Profile / Hashtag - Private API","maintainers":["oppilate","DIYgod"],"description":":::warning\nDue to [Instagram Private API](https://github.com/dilame/instagram-private-api) restrictions, you have to setup your credentials on the server. 2FA is not supported. See [deployment guide](https://docs.rsshub.app/install/) for more.\n:::","location":"private-api/index.ts"}} />
+
:::warning
Due to [Instagram Private API](https://github.com/dilame/instagram-private-api) restrictions, you have to setup your credentials on the server. 2FA is not supported. See [deployment guide](https://docs.rsshub.app/install/) for more.
:::
-<Route author="oppilate DIYgod" example="/instagram/user/stefaniejoosten" path="/instagram/:category/:key" paramsDesc={['Feed category, see table above','Username / Hashtag name']} radar="1" anticrawler="1" configRequired="1" />
-
-### User Profile - Picnob {#instagram-user-profile-picnob}
+## Instagram {#instagram}
-<Route author="TonyRL" example="/picnob/user/stefaniejoosten" path="/picnob/profile/:id" paramsDesc={['Instagram id']} radar="1" />
+:::tip
+It's highly recommended to deploy with Redis cache enabled.
+:::
### User Profile - Picuki {#instagram-user-profile-picuki}
-<Route author="hoilc Rongronggg9" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id/:functionalFlag?" paramsDesc={['Instagram id','functional flag, see the table below']} radar="1" anticrawler="1">
- | functionalFlag | Video embedding | Fetching Instagram Stories |
- | -------------- | --------------------------------------- | -------------------------- |
- | 0 | off, only show video poster as an image | off |
- | 1 (default) | on | off |
- | 10 | on | on |
+<Route data={{"path":"/profile/:id/:functionalFlag?","categories":["social-media"],"example":"/picuki/profile/stefaniejoosten","parameters":{"id":"Instagram id","functionalFlag":"functional flag, see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.picuki.com/profile/:id"],"target":"/profile/:id"},"name":"User Profile - Picuki","maintainers":["hoilc","Rongronggg9","devinmugen"],"description":"| functionalFlag | Video embedding | Fetching Instagram Stories |\n | -------------- | --------------------------------------- | -------------------------- |\n | 0 | off, only show video poster as an image | off |\n | 1 (default) | on | off |\n | 10 | on | on |\n\n :::warning\n Instagram Stories do not have a reliable guid. It is possible that your RSS reader show the same story more than once.\n Though, every Story expires after 24 hours, so it may be not so serious.\n :::","location":"profile.ts"}} />
- :::warning
- Instagram Stories do not have a reliable guid. It is possible that your RSS reader show the same story more than once.
- Though, every Story expires after 24 hours, so it may be not so serious.
- :::
-</Route>
+| functionalFlag | Video embedding | Fetching Instagram Stories |
+| -------------- | --------------------------------------- | -------------------------- |
+| 0 | off, only show video poster as an image | off |
+| 1 (default) | on | off |
+| 10 | on | on |
+
+:::warning
+Instagram Stories do not have a reliable guid. It is possible that your RSS reader show the same story more than once.
+Though, every Story expires after 24 hours, so it may be not so serious.
+:::
## Keep {#keep}
### 运动日记 {#keep-yun-dong-ri-ji}
-<Route author="Dectinc DIYgod" example="/keep/user/556b02c1ab59390afea671ea" path="/keep/user/:id" paramsDesc={['Keep 用户 id']} />
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/keep/user/556b02c1ab59390afea671ea","parameters":{"id":"Keep 用户 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gotokeep.com/users/:id"]},"name":"运动日记","maintainers":["Dectinc","DIYgod"],"location":"user.ts"}} />
## Lemmy {#lemmy}
### Community {#lemmy-community}
-<Route author="wb14123" example="/lemmy/[email protected]/Hot" path="/lemmy/:community/:sort?" paramsDesc={['Lemmmy community, for example [email protected]', 'Sort by, defaut to Active']} configRequired="1" />
+<Route data={{"path":"/:community/:sort?","categories":["social-media"],"example":"/lemmy/[email protected]/Hot","parameters":{"community":"Lemmmy community, for example [email protected]","sort":"Sort by, defaut to Active"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Community","maintainers":["wb14123"],"location":"index.ts"}} />
## Lofter {#lofter}
-### User {#lofter-user}
+### Tag {#lofter-tag}
-<Route author="hoilc nczitzk" example="/lofter/user/i" path="/lofter/user/:name?" paramsDesc={['Lofter user name, can be found in the URL']} />
+<Route data={{"path":"/tag/:name?/:type?","categories":["social-media"],"example":"/lofter/tag/cosplay/date","parameters":{"name":"tag name, such as `名侦探柯南`, `摄影` by default","type":"ranking type, see below, new by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Tag","maintainers":["hoilc","nczitzk"],"description":"| new | date | week | month | total |\n | ---- | ---- | ---- | ----- | ----- |\n | 最新 | 日榜 | 周榜 | 月榜 | 总榜 |","location":"tag.ts"}} />
-### Tag {#lofter-tag}
+| new | date | week | month | total |
+| ---- | ---- | ---- | ----- | ----- |
+| 最新 | 日榜 | 周榜 | 月榜 | 总榜 |
-<Route author="hoilc nczitzk" example="/lofter/tag/cosplay/date" path="/lofter/tag/:name?/:type?" paramsDesc={['tag name, such as `名侦探柯南`, `摄影` by default', 'ranking type, see below, new by default']}>
- | new | date | week | month | total |
- | ---- | ---- | ---- | ----- | ----- |
- | 最新 | 日榜 | 周榜 | 月榜 | 总榜 |
-</Route>
+### User {#lofter-user}
+
+<Route data={{"path":"/user/:name?","categories":["social-media"],"example":"/lofter/user/i","parameters":{"name":"Lofter user name, can be found in the URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User","maintainers":["hondajojo","nczitzk"],"location":"user.ts"}} />
## Mastodon {#mastodon}
@@ -595,235 +461,191 @@ Official user RSS:
These feed do not include boosts (a.k.a. reblogs). RSSHub provides a feed for user timeline based on the Mastodon API, but to use that, you may need to create application on a Mastodon instance, and configure your RSSHub instance. Check the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
:::
-### User timeline {#mastodon-user-timeline}
-
-<Route author="notofoe" example="/mastodon/acct/[email protected]/statuses" path="/mastodon/acct/:acct/statuses/:only_media?" paramsDesc={['Webfinger account URI, like `user@host`', 'whether only display media content, default to false, any value to true']} />
-
-Started from Mastodon v4.0.0, the use of the `search` API in the route no longer requires a user token.
-If the domain of your Webfinger account URI is the same as the API host of the instance (i.e., no delegation called in some other protocols), then no configuration is required and the route is available out of the box.
-However, you can still specify these route-specific configurations if you need to override them.
-
-### Instance timeline (local) {#mastodon-instance-timeline-local}
+### Instance timeline (federated) {#mastodon-instance-timeline-federated}
-<Route author="hoilc" example="/mastodon/timeline/pawoo.net/true" path="/mastodon/timeline/:site/:only_media?" paramsDesc={['instance address, only domain, no `http://` or `https://` protocol header', 'whether only display media content, default to false, any value to true']} />
+<Route data={{"path":"/remote/:site/:only_media?","categories":["social-media"],"example":"/mastodon/remote/pawoo.net/true","parameters":{"site":"instance address, only domain, no `http://` or `https://` protocol header","only_media":"whether only display media content, default to false, any value to true"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Instance timeline (federated)","maintainers":["hoilc"],"description":"If the instance address is not `mastodon.social` or `pawoo.net`, then the route requires `ALLOW_USER_SUPPLY_UNSAFE_DOMAIN` to be `true`.","location":"timeline-remote.ts"}} />
If the instance address is not `mastodon.social` or `pawoo.net`, then the route requires `ALLOW_USER_SUPPLY_UNSAFE_DOMAIN` to be `true`.
-### Instance timeline (federated) {#mastodon-instance-timeline-federated}
+### Instance timeline (local) {#mastodon-instance-timeline-local}
-<Route author="hoilc" example="/mastodon/remote/pawoo.net/true" path="/mastodon/remote/:site/:only_media?" paramsDesc={['instance address, only domain, no `http://` or `https://` protocol header', 'whether only display media content, default to false, any value to true']} />
+<Route data={{"path":"/timeline/:site/:only_media?","categories":["social-media"],"example":"/mastodon/timeline/pawoo.net/true","parameters":{"site":"instance address, only domain, no `http://` or `https://` protocol header","only_media":"whether only display media content, default to false, any value to true"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Instance timeline (local)","maintainers":["hoilc"],"description":"If the instance address is not `mastodon.social` or `pawoo.net`, then the route requires `ALLOW_USER_SUPPLY_UNSAFE_DOMAIN` to be `true`.","location":"timeline-local.ts"}} />
If the instance address is not `mastodon.social` or `pawoo.net`, then the route requires `ALLOW_USER_SUPPLY_UNSAFE_DOMAIN` to be `true`.
-### User timeline (backup) {#mastodon-user-timeline-backup}
+### User timeline {#mastodon-user-timeline}
-<Route author="notofoe" example="/mastodon/account_id/mastodon.social/23634/statuses/only_media" path="/mastodon/account/:site/:account_id/statuses/:only_media?" paramsDesc={['instance address, only domain, no `http://` or `https://` protocol header', 'account id. login your instance, then search for the user profile; the account id is in the url', 'whether only display media content, default to false, any value to true']} />
+<Route data={{"path":"/acct/:acct/statuses/:only_media?","categories":["social-media"],"example":"/mastodon/acct/[email protected]/statuses","parameters":{"acct":"Webfinger account URI, like `user@host`","only_media":"whether only display media content, default to false, any value to true"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User timeline","maintainers":["notofoe"],"description":"Started from Mastodon v4.0.0, the use of the `search` API in the route no longer requires a user token.\nIf the domain of your Webfinger account URI is the same as the API host of the instance (i.e., no delegation called in some other protocols), then no configuration is required and the route is available out of the box.\nHowever, you can still specify these route-specific configurations if you need to override them.","location":"acct.ts"}} />
-If the instance address is not `mastodon.social` or `pawoo.net`, then the route requires `ALLOW_USER_SUPPLY_UNSAFE_DOMAIN` to be `true`.
+Started from Mastodon v4.0.0, the use of the `search` API in the route no longer requires a user token.
+If the domain of your Webfinger account URI is the same as the API host of the instance (i.e., no delegation called in some other protocols), then no configuration is required and the route is available out of the box.
+However, you can still specify these route-specific configurations if you need to override them.
## Misskey {#misskey}
### Featured Notes {#misskey-featured-notes}
-<Route author="Misaka13514" example="/misskey/notes/featured/misskey.io" path="/misskey/notes/featured/:site" paramsDesc={['instance address, domain only, without `http://` or `https://` protocol header']} radar="1" />
-
-## piapro {#piapro}
-
-### User latest works {#piapro-user-latest-works}
-
-<Route author="hoilc" example="/piapro/user/shine_longer" path="/piapro/user/:pid" paramsDesc={['User ID, can be found in url']} />
-
-### Website latest works {#piapro-website-latest-works}
-
-<Route author="hoilc" example="/piapro/public/music/miku/2" path="/piapro/public/:type/:tag?/:category?" paramsDesc={['work type, can be `music`,`illust`,`text`','`tag` parameter in url','category ID, `categoryId` parameter in url']} />
+<Route data={{"path":"/notes/featured/:site","categories":["social-media"],"example":"/misskey/notes/featured/misskey.io","parameters":{"site":"instance address, domain only, without `http://` or `https://` protocol header"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Featured Notes","maintainers":["Misaka13514"],"location":"featured-notes.ts"}} />
## pixiv {#pixiv}
-### User Bookmark {#pixiv-user-bookmark}
+### Following timeline {#pixiv-following-timeline}
-<Route author="EYHN" path="/pixiv/user/bookmarks/:id" example="/pixiv/user/bookmarks/15288095" paramsDesc={['user id, available in user\'s homepage URL']} radar="1" />
+<Route data={{"path":"/user/illustfollows","categories":["social-media"],"example":"/pixiv/user/illustfollows","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.pixiv.net/bookmark_new_illust.php"]},"name":"Following timeline","maintainers":["ClarkeCheng"],"url":"www.pixiv.net/bookmark_new_illust.php","description":":::warning\n Only for self-hosted\n :::","location":"illustfollow.ts"}} />
-### User Activity {#pixiv-user-activity}
+:::warning
+Only for self-hosted
+:::
-<Route author="EYHN" path="/pixiv/user/:id" example="/pixiv/user/15288095" paramsDesc={['user id, available in user\'s homepage URL']} radar="1" />
+### Keyword {#pixiv-keyword}
-### User Novels {#pixiv-user-novels}
+<Route data={{"path":"/search/:keyword/:order?/:mode?","categories":["social-media"],"example":"/pixiv/search/Nezuko/popular/2","parameters":{"keyword":"keyword","order":"rank mode, empty or other for time order, popular for popular order","mode":"filte R18 content"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keyword","maintainers":["DIYgod"],"description":"| only not R18 | only R18 | no filter |\n | ------------ | -------- | -------------- |\n | safe | r18 | empty or other |","location":"search.ts"}} />
-<Route author="TonyRL" example="/pixiv/user/novels/27104704" path="/pixiv/user/novels/:id" paramsDesc={['User id, available in user\'s homepage URL']} radar="1" />
+| only not R18 | only R18 | no filter |
+| ------------ | -------- | -------------- |
+| safe | r18 | empty or other |
### Rankings {#pixiv-rankings}
-<Route author="EYHN" path="/pixiv/ranking/:mode/:date?" example="/pixiv/ranking/week" paramsDesc={['rank type', 'format: `2018-4-25`']} radar="1">
- | daily rank | weekly rank | monthly rank | male rank | female rank | AI-generated work Rankings | original rank | rookie user rank |
- | ---------- | ----------- | ------------ | --------- | ----------- | -------------------------- | -------------- | ---------------- |
- | day | week | month | day\_male | day\_female | day\_ai | week\_original | week\_rookie |
+<Route data={{"path":"/ranking/:mode/:date?","categories":["social-media"],"example":"/pixiv/ranking/week","parameters":{"mode":"rank type","date":"format: `2018-4-25`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Rankings","maintainers":["EYHN"],"description":"| daily rank | weekly rank | monthly rank | male rank | female rank | AI-generated work Rankings | original rank | rookie user rank |\n | ---------- | ----------- | ------------ | --------- | ----------- | -------------------------- | -------------- | ---------------- |\n | day | week | month | day_male | day_female | day_ai | week_original | week_rookie |\n\n | R-18 daily rank | R-18 AI-generated work | R-18 male rank | R-18 female rank | R-18 weekly rank | R-18G rank |\n | --------------- | ---------------------- | -------------- | ---------------- | ---------------- | ---------- |\n | day_r18 | day_r18_ai | day_male_r18 | day_female_r18 | week_r18 | week_r18g |","location":"ranking.ts"}} />
- | R-18 daily rank | R-18 AI-generated work | R-18 male rank | R-18 female rank | R-18 weekly rank | R-18G rank |
- | --------------- | ---------------------- | -------------- | ---------------- | ---------------- | ---------- |
- | day\_r18 | day\_r18\_ai | day\_male\_r18 | day\_female\_r18 | week\_r18 | week\_r18g |
-</Route>
+| daily rank | weekly rank | monthly rank | male rank | female rank | AI-generated work Rankings | original rank | rookie user rank |
+| ---------- | ----------- | ------------ | --------- | ----------- | -------------------------- | -------------- | ---------------- |
+| day | week | month | day\_male | day\_female | day\_ai | week\_original | week\_rookie |
-### Keyword {#pixiv-keyword}
+| R-18 daily rank | R-18 AI-generated work | R-18 male rank | R-18 female rank | R-18 weekly rank | R-18G rank |
+| --------------- | ---------------------- | -------------- | ---------------- | ---------------- | ---------- |
+| day\_r18 | day\_r18\_ai | day\_male\_r18 | day\_female\_r18 | week\_r18 | week\_r18g |
-<Route author="DIYgod" example="/pixiv/search/Nezuko/popular/2" path="/pixiv/search/:keyword/:order?/:mode?" paramsDesc={['keyword', 'rank mode, empty or other for time order, popular for popular order', 'filte R18 content']} radar="1">
- | only not R18 | only R18 | no filter |
- | ------------ | -------- | -------------- |
- | safe | r18 | empty or other |
-</Route>
+### User Activity {#pixiv-user-activity}
-### Following timeline {#pixiv-following-timeline}
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/pixiv/user/15288095","parameters":{"id":"user id, available in user's homepage URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.pixiv.net/users/:id"]},"name":"User Activity","maintainers":["DIYgod"],"location":"user.ts"}} />
-<Route author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" configRequired="1">
- :::warning
- Only for self-hosted
- :::
-</Route>
+### User Bookmark {#pixiv-user-bookmark}
-## pixivFANBOX {#pixivfanbox}
+<Route data={{"path":"/user/bookmarks/:id","categories":["social-media"],"example":"/pixiv/user/bookmarks/15288095","parameters":{"id":"user id, available in user's homepage URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.pixiv.net/users/:id/bookmarks/artworks"]},"name":"User Bookmark","maintainers":["EYHN"],"location":"bookmarks.ts"}} />
-### User {#pixivfanbox-user}
+### User Novels {#pixiv-user-novels}
-<Route author="sgqy" example="/fanbox/otomeoto" path="/fanbox/:user?" paramsDesc={['User name. Can be found in URL. Default is official news']} />
+<Route data={{"path":"/user/novels/:id","categories":["social-media"],"example":"/pixiv/user/novels/27104704","parameters":{"id":"User id, available in user's homepage URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.pixiv.net/users/:id/novels"]},"name":"User Novels","maintainers":["TonyRL"],"location":"novels.ts"}} />
## Plurk {#plurk}
-### Topic {#plurk-topic}
-
-<Route author="TonyRL" path="/plurk/topic/:topic" example="/plurk/topic/standwithukraine" paramsDesc={['Topic ID, can be found in URL']} radar="1" />
+### Anonymous {#plurk-anonymous}
-### Top {#plurk-top}
+<Route data={{"path":"/anonymous","categories":["social-media"],"example":"/plurk/anonymous","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["plurk.com/anonymous"]},"name":"Anonymous","maintainers":["TonyRL"],"url":"plurk.com/anonymous","location":"anonymous.ts"}} />
-<Route author="TonyRL" path="/plurk/top/:category?/:lang?" example="/plurk/top/topReplurks" paramsDesc={['Category, see the table below, `topReplurks` by default', 'Language, see the table below, `en` by default']} radar="1">
- | Top Replurks | Top Favorites | Top Responded |
- | ------------ | ------------- | ------------- |
- | topReplurks | topFavorites | topResponded |
+### Hotlinks {#plurk-hotlinks}
- | English | 中文(繁體) |
- | ------- | ------------ |
- | en | zh |
-</Route>
+<Route data={{"path":"/hotlinks","categories":["social-media"],"example":"/plurk/hotlinks","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["plurk.com/hotlinks"]},"name":"Hotlinks","maintainers":["TonyRL"],"url":"plurk.com/hotlinks","location":"hotlinks.ts"}} />
-### Anonymous {#plurk-anonymous}
+### Plurk News {#plurk-plurk-news}
-<Route author="TonyRL" path="/plurk/anonymous" example="/plurk/anonymous" radar="1" />
+<Route data={{"path":"/news/:lang?","categories":["social-media"],"example":"/plurk/news/:lang?","parameters":{"lang":"Language, see the table above, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["plurk.com/news"],"target":"/news"},"name":"Plurk News","maintainers":["TonyRL"],"url":"plurk.com/news","location":"news.ts"}} />
### Search {#plurk-search}
-<Route author="TonyRL" path="/plurk/search/:keyword" example="/plurk/search/FGO" paramsDesc={['Search keyword']} radar="1" />
+<Route data={{"path":"/search/:keyword","categories":["social-media"],"example":"/plurk/search/FGO","parameters":{"keyword":"Search keyword"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Search","maintainers":["TonyRL"],"location":"search.ts"}} />
-### Hotlinks {#plurk-hotlinks}
+### Top {#plurk-top}
-<Route author="TonyRL" path="/plurk/hotlinks" example="/plurk/hotlinks" radar="1" />
+<Route data={{"path":"/top/:category?/:lang?","categories":["social-media"],"example":"/plurk/top/topReplurks","parameters":{"category":"Category, see the table below, `topReplurks` by default","lang":"Language, see the table below, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Top","maintainers":["TonyRL"],"description":"| Top Replurks | Top Favorites | Top Responded |\n | ------------ | ------------- | ------------- |\n | topReplurks | topFavorites | topResponded |\n\n | English | 中文(繁體) |\n | ------- | ------------ |\n | en | zh |","location":"top.ts"}} />
-### Plurk News {#plurk-plurk-news}
+| Top Replurks | Top Favorites | Top Responded |
+| ------------ | ------------- | ------------- |
+| topReplurks | topFavorites | topResponded |
-<Route author="TonyRL" path="/plurk/news/:lang?" example="/plurk/news/:lang?" paramsDesc={['Language, see the table above, `en` by default']} radar="1" />
+| English | 中文(繁體) |
+| ------- | ------------ |
+| en | zh |
+
+### Topic {#plurk-topic}
+
+<Route data={{"path":"/topic/:topic","categories":["social-media"],"example":"/plurk/topic/standwithukraine","parameters":{"topic":"Topic ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["plurk.com/topic/:topic"]},"name":"Topic","maintainers":["TonyRL"],"location":"topic.ts"}} />
### User {#plurk-user}
-<Route author="TonyRL" path="/plurk/user/:user" example="/plurk/user/plurkoffice" paramsDesc={['User ID, can be found in URL']} radar="1" />
+<Route data={{"path":"/user/:user","categories":["social-media"],"example":"/plurk/user/plurkoffice","parameters":{"user":"User ID, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User","maintainers":["TonyRL"],"location":"user.ts"}} />
## Rattibha {#rattibha}
### User Threads {#rattibha-user-threads}
-<Route author="yshalsager" example="/rattibha/user/elonmusk" path="/rattibha/user/:user" paramsDesc={['Twitter username, without @']} radar="1" />
-
-## Soul {#soul}
-
-### 瞬间更新 {#soul-shun-jian-geng-xin}
-
-<Route author="ImSingee" example="/soul/Y2w2aTNWQVBLOU09" path="/soul/:id" paramsDesc={['用户 id, 分享用户主页时的 URL 的 userIdEcpt 参数']} radar="1" notOperational="1" />
-
-### 热门瞬间 {#soul-re-men-shun-jian}
-
-<Route author="BugWriter2" example="/soul/posts/hot/NXJiSlM5V21kamJWVlgvZUh1NEExdz09" path="/soul/posts/hot/:pid*" paramsDesc={['瞬间 id, 分享用户瞬间时的 URL 的 postIdEcpt 参数']} />
-
-:::tip
-提供不同内容的 `pid`, 可以得到不同的热门瞬间推荐,如果想看多个种类的热门可以用 `/` 把不同的 `pid` 连起来,例如: `NXJiSlM5V21kamJWVlgvZUh1NEExdz09/MkM0amxSTUNiTEpLcHhzSlRzTEI1dz09`
-:::
+<Route data={{"path":"/user/:user","categories":["social-media"],"example":"/rattibha/user/elonmusk","parameters":{"user":"Twitter username, without @"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rattibha.com/:user"]},"name":"User Threads","maintainers":["yshalsager"],"location":"user.ts"}} />
## Telegram {#telegram}
### Channel {#telegram-channel}
-<Route author="DIYgod Rongronggg9" path="/telegram/channel/:username/:routeParams?" example="/telegram/channel/awesomeDIYgod/searchQuery=twitter" paramsDesc={['channel username', 'extra parameters, see the table below']} radar="1">
- | Key | Description | Accepts | Defaults to |
- | --------------------- | --------------------------------------------------------------------- | ---------------------------------------------------- | ----------------- |
- | showLinkPreview | Show the link preview from Telegram | 0/1/true/false | true |
- | showViaBot | For messages sent via bot, show the bot | 0/1/true/false | true |
- | showReplyTo | For reply messages, show the target of the reply | 0/1/true/false | true |
- | showFwdFrom | For forwarded messages, show the forwarding source | 0/1/true/false | true |
- | showFwdFromAuthor | For forwarded messages, show the author of the forwarding source | 0/1/true/false | true |
- | showInlineButtons | Show inline buttons | 0/1/true/false | false |
- | showMediaTagInTitle | Show media tags in the title | 0/1/true/false | true |
- | showMediaTagAsEmoji | Show media tags as emoji | 0/1/true/false | true |
- | includeFwd | Include forwarded messages | 0/1/true/false | true |
- | includeReply | Include reply messages | 0/1/true/false | true |
- | includeServiceMsg | Include service messages (e.g. message pinned, channel photo updated) | 0/1/true/false | true |
- | includeUnsupportedMsg | Include messages unsupported by t.me | 0/1/true/false | false |
- | searchQuery | search query | keywords; replace `#` by `%23` for hashtag searching | (search disabled) |
-
- Specify different option values than default values can meet different needs, URL
-
- ```
- https://rsshub.app/telegram/channel/NewlearnerChannel/showLinkPreview=0&showViaBot=0&showReplyTo=0&showFwdFrom=0&showFwdFromAuthor=0&showInlineButtons=0&showMediaTagInTitle=1&showMediaTagAsEmoji=1&includeFwd=0&includeReply=1&includeServiceMsg=0&includeUnsupportedMsg=0
- ```
-
- generates an RSS without any link previews and annoying metadata, with emoji media tags in the title, without forwarded messages (but with reply messages), and without messages you don't care about (service messages and unsupported messages), for people who prefer pure subscriptions.
+<Route data={{"path":"/channel/:username/:routeParams?","categories":["social-media"],"example":"/telegram/channel/awesomeDIYgod/searchQuery=twitter","parameters":{"username":"channel username","routeParams":"extra parameters, see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["t.me/s/:username"],"target":"/channel/:username"},"name":"Channel","maintainers":["DIYgod","Rongronggg9"],"description":"| Key | Description | Accepts | Defaults to |\n | --------------------- | --------------------------------------------------------------------- | ---------------------------------------------------- | ----------------- |\n | showLinkPreview | Show the link preview from Telegram | 0/1/true/false | true |\n | showViaBot | For messages sent via bot, show the bot | 0/1/true/false | true |\n | showReplyTo | For reply messages, show the target of the reply | 0/1/true/false | true |\n | showFwdFrom | For forwarded messages, show the forwarding source | 0/1/true/false | true |\n | showFwdFromAuthor | For forwarded messages, show the author of the forwarding source | 0/1/true/false | true |\n | showInlineButtons | Show inline buttons | 0/1/true/false | false |\n | showMediaTagInTitle | Show media tags in the title | 0/1/true/false | true |\n | showMediaTagAsEmoji | Show media tags as emoji | 0/1/true/false | true |\n | includeFwd | Include forwarded messages | 0/1/true/false | true |\n | includeReply | Include reply messages | 0/1/true/false | true |\n | includeServiceMsg | Include service messages (e.g. message pinned, channel photo updated) | 0/1/true/false | true |\n | includeUnsupportedMsg | Include messages unsupported by t.me | 0/1/true/false | false |\n | searchQuery | search query | keywords; replace `#` by `%23` for hashtag searching | (search disabled) |\n\n Specify different option values than default values can meet different needs, URL\n\n ```\n https://rsshub.app/telegram/channel/NewlearnerChannel/showLinkPreview=0&showViaBot=0&showReplyTo=0&showFwdFrom=0&showFwdFromAuthor=0&showInlineButtons=0&showMediaTagInTitle=1&showMediaTagAsEmoji=1&includeFwd=0&includeReply=1&includeServiceMsg=0&includeUnsupportedMsg=0\n ```\n\n generates an RSS without any link previews and annoying metadata, with emoji media tags in the title, without forwarded messages (but with reply messages), and without messages you don't care about (service messages and unsupported messages), for people who prefer pure subscriptions.\n\n :::tip\n For backward compatibility reasons, invalid `routeParams` will be treated as `searchQuery` .\n\n Due to Telegram restrictions, some channels involving pornography, copyright, and politics cannot be subscribed. You can confirm by visiting `https://t.me/s/:username`.\n :::","location":"channel.ts"}} />
+
+| Key | Description | Accepts | Defaults to |
+| --------------------- | --------------------------------------------------------------------- | ---------------------------------------------------- | ----------------- |
+| showLinkPreview | Show the link preview from Telegram | 0/1/true/false | true |
+| showViaBot | For messages sent via bot, show the bot | 0/1/true/false | true |
+| showReplyTo | For reply messages, show the target of the reply | 0/1/true/false | true |
+| showFwdFrom | For forwarded messages, show the forwarding source | 0/1/true/false | true |
+| showFwdFromAuthor | For forwarded messages, show the author of the forwarding source | 0/1/true/false | true |
+| showInlineButtons | Show inline buttons | 0/1/true/false | false |
+| showMediaTagInTitle | Show media tags in the title | 0/1/true/false | true |
+| showMediaTagAsEmoji | Show media tags as emoji | 0/1/true/false | true |
+| includeFwd | Include forwarded messages | 0/1/true/false | true |
+| includeReply | Include reply messages | 0/1/true/false | true |
+| includeServiceMsg | Include service messages (e.g. message pinned, channel photo updated) | 0/1/true/false | true |
+| includeUnsupportedMsg | Include messages unsupported by t.me | 0/1/true/false | false |
+| searchQuery | search query | keywords; replace `#` by `%23` for hashtag searching | (search disabled) |
+
+Specify different option values than default values can meet different needs, URL
- :::tip
- For backward compatibility reasons, invalid `routeParams` will be treated as `searchQuery` .
-
- Due to Telegram restrictions, some channels involving pornography, copyright, and politics cannot be subscribed. You can confirm by visiting `https://t.me/s/:username`.
- :::
-</Route>
+```
+https://rsshub.app/telegram/channel/NewlearnerChannel/showLinkPreview=0&showViaBot=0&showReplyTo=0&showFwdFrom=0&showFwdFromAuthor=0&showInlineButtons=0&showMediaTagInTitle=1&showMediaTagAsEmoji=1&includeFwd=0&includeReply=1&includeServiceMsg=0&includeUnsupportedMsg=0
+```
-### Channel with long videos and file support {#telegram-channel-with-long-videos-and-file-support}
+generates an RSS without any link previews and annoying metadata, with emoji media tags in the title, without forwarded messages (but with reply messages), and without messages you don't care about (service messages and unsupported messages), for people who prefer pure subscriptions.
-<Route author="synchrone" example="/telegram/channel/telegram" path="/telegram/channel/:username" paramsDesc={['Channel name, without @']} configRequired="1" />
+:::tip
+For backward compatibility reasons, invalid `routeParams` will be treated as `searchQuery` .
-:::warning
-This route requires user-based `TELEGRAM_SESSION`.
+Due to Telegram restrictions, some channels involving pornography, copyright, and politics cannot be subscribed. You can confirm by visiting `https://t.me/s/:username`.
:::
### Sticker Pack {#telegram-sticker-pack}
-<Route author="DIYgod" example="/telegram/stickerpack/DIYgod" path="/telegram/stickerpack/:name" paramsDesc={['Sticker Pack name, available in the sharing URL']} />
+<Route data={{"path":"/stickerpack/:name","categories":["social-media"],"example":"/telegram/stickerpack/DIYgod","parameters":{"name":"Sticker Pack name, available in the sharing URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Sticker Pack","maintainers":["DIYgod"],"location":"stickerpack.ts"}} />
### Telegram Blog {#telegram-telegram-blog}
-<Route author="fengkx" example="/telegram/blog" path="/telegram/blog" />
+<Route data={{"path":"/blog","categories":["social-media"],"example":"/telegram/blog","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["telegram.org/blog"]},"name":"Telegram Blog","maintainers":["fengkx"],"url":"telegram.org/blog","location":"blog.ts"}} />
## Threads {#threads}
### User timeline {#threads-user-timeline}
-<Route author="ninboy" path="/threads/:user/:routeParams?" example="/threads/zuck" radar="1" paramsDesc={['Username', 'Extra parameters, see the table below']}>
- Specify options (in the format of query string) in parameter `routeParams` to control some extra features for threads
+<Route data={{"path":"/:user/:routeParams?","categories":["social-media"],"example":"/threads/zuck","parameters":{"user":"Username","routeParams":"Extra parameters, see the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User timeline","maintainers":["ninboy"],"description":"Specify options (in the format of query string) in parameter `routeParams` to control some extra features for threads\n\n | Key | Description | Accepts | Defaults to |\n | ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |\n | `showAuthorInTitle` | Show author name in title | `0`/`1`/`true`/`false` | `true` |\n | `showAuthorInDesc` | Show author name in description (RSS body) | `0`/`1`/`true`/`false` | `true` |\n | `showQuotedAuthorAvatarInDesc` | Show avatar of quoted author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `false` |\n | `showAuthorAvatarInDesc` | Show avatar of author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `falseP` |\n | `showEmojiForQuotesAndReply` | Use \"🔁\" instead of \"QT\", \"↩️\" instead of \"Re\" | `0`/`1`/`true`/`false` | `true` |\n | `showQuotedInTitle` | Show quoted tweet in title | `0`/`1`/`true`/`false` | `true` |\n | `replies` | Show replies | `0`/`1`/`true`/`false` | `true` |\n\n Specify different option values than default values to improve readability. The URL\n\n ```\n https://rsshub.app/threads/zuck/showAuthorInTitle=1&showAuthorInDesc=1&showQuotedAuthorAvatarInDesc=1&showAuthorAvatarInDesc=1&showEmojiForQuotesAndReply=1&showQuotedInTitle=1\n ```","location":"index.ts"}} />
+
+Specify options (in the format of query string) in parameter `routeParams` to control some extra features for threads
- | Key | Description | Accepts | Defaults to |
- | ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |
- | `showAuthorInTitle` | Show author name in title | `0`/`1`/`true`/`false` | `true` |
- | `showAuthorInDesc` | Show author name in description (RSS body) | `0`/`1`/`true`/`false` | `true` |
- | `showQuotedAuthorAvatarInDesc` | Show avatar of quoted author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `false` |
- | `showAuthorAvatarInDesc` | Show avatar of author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `falseP` |
- | `showEmojiForQuotesAndReply` | Use "🔁" instead of "QT", "↩️" instead of "Re" | `0`/`1`/`true`/`false` | `true` |
- | `showQuotedInTitle` | Show quoted tweet in title | `0`/`1`/`true`/`false` | `true` |
- | `replies` | Show replies | `0`/`1`/`true`/`false` | `true` |
+| Key | Description | Accepts | Defaults to |
+| ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------- | ----------- |
+| `showAuthorInTitle` | Show author name in title | `0`/`1`/`true`/`false` | `true` |
+| `showAuthorInDesc` | Show author name in description (RSS body) | `0`/`1`/`true`/`false` | `true` |
+| `showQuotedAuthorAvatarInDesc` | Show avatar of quoted author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `false` |
+| `showAuthorAvatarInDesc` | Show avatar of author in description (RSS body) (Not recommended if your RSS reader extracts images from description) | `0`/`1`/`true`/`false` | `falseP` |
+| `showEmojiForQuotesAndReply` | Use "🔁" instead of "QT", "↩️" instead of "Re" | `0`/`1`/`true`/`false` | `true` |
+| `showQuotedInTitle` | Show quoted tweet in title | `0`/`1`/`true`/`false` | `true` |
+| `replies` | Show replies | `0`/`1`/`true`/`false` | `true` |
- Specify different option values than default values to improve readability. The URL
+Specify different option values than default values to improve readability. The URL
- ```
- https://rsshub.app/threads/zuck/showAuthorInTitle=1&showAuthorInDesc=1&showQuotedAuthorAvatarInDesc=1&showAuthorAvatarInDesc=1&showEmojiForQuotesAndReply=1&showQuotedInTitle=1
- ```
-</Route>
+```
+https://rsshub.app/threads/zuck/showAuthorInTitle=1&showAuthorInDesc=1&showQuotedAuthorAvatarInDesc=1&showAuthorAvatarInDesc=1&showEmojiForQuotesAndReply=1&showQuotedInTitle=1
+```
## TikTok {#tiktok}
### User {#tiktok-user}
-<Route author="TonyRL" example="/tiktok/user/@linustech/true" path="/tiktok/user/:user/:iframe?" paramsDesc={['User ID, including @', 'Use the official iframe to embed the video, which allows you to view the video if the default option does not work. Default to `false`']} puppeteer="1" radar="1" />
+<Route data={{"path":"/user/:user/:iframe?","categories":["social-media"],"example":"/tiktok/user/@linustech/true","parameters":{"user":"User ID, including @","iframe":"Use the official iframe to embed the video, which allows you to view the video if the default option does not work. Default to `false`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tiktok.com/:user"],"target":"/user/:user"},"name":"User","maintainers":["TonyRL"],"location":"user.ts"}} />
## Twitter {#twitter}
@@ -862,181 +684,152 @@ generates
<img loading="lazy" src="/img/readable-twitter.png" alt="Readable Twitter RSS of Durov" />
-### User timeline {#twitter-user-timeline}
-
-<Route author="DIYgod yindaheng98 Rongronggg9" path="/twitter/user/:id/:routeParams?" example="/twitter/user/DIYgod" paramsDesc={['username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`', 'extra parameters, see the table above; particularly when `routeParams=exclude_replies`, replies are excluded; `routeParams=exclude_rts` excludes retweets,`routeParams=exclude_rts_replies` exclude replies and retweets; for default include all.']} radar="1" configRequired="1" />
+### Collection {#twitter-collection}
-### User media {#twitter-user-media}
+<Route data={{"path":"/collection/:uid/:collectionId/:routeParams?","categories":["social-media"],"example":"/twitter/collection/DIYgod/1527857429467172864","parameters":{"uid":"username, should match the generated token","collectionId":"collection ID, can be found in URL","routeParams":"extra parameters, see the table above"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Collection","maintainers":["TonyRL"],"description":":::warning\n This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.\n :::","location":"collection.ts"}} />
-<Route author="yindaheng98 Rongronggg9 DIYgod" path="/twitter/media/:id/:routeParams?" example="/twitter/media/DIYgod" paramsDesc={['username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`', 'extra parameters, see the table above.']} radar="1" configRequired="1" />
+:::warning
+This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
+:::
### Keyword {#twitter-keyword}
-<Route author="DIYgod yindaheng98 Rongronggg9" example="/twitter/keyword/RSSHub" path="/twitter/keyword/:keyword/:routeParams?" paramsDesc={['keyword', 'extra parameters, see the table above']} radar="1" configRequired="1" />
+<Route data={{"path":"/keyword/:keyword/:routeParams?","categories":["social-media"],"example":"/twitter/keyword/RSSHub","parameters":{"keyword":"keyword","routeParams":"extra parameters, see the table above"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Keyword","maintainers":["DIYgod","yindaheng98","Rongronggg9"],"location":"keyword.ts"}} />
+
+### List timeline {#twitter-list-timeline}
+
+<Route data={{"path":"/list/:id/:name/:routeParams?","categories":["social-media"],"example":"/twitter/list/ladyleet/javascript","parameters":{"id":"username","name":"list name","routeParams":"extra parameters, see the table above"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"List timeline","maintainers":["xyqfer"],"location":"list.ts"}} />
+
+### Trends {#twitter-trends}
+
+<Route data={{"path":"/trends/:woeid?","categories":["social-media"],"example":"/twitter/trends/23424856","parameters":{"woeid":"Yahoo! Where On Earth ID. default to woeid=1 (World Wide)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Trends","maintainers":["sakamossan"],"location":"trends.ts"}} />
### Tweet Details {#twitter-tweet-details}
-<Route author="LarchLiu Rongronggg9 DIYgod" example="/twitter/tweet/DIYgod/status/1650844643997646852" path="/twitter/tweet/:id/status/:status/:original?" paramsDesc={['username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`', 'tweet ID', 'extra parameters, data type of return, if the value is not `0`/`false` and `config.isPackage` is `true`, return the original data of twitter']} radar="1" configRequired="1" />
+<Route data={{"path":"/tweet/:id/status/:status/:original?","categories":["social-media"],"example":"/twitter/tweet/DIYgod/status/1650844643997646852","parameters":{"id":"username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`","status":"tweet ID","original":"extra parameters, data type of return, if the value is not `0`/`false` and `config.isPackage` is `true`, return the original data of twitter"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Tweet Details","maintainers":["LarchLiu","Rongronggg9"],"location":"tweet.ts"}} />
### User following timeline {#twitter-user-following-timeline}
-<Route author="DIYgod" example="/twitter/followings/DIYgod" path="/twitter/followings/:id/:routeParams?" paramsDesc={['username', 'extra parameters, see the table above']} radar="1" configRequired="1" notOperational="1">
- :::warning
- This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
- :::
-</Route>
+<Route data={{"path":"/followings/:id/:routeParams?","categories":["social-media"],"example":"/twitter/followings/DIYgod","parameters":{"id":"username","routeParams":"extra parameters, see the table above"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User following timeline","maintainers":["DIYgod"],"description":":::warning\n This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.\n :::","location":"followings.ts"}} />
-### List timeline {#twitter-list-timeline}
-
-<Route author="xyqfer" example="/twitter/list/ladyleet/javascript" path="/twitter/list/:id/:name/:routeParams?" paramsDesc={['username', 'list name', 'extra parameters, see the table above']} radar="1" notOperational="1" />
+:::warning
+This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
+:::
### User likes {#twitter-user-likes}
-<Route author="xyqfer" example="/twitter/likes/DIYgod" path="/twitter/likes/:id/:routeParams?" paramsDesc={['username', 'extra parameters, see the table above']} radar="1" notOperational="1" />
+<Route data={{"path":"/likes/:id/:routeParams?","categories":["social-media"],"example":"/twitter/likes/DIYgod","parameters":{"id":"username","routeParams":"extra parameters, see the table above"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User likes","maintainers":["xyqfer"],"location":"likes.ts"}} />
-### Trends {#twitter-trends}
+### User media {#twitter-user-media}
-<Route author="sakamossan" example="/twitter/trends/23424856" path="/twitter/trends/:woeid?" paramsDesc={['Yahoo! Where On Earth ID. default to woeid=1 (World Wide)']} radar="1" notOperational="1" />
+<Route data={{"path":"/media/:id/:routeParams?","categories":["social-media"],"example":"/twitter/media/DIYgod","parameters":{"id":"username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`","routeParams":"extra parameters, see the table above."},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User media","maintainers":["yindaheng98","Rongronggg9"],"location":"media.ts"}} />
-### Collection {#twitter-collection}
+### User timeline {#twitter-user-timeline}
-<Route author="TonyRL" example="/twitter/collection/DIYgod/1527857429467172864" path="/twitter/collection/:uid/:collectionId/:routeParams?" paramsDesc={['username, should match the generated token', 'collection ID, can be found in URL', 'extra parameters, see the table above']} radar="1" configRequired="1" notOperational="1">
- :::warning
- This route requires Twitter token's corresponding id, therefore it's only available when self-hosting, refer to the [Deploy Guide](/install/#route-specific-configurations) for route-specific configurations.
- :::
-</Route>
+<Route data={{"path":"/user/:id/:routeParams?","categories":["social-media"],"example":"/twitter/user/DIYgod","parameters":{"id":"username; in particular, if starts with `+`, it will be recognized as a [unique ID](https://github.com/DIYgod/RSSHub/issues/12221), e.g. `+44196397`","routeParams":"extra parameters, see the table above; particularly when `routeParams=exclude_replies`, replies are excluded; `routeParams=exclude_rts` excludes retweets,`routeParams=exclude_rts_replies` exclude replies and retweets; for default include all."},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User timeline","maintainers":["DIYgod","yindaheng98","Rongronggg9"],"location":"user.ts"}} />
## Vimeo {#vimeo}
-### User Profile {#vimeo-user-profile}
+### Category {#vimeo-category}
-<Route author="MisteryMonster" example="/vimeo/user/filmsupply/picks" path="/vimeo/user/:username/:cat?" paramsDesc={['In this example [https://vimeo.com/filmsupply](https://vimeo.com/filmsupply) is `filmsupply`', 'deafult for all latest videos, others categories in this example such as `Docmentary`, `Narrative`, `Drama`. Set `picks` for promote orders, just orderd like web page. When `picks` added, published date won\'t show up']}>
- :::tip[Special category name attention]
- Some of the categories contain slash like `3D/CG` , must change the slash `/` to the vertical bar`|`.
- :::
-</Route>
+<Route data={{"path":"/category/:category/:staffpicks?","categories":["social-media"],"example":"/vimeo/category/documentary/staffpicks","parameters":{"category":"Category name can get from url like `documentary` in [https://vimeo.com/categories/documentary/videos](https://vimeo.com/categories/documentary/videos) ","staffpicks":"type `staffpicks` to sort with staffpicks"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["MisteryMonster"],"location":"category.ts"}} />
### Channel {#vimeo-channel}
-<Route author="MisteryMonster" example="/vimeo/channel/bestoftheyear" path="/vimeo/channel/:channel" paramsDesc={['channel name can get from url like `bestoftheyear` in [https://vimeo.com/channels/bestoftheyear/videos](https://vimeo.com/channels/bestoftheyear/videos) .']} radar="1" />
+<Route data={{"path":"/channel/:channel","categories":["social-media"],"example":"/vimeo/channel/bestoftheyear","parameters":{"channel":"channel name can get from url like `bestoftheyear` in [https://vimeo.com/channels/bestoftheyear/videos](https://vimeo.com/channels/bestoftheyear/videos) ."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vimeo.com/channels/:channel","vimeo.com/channels/:channel/videos","vimeo.com/channels/:channel/videos/:sort/:format"]},"name":"Channel","maintainers":["MisteryMonster"],"location":"channel.ts"}} />
-### Category {#vimeo-category}
+### User Profile {#vimeo-user-profile}
-<Route author="MisteryMonster" example="/vimeo/category/documentary/staffpicks" path="/vimeo/category/:category/:staffpicks?" paramsDesc={['Category name can get from url like `documentary` in [https://vimeo.com/categories/documentary/videos](https://vimeo.com/categories/documentary/videos) ', 'type `staffpicks` to sort with staffpicks']} radar="1" />
+<Route data={{"path":"/user/:username/:cat?","categories":["social-media"],"example":"/vimeo/user/filmsupply/picks","parameters":{"username":"In this example [https://vimeo.com/filmsupply](https://vimeo.com/filmsupply) is `filmsupply`","cat":"deafult for all latest videos, others categories in this example such as `Docmentary`, `Narrative`, `Drama`. Set `picks` for promote orders, just orderd like web page. When `picks` added, published date won't show up"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"User Profile","maintainers":["MisteryMonster"],"description":":::tip[Special category name attention]\n Some of the categories contain slash like `3D/CG` , must change the slash `/` to the vertical bar`|`.\n :::","location":"usr-videos.ts"}} />
-## YouTube {#youtube}
+:::tip[Special category name attention]
+Some of the categories contain slash like `3D/CG` , must change the slash `/` to the vertical bar`|`.
+:::
-### User {#youtube-user}
+## YouTube Live {#youtube-live}
-<Route author="DIYgod" path="/youtube/user/:username/:embed?" example="/youtube/user/JFlaMusic" paramsDesc={['YouTuber id', 'Default to embed the video, set to any value to disable embedding']} radar="1" />
+### Channel {#youtube-live-channel}
-### Channel {#youtube-channel}
+<Route data={{"path":"/channel/:id/:embed?","categories":["social-media"],"example":"/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ","parameters":{"id":"YouTube channel id","embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.youtube.com/channel/:id"],"target":"/channel/:id"},"name":"Channel","maintainers":["DIYgod"],"description":":::tip\nYouTube provides official RSS feeds for channels, for instance [https://www.youtube.com/feeds/videos.xml?channel_id=UCDwDMPOZfxVV0x_dz0eQ8KQ](https://www.youtube.com/feeds/videos.xml?channel_id=UCDwDMPOZfxVV0x_dz0eQ8KQ).\n:::","location":"channel.ts"}} />
:::tip
YouTube provides official RSS feeds for channels, for instance [https://www.youtube.com/feeds/videos.xml?channel\_id=UCDwDMPOZfxVV0x\_dz0eQ8KQ](https://www.youtube.com/feeds/videos.xml?channel_id=UCDwDMPOZfxVV0x_dz0eQ8KQ).
:::
-<Route author="DIYgod" path="/youtube/channel/:id/:embed?" example="/youtube/channel/UCDwDMPOZfxVV0x_dz0eQ8KQ" paramsDesc={['YouTube channel id', 'Default to embed the video, set to any value to disable embedding']} radar="1" />
-
-### Custom URL {#youtube-custom-url}
+### Community {#youtube-live-community}
-<Route author="TonyRL" path="/youtube/c/:id/:embed?" example="/youtube/c/YouTubeCreators" paramsDesc={['YouTube custom URL', 'Default to embed the video, set to any value to disable embedding']} radar="1" />
+<Route data={{"path":"/community/:handle","categories":["social-media"],"example":"/youtube/community/@JFlaMusic","parameters":{"handle":"YouTube handles or channel id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Community","maintainers":["TonyRL"],"location":"community.ts"}} />
-### Playlist {#youtube-playlist}
+### Music Charts {#youtube-live-music-charts}
-<Route author="HenryQW" path="/youtube/playlist/:id/:embed?" example="/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z" paramsDesc={['YouTube playlist id', 'Default to embed the video, set to any value to disable embedding']} radar="1" />
+<Route data={{"path":"/charts/:category?/:country?/:embed?","categories":["social-media"],"example":"/youtube/charts","parameters":{"category":"Chart, see table below, default to `TopVideos`","country":"Country Code, see table below, default to global","embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Music Charts","maintainers":["TonyRL"],"description":"Chart\n\n | Top artists | Top songs | Top music videos | Trending |\n | ----------- | --------- | ---------------- | -------------- |\n | TopArtists | TopSongs | TopVideos | TrendingVideos |\n\n Country Code\n\n | Argentina | Australia | Austria | Belgium | Bolivia | Brazil | Canada |\n | --------- | --------- | ------- | ------- | ------- | ------ | ------ |\n | ar | au | at | be | bo | br | ca |\n\n | Chile | Colombia | Costa Rica | Czechia | Denmark | Dominican Republic | Ecuador |\n | ----- | -------- | ---------- | ------- | ------- | ------------------ | ------- |\n | cl | co | cr | cz | dk | do | ec |\n\n | Egypt | El Salvador | Estonia | Finland | France | Germany | Guatemala |\n | ----- | ----------- | ------- | ------- | ------ | ------- | --------- |\n | eg | sv | ee | fi | fr | de | gt |\n\n | Honduras | Hungary | Iceland | India | Indonesia | Ireland | Israel | Italy |\n | -------- | ------- | ------- | ----- | --------- | ------- | ------ | ----- |\n | hn | hu | is | in | id | ie | il | it |\n\n | Japan | Kenya | Luxembourg | Mexico | Netherlands | New Zealand | Nicaragua |\n | ----- | ----- | ---------- | ------ | ----------- | ----------- | --------- |\n | jp | ke | lu | mx | nl | nz | ni |\n\n | Nigeria | Norway | Panama | Paraguay | Peru | Poland | Portugal | Romania |\n | ------- | ------ | ------ | -------- | ---- | ------ | -------- | ------- |\n | ng | no | pa | py | pe | pl | pt | ro |\n\n | Russia | Saudi Arabia | Serbia | South Africa | South Korea | Spain | Sweden | Switzerland |\n | ------ | ------------ | ------ | ------------ | ----------- | ----- | ------ | ----------- |\n | ru | sa | rs | za | kr | es | se | ch |\n\n | Tanzania | Turkey | Uganda | Ukraine | United Arab Emirates | United Kingdom | United States |\n | -------- | ------ | ------ | ------- | -------------------- | -------------- | ------------- |\n | tz | tr | ug | ua | ae | gb | us |\n\n | Uruguay | Zimbabwe |\n | ------- | -------- |\n | uy | zw |","location":"charts.ts"}} />
-### Community {#youtube-community}
+Chart
-<Route author="TonyRL" path="/youtube/community/:handle" example="/youtube/community/@JFlaMusic" paramsDesc={['YouTube handles or channel id']} radar="1" />
+| Top artists | Top songs | Top music videos | Trending |
+| ----------- | --------- | ---------------- | -------------- |
+| TopArtists | TopSongs | TopVideos | TrendingVideos |
-### Subscriptions {#youtube-subscriptions}
+Country Code
-<Route author="TonyRL" path="/youtube/subscriptions/:embed?" example="/youtube/subscriptions" paramsDesc={['Default to embed the video, set to any value to disable embedding']} configRequired="1" radar="1" />
+| Argentina | Australia | Austria | Belgium | Bolivia | Brazil | Canada |
+| --------- | --------- | ------- | ------- | ------- | ------ | ------ |
+| ar | au | at | be | bo | br | ca |
-### Music Charts {#youtube-music-charts}
+| Chile | Colombia | Costa Rica | Czechia | Denmark | Dominican Republic | Ecuador |
+| ----- | -------- | ---------- | ------- | ------- | ------------------ | ------- |
+| cl | co | cr | cz | dk | do | ec |
-<Route author="TonyRL" path="/youtube/charts/:category?/:country?/:embed?" example="/youtube/charts" paramsDesc={['Chart, see table below, default to `TopVideos`', 'Country Code, see table below, default to global', 'Default to embed the video, set to any value to disable embedding']} radar="1">
- Chart
+| Egypt | El Salvador | Estonia | Finland | France | Germany | Guatemala |
+| ----- | ----------- | ------- | ------- | ------ | ------- | --------- |
+| eg | sv | ee | fi | fr | de | gt |
- | Top artists | Top songs | Top music videos | Trending |
- | ----------- | --------- | ---------------- | -------------- |
- | TopArtists | TopSongs | TopVideos | TrendingVideos |
+| Honduras | Hungary | Iceland | India | Indonesia | Ireland | Israel | Italy |
+| -------- | ------- | ------- | ----- | --------- | ------- | ------ | ----- |
+| hn | hu | is | in | id | ie | il | it |
- Country Code
+| Japan | Kenya | Luxembourg | Mexico | Netherlands | New Zealand | Nicaragua |
+| ----- | ----- | ---------- | ------ | ----------- | ----------- | --------- |
+| jp | ke | lu | mx | nl | nz | ni |
- | Argentina | Australia | Austria | Belgium | Bolivia | Brazil | Canada |
- | --------- | --------- | ------- | ------- | ------- | ------ | ------ |
- | ar | au | at | be | bo | br | ca |
+| Nigeria | Norway | Panama | Paraguay | Peru | Poland | Portugal | Romania |
+| ------- | ------ | ------ | -------- | ---- | ------ | -------- | ------- |
+| ng | no | pa | py | pe | pl | pt | ro |
- | Chile | Colombia | Costa Rica | Czechia | Denmark | Dominican Republic | Ecuador |
- | ----- | -------- | ---------- | ------- | ------- | ------------------ | ------- |
- | cl | co | cr | cz | dk | do | ec |
+| Russia | Saudi Arabia | Serbia | South Africa | South Korea | Spain | Sweden | Switzerland |
+| ------ | ------------ | ------ | ------------ | ----------- | ----- | ------ | ----------- |
+| ru | sa | rs | za | kr | es | se | ch |
- | Egypt | El Salvador | Estonia | Finland | France | Germany | Guatemala |
- | ----- | ----------- | ------- | ------- | ------ | ------- | --------- |
- | eg | sv | ee | fi | fr | de | gt |
+| Tanzania | Turkey | Uganda | Ukraine | United Arab Emirates | United Kingdom | United States |
+| -------- | ------ | ------ | ------- | -------------------- | -------------- | ------------- |
+| tz | tr | ug | ua | ae | gb | us |
- | Honduras | Hungary | Iceland | India | Indonesia | Ireland | Israel | Italy |
- | -------- | ------- | ------- | ----- | --------- | ------- | ------ | ----- |
- | hn | hu | is | in | id | ie | il | it |
+| Uruguay | Zimbabwe |
+| ------- | -------- |
+| uy | zw |
- | Japan | Kenya | Luxembourg | Mexico | Netherlands | New Zealand | Nicaragua |
- | ----- | ----- | ---------- | ------ | ----------- | ----------- | --------- |
- | jp | ke | lu | mx | nl | nz | ni |
+### Playlist {#youtube-live-playlist}
- | Nigeria | Norway | Panama | Paraguay | Peru | Poland | Portugal | Romania |
- | ------- | ------ | ------ | -------- | ---- | ------ | -------- | ------- |
- | ng | no | pa | py | pe | pl | pt | ro |
+<Route data={{"path":"/playlist/:id/:embed?","categories":["social-media"],"example":"/youtube/playlist/PLqQ1RwlxOgeLTJ1f3fNMSwhjVgaWKo_9Z","parameters":{"id":"YouTube playlist id","embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Playlist","maintainers":["HenryQW"],"location":"playlist.ts"}} />
- | Russia | Saudi Arabia | Serbia | South Africa | South Korea | Spain | Sweden | Switzerland |
- | ------ | ------------ | ------ | ------------ | ----------- | ----- | ------ | ----------- |
- | ru | sa | rs | za | kr | es | se | ch |
+### Subscriptions {#youtube-live-subscriptions}
- | Tanzania | Turkey | Uganda | Ukraine | United Arab Emirates | United Kingdom | United States |
- | -------- | ------ | ------ | ------- | -------------------- | -------------- | ------------- |
- | tz | tr | ug | ua | ae | gb | us |
+<Route data={{"path":"/subscriptions/:embed?","categories":["social-media"],"example":"/youtube/subscriptions","parameters":{"embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.youtube.com/feed/subscriptions","www.youtube.com/feed/channels"],"target":"/subscriptions"},"name":"Subscriptions","maintainers":["TonyRL"],"url":"www.youtube.com/feed/subscriptions","location":"subscriptions.ts"}} />
- | Uruguay | Zimbabwe |
- | ------- | -------- |
- | uy | zw |
-</Route>
+### User {#youtube-live-user}
-## 巴哈姆特 {#ba-ha-mu-te}
-
-### 个人小屋 {#ba-ha-mu-te-ge-ren-xiao-wu}
-
-<Route author="hoilc" example="/bahamut/creation/tpesamguo/338592" path="/bahamut/creation/:author/:category?" paramsDesc={['作者 ID, 即为个人小屋 URL 中 `owner` 参数','分类ID, 即为创作分类 URL 中 `c` 参数']} />
-
-### 创作大厅 {#ba-ha-mu-te-chuang-zuo-da-ting}
-
-<Route author="hoilc" example="/bahamut/creation_index/4/0/2" path="/bahamut/creation_index/:category?/:subcategory?/:type?" paramsDesc={['分类 ID, 即为 URL 中 `k1` 参数, 0 或置空为不限','子分类 ID, 即为 URL 中 `k2` 参数, 0或置空为不限', '排行类型, 即为 URL 中 `vt` 参数, 0或置空为達人專欄']}>
- 分类 ID 参考如下
-
- | 不限 | 日誌 | 小說 | 繪圖 | Cosplay | 同人商品 |
- | ---- | ---- | ---- | ---- | ------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 |
-
- 子分类 ID 比较多不作列举
-
- 排行类型参考如下
-
- | 達人專欄 | 最新創作 | 最新推薦 | 熱門創作 | 精選閣樓 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 4 | 5 |
-</Route>
+<Route data={{"path":"/user/:username/:embed?","categories":["social-media"],"example":"/youtube/user/JFlaMusic","parameters":{"username":"YouTuber id","embed":"Default to embed the video, set to any value to disable embedding"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.youtube.com/user/:username"],"target":"/user/:username"},"name":"User","maintainers":["DIYgod"],"location":"user.ts"}} />
## 唱吧 {#chang-ba}
### 用户 {#chang-ba-yong-hu}
-<Route author="kt286 xizeyoupan" example="/changba/skp6hhF59n48R-UpqO3izw" path="/changba/:userid" paramsDesc={['用户ID, 可在对应分享页面的 URL 中找到']} radar="1" supportPodcast="1" />
+<Route data={{"path":"/:userid","categories":["social-media"],"example":"/changba/skp6hhF59n48R-UpqO3izw","parameters":{"userid":"用户ID, 可在对应分享页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["changba.com/s/:userid"]},"name":"用户","maintainers":[],"location":"user.ts"}} />
-## 抖音 {#dou-yin}
+## 抖音直播 {#dou-yin-zhi-bo}
:::warning
-反爬严格,需要启用 puppeteer。\
-抖音的视频 CDN 会验证 Referer,意味着许多阅读器都无法直接播放内嵌视频,以下是一些变通解决方案:
+反爬严格,需要启用 puppeteer。抖音的视频 CDN 会验证 Referer,意味着许多阅读器都无法直接播放内嵌视频,以下是一些变通解决方案:
1. 启用内嵌视频 (`embed=1`), 参考 [通用参数 -> 多媒体处理](/parameter#多媒体处理) 配置 `multimedia_hotlink_template` **或** `wrap_multimedia_in_iframe`。
2. 关闭内嵌视频 (`embed=0`),手动点击 `视频直链` 超链接,一般情况下均可成功播放视频。若仍然出现 HTTP 403,请复制 URL 以后到浏览器打开。
@@ -1049,47 +842,70 @@ YouTube provides official RSS feeds for channels, for instance [https://www.yout
| ------- | ---------------- | ---------------------- | ------- |
| `embed` | 是否启用内嵌视频 | `0`/`1`/`true`/`false` | `false` |
-### 博主 {#dou-yin-bo-zhu}
-
-<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" puppeteer="1" />
+### 标签 {#dou-yin-zhi-bo-biao-qian}
-### 标签 {#dou-yin-biao-qian}
+<Route data={{"path":"/hashtag/:cid/:routeParams?","categories":["social-media"],"example":"/douyin/hashtag/1592824105719812","parameters":{"cid":"标签 ID,可在标签页面 URL 中找到","routeParams":"额外参数,query string 格式,请参阅上面的表格"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["douyin.com/hashtag/:cid"],"target":"/hashtag/:cid"},"name":"标签","maintainers":["TonyRL"],"location":"hashtag.ts"}} />
-<Route author="TonyRL" example="/douyin/hashtag/1592824105719812" path="/douyin/hashtag/:cid/:routeParams?" paramsDesc={['标签 ID,可在标签页面 URL 中找到', '额外参数,query string 格式,请参阅上面的表格']} anticrawler="1" radar="1" puppeteer="1" />
+### 博主 {#dou-yin-zhi-bo-bo-zhu}
-### 直播 {#dou-yin-zhi-bo}
-
-见 [#抖音直播](/routes/live#dou-yin-zhi-bo)
+<Route data={{"path":"/user/:uid/:routeParams?","categories":["social-media"],"example":"/douyin/user/MS4wLjABAAAARcAHmmF9mAG3JEixq_CdP72APhBlGlLVbN-1eBcPqao","parameters":{"uid":"uid,可在用户页面 URL 中找到","routeParams":"额外参数,query string 格式,请参阅上面的表格"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["douyin.com/user/:uid"],"target":"/user/:uid"},"name":"博主","maintainers":["Max-Tortoise","Rongronggg9"],"location":"user.ts"}} />
## 豆瓣 {#dou-ban}
-### 正在上映的电影 {#dou-ban-zheng-zai-shang-ying-de-dian-ying}
+### Unknown {#dou-ban-unknown}
-<Route author="DIYgod" example="/douban/movie/playing" path="/douban/movie/playing" />
+<Route data={{"path":"/doulist/:id","categories":["social-media"],"example":"/douban/doulist/37716774","parameters":{"id":"豆列id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["LogicJake","honue"],"location":"other/doulist.ts"}} />
-### 正在上映的高分电影 {#dou-ban-zheng-zai-shang-ying-de-gao-fen-dian-ying}
-
-<Route author="DIYgod" example="/douban/movie/playing/7.5" path="/douban/movie/playing/:score" paramsDesc={['返回大于等于这个分数的电影']} />
-
-### 即将上映的电影 {#dou-ban-ji-jiang-shang-ying-de-dian-ying}
+### Unknown {#dou-ban-unknown}
-<Route author="DIYgod" example="/douban/movie/later" path="/douban/movie/later" />
+<Route data={{"path":"/book/latest","categories":["social-media"],"example":"/douban/book/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["fengkx"],"location":"other/latest-book.ts"}} />
### 北美票房榜 {#dou-ban-bei-mei-piao-fang-bang}
-<Route author="DIYgod" example="/douban/movie/ustop" path="/douban/movie/ustop" />
+<Route data={{"path":"/movie/ustop","categories":["social-media"],"example":"/douban/movie/ustop","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"北美票房榜","maintainers":["DIYgod"],"location":"other/ustop.ts"}} />
-### 一周口碑榜 {#dou-ban-yi-zhou-kou-bei-bang}
+### 豆瓣榜单与集合 {#dou-ban-dou-ban-bang-dan-yu-ji-he}
-<Route author="umm233 nczitzk" example="/douban/movie/weekly" path="/douban/movie/weekly/:type?" paramsDesc={['分类,可在榜单页 URL 中找到,默认为一周口碑电影榜']}>
- | 一周口碑电影榜 | 华语口碑剧集榜 |
- | ------------------- | ------------------------- |
- | movie\_weekly\_best | tv\_chinese\_best\_weekly |
-</Route>
+<Route data={{"path":"/list/:type?/:routeParams?","categories":["social-media"],"example":"/douban/list/subject_real_time_hotest","parameters":{"type":"榜单类型,见下表。默认为实时热门书影音","routeParams":"额外参数;请参阅以下说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.douban.com/subject_collection/:type"],"target":"/list/:type"},"name":"豆瓣榜单与集合","maintainers":["5upernova-heng","honue"],"description":"| 榜单 / 集合 | 路由 |\n | ------------------ | ----------------------------- |\n | 实时热门书影音 | subject_real_time_hotest |\n | 影院热映 | movie_showing |\n | 实时热门电影 | movie_real_time_hotest |\n | 实时热门电视 | tv_real_time_hotest |\n | 一周口碑电影榜 | movie_weekly_best |\n | 华语口碑剧集榜 | tv_chinese_best_weekly |\n | 全球口碑剧集榜 | tv_global_best_weekly |\n | 国内口碑综艺榜 | show_chinese_best_weekly |\n | 国外口碑综艺榜 | show_global_best_weekly |\n | 热播新剧国产剧 | tv_domestic |\n | 热播新剧欧美剧 | tv_american |\n | 热播新剧日剧 | tv_japanese |\n | 热播新剧韩剧 | tv_korean |\n | 热播新剧动画 | tv_animation |\n | 虚构类小说热门榜 | book_fiction_hot_weekly |\n | 非虚构类小说热门榜 | book_nonfiction_hot_weekly |\n | 热门单曲榜 | music_single |\n | 华语新碟榜 | music_chinese |\n | ... | ... |\n\n | 额外参数 | 含义 | 接受的值 | 默认值 |\n | -------- | ---------------------- | -------- | ------ |\n | playable | 仅看有可播放片源的影片 | 0/1 | 0 |\n | score | 筛选评分 | 0-10 | 0 |\n\n 用例:`/douban/list/tv_korean/playable=1&score=8`\n\n > 上面的榜单 / 集合并没有列举完整。\n >\n > 如何找到榜单对应的路由参数:\n > 在豆瓣手机 APP 中,对应地榜单页面右上角,点击分享链接。链接路径 `subject_collection` 后的路径就是路由参数 `type`。\n > 如:小说热门榜的分享链接为:`https://m.douban.com/subject_collection/ECDIHUN4A`,其对应本 RSS 路由的 `type` 为 `ECDIHUN4A`,对应的订阅链接路由:[`/douban/list/ECDIHUN4A`](https://rsshub.app/douban/list/ECDIHUN4A)","location":"other/list.ts"}} />
+
+| 榜单 / 集合 | 路由 |
+| ------------------ | ----------------------------- |
+| 实时热门书影音 | subject\_real\_time\_hotest |
+| 影院热映 | movie\_showing |
+| 实时热门电影 | movie\_real\_time\_hotest |
+| 实时热门电视 | tv\_real\_time\_hotest |
+| 一周口碑电影榜 | movie\_weekly\_best |
+| 华语口碑剧集榜 | tv\_chinese\_best\_weekly |
+| 全球口碑剧集榜 | tv\_global\_best\_weekly |
+| 国内口碑综艺榜 | show\_chinese\_best\_weekly |
+| 国外口碑综艺榜 | show\_global\_best\_weekly |
+| 热播新剧国产剧 | tv\_domestic |
+| 热播新剧欧美剧 | tv\_american |
+| 热播新剧日剧 | tv\_japanese |
+| 热播新剧韩剧 | tv\_korean |
+| 热播新剧动画 | tv\_animation |
+| 虚构类小说热门榜 | book\_fiction\_hot\_weekly |
+| 非虚构类小说热门榜 | book\_nonfiction\_hot\_weekly |
+| 热门单曲榜 | music\_single |
+| 华语新碟榜 | music\_chinese |
+| ... | ... |
+
+| 额外参数 | 含义 | 接受的值 | 默认值 |
+| -------- | ---------------------- | -------- | ------ |
+| playable | 仅看有可播放片源的影片 | 0/1 | 0 |
+| score | 筛选评分 | 0-10 | 0 |
+
+用例:`/douban/list/tv_korean/playable=1&score=8`
+
+> 上面的榜单 / 集合并没有列举完整。
+>
+> 如何找到榜单对应的路由参数:
+> 在豆瓣手机 APP 中,对应地榜单页面右上角,点击分享链接。链接路径 `subject_collection` 后的路径就是路由参数 `type`。
+> 如:小说热门榜的分享链接为:`https://m.douban.com/subject_collection/ECDIHUN4A`,其对应本 RSS 路由的 `type` 为 `ECDIHUN4A`,对应的订阅链接路由:[`/douban/list/ECDIHUN4A`](https://rsshub.app/douban/list/ECDIHUN4A)
### 豆瓣电影分类 {#dou-ban-dou-ban-dian-ying-fen-lei}
-<Route author="zzwab" example="/douban/movie/classification/R/7.5/Netflix,2020" path="/douban/movie/classification/:sort?/:score?/:tags?" paramsDesc={['排序方式,默认为U', '最低评分,默认不限制', '分类标签,多个标签之间用英文逗号分隔,常见的标签到豆瓣电影的分类页面查看,支持自定义标签']} />
+<Route data={{"path":"/movie/classification/:sort?/:score?/:tags?","categories":["social-media"],"example":"/douban/movie/classification/R/7.5/Netflix,2020","parameters":{"sort":"排序方式,默认为U","score":"最低评分,默认不限制","tags":"分类标签,多个标签之间用英文逗号分隔,常见的标签到豆瓣电影的分类页面查看,支持自定义标签"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"豆瓣电影分类","maintainers":["zzwab"],"description":"排序方式可选值如下\n\n| 近期热门 | 标记最多 | 评分最高 | 最近上映 |\n| -------- | -------- | -------- | -------- |\n| U | T | S | R |","location":"other/classification.ts"}} />
排序方式可选值如下
@@ -1099,373 +915,239 @@ YouTube provides official RSS feeds for channels, for instance [https://www.yout
### 豆瓣电影人 {#dou-ban-dou-ban-dian-ying-ren}
-<Route author="minimalistrojan" example="/douban/celebrity/1274261" path="/douban/celebrity/:id/:sort?" paramsDesc={['电影人 id', '排序方式,缺省为 `time`(时间排序),可为 `vote` (评价排序)']} />
-
-### 豆瓣小组 {#dou-ban-dou-ban-xiao-zu}
-
-<Route author="DIYgod" example="/douban/group/648102" path="/douban/group/:groupid/:type?" paramsDesc={['豆瓣小组的 id', '缺省 最新,essence 最热,elite 精华']} />
-
-### 浏览发现 {#dou-ban-liu-lan-fa-xian}
-
-<Route author="clarkzsd Fatpandac" example="/douban/explore" path="/douban/explore" />
-
-### 浏览发现分栏目 {#dou-ban-liu-lan-fa-xian-fen-lan-mu}
-
-<Route author="LogicJake" example="/douban/explore/column/2" path="/douban/explore_column/:id" paramsDesc={['分栏目id']} />
-
-### 新书速递 {#dou-ban-xin-shu-su-di}
+<Route data={{"path":"/celebrity/:id/:sort?","categories":["social-media"],"example":"/douban/celebrity/1274261","parameters":{"id":"电影人 id","sort":"排序方式,缺省为 `time`(时间排序),可为 `vote` (评价排序)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"豆瓣电影人","maintainers":["minimalistrojan"],"location":"other/celebrity.ts"}} />
-<Route author="fengkx" example="/douban/book/latest" path="douban/book/latest" />
+### 豆瓣读书论坛 {#dou-ban-dou-ban-du-shu-lun-tan}
-### 最新增加的音乐 {#dou-ban-zui-xin-zeng-jia-de-yin-yue}
+<Route data={{"path":"/:id/discussion","categories":["social-media"],"example":"/douban/36328704/discussion","parameters":{"id":"书本id;默认论坛文章使用\"按回应时间排序\",仅第一页文章"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["book.douban.com/:id/discussion"]},"name":"豆瓣读书论坛","maintainers":["nightmare-mio"],"location":"other/discussion.ts"}} />
-<Route author="fengkx xyqfer" example="/douban/music/latest/chinese" path="/douban/music/latest/:area?" paramsDesc={['区域类型,默认全部']} notOperational="1">
- | 华语 | 欧美 | 日韩 |
- | ------- | ------- | ----------- |
- | chinese | western | japankorean |
-</Route>
+### 豆瓣每月推荐片单 {#dou-ban-dou-ban-mei-yue-tui-jian-pian-dan}
-### 热门同城活动 {#dou-ban-re-men-tong-cheng-huo-dong}
+<Route data={{"path":"/recommended/:type?/:routeParams?","categories":["social-media"],"example":"/douban/recommended/tv","parameters":{"type":"片单类型剧集/电影,tv或movie,默认为tv","routeParams":"额外参数;请参阅以下说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"豆瓣每月推荐片单","maintainers":["honue"],"description":"| 额外参数 | 含义 | 接受的值 | 默认值 |\n | -------- | ---------------------- | -------- | ------ |\n | playable | 仅看有可播放片源的影片 | 0/1 | 0 |\n | score | 筛选评分 | 0-10 | 0 |\n\n 用例:`/douban/recommended/tv/playable=0&score=8`\n\n :::tip\n 整合了 /douban/list/ 路由,省去每月手动更新 id 参数,因为当月推荐剧集片单中,会有还未播出 / 开评分剧集、海外平台播出剧集,请自行考虑是否使用额外参数。\n :::","location":"other/recommended.ts"}} />
-<Route author="xyqfer" example="/douban/event/hot/118172" path="/douban/event/hot/:locationId" paramsDesc={['位置 id, [同城首页](https://www.douban.com/location)打开控制台执行 `window.__loc_id__` 获取']} />
+| 额外参数 | 含义 | 接受的值 | 默认值 |
+| -------- | ---------------------- | -------- | ------ |
+| playable | 仅看有可播放片源的影片 | 0/1 | 0 |
+| score | 筛选评分 | 0-10 | 0 |
-### 商务印书馆新书速递 {#dou-ban-shang-wu-yin-shu-guan-xin-shu-su-di}
+用例:`/douban/recommended/tv/playable=0&score=8`
-<Route author="xyqfer" example="/douban/commercialpress/latest" path="/douban/commercialpress/latest" />
+:::tip
+整合了 /douban/list/ 路由,省去每月手动更新 id 参数,因为当月推荐剧集片单中,会有还未播出 / 开评分剧集、海外平台播出剧集,请自行考虑是否使用额外参数。
+:::
### 豆瓣书店 {#dou-ban-dou-ban-shu-dian}
-<Route author="xyqfer" example="/douban/bookstore" path="/douban/bookstore" />
-
-### 热门图书排行 {#dou-ban-re-men-tu-shu-pai-hang}
-
-<Route author="xyqfer queensferryme" example="/douban/book/rank/fiction" path="/douban/book/rank/:type?" paramsDesc={['图书类型,默认合并列表']}>
- | 全部 | 虚构 | 非虚构 |
- | ---- | ------- | ---------- |
- | | fiction | nonfiction |
-</Route>
+<Route data={{"path":"/bookstore","categories":["social-media"],"example":"/douban/bookstore","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"豆瓣书店","maintainers":["xyqfer"],"location":"other/bookstore.ts"}} />
-### 豆瓣豆列 {#dou-ban-dou-ban-dou-lie}
-
-<Route author="LogicJake" example="/douban/doulist/37716774" path="douban/doulist/:id" paramsDesc={['豆列id']} />
-
-### 用户广播 {#dou-ban-yong-hu-guang-bo}
+### 豆瓣小组 {#dou-ban-dou-ban-xiao-zu}
-<Route author="alfredcai" example="/douban/people/62759792/status" path="douban/people/:userid/status/:routeParams" paramsDesc={['整数型用户 id', '额外参数;见下']} radar="1">
- :::tip
- - **目前只支持整数型 id**
- - 字母型的 id,可以通过头像图片链接来找到其整数型 id,图片命名规则`ul[userid]-*.jpg`或`u[userid]-*.jpg`,即取文件名中间的数字
- - 例如:用户 id: `MovieL`他的头像图片链接:`https://img1.doubanio.com/icon/ul1128221-98.jpg`他的整数型 id: `1128221`
- :::
+<Route data={{"path":"/group/:groupid/:type?","categories":["social-media"],"example":"/douban/group/648102","parameters":{"groupid":"豆瓣小组的 id","type":"缺省 最新,essence 最热,elite 精华"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.douban.com/group/:groupid"],"target":"/group/:groupid"},"name":"豆瓣小组","maintainers":["DIYgod"],"location":"other/group.ts"}} />
- 对于豆瓣用户广播内容,在 `routeParams` 参数中以 query string 格式设置如下选项可以控制输出的样式
+### 豆瓣招聘 {#dou-ban-dou-ban-zhao-pin}
- | 键 | 含义 | 接受的值 | 默认值 |
- | -------------------------- | -------------------------------------------------------------- | -------------- | ------ |
- | readable | 是否开启细节排版可读性优化 | 0/1/true/false | false |
- | authorNameBold | 是否加粗作者名字 | 0/1/true/false | false |
- | showAuthorInTitle | 是否在标题处显示作者 | 0/1/true/false | true |
- | showAuthorInDesc | 是否在正文处显示作者 | 0/1/true/false | false |
- | showAuthorAvatarInDesc | 是否在正文处显示作者头像(若阅读器会提取正文图片,不建议开启) | 0/1/true/false | false |
- | showEmojiForRetweet | 显示 “🔁” 取代 “Fw”(转发) | 0/1/true/false | false |
- | showRetweetTextInTitle | 在标题出显示转发评论(置为 false 则在标题只显示被转发的广播) | 0/1/true/false | false |
- | addLinkForPics | 为图片添加可点击的链接 | 0/1/true/false | false |
- | showTimestampInDescription | 在正文处显示广播的时间戳 | 0/1/true/false | false |
- | showComments | 在正文处显示评论 | 0/1/true/false | false |
- | widthOfPics | 广播配图宽(生效取决于阅读器) | 不指定 / 数字 | 不指定 |
- | heightOfPics | 广播配图高(生效取决于阅读器) | 不指定 / 数字 | 不指定 |
- | sizeOfAuthorAvatar | 作者头像大小 | 数字 | 48 |
+<Route data={{"path":"/jobs/:type","categories":["social-media"],"example":"/douban/jobs/campus","parameters":{"type":"招聘类型,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"豆瓣招聘","maintainers":["Fatpandac"],"description":"| 社会招聘 | 校园招聘 | 实习生招聘 |\n | :------: | :------: | :--------: |\n | social | campus | intern |","location":"other/jobs.ts"}} />
- 指定更多与默认值不同的参数选项可以改善 RSS 的可读性,如
+| 社会招聘 | 校园招聘 | 实习生招聘 |
+| :------: | :------: | :--------: |
+| social | campus | intern |
- [https://rsshub.app/douban/people/113894409/status/readable=1\&authorNameBold=1\&showAuthorInTitle=1\&showAuthorInDesc=1\&showAuthorAvatarInDesc=1\&showEmojiForRetweet=1\&showRetweetTextInTitle=1\&addLinkForPics=1\&showTimestampInDescription=1\&showComments=1\&widthOfPics=100](https://rsshub.app/douban/people/113894409/status/readable=1\&authorNameBold=1\&showAuthorInTitle=1\&showAuthorInDesc=1\&showAuthorAvatarInDesc=1\&showEmojiForRetweet=1\&showRetweetTextInTitle=1\&addLinkForPics=1\&showTimestampInDescription=1\&showComments=1\&widthOfPics=100)
+### 话题 {#dou-ban-hua-ti}
- 的效果为
+<Route data={{"path":"/topic/:id/:sort?","categories":["social-media"],"example":"/douban/topic/48823","parameters":{"id":"话题id","sort":"排序方式,hot或new,默认为new"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"话题","maintainers":["LogicJake"],"location":"other/topic.ts"}} />
- <img loading="lazy" src="/img/readable-douban.png" alt="豆瓣读书的可读豆瓣广播 RSS" />
-</Route>
+### 即将上映的电影 {#dou-ban-ji-jiang-shang-ying-de-dian-ying}
-### 日记最新回应 {#dou-ban-ri-ji-zui-xin-hui-ying}
+<Route data={{"path":"/movie/later","categories":["social-media"],"example":"/douban/movie/later","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"即将上映的电影","maintainers":["DIYgod"],"location":"other/later.ts"}} />
-<Route author="nczitzk" example="/douban/replies/xiaoyaxiaoya" path="/douban/replies/:uid" paramsDesc={['用户id,可在用户日记页 URL 中找到']} notOperational="1" />
+### 浏览发现 {#dou-ban-liu-lan-fa-xian}
-### 最新回应过的日记 {#dou-ban-zui-xin-hui-ying-guo-de-ri-ji}
+<Route data={{"path":"/explore","categories":["social-media"],"example":"/douban/explore","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"浏览发现","maintainers":["clarkzsd"],"location":"other/explore.ts"}} />
-<Route author="nczitzk" example="/douban/replied/xiaoyaxiaoya" path="/douban/replied/:uid" paramsDesc={['用户id,可在用户日记页 URL 中找到']} notOperational="1" />
+### 频道书影音 {#dou-ban-pin-dao-shu-ying-yin}
-### 话题 {#dou-ban-hua-ti}
+<Route data={{"path":"/channel/:id/subject/:nav","categories":["social-media"],"example":"/douban/channel/30168934/subject/0","parameters":{"id":"频道id","nav":"书影音分类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道书影音","maintainers":["umm233"],"description":"| 电影 | 电视剧 | 图书 | 唱片 |\n | ---- | ------ | ---- | ---- |\n | 0 | 1 | 2 | 3 |","location":"channel/subject.ts"}} />
-<Route author="LogicJake" example="/douban/topic/48823" path="/douban/topic/:id/:sort?" paramsDesc={['话题id','排序方式,hot或new,默认为new']} />
+| 电影 | 电视剧 | 图书 | 唱片 |
+| ---- | ------ | ---- | ---- |
+| 0 | 1 | 2 | 3 |
### 频道专题 {#dou-ban-pin-dao-zhuan-ti}
-<Route author="umm233" example="/douban/channel/30168934/hot" path="/douban/channel/:id/:nav?" paramsDesc={['频道id','专题分类,可选,默认为 default']}>
- | 默认 | 热门 | 最新 |
- | ------- | ---- | ---- |
- | default | hot | new |
-</Route>
+<Route data={{"path":"/channel/:id/:nav?","categories":["social-media"],"example":"/douban/channel/30168934/hot","parameters":{"id":"频道id","nav":"专题分类,可选,默认为 default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道专题","maintainers":["umm233"],"description":"| 默认 | 热门 | 最新 |\n | ------- | ---- | ---- |\n | default | hot | new |","location":"channel/topic.ts"}} />
-### 频道书影音 {#dou-ban-pin-dao-shu-ying-yin}
-
-<Route author="umm233" example="/douban/channel/30168934/subject/0" path="/douban/channel/:id/subject/:nav" paramsDesc={['频道id','书影音分类']}>
- | 电影 | 电视剧 | 图书 | 唱片 |
- | ---- | ------ | ---- | ---- |
- | 0 | 1 | 2 | 3 |
-</Route>
+| 默认 | 热门 | 最新 |
+| ------- | ---- | ---- |
+| default | hot | new |
-### 用户想看 {#dou-ban-yong-hu-xiang-kan}
+### 热门同城活动 {#dou-ban-re-men-tong-cheng-huo-dong}
-<Route author="exherb" example="/douban/people/exherb/wish" path="/douban/people/:userid/wish/:routeParams?" paramsDesc={['用户id','额外参数;见下']}>
- 对于豆瓣用户想看的内容,在 `routeParams` 参数中以 query string 格式设置如下选项可以控制输出的样式
+<Route data={{"path":"/event/hot/:locationId","categories":["social-media"],"example":"/douban/event/hot/118172","parameters":{"locationId":"位置 id, [同城首页](https://www.douban.com/location)打开控制台执行 `window.__loc_id__` 获取"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热门同城活动","maintainers":["xyqfer"],"location":"event/hot.ts"}} />
- | 键 | 含义 | 接受的值 | 默认值 |
- | ---------- | ---------- | -------- | ------ |
- | pagesCount | 查询页面数 | | 1 |
-</Route>
+### 热门图书排行 {#dou-ban-re-men-tu-shu-pai-hang}
-### 豆瓣招聘 {#dou-ban-dou-ban-zhao-pin}
+<Route data={{"path":"/book/rank/:type?","categories":["social-media"],"example":"/douban/book/rank/fiction","parameters":{"type":"图书类型,默认合并列表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热门图书排行","maintainers":["xyqfer","queensferryme"],"description":"| 全部 | 虚构 | 非虚构 |\n | ---- | ------- | ---------- |\n | | fiction | nonfiction |","location":"book/rank.ts"}} />
-<Route author="Fatpandac" example="/douban/jobs/campus" path="/douban/jobs/:type" paramsDesc={['招聘类型,见下表']}>
- | 社会招聘 | 校园招聘 | 实习生招聘 |
- | :------: | :------: | :--------: |
- | social | campus | intern |
-</Route>
+| 全部 | 虚构 | 非虚构 |
+| ---- | ------- | ---------- |
+| | fiction | nonfiction |
-### 豆瓣榜单与集合 {#dou-ban-dou-ban-bang-dan-yu-ji-he}
+### 日记最新回应 {#dou-ban-ri-ji-zui-xin-hui-ying}
-<Route author="5upernova-heng honue" example="/douban/list/subject_real_time_hotest" path="/douban/list/:type?/:routeParams?" paramsDesc={['榜单类型,见下表。默认为实时热门书影音','额外参数;请参阅以下说明和表格']}>
- | 榜单 / 集合 | 路由 |
- | ------------------ | ----------------------------- |
- | 实时热门书影音 | subject\_real\_time\_hotest |
- | 影院热映 | movie\_showing |
- | 实时热门电影 | movie\_real\_time\_hotest |
- | 实时热门电视 | tv\_real\_time\_hotest |
- | 一周口碑电影榜 | movie\_weekly\_best |
- | 华语口碑剧集榜 | tv\_chinese\_best\_weekly |
- | 全球口碑剧集榜 | tv\_global\_best\_weekly |
- | 国内口碑综艺榜 | show\_chinese\_best\_weekly |
- | 国外口碑综艺榜 | show\_global\_best\_weekly |
- | 热播新剧国产剧 | tv\_domestic |
- | 热播新剧欧美剧 | tv\_american |
- | 热播新剧日剧 | tv\_japanese |
- | 热播新剧韩剧 | tv\_korean |
- | 热播新剧动画 | tv\_animation |
- | 虚构类小说热门榜 | book\_fiction\_hot\_weekly |
- | 非虚构类小说热门榜 | book\_nonfiction\_hot\_weekly |
- | 热门单曲榜 | music\_single |
- | 华语新碟榜 | music\_chinese |
- | ... | ... |
-
- | 额外参数 | 含义 | 接受的值 | 默认值 |
- | -------- | ---------------------- | -------- | ------ |
- | playable | 仅看有可播放片源的影片 | 0/1 | 0 |
- | score | 筛选评分 | 0-10 | 0 |
-
- 用例:`/douban/list/tv_korean/playable=1&score=8`
-
- > 上面的榜单 / 集合并没有列举完整。
- >
- > 如何找到榜单对应的路由参数:
- > 在豆瓣手机 APP 中,对应地榜单页面右上角,点击分享链接。链接路径 `subject_collection` 后的路径就是路由参数 `type`。
- > 如:小说热门榜的分享链接为:`https://m.douban.com/subject_collection/ECDIHUN4A`,其对应本 RSS 路由的 `type` 为 `ECDIHUN4A`,对应的订阅链接路由:[`/douban/list/ECDIHUN4A`](https://rsshub.app/douban/list/ECDIHUN4A)
-</Route>
+<Route data={{"path":"/replies/:uid","categories":["social-media"],"example":"/douban/replies/xiaoyaxiaoya","parameters":{"uid":"用户id,可在用户日记页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"日记最新回应","maintainers":["nczitzk"],"location":"other/replies.ts"}} />
-### 豆瓣每月推荐片单 {#dou-ban-dou-ban-mei-yue-tui-jian-pian-dan}
+### 商务印书馆新书速递 {#dou-ban-shang-wu-yin-shu-guan-xin-shu-su-di}
-<Route author="honue" example="/douban/recommended/tv" path="/douban/recommended/:type?/:routeParams?" paramsDesc={['片单类型剧集/电影,tv或movie,默认为tv','额外参数;请参阅以下说明和表格']}>
- | 额外参数 | 含义 | 接受的值 | 默认值 |
- | -------- | ---------------------- | -------- | ------ |
- | playable | 仅看有可播放片源的影片 | 0/1 | 0 |
- | score | 筛选评分 | 0-10 | 0 |
+<Route data={{"path":"/commercialpress/latest","categories":["social-media"],"example":"/douban/commercialpress/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"商务印书馆新书速递","maintainers":["xyqfer"],"location":"commercialpress/latest.ts"}} />
- 用例:`/douban/recommended/tv/playable=0&score=8`
+### 一周口碑榜 {#dou-ban-yi-zhou-kou-bei-bang}
- :::tip
- 整合了 /douban/list/ 路由,省去每月手动更新 id 参数,因为当月推荐剧集片单中,会有还未播出 / 开评分剧集、海外平台播出剧集,请自行考虑是否使用额外参数。
- :::
-</Route>
+<Route data={{"path":"/movie/weekly/:type?","categories":["social-media"],"example":"/douban/movie/weekly","parameters":{"type":"分类,可在榜单页 URL 中找到,默认为一周口碑电影榜"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"一周口碑榜","maintainers":["numm233","nczitzk"],"description":"| 一周口碑电影榜 | 华语口碑剧集榜 |\n | ------------------- | ------------------------- |\n | movie_weekly_best | tv_chinese_best_weekly |","location":"other/weekly-best.ts"}} />
-### 豆瓣读书论坛 {#dou-ban-dou-ban-du-shu-lun-tan}
+| 一周口碑电影榜 | 华语口碑剧集榜 |
+| ------------------- | ------------------------- |
+| movie\_weekly\_best | tv\_chinese\_best\_weekly |
-<Route author="nightmare-mio" example="/douban/36328704/discussion" path="/douban/:id/discussion" paramsDesc={['书本id;默认论坛文章使用"按回应时间排序",仅第一页文章']} />
+### 用户想看 {#dou-ban-yong-hu-xiang-kan}
-## 饭否 {#fan-fou}
+<Route data={{"path":"/people/:userid/wish/:routeParams?","categories":["social-media"],"example":"/douban/people/exherb/wish","parameters":{"userid":"用户id","routeParams":"额外参数;见下"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户想看","maintainers":["exherb"],"description":"对于豆瓣用户想看的内容,在 `routeParams` 参数中以 query string 格式设置如下选项可以控制输出的样式\n\n | 键 | 含义 | 接受的值 | 默认值 |\n | ---------- | ---------- | -------- | ------ |\n | pagesCount | 查询页面数 | | 1 |","location":"people/wish.ts"}} />
-:::warning
-部署时需要申请并配置饭否 Consumer Key、Consumer Secret、用户名和密码,具体见部署文档
-:::
+对于豆瓣用户想看的内容,在 `routeParams` 参数中以 query string 格式设置如下选项可以控制输出的样式
-### 用户动态 {#fan-fou-yong-hu-dong-tai}
+| 键 | 含义 | 接受的值 | 默认值 |
+| ---------- | ---------- | -------- | ------ |
+| pagesCount | 查询页面数 | | 1 |
-<Route author="junbaor" example="/fanfou/user_timeline/wangxing" path="/fanfou/user_timeline/:uid" paramsDesc={['用户的uid']} notOperational="1" configRequired="1" />
+### 正在上映的电影 {#dou-ban-zheng-zai-shang-ying-de-dian-ying}
-### 当前登录用户的时间线 {#fan-fou-dang-qian-deng-lu-yong-hu-de-shi-jian-xian}
+<Route data={{"path":["/movie/playing","/movie/playing/:score"],"categories":["social-media"],"example":"/douban/movie/playing","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"正在上映的电影","maintainers":["DIYgod"],"location":"other/playing.ts"}} />
-<Route author="junbaor" example="/fanfou/home_timeline" path="/fanfou/home_timeline" configRequired="1" />
+### 正在上映的电影 {#dou-ban-zheng-zai-shang-ying-de-dian-ying}
-### 用户收藏 {#fan-fou-yong-hu-shou-cang}
+<Route data={{"path":["/movie/playing","/movie/playing/:score"],"categories":["social-media"],"example":"/douban/movie/playing","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"正在上映的电影","maintainers":["DIYgod"],"location":"other/playing.ts"}} />
-<Route author="junbaor" example="/fanfou/favorites/wangxing" path="/fanfou/favorites/:uid" paramsDesc={['用户的uid']} notOperational="1" configRequired="1" />
+### 最新回应过的日记 {#dou-ban-zui-xin-hui-ying-guo-de-ri-ji}
-### 热门话题 {#fan-fou-re-men-hua-ti}
+<Route data={{"path":"/replied/:uid","categories":["social-media"],"example":"/douban/replied/xiaoyaxiaoya","parameters":{"uid":"用户id,可在用户日记页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新回应过的日记","maintainers":["nczitzk"],"location":"other/replied.ts"}} />
-<Route author="junbaor" example="/fanfou/trends" path="/fanfou/trends" notOperational="1" configRequired="1" />
+### 最新增加的音乐 {#dou-ban-zui-xin-zeng-jia-de-yin-yue}
-### 饭否搜索 {#fan-fou-fan-fou-sou-suo}
+<Route data={{"path":"/music/latest/:area?","categories":["social-media"],"example":"/douban/music/latest/chinese","parameters":{"area":"区域类型,默认全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新增加的音乐","maintainers":["fengkx","xyqfer"],"description":"| 华语 | 欧美 | 日韩 |\n | ------- | ------- | ----------- |\n | chinese | western | japankorean |","location":"other/latest-music.ts"}} />
-<Route author="junbaor" example="/fanfou/public_timeline/RSSHub" path="/fanfou/public_timeline/:keyword" paramsDesc={['关键字']} configRequired="1" />
+| 华语 | 欧美 | 日韩 |
+| ------- | ------- | ----------- |
+| chinese | western | japankorean |
## 方格子 {#fang-ge-zi}
### 出版專題 {#fang-ge-zi-chu-ban-zhuan-ti}
-<Route author="Maecenas" example="/vocus/publication/bass" path="/vocus/publication/:id" paramsDesc={['出版專題 id,可在出版專題主页的 URL 找到']} radar="1" />
+<Route data={{"path":"/publication/:id","categories":["social-media"],"example":"/vocus/publication/bass","parameters":{"id":"出版專題 id,可在出版專題主页的 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vocus.cc/:id/home","vocus.cc/:id/introduce"]},"name":"出版專題","maintainers":["Maecenas"],"location":"publication.ts"}} />
### 用户个人文章 {#fang-ge-zi-yong-hu-ge-ren-wen-zhang}
-<Route author="LogicJake" example="/vocus/user/tsetyan" path="/vocus/user/:id" paramsDesc={['用户 id,可在用户主页的 URL 找到']} radar="1" />
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/vocus/user/tsetyan","parameters":{"id":"用户 id,可在用户主页的 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户个人文章","maintainers":["LogicJake"],"location":"user.ts"}} />
## 即刻 {#ji-ke}
-### 用户动态 {#ji-ke-yong-hu-dong-tai}
-
-<Route author="DIYgod prnake" example="/jike/user/3EE02BC9-C5B3-4209-8750-4ED1EE0F67BB" path="/jike/user/:id" paramsDesc={['用户 id, 可在即刻分享出来的单条动态页点击用户头像进入个人主页,然后在个人主页的 URL 中找到,或者在单条动态页使用 RSSHub Radar 插件']} radar="1" />
-
### 圈子 {#ji-ke-quan-zi}
-<Route author="DIYgod prnake" example="/jike/topic/556688fae4b00c57d9dd46ee" path="/jike/topic/:id/:showUid?" paramsDesc={['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到', '是否在内容中显示用户信息,设置为 1 则开启']} radar="1" />
+<Route data={{"path":"/topic/:id/:showUid?","categories":["social-media"],"example":"/jike/topic/556688fae4b00c57d9dd46ee","parameters":{"id":"圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到","showUid":"是否在内容中显示用户信息,设置为 1 则开启"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["web.okjike.com/topic/:id"],"target":"/topic/:id"},"name":"圈子","maintainers":["DIYgod","prnake"],"location":"topic.ts"}} />
### 圈子 - 纯文字 {#ji-ke-quan-zi-chun-wen-zi}
-<Route author="HenryQW" example="/jike/topic/text/553870e8e4b0cafb0a1bef68" path="/jike/topic/text/:id" paramsDesc={['圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到']} radar="1" />
+<Route data={{"path":"/topic/text/:id","categories":["social-media"],"example":"/jike/topic/text/553870e8e4b0cafb0a1bef68","parameters":{"id":"圈子 id, 可在即刻 web 端圈子页或 APP 分享出来的圈子页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["web.okjike.com/topic/:id"]},"name":"圈子 - 纯文字","maintainers":["HenryQW"],"location":"topic-text.ts"}} />
+
+### 用户动态 {#ji-ke-yong-hu-dong-tai}
+
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/jike/user/3EE02BC9-C5B3-4209-8750-4ED1EE0F67BB","parameters":{"id":"用户 id, 可在即刻分享出来的单条动态页点击用户头像进入个人主页,然后在个人主页的 URL 中找到,或者在单条动态页使用 RSSHub Radar 插件"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["web.okjike.com/u/:uid"],"target":"/user/:uid"},"name":"用户动态","maintainers":["DIYgod","prnake"],"location":"user.ts"}} />
## 简书 {#jian-shu}
### 首页 {#jian-shu-shou-ye}
-<Route author="DIYgod HenryQW JimenezLi" example="/jianshu/home" path="/jianshu/home" radar="1" />
+<Route data={{"path":"/home","categories":["social-media"],"example":"/jianshu/home","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.jianshu.com/"]},"name":"首页","maintainers":["DIYgod","HenryQW","JimenezLi"],"url":"www.jianshu.com/","location":"home.ts"}} />
### 专题 {#jian-shu-zhuan-ti}
-<Route author="DIYgod HenryQW JimenezLi" example="/jianshu/collection/xYuZYD" path="/jianshu/collection/:id" paramsDesc={['专题 id, 可在专题页 URL 中找到']} radar="1" />
+<Route data={{"path":"/collection/:id","categories":["social-media"],"example":"/jianshu/collection/xYuZYD","parameters":{"id":"专题 id, 可在专题页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.jianshu.com/c/:id"]},"name":"专题","maintainers":["DIYgod","HenryQW","JimenezLi"],"location":"collection.ts"}} />
### 作者 {#jian-shu-zuo-zhe}
-<Route author="DIYgod HenryQW JimenezLi" example="/jianshu/user/yZq3ZV" path="/jianshu/user/:id" paramsDesc={['作者 id, 可在作者主页 URL 中找到']} radar="1" />
+<Route data={{"path":"/user/:id","categories":["social-media"],"example":"/jianshu/user/yZq3ZV","parameters":{"id":"作者 id, 可在作者主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.jianshu.com/u/:id"]},"name":"作者","maintainers":["DIYgod","HenryQW","JimenezLi"],"location":"user.ts"}} />
## 酷安 {#ku-an}
-### 图文 {#ku-an-tu-wen}
-
-<Route author="xizeyoupan" example="/coolapk/tuwen" path="/coolapk/tuwen/:type?" paramsDesc={['默认为hot']}>
- | 参数名称 | 编辑精选 | 最新 |
- | -------- | -------- | ------ |
- | type | hot | latest |
-</Route>
-
-### 头条 {#ku-an-tou-tiao}
+### 话题 {#ku-an-hua-ti}
-<Route author="xizeyoupan" example="/coolapk/toutiao" path="/coolapk/toutiao/:type?" paramsDesc={['默认为history']}>
- | 参数名称 | 历史头条 | 最新 |
- | -------- | -------- | ------ |
- | type | history | latest |
-</Route>
+<Route data={{"path":"/huati/:tag","categories":["social-media"],"example":"/coolapk/huati/iPhone","parameters":{"tag":"话题名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"话题","maintainers":["xizeyoupan"],"location":"huati.ts"}} />
### 看看号 {#ku-an-kan-kan-hao}
-<Route author="xizeyoupan" example="/coolapk/dyh/1524" path="/coolapk/dyh/:dyhId" paramsDesc={['看看号ID']}>
- :::tip
- 仅限于采集**站内订阅**的看看号的内容。看看号 ID 可在看看号界面右上分享 - 复制链接得到。
- :::
-</Route>
+<Route data={{"path":"/dyh/:dyhId","categories":["social-media"],"example":"/coolapk/dyh/1524","parameters":{"dyhId":"看看号ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"看看号","maintainers":["xizeyoupan"],"description":":::tip\n 仅限于采集**站内订阅**的看看号的内容。看看号 ID 可在看看号界面右上分享 - 复制链接得到。\n :::","location":"dyh.ts"}} />
-### 话题 {#ku-an-hua-ti}
-
-<Route author="xizeyoupan" example="/coolapk/huati/iPhone" path="/coolapk/huati/:tag" paramsDesc={['话题名称']} />
-
-### 用户 {#ku-an-yong-hu}
-
-<Route author="xizeyoupan" example="/coolapk/user/3177668/dynamic" path="/coolapk/user/:uid/dynamic" paramsDesc={['在个人界面右上分享-复制链接获取']} />
+:::tip
+仅限于采集**站内订阅**的看看号的内容。看看号 ID 可在看看号界面右上分享 - 复制链接得到。
+:::
### 热榜 {#ku-an-re-bang}
-<Route author="xizeyoupan" example="/coolapk/hot" path="/coolapk/hot/:type?/:period?" paramsDesc={['默认为`jrrm`','默认为`daily`']}>
- | 参数名称 | 今日热门 | 点赞榜 | 评论榜 | 收藏榜 | 酷图榜 |
- | -------- | -------- | ------ | ------ | ------ | ------ |
- | type | jrrm | dzb | plb | scb | ktb |
+<Route data={{"path":"/hot/:type?/:period?","categories":["social-media"],"example":"/coolapk/hot","parameters":{"type":"默认为`jrrm`","period":"默认为`daily`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"热榜","maintainers":["xizeyoupan"],"description":"| 参数名称 | 今日热门 | 点赞榜 | 评论榜 | 收藏榜 | 酷图榜 |\n | -------- | -------- | ------ | ------ | ------ | ------ |\n | type | jrrm | dzb | plb | scb | ktb |\n\n | 参数名称 | 日榜 | 周榜 |\n | -------- | ----- | ------ |\n | period | daily | weekly |\n\n :::tip\n 今日热门没有周榜,酷图榜日榜的参数会变成周榜,周榜的参数会变成月榜。\n :::","location":"hot.ts"}} />
- | 参数名称 | 日榜 | 周榜 |
- | -------- | ----- | ------ |
- | period | daily | weekly |
+| 参数名称 | 今日热门 | 点赞榜 | 评论榜 | 收藏榜 | 酷图榜 |
+| -------- | -------- | ------ | ------ | ------ | ------ |
+| type | jrrm | dzb | plb | scb | ktb |
- :::tip
- 今日热门没有周榜,酷图榜日榜的参数会变成周榜,周榜的参数会变成月榜。
- :::
-</Route>
+| 参数名称 | 日榜 | 周榜 |
+| -------- | ----- | ------ |
+| period | daily | weekly |
-## 美拍 {#mei-pai}
-
-### 用户动态 {#mei-pai-yong-hu-dong-tai}
-
-<Route author="ihewro" example="/meipai/user/56537299" path="/meipai/user/:id" paramsDesc={['用户 id, 可在 分享出去获得的用户主页 URL 中找到']} />
-
-## 全民 K 歌 {#quan-min-k-ge}
-
-### 用户作品列表 {#quan-min-k-ge-yong-hu-zuo-pin-lie-biao}
-
-<Route author="zhangxiang012" example="/qq/kg/639a9a86272c308e33" path="/qq/kg/:userId" paramsDesc={['用户 ID, 可在对应页面的 URL 中找到']} radar="1" rssaid="1" supportPodcast="1" />
+:::tip
+今日热门没有周榜,酷图榜日榜的参数会变成周榜,周榜的参数会变成月榜。
+:::
-### 用户作品评论动态 {#quan-min-k-ge-yong-hu-zuo-pin-ping-lun-dong-tai}
+### 头条 {#ku-an-tou-tiao}
-<Route author="zhangxiang012" example="/qq/kg/reply/OhXHMdO1VxLWQOOm" path="/qq/kg/reply/:playId" paramsDesc={['音频页 ID, 可在对应页面的 URL 中找到']} radar="1" rssaid="1" />
+<Route data={{"path":"/toutiao/:type?","categories":["social-media"],"example":"/coolapk/toutiao","parameters":{"type":"默认为history"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"头条","maintainers":["xizeyoupan"],"description":"| 参数名称 | 历史头条 | 最新 |\n | -------- | -------- | ------ |\n | type | history | latest |","location":"toutiao.ts"}} />
-## 数字尾巴 {#shu-zi-wei-ba}
+| 参数名称 | 历史头条 | 最新 |
+| -------- | -------- | ------ |
+| type | history | latest |
-### 首页 {#shu-zi-wei-ba-shou-ye}
+### 图文 {#ku-an-tu-wen}
-<Route author="Erriy" example="/dgtle" path="/dgtle" />
+<Route data={{"path":["/tuwen/:type?","/tuwen-xinxian"],"categories":["social-media"],"example":"/coolapk/tuwen","parameters":{"type":"默认为hot"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"图文","maintainers":["xizeyoupan"],"description":"| 参数名称 | 编辑精选 | 最新 |\n | -------- | -------- | ------ |\n | type | hot | latest |","location":"tuwen.ts"}} />
-### 闲置(分类) {#shu-zi-wei-ba-xian-zhi-fen-lei}
+| 参数名称 | 编辑精选 | 最新 |
+| -------- | -------- | ------ |
+| type | hot | latest |
-<Route author="xyqfer hoilc" example="/dgtle/trade/111" path="/dgtle/trade/:typeId?" paramsDesc={['分类 id,默认为全部']}>
- | 全部 | 电脑 | 手机 | 平板 | 相机 | 影音 | 外设 | 生活 | 公告 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 0 | 111 | 109 | 110 | 113 | 114 | 115 | 112 | 116 |
-</Route>
+### 图文 {#ku-an-tu-wen}
-### 闲置(关键词) {#shu-zi-wei-ba-xian-zhi-guan-jian-ci}
+<Route data={{"path":["/tuwen/:type?","/tuwen-xinxian"],"categories":["social-media"],"example":"/coolapk/tuwen","parameters":{"type":"默认为hot"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"图文","maintainers":["xizeyoupan"],"description":"| 参数名称 | 编辑精选 | 最新 |\n | -------- | -------- | ------ |\n | type | hot | latest |","location":"tuwen.ts"}} />
-<Route author="gaoliang hoilc" example="/dgtle/trade/search/ipad" path="/dgtle/trade/search/:keyword" paramsDesc={['搜索关键词']} />
+| 参数名称 | 编辑精选 | 最新 |
+| -------- | -------- | ------ |
+| type | hot | latest |
-### 鲸图(分类) {#shu-zi-wei-ba-jing-tu-fen-lei}
+### 用户 {#ku-an-yong-hu}
-<Route author="Erriy" example="/dgtle/whale/category/0" path="/dgtle/whale/category/:category" paramsDesc={['分类 id']}>
- | 精选 | 人物 | 静物 | 二次元 | 黑白 | 自然 | 美食 | 电影与游戏 | 科技与艺术 | 城市与建筑 | 萌物 | 美女 |
- | ---- | ---- | ---- | ------ | ---- | ---- | ---- | ---------- | ---------- | ---------- | ---- | ---- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
-</Route>
+<Route data={{"path":"/user/:uid/dynamic","categories":["social-media"],"example":"/coolapk/user/3177668/dynamic","parameters":{"uid":"在个人界面右上分享-复制链接获取"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户","maintainers":["xizeyoupan"],"location":"user-dynamic.ts"}} />
-### 鲸图(排行榜) {#shu-zi-wei-ba-jing-tu-pai-hang-bang}
+## 腾讯新闻较真查证平台 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai}
-<Route author="Erriy" example="/dgtle/whale/rank/download/day" path="/dgtle/whale/rank/:type/:rule" paramsDesc={['排行榜类型', '排行榜周期']}>
- type
+### 用户作品列表 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-yong-hu-zuo-pin-lie-biao}
- | 下载排行榜 | 点赞排行榜 |
- | ---------- | ---------- |
- | download | like |
+<Route data={{"path":"/kg/:userId","categories":["social-media"],"example":"/qq/kg/639a9a86272c308e33","parameters":{"userId":"用户 ID, 可在对应页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"用户作品列表","maintainers":["zhangxiang012"],"location":"kg/user.ts"}} />
- rule
+### 用户作品评论动态 {#teng-xun-xin-wen-jiao-zhen-cha-zheng-ping-tai-yong-hu-zuo-pin-ping-lun-dong-tai}
- | 日排行 | 周排行 | 月排行 | 总排行 |
- | ------ | ------ | ------ | ------ |
- | day | week | month | amount |
-</Route>
+<Route data={{"path":"/kg/reply/:playId","categories":["social-media"],"example":"/qq/kg/reply/OhXHMdO1VxLWQOOm","parameters":{"playId":"音频页 ID, 可在对应页面的 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户作品评论动态","maintainers":["zhangxiang012"],"location":"kg/reply.ts"}} />
-## 微博 {#wei-bo}
+## 微博绿洲 {#wei-bo-lv-zhou}
:::warning
-微博会针对请求的来源地区返回不同的结果。\
-一个已知的例子为:部分视频因未知原因仅限中国大陆境内访问 (CDN 域名为 `locallimit.us.sinaimg.cn` 而非 `f.video.weibocdn.com`)。若一条微博含有这种视频且 RSSHub 实例部署在境外,抓取到的微博可能不含视频。将 RSSHub 部署在境内有助于抓取这种视频,但阅读器也必须处于境内网络环境以加载视频。
+微博会针对请求的来源地区返回不同的结果。一个已知的例子为:部分视频因未知原因仅限中国大陆境内访问 (CDN 域名为 `locallimit.us.sinaimg.cn` 而非 `f.video.weibocdn.com`)。若一条微博含有这种视频且 RSSHub 实例部署在境外,抓取到的微博可能不含视频。将 RSSHub 部署在境内有助于抓取这种视频,但阅读器也必须处于境内网络环境以加载视频。
:::
对于微博内容,在 `routeParams` 参数中以 query string 格式指定选项,可以控制输出的样式
@@ -1499,34 +1181,21 @@ YouTube provides official RSS feeds for channels, for instance [https://www.yout
<img loading="lazy" src="/img/readable-weibo.png" alt="微博小秘书的可读微博 RSS" />
-### 博主 {#wei-bo-bo-zhu}
-
-<Route author="DIYgod iplusx Rongronggg9" example="/weibo/user/1195230310" path="/weibo/user/:uid/:routeParams?" paramsDesc={['用户 id, 博主主页打开控制台执行 `$CONFIG.oid` 获取', '额外参数;请参阅上面的说明和表格;特别地,当 `routeParams=1` 时开启微博视频显示']} radar="1" anticrawler="1">
- :::warning
- 部分博主仅登录可见,未提供 Cookie 的情况下不支持订阅,可以通过打开 `https://m.weibo.cn/u/:uid` 验证。如需要订阅该部分博主,可配置 Cookie 后订阅。
-
- 未提供 Cookie 的情况下偶尔会触发反爬限制,提供 Cookie 可缓解该情况。
+### 博主 {#wei-bo-lv-zhou-bo-zhu}
- 微博用户 Cookie 的配置可参照部署文档
- :::
-</Route>
+<Route data={{"path":"/user/:uid/:routeParams?","categories":["social-media"],"example":"/weibo/user/1195230310","parameters":{"uid":"用户 id, 博主主页打开控制台执行 `$CONFIG.oid` 获取","routeParams":"额外参数;请参阅上面的说明和表格;特别地,当 `routeParams=1` 时开启微博视频显示"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.weibo.cn/u/:uid","m.weibo.cn/profile/:uid"],"target":"/user/:uid"},"name":"博主","maintainers":["DIYgod","iplusx","Rongronggg9"],"description":":::warning\n 部分博主仅登录可见,未提供 Cookie 的情况下不支持订阅,可以通过打开 `https://m.weibo.cn/u/:uid` 验证。如需要订阅该部分博主,可配置 Cookie 后订阅。\n\n 未提供 Cookie 的情况下偶尔会触发反爬限制,提供 Cookie 可缓解该情况。\n\n 微博用户 Cookie 的配置可参照部署文档\n :::","location":"user.ts"}} />
-### 关键词 {#wei-bo-guan-jian-ci}
-
-<Route author="DIYgod Rongronggg9" example="/weibo/keyword/DIYgod" path="/weibo/keyword/:keyword/:routeParams?" paramsDesc={['你想订阅的微博关键词', '额外参数;请参阅上面的说明和表格']} radar="1" />
-
-### 热搜榜 {#wei-bo-re-sou-bang}
+:::warning
+部分博主仅登录可见,未提供 Cookie 的情况下不支持订阅,可以通过打开 `https://m.weibo.cn/u/:uid` 验证。如需要订阅该部分博主,可配置 Cookie 后订阅。
-<Route author="xyqfer shinemoon" example="/weibo/search/hot" path="/weibo/search/hot/:fulltext?" radar="1" />
+未提供 Cookie 的情况下偶尔会触发反爬限制,提供 Cookie 可缓解该情况。
-- 使用`/weibo/search/hot`可以获取热搜条目列表;
-- 使用`/weibo/search/hot/fulltext`可以进一步获取热搜条目下的摘要信息(不含图片视频);
-- 使用`/weibo/search/hot/fulltext?pic=true`可以获取图片缩略(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)
-- 使用`/weibo/search/hot/fulltext?pic=true&fullpic=true`可以获取 Original 图片(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)
+微博用户 Cookie 的配置可参照部署文档
+:::
-### 超话 {#wei-bo-chao-hua}
+### 超话 {#wei-bo-lv-zhou-chao-hua}
-<Route author="zengxs Rongronggg9" example="/weibo/super_index/1008084989d223732bf6f02f75ea30efad58a9/sort_time" path="/weibo/super_index/:id/:type?/:routeParams?" paramsDesc={['超话ID', '类型:见下表', '额外参数;请参阅上面的说明和表格']} radar="1" />
+<Route data={{"path":"/super_index/:id/:type?/:routeParams?","categories":["social-media"],"example":"/weibo/super_index/1008084989d223732bf6f02f75ea30efad58a9/sort_time","parameters":{"id":"超话ID","type":"类型:见下表","routeParams":"额外参数;请参阅上面的说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["weibo.com/p/:id/super_index"],"target":"/super_index/:id"},"name":"超话","maintainers":["zengxs","Rongronggg9"],"description":"| type | 备注 |\n| ---------- | ---------------- |\n| soul | 精华 |\n| video | 视频(暂不支持) |\n| album | 相册(暂不支持) |\n| hot_sort | 热门 |\n| sort_time | 最新帖子 |\n| feed | 最新评论 |","location":"super-index.ts"}} />
| type | 备注 |
| ---------- | ---------------- |
@@ -1537,63 +1206,62 @@ YouTube provides official RSS feeds for channels, for instance [https://www.yout
| sort\_time | 最新帖子 |
| feed | 最新评论 |
-### 个人时间线 {#wei-bo-ge-ren-shi-jian-xian}
+### 个人时间线 {#wei-bo-lv-zhou-ge-ren-shi-jian-xian}
-<Route author="zytomorrow DIYgod Rongronggg9" example="/weibo/timeline/3306934123" path="/weibo/timeline/:uid/:feature?/:routeParams?" paramsDesc={['用户的uid', '过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。', '额外参数;请参阅上面的说明和表格']} configRequired="1">
- :::warning
- 需要对应用户打开页面进行授权生成 token 才能生成内容
+<Route data={{"path":"/timeline/:uid/:feature?/:routeParams?","categories":["social-media"],"example":"/weibo/timeline/3306934123","parameters":{"uid":"用户的uid","feature":"过滤类型ID,0:全部、1:原创、2:图片、3:视频、4:音乐,默认为0。","routeParams":"额外参数;请参阅上面的说明和表格"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"个人时间线","maintainers":["zytomorrow","DIYgod","Rongronggg9"],"description":":::warning\n 需要对应用户打开页面进行授权生成 token 才能生成内容\n\n 自部署需要申请并配置微博 key,具体见部署文档\n :::","location":"timeline.ts"}} />
- 自部署需要申请并配置微博 key,具体见部署文档
- :::
-</Route>
+:::warning
+需要对应用户打开页面进行授权生成 token 才能生成内容
-### 最新关注时间线 {#wei-bo-zui-xin-guan-zhu-shi-jian-xian}
+自部署需要申请并配置微博 key,具体见部署文档
+:::
-<Route author="CaoMeiYouRen" example="/weibo/friends" path="/weibo/friends/:routeParams?" paramsDesc={['额外参数;请参阅上面的说明和表格']} configRequired="1">
- :::warning
- 此方案必须使用用户`Cookie`进行抓取
+### 关键词 {#wei-bo-lv-zhou-guan-jian-ci}
- 因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知
+<Route data={{"path":"/keyword/:keyword/:routeParams?","categories":["social-media"],"example":"/weibo/keyword/DIYgod","parameters":{"keyword":"你想订阅的微博关键词","routeParams":"额外参数;请参阅上面的说明和表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"关键词","maintainers":["DIYgod","Rongronggg9"],"location":"keyword.ts"}} />
- 微博用户 Cookie 的配置可参照部署文档
- :::
-</Route>
+### 热搜榜 {#wei-bo-lv-zhou-re-sou-bang}
-### 自定义分组 {#wei-bo-zi-ding-yi-fen-zu}
+<Route data={{"path":"/search/hot/:fulltext?","categories":["social-media"],"example":"/weibo/search/hot","parameters":{"fulltext":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["s.weibo.com/top/summary"]},"name":"热搜榜","maintainers":["xyqfer","shinemoon"],"url":"s.weibo.com/top/summary","description":"- 使用`/weibo/search/hot`可以获取热搜条目列表;\n- 使用`/weibo/search/hot/fulltext`可以进一步获取热搜条目下的摘要信息(不含图片视频);\n- 使用`/weibo/search/hot/fulltext?pic=true`可以获取图片缩略(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)\n- 使用`/weibo/search/hot/fulltext?pic=true&fullpic=true`可以获取 Original 图片(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)","location":"search/hot.ts"}} />
-<Route author="monologconnor Rongronggg9" example="/weibo/group/4541216424989965" path="/weibo/group/:gid/:gname?/:routeParams?" paramsDesc={['分组id, 在网页版分组地址栏末尾`?gid=`处获取', '分组显示名称; 默认为: `微博分组`', '额外参数;请参阅上面的说明和表格']} configRequired="1">
- :::warning
- 由于微博官方未提供自定义分组相关 api, 此方案必须使用用户`Cookie`进行抓取
+- 使用`/weibo/search/hot`可以获取热搜条目列表;
+- 使用`/weibo/search/hot/fulltext`可以进一步获取热搜条目下的摘要信息(不含图片视频);
+- 使用`/weibo/search/hot/fulltext?pic=true`可以获取图片缩略(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)
+- 使用`/weibo/search/hot/fulltext?pic=true&fullpic=true`可以获取 Original 图片(但需要配合额外的手段,例如浏览器上的 Header Editor 等来修改 referer 参数为`https://weibo.com`,以规避微博的外链限制,否则图片无法显示。)
- 因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知
+### 用户 {#wei-bo-lv-zhou-yong-hu}
- 微博用户 Cookie 的配置可参照部署文档
- :::
-</Route>
+<Route data={{"path":"/oasis/user/:userid","categories":["social-media"],"example":"/weibo/oasis/user/1990895721","parameters":{"userid":"用户 id, 可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["m.weibo.cn/u/:uid","m.weibo.cn/profile/:uid"],"target":"/user/:uid"},"name":"用户","maintainers":["kt286"],"location":"oasis/user.ts"}} />
-## 微博绿洲 {#wei-bo-lv-zhou}
+### 自定义分组 {#wei-bo-lv-zhou-zi-ding-yi-fen-zu}
-### 用户 {#wei-bo-lv-zhou-yong-hu}
+<Route data={{"path":"/group/:gid/:gname?/:routeParams?","categories":["social-media"],"example":"/weibo/group/4541216424989965","parameters":{"gid":"分组id, 在网页版分组地址栏末尾`?gid=`处获取","gname":"分组显示名称; 默认为: `微博分组`","routeParams":"额外参数;请参阅上面的说明和表格"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"自定义分组","maintainers":["monologconnor","Rongronggg9"],"description":":::warning\n 由于微博官方未提供自定义分组相关 api, 此方案必须使用用户`Cookie`进行抓取\n\n 因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知\n\n 微博用户 Cookie 的配置可参照部署文档\n :::","location":"group.ts"}} />
-<Route author="kt286" example="/weibo/oasis/user/1990895721" path="/weibo/oasis/user/:userid" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} />
+:::warning
+由于微博官方未提供自定义分组相关 api, 此方案必须使用用户`Cookie`进行抓取
-## 小红书 {#xiao-hong-shu}
+因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知
-### 用户笔记 {#xiao-hong-shu-yong-hu-bi-ji}
+微博用户 Cookie 的配置可参照部署文档
+:::
-<Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/notes" path="/xiaohongshu/user/:user_id/notes/:fulltext?" paramsDesc={['用户 ID', '若为`fulltext`将抓取笔记全文,若为空则只抓取笔记标题']} puppeteer="1" radar="1" />
+### 最新关注时间线 {#wei-bo-lv-zhou-zui-xin-guan-zhu-shi-jian-xian}
-:::tip
-笔记全文不支持显示视频
-:::
+<Route data={{"path":"/friends/:routeParams?","categories":["social-media"],"example":"/weibo/friends","parameters":{"routeParams":"额外参数;请参阅上面的说明和表格"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["weibo.com/"],"target":"/friends"},"name":"最新关注时间线","maintainers":["CaoMeiYouRen"],"url":"weibo.com/","description":":::warning\n 此方案必须使用用户`Cookie`进行抓取\n\n 因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知\n\n 微博用户 Cookie 的配置可参照部署文档\n :::","location":"friends.ts"}} />
+
+:::warning
+此方案必须使用用户`Cookie`进行抓取
-### 用户收藏 {#xiao-hong-shu-yong-hu-shou-cang}
+因微博 cookies 的过期与更新方案未经验证,部署一次 Cookie 的有效时长未知
-<Route author="lotosbin" example="/xiaohongshu/user/593032945e87e77791e03696/collect" path="/xiaohongshu/user/:user_id/collect" paramsDesc={['用户 ID']} puppeteer="1" radar="1" />
+微博用户 Cookie 的配置可参照部署文档
+:::
+
+## 小红书 {#xiao-hong-shu}
### 专辑 {#xiao-hong-shu-zhuan-ji}
-<Route author="lotosbin" example="/xiaohongshu/board/5db6f79200000000020032df" path="/xiaohongshu/board/:board_id" paramsDesc={['专辑 ID']} puppeteer="1" radar="1" />
+<Route data={{"path":"/board/:board_id","categories":["social-media"],"example":"/xiaohongshu/board/5db6f79200000000020032df","parameters":{"board_id":"专辑 ID"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xiaohongshu.com/board/:board_id"]},"name":"专辑","maintainers":["lotosbin"],"location":"board.ts"}} />
## 新榜 {#xin-bang}
@@ -1602,133 +1270,133 @@ YouTube provides official RSS feeds for channels, for instance [https://www.yout
请勿过高频抓取,新榜疑似对每天调用 token 总次数进行了限制,超限会报错
:::
-### 微信公众号 {#xin-bang-wei-xin-gong-zhong-hao}
-
-<Route author="lessmoe" example="/newrank/wechat/chijiread" path="/newrank/wechat/:wxid" paramsDesc={['微信号,若微信号与新榜信息不一致,以新榜为准']} anticrawler="1" configRequired="1" />
-
### 抖音短视频 {#xin-bang-dou-yin-duan-shi-pin}
-<Route author="lessmoe" example="/newrank/douyin/110266463747" path="/newrank/douyin/:dyid" paramsDesc={['抖音ID,可在新榜账号详情 URL 中找到']} anticrawler="1" configRequired="1" />
+<Route data={{"path":"/douyin/:dyid","categories":["social-media"],"example":"/newrank/douyin/110266463747","parameters":{"dyid":"抖音ID,可在新榜账号详情 URL 中找到"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"抖音短视频","maintainers":["lessmoe"],"description":":::warning\n免费版账户抖音每天查询次数 20 次,如需增加次数可购买新榜会员或等待未来多账户支持\n:::","location":"douyin.ts"}} />
:::warning
免费版账户抖音每天查询次数 20 次,如需增加次数可购买新榜会员或等待未来多账户支持
:::
+### 微信公众号 {#xin-bang-wei-xin-gong-zhong-hao}
+
+<Route data={{"path":"/wechat/:wxid","categories":["social-media"],"example":"/newrank/wechat/chijiread","parameters":{"wxid":"微信号,若微信号与新榜信息不一致,以新榜为准"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"微信公众号","maintainers":["lessmoe"],"location":"wechat.ts"}} />
+
## 知乎 {#zhi-hu}
+### Unknown {#zhi-hu-unknown}
+
+<Route data={{"path":"/xhu/topic/:topicId","categories":["social-media"],"example":"/zhihu/xhu/topic/19566035","parameters":{"topicId":"话题ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/topic/:topicId/:type"]},"name":"Unknown","maintainers":["JimenezLi"],"location":"xhu/topic.ts"}} />
+
+### 话题 {#zhi-hu-hua-ti}
+
+<Route data={{"path":"/topic/:topicId/:isTop?","categories":["social-media"],"example":"/zhihu/topic/19828946","parameters":{"topicId":"话题 id","isTop":"仅精华,默认为否,其他值为是"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/topic/:topicId/:type"],"target":"/topic/:topicId"},"name":"话题","maintainers":["xyqfer"],"location":"topic.ts"}} />
+
### 收藏夹 {#zhi-hu-shou-cang-jia}
-<Route author="huruji Colin-XKL Fatpandac" example="/zhihu/collection/26444956" path="/zhihu/collection/:id/:getAll?" paramsDesc={['收藏夹 id,可在收藏夹页面 URL 中找到', '获取全部收藏内容,任意值为打开']} anticrawler="1" radar="1" />
+<Route data={{"path":"/collection/:id/:getAll?","categories":["social-media"],"example":"/zhihu/collection/26444956","parameters":{"id":"收藏夹 id,可在收藏夹页面 URL 中找到","getAll":"获取全部收藏内容,任意值为打开"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/collection/:id"],"target":"/collection/:id"},"name":"收藏夹","maintainers":["huruji","Colin-XKL","Fatpandac"],"location":"collection.ts"}} />
+
+### 问题 {#zhi-hu-wen-ti}
+
+<Route data={{"path":"/question/:questionId/:sortBy?","categories":["social-media"],"example":"/zhihu/question/59895982","parameters":{"questionId":"问题 id","sortBy":"排序方式:`default`, `created`, `updated`。默认为 `default`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/question/:questionId"],"target":"/question/:questionId"},"name":"问题","maintainers":[],"location":"question.ts"}} />
### 用户动态 {#zhi-hu-yong-hu-dong-tai}
-<Route author="DIYgod" example="/zhihu/people/activities/diygod" path="/zhihu/people/activities/:id" paramsDesc={['作者 id,可在用户主页 URL 中找到']} anticrawler="1" radar="1" />
+<Route data={{"path":"/people/activities/:id","categories":["social-media"],"example":"/zhihu/people/activities/diygod","parameters":{"id":"作者 id,可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/people/:id"]},"name":"用户动态","maintainers":["DIYgod"],"location":"activities.ts"}} />
+
+### 用户关注时间线 {#zhi-hu-yong-hu-guan-zhu-shi-jian-xian}
+
+<Route data={{"path":"/timeline","categories":["social-media"],"example":"/zhihu/timeline","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"用户关注时间线","maintainers":["SeanChao"],"description":":::warning\n 用户关注动态需要登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。\n :::","location":"timeline.ts"}} />
+
+:::warning
+用户关注动态需要登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
+:::
### 用户回答 {#zhi-hu-yong-hu-hui-da}
-<Route author="DIYgod prnake" example="/zhihu/people/answers/diygod" path="/zhihu/people/answers/:id" paramsDesc={['作者 id,可在用户主页 URL 中找到']} anticrawler="1" radar="1" />
+<Route data={{"path":"/people/answers/:id","categories":["social-media"],"example":"/zhihu/people/answers/diygod","parameters":{"id":"作者 id,可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/people/:id/answers"]},"name":"用户回答","maintainers":["DIYgod","prnake"],"location":"answers.ts"}} />
### 用户文章 {#zhi-hu-yong-hu-wen-zhang}
-<Route author="whtsky Colin-XKL" example="/zhihu/posts/people/frederchen" path="/zhihu/posts/:usertype/:id" paramsDesc={['作者 id,可在用户主页 URL 中找到', '用户类型usertype,参考用户主页的URL。目前有两种,见下表']} anticrawler="1" radar="1" />
+<Route data={{"path":"/posts/:usertype/:id","categories":["social-media"],"example":"/zhihu/posts/people/frederchen","parameters":{"usertype":"作者 id,可在用户主页 URL 中找到","id":"用户类型usertype,参考用户主页的URL。目前有两种,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/:usertype/:id/posts"]},"name":"用户文章","maintainers":["whtsky","Colin-XKL"],"description":"| 普通用户 | 机构用户 |\n| -------- | -------- |\n| people | org |","location":"posts.ts"}} />
| 普通用户 | 机构用户 |
| -------- | -------- |
| people | org |
-### 专栏 {#zhi-hu-zhuan-lan}
-
-<Route author="DIYgod" example="/zhihu/zhuanlan/googledevelopers" path="/zhihu/zhuanlan/:id" paramsDesc={['专栏 id,可在专栏主页 URL 中找到']} anticrawler="1" radar="1" />
+### 用户想法 {#zhi-hu-yong-hu-xiang-fa}
-### 知乎日报 {#zhi-hu-zhi-hu-ri-bao}
+<Route data={{"path":"/people/pins/:id","categories":["social-media"],"example":"/zhihu/people/pins/kan-dan-45","parameters":{"id":"作者 id,可在用户主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/people/:id/pins"]},"name":"用户想法","maintainers":["xyqfer"],"location":"pin/people.ts"}} />
-<Route author="DHPO" example="/zhihu/daily" path="/zhihu/daily" anticrawler="1" radar="1" />
+### 知乎分类热榜 {#zhi-hu-zhi-hu-fen-lei-re-bang}
-### 知乎日报 - 合集 {#zhi-hu-zhi-hu-ri-bao-he-ji}
+<Route data={{"path":"/hot/:category?","categories":["social-media"],"example":"/zhihu/hot","parameters":{"category":"分类,见下表,默认为全站"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"知乎分类热榜","maintainers":["nczitzk"],"description":"| 全站 | 国际 | 科学 | 汽车 | 视频 | 时尚 | 时事 | 数码 | 体育 | 校园 | 影视 |\n | ----- | ----- | ------- | ---- | ------ | ------- | ----- | ------- | ----- | ------ | ---- |\n | total | focus | science | car | zvideo | fashion | depth | digital | sport | school | film |","location":"hot.ts"}} />
-<Route author="ccbikai" example="/zhihu/daily/section/2" path="/zhihu/daily/section/:sectionId" paramsDesc={['合集 id,可在 https://news-at.zhihu.com/api/7/sections 找到']} anticrawler="1" />
+| 全站 | 国际 | 科学 | 汽车 | 视频 | 时尚 | 时事 | 数码 | 体育 | 校园 | 影视 |
+| ----- | ----- | ------- | ---- | ------ | ------- | ----- | ------- | ----- | ------ | ---- |
+| total | focus | science | car | zvideo | fashion | depth | digital | sport | school | film |
### 知乎热榜 {#zhi-hu-zhi-hu-re-bang}
-<Route author="DIYgod" example="/zhihu/hotlist" path="/zhihu/hotlist" radar="1" />
+<Route data={{"path":"/hotlist","categories":["social-media"],"example":"/zhihu/hotlist","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/hot"]},"name":"知乎热榜","maintainers":["DIYgod"],"url":"www.zhihu.com/hot","location":"hotlist.ts"}} />
-### 知乎分类热榜 {#zhi-hu-zhi-hu-fen-lei-re-bang}
+### 知乎日报 {#zhi-hu-zhi-hu-ri-bao}
-<Route author="nczitzk" example="/zhihu/hot" path="/zhihu/hot/:category?" paramsDesc={['分类,见下表,默认为全站']} anticrawler="1" radar="1">
- | 全站 | 国际 | 科学 | 汽车 | 视频 | 时尚 | 时事 | 数码 | 体育 | 校园 | 影视 |
- | ----- | ----- | ------- | ---- | ------ | ------- | ----- | ------- | ----- | ------ | ---- |
- | total | focus | science | car | zvideo | fashion | depth | digital | sport | school | film |
-</Route>
+<Route data={{"path":"/daily","categories":["social-media"],"example":"/zhihu/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["daily.zhihu.com/*"]},"name":"知乎日报","maintainers":["DHPO"],"url":"daily.zhihu.com/*","location":"daily.ts"}} />
-### 知乎想法热榜 {#zhi-hu-zhi-hu-xiang-fa-re-bang}
+### 知乎日报 - 合集 {#zhi-hu-zhi-hu-ri-bao-he-ji}
-<Route author="xyqfer" example="/zhihu/pin/hotlist" path="/zhihu/pin/hotlist" anticrawler="1" radar="1" />
+<Route data={{"path":"/daily/section/:sectionId","categories":["social-media"],"example":"/zhihu/daily/section/2","parameters":{"sectionId":"合集 id,可在 https://news-at.zhihu.com/api/7/sections 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["daily.zhihu.com/*"],"target":"/daily"},"name":"知乎日报 - 合集","maintainers":["ccbikai"],"url":"daily.zhihu.com/*","location":"daily-section.ts"}} />
-### 问题 {#zhi-hu-wen-ti}
+### 知乎书店 - 新书 {#zhi-hu-zhi-hu-shu-dian-xin-shu}
-<Route author="xyqfer hacklu" example="/zhihu/question/59895982" path="/zhihu/question/:questionId/:sortBy?" paramsDesc={['问题 id', '排序方式:`default`, `created`, `updated`。默认为 `default`']} anticrawler="1" radar="1" />
+<Route data={{"path":"/bookstore/newest","categories":["social-media"],"example":"/zhihu/bookstore/newest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"知乎书店 - 新书","maintainers":["xyqfer"],"location":"bookstore/newest.ts"}} />
-### 话题 {#zhi-hu-hua-ti}
+### 知乎书店 - 知乎周刊 {#zhi-hu-zhi-hu-shu-dian-zhi-hu-zhou-kan}
-<Route author="xyqfer" example="/zhihu/topic/19828946" path="/zhihu/topic/:topicId/:isTop?" paramsDesc={['话题 id', '仅精华,默认为否,其他值为是']} anticrawler="1" radar="1" />
+<Route data={{"path":"/weekly","categories":["social-media"],"example":"/zhihu/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/pub/weekly"]},"name":"知乎书店 - 知乎周刊","maintainers":["LogicJake"],"url":"www.zhihu.com/pub/weekly","location":"weekly.ts"}} />
-### 用户想法 {#zhi-hu-yong-hu-xiang-fa}
+### 知乎想法 - 24 小时新闻汇总 {#zhi-hu-zhi-hu-xiang-fa-24-xiao-shi-xin-wen-hui-zong}
-<Route author="xyqfer" example="/zhihu/people/pins/kan-dan-45" path="/zhihu/people/pins/:id" paramsDesc={['作者 id,可在用户主页 URL 中找到']} anticrawler="1" radar="1" />
+<Route data={{"path":"/pin/daily","categories":["social-media"],"example":"/zhihu/pin/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["daily.zhihu.com/*"],"target":"/daily"},"name":"知乎想法 - 24 小时新闻汇总","maintainers":["xyqfer"],"url":"daily.zhihu.com/*","location":"pin/daily.ts"}} />
-### 知乎书店 - 新书 {#zhi-hu-zhi-hu-shu-dian-xin-shu}
+### 知乎想法热榜 {#zhi-hu-zhi-hu-xiang-fa-re-bang}
-<Route author="xyqfer" example="/zhihu/bookstore/newest" path="/zhihu/bookstore/newest" anticrawler="1" radar="1" />
+<Route data={{"path":"/pin/hotlist","categories":["social-media"],"example":"/zhihu/pin/hotlist","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/zhihu/bookstore/newest"]},"name":"知乎想法热榜","maintainers":["xyqfer"],"url":"www.zhihu.com/zhihu/bookstore/newest","location":"pin/hotlist.ts"}} />
-### 知乎想法 - 24 小时新闻汇总 {#zhi-hu-zhi-hu-xiang-fa-24-xiao-shi-xin-wen-hui-zong}
+### 专栏 {#zhi-hu-zhuan-lan}
-<Route author="xyqfer" example="/zhihu/pin/daily" path="/zhihu/pin/daily" anticrawler="1" radar="1" />
+<Route data={{"path":"/zhuanlan/:id","categories":["social-media"],"example":"/zhihu/zhuanlan/googledevelopers","parameters":{"id":"专栏 id,可在专栏主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhuanlan.zhihu.com/:id"]},"name":"专栏","maintainers":["DIYgod"],"location":"zhuanlan.ts"}} />
-### 知乎书店 - 知乎周刊 {#zhi-hu-zhi-hu-shu-dian-zhi-hu-zhou-kan}
+### xhu - 收藏夹 {#zhi-hu-xhu-shou-cang-jia}
-<Route author="LogicJake" example="/zhihu/weekly" path="/zhihu/weekly" anticrawler="1" radar="1" />
+<Route data={{"path":"/xhu/collection/:id","categories":["social-media"],"example":"/zhihu/xhu/collection/26444956","parameters":{"id":"收藏夹 id, 可在收藏夹页面 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/collection/:id"]},"name":"xhu - 收藏夹","maintainers":["JimenezLi"],"location":"xhu/collection.ts"}} />
-### 用户关注时间线 {#zhi-hu-yong-hu-guan-zhu-shi-jian-xian}
+### xhu - 问题 {#zhi-hu-xhu-wen-ti}
-<Route author="SeanChao" example="/zhihu/timeline" path="/zhihu/timeline" anticrawler="1" configRequired="1">
- :::warning
- 用户关注动态需要登录后的 Cookie 值,所以只能自建,详情见部署页面的配置模块。
- :::
-</Route>
+<Route data={{"path":"/xhu/question/:questionId/:sortBy?","categories":["social-media"],"example":"/zhihu/xhu/question/264051433","parameters":{"questionId":"问题 id","sortBy":"排序方式:`default`, `created`, `updated`。默认为 `default`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/question/:questionId"],"target":"/xhu/question/:questionId"},"name":"xhu - 问题","maintainers":["JimenezLi"],"location":"xhu/question.ts"}} />
### xhu - 用户动态 {#zhi-hu-xhu-yong-hu-dong-tai}
+<Route data={{"path":"/xhu/people/activities/:hexId","categories":["social-media"],"example":"/zhihu/xhu/people/activities/246e6cf44e94cefbf4b959cb5042bc91","parameters":{"hexId":"用户的 16 进制 id,获取方式见下方说明"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/people/:id"],"target":"/people/activities/:id"},"name":"xhu - 用户动态","maintainers":["JimenezLi"],"description":"[xhu](https://github.com/REToys/xhu)\n\n :::tip\n 用户的 16 进制 id 获取方式:\n\n 1. 可以通过 RSSHub Radar 扩展获取;\n 2. 或者在用户主页打开 F12 控制台,执行以下代码:`console.log(/\"id\":\"([0-9a-f]*?)\",\"urlToken\"/.exec(document.getElementById('js-initialData').innerHTML)[1]);` 即可获取用户的 16 进制 id。\n :::","location":"xhu/activities.ts"}} />
+
[xhu](https://github.com/REToys/xhu)
-<Route author="JimenezLi" example="/zhihu/xhu/people/activities/246e6cf44e94cefbf4b959cb5042bc91" path="/zhihu/xhu/people/activities/:hexId" paramsDesc={['用户的 16 进制 id,获取方式见下方说明']} radar="1">
- :::tip
- 用户的 16 进制 id 获取方式:
+:::tip
+用户的 16 进制 id 获取方式:
- 1. 可以通过 RSSHub Radar 扩展获取;
- 2. 或者在用户主页打开 F12 控制台,执行以下代码:`console.log(/"id":"([0-9a-f]*?)","urlToken"/.exec(document.getElementById('js-initialData').innerHTML)[1]);` 即可获取用户的 16 进制 id。
- :::
-</Route>
+1. 可以通过 RSSHub Radar 扩展获取;
+2. 或者在用户主页打开 F12 控制台,执行以下代码:`console.log(/"id":"([0-9a-f]*?)","urlToken"/.exec(document.getElementById('js-initialData').innerHTML)[1]);` 即可获取用户的 16 进制 id。
+:::
### xhu - 用户回答 {#zhi-hu-xhu-yong-hu-hui-da}
-<Route author="JimenezLi" example="/zhihu/xhu/people/answers/246e6cf44e94cefbf4b959cb5042bc91" path="/zhihu/xhu/people/answers/:hexId" paramsDesc={['用户的 16 进制 id,获取方式同 [xhu - 用户动态](#zhi-hu-xhu-yong-hu-dong-tai)']} radar="1" />
+<Route data={{"path":"/xhu/people/answers/:hexId","categories":["social-media"],"example":"/zhihu/xhu/people/answers/246e6cf44e94cefbf4b959cb5042bc91","parameters":{"hexId":"用户的 16 进制 id,获取方式同 [xhu - 用户动态](#zhi-hu-xhu-yong-hu-dong-tai)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.zhihu.com/people/:id/answers"],"target":"/people/answers/:id"},"name":"xhu - 用户回答","maintainers":["JimenezLi"],"location":"xhu/answers.ts"}} />
### xhu - 用户文章 {#zhi-hu-xhu-yong-hu-wen-zhang}
-<Route author="JimenezLi" example="/zhihu/xhu/people/posts/246e6cf44e94cefbf4b959cb5042bc91" path="/zhihu/xhu/people/posts/:hexId" paramsDesc={['用户的 16 进制 id,获取方式同 [xhu - 用户动态](#zhi-hu-xhu-yong-hu-dong-tai)']} radar="1" />
-
-### xhu - 收藏夹 {#zhi-hu-xhu-shou-cang-jia}
-
-<Route author="JimenezLi" example="/zhihu/xhu/collection/26444956" path="/zhihu/xhu/collection/:id" paramsDesc={['收藏夹 id, 可在收藏夹页面 URL 中找到']} radar="1" />
+<Route data={{"path":"/xhu/people/posts/:hexId","categories":["social-media"],"example":"/zhihu/xhu/people/posts/246e6cf44e94cefbf4b959cb5042bc91","parameters":{"hexId":"用户的 16 进制 id,获取方式同 [xhu - 用户动态](#zhi-hu-xhu-yong-hu-dong-tai)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"xhu - 用户文章","maintainers":["JimenezLi"],"location":"xhu/posts.ts"}} />
### xhu- 专栏 {#zhi-hu-xhu-zhuan-lan}
-<Route author="JimenezLi" example="/zhihu/xhu/zhuanlan/githubdaily" path="/zhihu/xhu/zhuanlan/:id" paramsDesc={['专栏 id, 可在专栏主页 URL 中找到']} radar="1" />
-
-### xhu - 问题 {#zhi-hu-xhu-wen-ti}
-
-<Route author="JimenezLi" example="/zhihu/xhu/question/264051433" path="/zhihu/xhu/question/:questionId/:sortBy?" paramsDesc={['问题 id', '排序方式:`default`, `created`, `updated`。默认为 `default`']} radar="1" />
-
-### xhu - 话题 {#zhi-hu-xhu-hua-ti}
-
-<Route author="JimenezLi" example="/zhihu/xhu/topic/19566035" path="/zhihu/xhu/topic/:topicId" paramsDesc={['话题ID']} radar="1" />
+<Route data={{"path":"/xhu/zhuanlan/:id","categories":["social-media"],"example":"/zhihu/xhu/zhuanlan/githubdaily","parameters":{"id":"专栏 id, 可在专栏主页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zhuanlan.zhihu.com/:id"],"target":"/zhuanlan/:id"},"name":"xhu- 专栏","maintainers":["JimenezLi"],"location":"xhu/zhuanlan.ts"}} />
diff --git a/website/docs/routes/study.mdx b/website/docs/routes/study.mdx
index ee6abc9a7ef4f7..154ad0d1c80d6e 100644
--- a/website/docs/routes/study.mdx
+++ b/website/docs/routes/study.mdx
@@ -1,343 +1,122 @@
-# 📖 Study
+# study
## Asian Innovation and Entrepreneurship Association {#asian-innovation-and-entrepreneurship-association}
### Seminar Series {#asian-innovation-and-entrepreneurship-association-seminar-series}
-<Route author="zxx-457" example="/aiea/seminars/upcoming" path="/aiea/seminars/:period" paramsDesc={['Time frame']}>
- | Time frame |
- | ---------- |
- | upcoming |
- | past |
- | both |
-</Route>
+<Route data={{"path":"/seminars/:period","categories":["study"],"example":"/aiea/seminars/upcoming","parameters":{"period":"Time frame"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Seminar Series","maintainers":["zxx-457"],"description":"| Time frame |\n | ---------- |\n | upcoming |\n | past |\n | both |","location":"index.ts"}} />
+
+| Time frame |
+| ---------- |
+| upcoming |
+| past |
+| both |
## Chinese Social Science Net {#chinese-social-science-net}
### Institute of Law {#chinese-social-science-net-institute-of-law}
-<Route author="HankChow" example="/cssn/iolaw/zxzp" path="/cssn/iolaw/:section?" paramsDesc={['Section ID, can be found in the URL. For example, the Section ID of URL `http://iolaw.cssn.cn/zxzp/` is `zxzp`. The default value is `zxzp`']} />
-
-## CTFHub Calendar {#ctfhub-calendar}
-
-### 查询国内外 CTF 赛事信息 {#ctfhub-calendar-cha-xun-guo-nei-wai-ctf-sai-shi-xin-xi}
-
-<Route author="frankli0324" example="/ctfhub/search" path="/ctfhub/search/:limit?/:form?/:class?/:title?" paramsDesc={['一个整数,筛选最新的limit场比赛,默认为10', '比赛形式', '比赛类型', '通过CTF赛事名称过滤']}>
- | `:class` | 类型 |
- | :------: | ---------------------------------- |
- | 0 | Jeopardy \[解题] |
- | 1 | Attack with Defense \[AwD 攻防] |
- | 2 | Robo Hacking Game \[RHG AI 自动化] |
- | 3 | Real World \[RW 真实世界] |
- | 4 | King of The Hill \[KoH 抢占山头] |
- | 5 | Mix \[混合] |
-
- > class 以 [https://api.ctfhub.com/User\_API/Event/getType](https://api.ctfhub.com/User_API/Event/getType) 的返回结果为准
-
- | `:form` | 形式 |
- | :-----: | ------ |
- | 0 | 线上赛 |
- | 1 | 线下赛 |
-</Route>
-
-### 查询近期赛事 {#ctfhub-calendar-cha-xun-jin-qi-sai-shi}
-
-<Route author="frankli0324" example="/ctfhub/upcoming" path="/ctfhub/upcoming/:limit?" paramsDesc={['一个整数,筛选最近的limit场比赛,默认为5']} />
+<Route data={{"path":"/iolaw/:section?","categories":["study"],"example":"/cssn/iolaw/zxzp","parameters":{"section":"Section ID, can be found in the URL. For example, the Section ID of URL `http://iolaw.cssn.cn/zxzp/` is `zxzp`. The default value is `zxzp`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Institute of Law","maintainers":["HankChow"],"location":"iolaw.ts"}} />
## DBLP {#dblp}
### Keyword Search {#dblp-keyword-search}
-<Route author="ytno1" example="/dblp/knowledge%20tracing" path="/dblp/:field" paramsDesc={['Research field']} radar="1" />
-
-## Howtoforge Linux Tutorials {#howtoforge-linux-tutorials}
-
-### tutorials {#howtoforge-linux-tutorials-tutorials}
-
-<Route author="cnkmmk" example="/howtoforge" path="/howtoforge" />
-
-## iciba {#iciba}
-
-### Daily English Sentence {#iciba-daily-english-sentence}
-
-<Route author="mashirozx" example="/iciba/7/poster" path="/iciba/:days?/:img_type?" paramsDesc={['number of items to show (min = 1, max = 7, default = 1)', 'image style']}>
- | `:img_type` | image style |
- | ----------- | -------------- |
- | original | Original size |
- | medium | Medium size |
- | thumbnail | Thumbnail size |
- | poster | Art poster |
-</Route>
-
-## IELTS 雅思 {#ielts-ya-si}
-
-### 最新消息 {#ielts-ya-si-zui-xin-xiao-xi}
-
-<Route author="zenxds" example="/ielts" path="/ielts" puppeteer="1" />
-
-## Link Research {#link-research}
-
-### Theses {#link-research-theses}
-
-<Route author="y9c" example="/linkresearcher/category=theses&subject=生物" path="/linkresearcher/theses/:param" supportScihub="1" paramsDesc={['key=value,eg. subject=生物']} radar="1">
- | `:param` | example | definition |
- | -------- | --------------- | ------------------------------------- |
- | category | category=thesis | **one of** theses/information/careers |
- | subject | subject = 生物 | string / undefined |
- | columns | columns = 健康 | string / undefined |
- | columns | columns=virus | string / undefined |
-</Route>
-
-## MarginNote {#marginnote}
-
-### 标签 {#marginnote-biao-qian}
-
-<Route author="nczitzk" example="/marginnote/tag/经验分享" path="/marginnote/tag/:id?" paramsDesc={['标签名,见下表,默认为 经验分享']}>
- | 经验分享 | 论坛精华 | 待跟进反馈 | 优秀建议 | 精选回答 | 官方签名 | 自动更新 | 3674 以上版本支持 | 368 以上版本支持 | 未经验证的安全风险 | 笔记本分享 | 关键反馈 | 精选话题讨论 | 灵感盒 | 引用 |
- | -------- | -------- | ---------- | -------- | -------- | -------- | -------- | ----------------- | ---------------- | ------------------ | ---------- | -------- | ------------ | ------ | ---- |
-</Route>
+<Route data={{"path":"/:field","categories":["study"],"example":"/dblp/knowledge%20tracing","parameters":{"field":"Research field"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dblp.org/:field"]},"name":"Keyword Search","maintainers":["ytno1"],"location":"publication.ts"}} />
## MindMeister {#mindmeister}
### Public Maps {#mindmeister-public-maps}
-<Route author="TonyRL" example="/mindmeister/mind-map-examples" path="/mindmeister/:category?/:language?" paramsDesc={['Categories, see the table below, `mind-map-examples` by default', 'Languages, see the table below, `en` by default']} radar="1">
- | Categories | parameter |
- | ------------- | ----------------- |
- | Featured Map | mind-map-examples |
- | Business | business |
- | Design | design |
- | Education | education |
- | Entertainment | entertainment |
- | Life | life |
- | Marketing | marketing |
- | Productivity | productivity |
- | Summaries | summaries |
- | Technology | technology |
- | Other | other |
-
- | Languages | parameter |
- | ---------- | --------- |
- | English | en |
- | Deutsch | de |
- | Français | fr |
- | Español | es |
- | Português | pt |
- | Nederlands | nl |
- | Dansk | da |
- | Русский | ru |
- | 日本語 | ja |
- | Italiano | it |
- | 简体中文 | zh |
- | 한국어 | ko |
- | Other | other |
-</Route>
+<Route data={{"path":"/:category?/:language?","categories":["study"],"example":"/mindmeister/mind-map-examples","parameters":{"category":"Categories, see the table below, `mind-map-examples` by default","language":"Languages, see the table below, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Public Maps","maintainers":["TonyRL"],"description":"| Categories | parameter |\n | ------------- | ----------------- |\n | Featured Map | mind-map-examples |\n | Business | business |\n | Design | design |\n | Education | education |\n | Entertainment | entertainment |\n | Life | life |\n | Marketing | marketing |\n | Productivity | productivity |\n | Summaries | summaries |\n | Technology | technology |\n | Other | other |\n\n | Languages | parameter |\n | ---------- | --------- |\n | English | en |\n | Deutsch | de |\n | Français | fr |\n | Español | es |\n | Português | pt |\n | Nederlands | nl |\n | Dansk | da |\n | Русский | ru |\n | 日本語 | ja |\n | Italiano | it |\n | 简体中文 | zh |\n | 한국어 | ko |\n | Other | other |","location":"example.ts"}} />
+
+| Categories | parameter |
+| ------------- | ----------------- |
+| Featured Map | mind-map-examples |
+| Business | business |
+| Design | design |
+| Education | education |
+| Entertainment | entertainment |
+| Life | life |
+| Marketing | marketing |
+| Productivity | productivity |
+| Summaries | summaries |
+| Technology | technology |
+| Other | other |
+
+| Languages | parameter |
+| ---------- | --------- |
+| English | en |
+| Deutsch | de |
+| Français | fr |
+| Español | es |
+| Português | pt |
+| Nederlands | nl |
+| Dansk | da |
+| Русский | ru |
+| 日本語 | ja |
+| Italiano | it |
+| 简体中文 | zh |
+| 한국어 | ko |
+| Other | other |
## NEEA 中国教育考试网 {#neea-zhong-guo-jiao-yu-kao-shi-wang}
-### 国家教育考试 {#neea-zhong-guo-jiao-yu-kao-shi-wang-guo-jia-jiao-yu-kao-shi}
-
-<Route author="SunShinenny" example="/neea/gaokao" path="/neea/:type" paramsDesc={['类别,如 gaokao']} />
-
-| `:type` | 类别名称 |
-| -------- | ------------------ |
-| gaokao | 普通高考 |
-| chengkao | 成人高考 |
-| yankao | 研究生考试 |
-| zikao | 自学考试 |
-| ntce | 中小学教师资格考试 |
-
-### 社会证书考试 {#neea-zhong-guo-jiao-yu-kao-shi-wang-she-hui-zheng-shu-kao-shi}
-
-<Route author="SunShinenny" example="/neea/cet" path="/neea/:type" paramsDesc={['类别,如 cet']} />
-
-| `:type` | 类别名称 |
-| ------- | ----------------------------- |
-| cet | 全国四六级(CET) |
-| ncre | 全国计算机等级考试(NCRE) |
-| nit | 全国计算机应用水平考试(NIT) |
-| pets | 全国英语等级考试 (PETS) |
-| wsk | 全国外语水平考试 (WSK) |
-| ccpt | 书画等级考试 (CCPT) |
-| wsk | 全国外语水平考试 (WSK) |
-| mets | 医护英语水平考试 (METS) |
-
### 教育部考试中心日本语能力测试重要通知 {#neea-zhong-guo-jiao-yu-kao-shi-wang-jiao-yu-bu-kao-shi-zhong-xin-ri-ben-yu-neng-li-ce-shi-zhong-yao-tong-zhi}
-<Route author="nczitzk" example="/neea/jlpt" path="/neea/jlpt" />
+<Route data={{"path":"/jlpt","categories":["study"],"example":"/neea/jlpt","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jlpt.neea.cn/"]},"name":"教育部考试中心日本语能力测试重要通知","maintainers":["nczitzk"],"url":"jlpt.neea.cn/","location":"jlpt.ts"}} />
## ORCID {#orcid}
### Works List {#orcid-works-list}
-<Route author="OrangeEd1t" example="/orcid/0000-0002-4731-9700" path="/orcid/:id" paramsDesc={['Open Researcher and Contributor ID']} />
-
-## ResearchGate {#researchgate}
-
-### Publications {#researchgate-publications}
-
-<Route author="nczitzk" example="/researchgate/publications/Somsak-Panha" path="/researchgate/publications/:username" paramsDesc={['Username, can be found in URL']} puppeteer="1" anticrawler="1" />
+<Route data={{"path":"/:id","categories":["study"],"example":"/orcid/0000-0002-4731-9700","parameters":{"id":"Open Researcher and Contributor ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Works List","maintainers":["OrangeEd1t"],"location":"index.ts"}} />
## Tableau {#tableau}
### Viz of the day {#tableau-viz-of-the-day}
-<Route author="KaiyoungYu" example="/tableau/viz-of-the-day" path="/tableau/viz-of-the-day" radar="1" />
+<Route data={{"path":"/viz-of-the-day","categories":["study"],"example":"/tableau/viz-of-the-day","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Viz of the day","maintainers":[],"location":"viz-of-the-day.ts"}} />
## The Korea Institute of Marine Law {#the-korea-institute-of-marine-law}
### Thesis {#the-korea-institute-of-marine-law-thesis}
-<Route author="TonyRL" example="/kimlaw/thesis" path="/kimlaw/thesis" radar="1" />
+<Route data={{"path":"/thesis","categories":["study"],"example":"/kimlaw/thesis","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kimlaw.or.kr/67","kimlaw.or.kr/"]},"name":"Thesis","maintainers":["TonyRL"],"url":"kimlaw.or.kr/67","location":"thesis.ts"}} />
## X-MOL {#x-mol}
### News {#x-mol-news}
-<Route author="cssxsh" example="/x-mol/news/3" path="/x-mol/news/:tag?" paramsDesc={['Tag number, can be obtained from news list URL. Empty value means news index.']} />
-
-## XMind {#xmind}
-
-### Mindmap Gallery {#xmind-mindmap-gallery}
-
-<Route author="nczitzk" example="/xmind/mindmap" path="/xmind/mindmap/:lang?" paramsDesc={['language code, all languages by default']}>
- | English | Español | Deutsch | Français | 中文 | 日本語 |
- | ------- | ------- | ------- | -------- | ---- | ------ |
- | en | es | de | fr | zh | jp |
-</Route>
-
-## ZhiMap {#zhimap}
-
-### 导图社区导图更新 {#zhimap-dao-tu-she-qu-dao-tu-geng-xin}
-
-<Route author="laampui" example="/zhimap/820156a42e9a490796c7fd56916aa95b/1" path="/zhimap/:categoryUuid?/:recommend?" paramsDesc={['分类 uuid,见下表,默认为33b67d1bad1d4e37812f71d42764af34', '1 为按推荐排序,0 为按最新排序,默认为 0']}>
- | 热门 | 学科 | 学习 | 语言 | 工作 | 提升 | 生活 | 互联网 | 教育 | 其他 | 行业 | 服务发布 | 医疗 |
- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- | -------------------------------- |
- | 33b67d1bad1d4e37812f71d42764af34 | 9434268e893a46aa9a1a231059849984 | 820156a42e9a490796c7fd56916aa95b | 959c81f606ca495c882c7e461429eb2a | 5af4bca5496e4733a2d582690627e25f | 5300988dff564756b5d462cea8a865b7 | 02fdcc2ab6374bc6b9b9717e70c87723 | 437d434fe9eb410a94dcefb889994e2b | 9747cbf78f96492c973aa6ab23925eee | d4c3a92a9cf64da7b187763211dc6ff6 | 58231ab9cef34af7819c3f6e2160c007 | 73d89972bee0457997c983d7fca19f9f | 853ce8b3a4c24b87a03f66af95c5e06c |
-</Route>
-
-## ZhiShiFenZi {#zhishifenzi}
-
-### News {#zhishifenzi-news}
-
-<Route author="y9c" example="/zhishifenzi/news/ai" path="/zhishifenzi/news/:type" paramsDesc={['type,eg. ai']}>
- | `:type` | type name |
- | --------- | --------- |
- | biology | Biology |
- | medicine | Medicine |
- | ai | AI |
- | physics | physics |
- | chymistry | Chymistry |
- | astronomy | Astronomy |
- | others | Others |
-
- > leave it blank(`/zhishifenzi/news`)to get all
-</Route>
-
-### depth {#zhishifenzi-depth}
-
-<Route author="y9c" example="/zhishifenzi/depth" path="/zhishifenzi/depth" />
-
-### innovation {#zhishifenzi-innovation}
-
-<Route author="y9c" example="/zhishifenzi/innovation/company" path="/zhishifenzi/innovation/:type" paramsDesc={['type,eg. company']}>
- | `:type` | type name |
- | ------------- | ------------- |
- | ~~multiple~~ | ~~Multiple~~ |
- | company | Company |
- | product | Product |
- | technology | Technology |
- | ~~character~~ | ~~Character~~ |
- | policy | Policy |
-
- > leave it blank(`/zhishifenzi/innovation`)to get all
-</Route>
-
-## 德阳考试中心 {#de-yang-kao-shi-zhong-xin}
-
-### 考试新闻 {#de-yang-kao-shi-zhong-xin-kao-shi-xin-wen}
-
-<Route author="zytomorrow" example="/dykszx/news" path="/dykszx/news/:type?" paramsDesc={['考试类型']}>
- | 新闻中心 | 公务员考试 | 事业单位 | (职)业资格、职称考试 | 其他 |
- | :------: | :--------: | :------: | :--------------------: | :---: |
- | all | gwy | sydw | zyzc | other |
-</Route>
-
-## 东莞教研网 {#dong-guan-jiao-yan-wang}
-
-### 分类 {#dong-guan-jiao-yan-wang-fen-lei}
-
-<Route author="nczitzk" example="/dgjyw/tz" path="/dgjyw/:category?" paramsDesc={['分类,见下表,默认为通知']}>
- | 通知 | 动态 | 公示 |
- | ---- | ---- | ---- |
- | tz | dt | gs |
-
- :::tip
- 分类字段处填写的是对应东莞教研网网址中中介于 **`https://www.dgjyw.com/`** 和 **.htm** 中间的一段。
-
- 如 [通知](https://www.dgjyw.com/tz.htm) 的网址为 `https://www.dgjyw.com/tz.htm`,其中间字段为 `tz`,所以可得路由为 [`/dgjyw/tz`](https://rsshub.app/dgjyw/tz);
-
- 同理,[教育科研 - 科研文件](https://www.dgjyw.com/jyky/kywj.htm) 的网址为 `https://www.dgjyw.com/jyky/kywj.htm`,其中间字段为 `jyky/kywj`,所以可得路由为 [`/dgjyw/jyky/kywj`](https://rsshub.app/dgjyw/jyky/kywj)。
- :::
-</Route>
+<Route data={{"path":"/news/:tag?","categories":["study"],"example":"/x-mol/news/3","parameters":{"tag":"Tag number, can be obtained from news list URL. Empty value means news index."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["x-mol.com/news/index"],"target":"/news"},"name":"News","maintainers":["cssxsh"],"url":"x-mol.com/news/index","location":"news.ts"}} />
## 福建考试报名网 {#fu-jian-kao-shi-bao-ming-wang}
### 分类 {#fu-jian-kao-shi-bao-ming-wang-fen-lei}
-<Route author="nczitzk" example="/fjksbm" path="/fjksbm/:category?" paramsDesc={['分类,见下表,默认为网络报名进行中']} radar="1">
- | 已发布公告 (方案),即将开始 | 网络报名进行中 | 网络报名结束等待打印准考证 | 正在打印准考证 | 考试结束,等待发布成绩 | 已发布成绩 | 新闻动态 | 政策法规 |
- | --------------------------- | -------------- | -------------------------- | -------------- | ---------------------- | ---------- | -------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | news | policy |
-</Route>
+<Route data={{"path":"/:category?","categories":["study"],"example":"/fjksbm","parameters":{"category":"分类,见下表,默认为网络报名进行中"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["fjksbm.com/portal/:category?","fjksbm.com/portal"]},"name":"分类","maintainers":["nczitzk"],"description":"| 已发布公告 (方案),即将开始 | 网络报名进行中 | 网络报名结束等待打印准考证 | 正在打印准考证 | 考试结束,等待发布成绩 | 已发布成绩 | 新闻动态 | 政策法规 |\n | --------------------------- | -------------- | -------------------------- | -------------- | ---------------------- | ---------- | -------- | -------- |\n | 0 | 1 | 2 | 3 | 4 | 5 | news | policy |","location":"index.ts"}} />
+
+| 已发布公告 (方案),即将开始 | 网络报名进行中 | 网络报名结束等待打印准考证 | 正在打印准考证 | 考试结束,等待发布成绩 | 已发布成绩 | 新闻动态 | 政策法规 |
+| --------------------------- | -------------- | -------------------------- | -------------- | ---------------------- | ---------- | -------- | -------- |
+| 0 | 1 | 2 | 3 | 4 | 5 | news | policy |
## 湖南人事考试网 {#hu-nan-ren-shi-kao-shi-wang}
### 公告 {#hu-nan-ren-shi-kao-shi-wang-gong-gao}
-<Route author="TonyRL" example="/hunanpea/rsks/2f1a6239-b4dc-491b-92af-7d95e0f0543e" path="/hunanpea/rsks/:guid" paramsDesc={['分类 id,可在 URL 中找到']} radar="1" />
-
-## 经济 50 人论坛 {#jing-ji-50-ren-lun-tan}
-
-### 专家文章 {#jing-ji-50-ren-lun-tan-zhuan-jia-wen-zhang}
-
-<Route author="sddiky" example="/50forum" path="/50forum" radar="1" />
-
-## 幕布 {#mu-bu}
-
-### 精选社区 {#mu-bu-jing-xuan-she-qu}
-
-<Route author="laampui nczitzk" example="/mubu/explore/16/读书笔记" path="/mubu/explore/:category?/:title?" paramsDesc={['分类 id', '显示标题']} />
+<Route data={{"path":"/rsks/:guid","categories":["study"],"example":"/hunanpea/rsks/2f1a6239-b4dc-491b-92af-7d95e0f0543e","parameters":{"guid":"分类 id,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rsks.hunanpea.com/Category/:guid/ArticlesByCategory.do"]},"name":"公告","maintainers":["TonyRL"],"location":"rsks.ts"}} />
## 山东省教育招生考试院 {#shan-dong-sheng-jiao-yu-zhao-sheng-kao-shi-yuan}
### 新闻 {#shan-dong-sheng-jiao-yu-zhao-sheng-kao-shi-yuan-xin-wen}
-<Route author="nczitzk" example="/sdzk" path="/sdzk/:bcid?/:cid?" paramsDesc={['板块 id,可在对应板块页 URL 中找到,默认为 `1`,即信息与政策', '栏目 id,可在对应板块页 URL 中找到,默认为 `16`,即通知公告']}>
- :::tip
- 若订阅 [信息与政策](https://www.sdzk.cn/NewsList.aspx?BCID=1),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1`。截取 `BCID=1` 作为参数,此时路由为 [`/sdzk/1`](https://rsshub.app/sdzk/1)。
-
- 若订阅 [通知公告](https://www.sdzk.cn/NewsList.aspx?BCID=1\&CID=16),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1&CID=16`。截取 `BCID=1` 与 `CID=16` 作为参数,此时路由为 [`/sdzk/1/16`](https://rsshub.app/sdzk/1/16)。
- :::
-</Route>
-
-## 扇贝 {#shan-bei}
-
-### 用户打卡 {#shan-bei-yong-hu-da-ka}
+<Route data={{"path":"/:bcid?/:cid?","categories":["study"],"example":"/sdzk","parameters":{"bcid":"板块 id,可在对应板块页 URL 中找到,默认为 `1`,即信息与政策","cid":"栏目 id,可在对应板块页 URL 中找到,默认为 `16`,即通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["nczitzk"],"description":":::tip\n 若订阅 [信息与政策](https://www.sdzk.cn/NewsList.aspx?BCID=1),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1`。截取 `BCID=1` 作为参数,此时路由为 [`/sdzk/1`](https://rsshub.app/sdzk/1)。\n\n 若订阅 [通知公告](https://www.sdzk.cn/NewsList.aspx?BCID=1&CID=16),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1&CID=16`。截取 `BCID=1` 与 `CID=16` 作为参数,此时路由为 [`/sdzk/1/16`](https://rsshub.app/sdzk/1/16)。\n :::","location":"index.ts"}} />
-<Route author="DIYgod" example="/shanbay/checkin/ddwej" path="/shanbay/checkin/:id" paramsDesc={['用户 id']} />
+:::tip
+若订阅 [信息与政策](https://www.sdzk.cn/NewsList.aspx?BCID=1),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1`。截取 `BCID=1` 作为参数,此时路由为 [`/sdzk/1`](https://rsshub.app/sdzk/1)。
-### 精选文章 {#shan-bei-jing-xuan-wen-zhang}
-
-<Route author="qiwihui" example="/shanbay/footprints" path="/shanbay/footprints/:category?" paramsDesc={['分类 id']} notOperational="1">
- | 用户故事 | 地道表达法 | 实用口语 | 语法教室 | 读新闻学英语 | 单词鸡汤 | 扇贝理念 | 英语知识 | 原汁英文 |
- | -------- | ---------- | -------- | -------- | ------------ | -------- | -------- | -------- | -------- |
- | 1 | 31 | 46 | 34 | 40 | 43 | 16 | 7 | 10 |
-
- | 学习方法 | 影视剧讲义 | 产品更新 | 精读文章 | 他山之石 | Quora 翻译 | TED 推荐 | 大耳狐小课堂 | 互动话题 |
- | -------- | ---------- | -------- | -------- | -------- | ---------- | -------- | ------------ | -------- |
- | 13 | 22 | 28 | 4 | 19 | 25 | 37 | 49 | 52 |
-</Route>
+若订阅 [通知公告](https://www.sdzk.cn/NewsList.aspx?BCID=1\&CID=16),网址为 `https://www.sdzk.cn/NewsList.aspx?BCID=1&CID=16`。截取 `BCID=1` 与 `CID=16` 作为参数,此时路由为 [`/sdzk/1/16`](https://rsshub.app/sdzk/1/16)。
+:::
## 上海市教育考试院 {#shang-hai-shi-jiao-yu-kao-shi-yuan}
@@ -345,353 +124,166 @@
### 消息 {#shang-hai-shi-jiao-yu-kao-shi-yuan-xiao-xi}
-<Route author="jialinghui Misaka13514" example="/shmeea/08000" path="/shmeea/:id?" radar="1" paramsDesc={['页面 ID,可在 URL 中找到,默认为消息速递']}>
- :::tip
- 例如:消息速递的网址为 `https://www.shmeea.edu.cn/page/08000/index.html`,则页面 ID 为 `08000`。
- :::
+<Route data={{"path":"/:id?","categories":["study"],"example":"/shmeea/08000","parameters":{"id":"页面 ID,可在 URL 中找到,默认为消息速递"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"消息","maintainers":["jialinghui","Misaka13514"],"description":":::tip\n 例如:消息速递的网址为 `https://www.shmeea.edu.cn/page/08000/index.html`,则页面 ID 为 `08000`。\n :::\n\n :::warning\n 暂不支持大类分类和[院内动态](https://www.shmeea.edu.cn/page/19000/index.html)\n :::","location":"index.ts"}} />
- :::warning
- 暂不支持大类分类和[院内动态](https://www.shmeea.edu.cn/page/19000/index.html)
- :::
-</Route>
-
-### 自学考试通知公告 {#shang-hai-shi-jiao-yu-kao-shi-yuan-zi-xue-kao-shi-tong-zhi-gong-gao}
+:::tip
+例如:消息速递的网址为 `https://www.shmeea.edu.cn/page/08000/index.html`,则页面 ID 为 `08000`。
+:::
-<Route author="h2ws" example="/shmeea/self-study" path="/shmeea/self-study" radar="1" />
+:::warning
+暂不支持大类分类和[院内动态](https://www.shmeea.edu.cn/page/19000/index.html)
+:::
-## 思维导图社区 {#si-wei-dao-tu-she-qu}
-
-### 热门导图 {#si-wei-dao-tu-she-qu-re-men-dao-tu}
-
-<Route author="nczitzk" example="/edrawsoft/mindmap/1/PV/DESC/CN/1" path="/edrawsoft/mindmap/:classId?/:order?/:sort?/:lang?/:price?/:search?" paramsDesc={['分类编号,见下表,默认为全部分类', '排序参数,`PV` 指 最多浏览,`TIME` 指 最新发布,`LIKE` 指 最多点赞,默认为 `PV` 即 最多浏览', '排序方式,`DESC` 指 降序,`ASC` 指 升序,默认为 `DESC` 即 降序', '模板语言,默认为 `CN`', '是否免费,`1` 指 全部,`2` 指 免费,`3` 指 付费,`4` 指 会员免费,默认为 `1` 即 全部', '搜索关键词,默认为空']}>
- :::tip
- 不支持分类搜索和自定义搜索排序,即 `search` 参数不为空时,其他参数不起作用。
- :::
-
- 分类编号如下表(选择全部则填入编号 0)
-
- | 职业技能 | 企业家 / 管理者 | 程序员 | 产品经理 | 运营 / 市场营销 | 人事 / 培训 / 行政 | 法律 / 法务 | 医学 / 药学 / 保健 | 银行 / 金融 / 证券 / 保险 | 电商 / 微商 / 零售 | 编辑 / 媒体 / 出版 | 机械 / 电子 / 制造业 | 城市 / 建筑 / 房地产 | 其他技能 |
- | -------- | --------------- | ------ | -------- | --------------- | ------------------ | ----------- | ------------------ | ------------------------- | ------------------ | ------------------ | -------------------- | -------------------- | -------- |
- | 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 58 | 59 |
-
- | 考研考证 | 研究生考试 | 建考 | 法考 | 教师资格证 | 公考 | 英语 | 医考 | 会计师 | 计算机 | 专升本 |
- | -------- | ---------- | ---- | ---- | ---------- | ---- | ---- | ---- | ------ | ------ | ------ |
- | 2 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
-
- | 生活娱乐 | 体育 | 音乐 | 影视 | 旅游 | 游戏 | 兴趣 | 生活 |
- | -------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 3 | 29 | 30 | 31 | 32 | 33 | 34 | 56 |
-
- | 校园教育 | 大学 | 高中 | 初中 | 小学 | 教育 |
- | -------- | ---- | ---- | ---- | ---- | ---- |
- | 4 | 35 | 36 | 37 | 38 | 39 |
-
- | 读书笔记 | 文学作品 | 心灵成长 | 经管知识 | 终身学习 | 通用知识 | 知识栏目 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 5 | 40 | 41 | 42 | 43 | 44 | 45 |
-
- | 创意脑图 | 长图 | 鱼骨图 | 时间线 | 圆圈图 | 组织结构 | 树状图 | 流程图 |
- | -------- | ---- | ------ | ------ | ------ | -------- | ------ | ------ |
- | 6 | 46 | 47 | 48 | 49 | 50 | 51 | 57 |
-</Route>
-
-## 搜韵网 {#sou-yun-wang}
-
-### 诗词日历 {#sou-yun-wang-shi-ci-ri-li}
+### 自学考试通知公告 {#shang-hai-shi-jiao-yu-kao-shi-yuan-zi-xue-kao-shi-tong-zhi-gong-gao}
-<Route author="nczitzk" example="/souyun/today" path="/souyun/today" />
+<Route data={{"path":"/self-study","categories":["study"],"example":"/shmeea/self-study","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.shmeea.edu.cn/page/04000/index.html","www.shmeea.edu.cn/"]},"name":"自学考试通知公告","maintainers":["h2ws"],"url":"www.shmeea.edu.cn/page/04000/index.html","location":"self-study.ts"}} />
## 网易公开课 {#wang-yi-gong-kai-ke}
-### 精品课程 {#wang-yi-gong-kai-ke-jing-pin-ke-cheng}
-
-<Route author="hoilc" example="/163/open/vip" path="/163/open/vip" radar="1" />
-
-## 下厨房 {#xia-chu-fang}
-
-### 用户作品 {#xia-chu-fang-yong-hu-zuo-pin}
-
-<Route author="xyqfer" example="/xiachufang/user/cooked/103309404" path="/xiachufang/user/cooked/:id" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} />
-
-### 用户菜谱 {#xia-chu-fang-yong-hu-cai-pu}
-
-<Route author="xyqfer" example="/xiachufang/user/created/103309404" path="/xiachufang/user/created/:id" paramsDesc={['用户 id, 可在用户主页 URL 中找到']} />
-
-### 作品动态 {#xia-chu-fang-zuo-pin-dong-tai}
-
-<Route author="xyqfer" example="/xiachufang/popular/hot" path="/xiachufang/popular/:timeframe?" paramsDesc={['默认最新上传']}>
- | 正在流行 | 24 小时最佳 | 本周最受欢迎 | 新秀菜谱 | 月度最佳 |
- | -------- | ----------- | ------------ | -------- | ---------- |
- | hot | pop | week | rising | monthhonor |
-</Route>
-
-## 学堂在线 {#xue-tang-zai-xian}
-
-### 课程信息 {#xue-tang-zai-xian-ke-cheng-xin-xi}
-
-<Route author="sanmmm" example="/xuetangx/course/course-v1:TsinghuaX+20240103X+2019_T1/status" path="/xuetangx/course/:cid/:type" paramsDesc={['课程id, 从课程页URL中可得到', '课程信息类型']}>
- 课程信息类型
-
- | 课程开始时间 | 课程结束时间 | 课程进度 |
- | ------------ | ------------ | -------- |
- | start | end | status |
-</Route>
-
-### 课程列表 {#xue-tang-zai-xian-ke-cheng-lie-biao}
-
-<Route author="sanmmm" example="/xuetangx/course/list/0/1/0" path="/xuetangx/course/list/:mode/:status/:credential/:type?" paramsDesc={['课程模式', '课程状态', '课程认证类型', '学科分类 默认为`全部`']}>
- 课程模式
-
- | 自主 | 随堂 | 付费 | 全部 |
- | ---- | ---- | ---- | ---- |
- | 0 | 1 | 2 | -1 |
-
- 课程状态
-
- | 即将开课 | 已开课 | 已结课 | 全部 |
- | -------- | ------ | ------ | ---- |
- | 1 | 2 | 3 | -1 |
-
- 课程认证类型
-
- | 签字认证 | 认证开放 | 全部 |
- | -------- | -------- | ---- |
- | 1 | 2 | -1 |
-
- 学科分类
-
- | 全部 | 计算机 | 经管・会计 | 创业 | 电子 | 工程 | 环境・地球 | 医学・健康 | 生命科学 | 数学 | 物理 | 化学 | 社科・法律 | 文学 | 历史 | 哲学 | 艺术・设计 | 外语 | 教育 | 其他 | 大学先修课 | 公共管理 | 建筑 | 职场 | 全球胜任力 |
- | ---- | ------ | ---------- | ---- | ---- | ---- | ---------- | ---------- | -------- | ---- | ---- | ---- | ---------- | ---- | ---- | ---- | ---------- | ---- | ---- | ---- | ---------- | -------- | ---- | ---- | ---------- |
- | -1 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 201 | 2550 | 2783 | 2952 | 6200 |
-</Route>
-
-## 阳光高考 {#yang-guang-gao-kao}
+:::tip
+部分歌单及听歌排行信息为登陆后可见,自建时将环境变量`NCM_COOKIES`设为登陆后的 Cookie 值,即可正常获取。
+:::
-### 教育部阳光高考信息公开平台招生政策规定 {#yang-guang-gao-kao-jiao-yu-bu-yang-guang-gao-kao-xin-xi-gong-kai-ping-tai-zhao-sheng-zheng-ce-gui-ding}
-
-<Route author="nczitzk" example="/chsi/zszcgd" path="/chsi/zszcgd/:category?" paramsDesc={['分类,默认为招生政策']}>
- | 招生政策 | 深化考试招生制度改革 | 教育法律法规 |
- | -------- | -------------------- | ------------ |
- | dnzszc | zdgg | jyflfg |
-</Route>
-
-## 印象识堂 {#yin-xiang-shi-tang}
-
-### 印象剪藏 {#yin-xiang-shi-tang-yin-xiang-jian-cang}
-
-<Route author="nczitzk" example="/yinxiang/note" path="/yinxiang/note" />
-
-### 卡片清单 {#yin-xiang-shi-tang-ka-pian-qing-dan}
-
-<Route author="nczitzk" example="/yinxiang/card/32" path="/yinxiang/card/:id?" paramsDesc={['卡片 id,见下表,默认为每周收藏排行榜・TOP5']} notOperational="1">
- :::tip
- 卡片对应的话题、专题等内容过期后,该卡片 id 也会失效,此时填入该卡片 id 将会报错。
- :::
-
- | 每周收藏排行榜・TOP5 | 每周热门「读书笔记」榜 TOP5 | 【印象话题】选择的悖论 | 【印象专题】如何一秒洞察问题本质? | 「识堂开讲」5 位嘉宾精华笔记大放送 | 【印象话题】培养专注力的 5 个步骤 | 🎁 购物清单主题活动获奖结果 |
- | -------------------- | --------------------------- | ---------------------- | ---------------------------------- | ---------------------------------- | --------------------------------- | --------------------------- |
- | 32 | 33 | 101 | 103 | 104 | 105 | 106 |
-</Route>
-
-### 用户公开笔记 {#yin-xiang-shi-tang-yong-hu-gong-kai-bi-ji}
-
-<Route author="nczitzk" example="/yinxiang/personal/ZUhuRTmW5SKE7vvHPqI7cg" path="/yinxiang/personal/:id" paramsDesc={['用户 id,可在用户页 URL 中找到']} />
-
-### 笔记分类 {#yin-xiang-shi-tang-bi-ji-fen-lei}
-
-<Route author="nczitzk" example="/yinxiang/category/28" path="/yinxiang/category/:id" paramsDesc={['分类 id,可在分类页 URL 中找到']} />
-
-### 笔记标签 {#yin-xiang-shi-tang-bi-ji-biao-qian}
-
-<Route author="nczitzk" example="/yinxiang/tag/人生算法" path="/yinxiang/tag/:id" paramsDesc={['标签名,可在标签页中找到']} />
-
-## 有道云笔记 {#you-dao-yun-bi-ji}
-
-### 学霸感悟 {#you-dao-yun-bi-ji-xue-ba-gan-wu}
-
-<Route author="nczitzk" example="/youdao/xueba" path="/youdao/xueba" />
-
-### 笔记最新动态 {#you-dao-yun-bi-ji-bi-ji-zui-xin-dong-tai}
+### 精品课程 {#wang-yi-gong-kai-ke-jing-pin-ke-cheng}
-<Route author="nczitzk" example="/youdao/latest" path="/youdao/latest" />
+<Route data={{"path":"/open/vip","categories":["study"],"example":"/163/open/vip","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vip.open.163.com/"]},"name":"精品课程","maintainers":["hoilc"],"url":"vip.open.163.com/","location":"open/vip.ts"}} />
## 语雀 {#yu-que}
### 知识库 {#yu-que-zhi-shi-ku}
-<Route author="aha2mao ltaoo" example="/yuque/ruanyf/weekly" path="/yuque/:name/:book" paramsDesc={['用戶名', '知识库 ID']} radar="1">
- | Node.js 专栏 | 阮一峰每周分享 | 语雀使用手册 |
- | -------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------- |
- | [/yuque/egg/nodejs](https://rsshub.app/yuque/egg/nodejs) | [/yuque/ruanyf/weekly](https://rsshub.app/yuque/ruanyf/weekly) | [/yuque/yuque/help](https://rsshub.app/yuque/yuque/help) |
-</Route>
-
-## 中国大学 MOOC (慕课) {#zhong-guo-da-xue-mooc-mu-ke}
-
-### 最新 {#zhong-guo-da-xue-mooc-mu-ke-zui-xin}
+<Route data={{"path":"/:name/:book","categories":["study"],"example":"/yuque/ruanyf/weekly","parameters":{"name":"用戶名","book":"知识库 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yuque.com/:name/:book"]},"name":"知识库","maintainers":["aha2mao","ltaoo"],"description":"| Node.js 专栏 | 阮一峰每周分享 | 语雀使用手册 |\n | -------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------- |\n | [/yuque/egg/nodejs](https://rsshub.app/yuque/egg/nodejs) | [/yuque/ruanyf/weekly](https://rsshub.app/yuque/ruanyf/weekly) | [/yuque/yuque/help](https://rsshub.app/yuque/yuque/help) |","location":"book.ts"}} />
-<Route author="xyqfer" example="/icourse163/newest" path="/icourse163/newest" />
+| Node.js 专栏 | 阮一峰每周分享 | 语雀使用手册 |
+| -------------------------------------------------------- | -------------------------------------------------------------- | -------------------------------------------------------- |
+| [/yuque/egg/nodejs](https://rsshub.app/yuque/egg/nodejs) | [/yuque/ruanyf/weekly](https://rsshub.app/yuque/ruanyf/weekly) | [/yuque/yuque/help](https://rsshub.app/yuque/yuque/help) |
## 中国管理现代化研究会 {#zhong-guo-guan-li-xian-dai-hua-yan-jiu-hui}
### 栏目 {#zhong-guo-guan-li-xian-dai-hua-yan-jiu-hui-lan-mu}
-<Route author="nczitzk" example="/camchina" path="/camchina/:id?" paramsDesc={['分类,见下表,默认为 1,即新闻']}>
- | 新闻 | 通告栏 |
- | ---- | ------ |
- | 1 | 2 |
-</Route>
+<Route data={{"path":"/:id?","categories":["study"],"example":"/camchina","parameters":{"id":"分类,见下表,默认为 1,即新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cste.org.cn/categories/:id","cste.org.cn/"]},"name":"栏目","maintainers":["nczitzk"],"description":"| 新闻 | 通告栏 |\n | ---- | ------ |\n | 1 | 2 |","location":"index.ts"}} />
+
+| 新闻 | 通告栏 |
+| ---- | ------ |
+| 1 | 2 |
## 中国计算机学会 {#zhong-guo-ji-suan-ji-xue-hui}
-### 新闻 {#zhong-guo-ji-suan-ji-xue-hui-xin-wen}
+### 大数据专家委员会 {#zhong-guo-ji-suan-ji-xue-hui-da-shu-ju-zhuan-jia-wei-yuan-hui}
-<Route author="nczitzk" example="/ccf/news" path="/ccf/news/:category?" paramsDesc={['分类,见下表,默认为 CCF 新闻']}>
- | CCF 新闻 | CCF 聚焦 | ACM 信息 |
- | ----------- | -------- | --------- |
- | Media\_list | Focus | ACM\_News |
-</Route>
+<Route data={{"path":"/tfbd/:caty/:id","categories":["study"],"example":"/ccf/tfbd/xwdt/tzgg","parameters":{"caty":"主分类,可在 URL 找到","id":"子分类,可在 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tfbd.ccf.org.cn/tfbd/:caty/:id","tfbd.ccf.org.cn/"]},"name":"大数据专家委员会","maintainers":["tudou027"],"location":"tfbd/index.ts"}} />
### 计算机视觉专委会 - 学术动态 - 分类 {#zhong-guo-ji-suan-ji-xue-hui-ji-suan-ji-shi-jue-zhuan-wei-hui-xue-shu-dong-tai-fen-lei}
-<Route author="elxy" example="/ccf/ccfcv/xsdt/xsqy" path="/ccf/ccfcv/:channel/:category" paramsDesc={['频道,仅支持 `xsdt`', '分类,见下表,亦可在网站 url 里找到']}>
- | 学术前沿 | 热点征文 | 学术会议 |
- | -------- | -------- | -------- |
- | xsqy | rdzw | xshy |
-</Route>
+<Route data={{"path":"/ccfcv/:channel/:category","categories":["study"],"example":"/ccf/ccfcv/xsdt/xsqy","parameters":{"channel":"频道,仅支持 `xsdt`","category":"分类,见下表,亦可在网站 url 里找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机视觉专委会 - 学术动态 - 分类","maintainers":["elxy"],"description":"| 学术前沿 | 热点征文 | 学术会议 |\n | -------- | -------- | -------- |\n | xsqy | rdzw | xshy |","location":"ccfcv/index.ts"}} />
-### 大数据专家委员会 {#zhong-guo-ji-suan-ji-xue-hui-da-shu-ju-zhuan-jia-wei-yuan-hui}
+| 学术前沿 | 热点征文 | 学术会议 |
+| -------- | -------- | -------- |
+| xsqy | rdzw | xshy |
+
+### 新闻 {#zhong-guo-ji-suan-ji-xue-hui-xin-wen}
-<Route author="tudou027" example="/ccf/tfbd/xwdt/tzgg" path="/ccf/tfbd/:caty/:id" paramsDesc={['主分类,可在 URL 找到', '子分类,可在 URL 找到']} radar="1" />
+<Route data={{"path":"/news/:category?","categories":["study"],"example":"/ccf/news","parameters":{"category":"分类,见下表,默认为 CCF 新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ccf.org.cn/:category","ccf.org.cn/"],"target":"/news/:category"},"name":"新闻","maintainers":["nczitzk"],"description":"| CCF 新闻 | CCF 聚焦 | ACM 信息 |\n | ----------- | -------- | --------- |\n | Media_list | Focus | ACM_News |","location":"news.ts"}} />
+
+| CCF 新闻 | CCF 聚焦 | ACM 信息 |
+| ----------- | -------- | --------- |
+| Media\_list | Focus | ACM\_News |
## 中国技术经济学会 {#zhong-guo-ji-shu-jing-ji-xue-hui}
### 栏目 {#zhong-guo-ji-shu-jing-ji-xue-hui-lan-mu}
-<Route author="nczitzk" example="/cste" path="/cste/:id?" paramsDesc={['分类,见下表,默认为 16,即通知公告']}>
- | 通知公告 | 学会新闻 | 科协简讯 | 学科动态 | 往事钩沉 |
- | -------- | -------- | -------- | -------- | -------- |
- | 16 | 18 | 19 | 20 | 21 |
-</Route>
+<Route data={{"path":"/:id?","categories":["study"],"example":"/cste","parameters":{"id":"分类,见下表,默认为 16,即通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["nczitzk"],"description":"| 通知公告 | 学会新闻 | 科协简讯 | 学科动态 | 往事钩沉 |\n | -------- | -------- | -------- | -------- | -------- |\n | 16 | 18 | 19 | 20 | 21 |","location":"index.ts"}} />
+
+| 通知公告 | 学会新闻 | 科协简讯 | 学科动态 | 往事钩沉 |
+| -------- | -------- | -------- | -------- | -------- |
+| 16 | 18 | 19 | 20 | 21 |
## 中国人工智能学会 {#zhong-guo-ren-gong-zhi-neng-xue-hui}
### 学会动态 {#zhong-guo-ren-gong-zhi-neng-xue-hui-xue-hui-dong-tai}
-<Route author="tudou027" example="/caai/45" path="/caai/:caty" paramsDesc={['分类 ID,可在 URL 找到']} radar="1" />
+<Route data={{"path":"/:caty","categories":["study"],"example":"/caai/45","parameters":{"caty":"分类 ID,可在 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"学会动态","maintainers":["tudou027"],"location":"index.ts"}} />
## 中国研究生招生信息网 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang}
-### 考研热点新闻 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang-kao-yan-re-dian-xin-wen}
+### 考研动态 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang-kao-yan-dong-tai}
-<Route author="yanbot-team" example="/chsi/hotnews" path="/chsi/hotnews" radar="1" />
+<Route data={{"path":"/kydt","categories":["study"],"example":"/chsi/kydt","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.chsi.com.cn/kyzx/kydt"]},"name":"考研动态","maintainers":["SunBK201"],"url":"yz.chsi.com.cn/kyzx/kydt","location":"kydt.ts"}} />
-### 考研动态 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang-kao-yan-dong-tai}
+### 考研热点新闻 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang-kao-yan-re-dian-xin-wen}
-<Route author="SunBK201" example="/chsi/kydt" path="/chsi/kydt" radar="1" />
+<Route data={{"path":"/hotnews","categories":["study"],"example":"/chsi/hotnews","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.chsi.com.cn/"]},"name":"考研热点新闻","maintainers":["yanbot-team"],"url":"yz.chsi.com.cn/","location":"hotnews.ts"}} />
### 考研资讯 {#zhong-guo-yan-jiu-sheng-zhao-sheng-xin-xi-wang-kao-yan-zi-xun}
-<Route author="yanbot-team" example="/chsi/kyzx/fstj" path="/chsi/kyzx/:type" radar="1" paramsDesc={[' type 见下表,亦可在网站 URL 找到']}>
- | `:type` | 专题名称 |
- | ------- | -------- |
- | fstj | 复试调剂 |
- | kydt | 考研动态 |
- | zcdh | 政策导航 |
- | kyrw | 考研人物 |
- | jyxd | 经验心得 |
-</Route>
+<Route data={{"path":"/kyzx/:type","categories":["study"],"example":"/chsi/kyzx/fstj","parameters":{"type":" type 见下表,亦可在网站 URL 找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.chsi.com.cn/kyzx/:type"]},"name":"考研资讯","maintainers":["yanbot-team"],"description":"| `:type` | 专题名称 |\n | ------- | -------- |\n | fstj | 复试调剂 |\n | kydt | 考研动态 |\n | zcdh | 政策导航 |\n | kyrw | 考研人物 |\n | jyxd | 经验心得 |","location":"kyzx.ts"}} />
+
+| `:type` | 专题名称 |
+| ------- | -------- |
+| fstj | 复试调剂 |
+| kydt | 考研动态 |
+| zcdh | 政策导航 |
+| kyrw | 考研人物 |
+| jyxd | 经验心得 |
## 中国智库网 {#zhong-guo-zhi-ku-wang}
### 观点与实践 {#zhong-guo-zhi-ku-wang-guan-dian-yu-shi-jian}
-<Route author="AEliu" example="/chinathinktanks/57" path="/chinathinktanks/:id" radar="1" paramsDesc={['见下表,亦可在网站 url 里找到']}>
- | `:id` | 专题名称 |
- | ----- | -------- |
- | 2 | 党的建设 |
- | 3 | 社会 |
- | 4 | 生态 |
- | 5 | 政治 |
- | 6 | 经济 |
- | 7 | 文化 |
- | 9 | 热点专题 |
- | 10 | 国际关系 |
- | 13 | 国外智库 |
- | 46 | 智库报告 |
- | 57 | 智库要闻 |
- | 126 | 世界经济 |
- | 127 | 宏观经济 |
- | 128 | 区域经济 |
- | 129 | 产业企业 |
- | 130 | 三农问题 |
- | 131 | 财政金融 |
- | 132 | 科技创新 |
- | 133 | 民主 |
- | 134 | 法治 |
- | 135 | 行政 |
- | 136 | 国家治理 |
- | 137 | 社会事业 |
- | 138 | 社会保障 |
- | 139 | 民族宗教 |
- | 140 | 人口就业 |
- | 141 | 社会治理 |
- | 142 | 文化产业 |
- | 143 | 公共文化 |
- | 144 | 文化体制 |
- | 145 | 文化思想 |
- | 146 | 资源 |
- | 147 | 能源 |
- | 148 | 环境 |
- | 149 | 生态文明 |
- | 150 | 思想建设 |
- | 151 | 作风建设 |
- | 152 | 组织建设 |
- | 153 | 制度建设 |
- | 154 | 反腐倡廉 |
- | 155 | 中国外交 |
- | 156 | 全球治理 |
- | 157 | 大国关系 |
- | 158 | 地区政治 |
- | 181 | 执政能力 |
-</Route>
+<Route data={{"path":"/:id","categories":["study"],"example":"/chinathinktanks/57","parameters":{"id":"见下表,亦可在网站 url 里找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"观点与实践","maintainers":["Aeliu"],"description":"| `:id` | 专题名称 |\n | ----- | -------- |\n | 2 | 党的建设 |\n | 3 | 社会 |\n | 4 | 生态 |\n | 5 | 政治 |\n | 6 | 经济 |\n | 7 | 文化 |\n | 9 | 热点专题 |\n | 10 | 国际关系 |\n | 13 | 国外智库 |\n | 46 | 智库报告 |\n | 57 | 智库要闻 |\n | 126 | 世界经济 |\n | 127 | 宏观经济 |\n | 128 | 区域经济 |\n | 129 | 产业企业 |\n | 130 | 三农问题 |\n | 131 | 财政金融 |\n | 132 | 科技创新 |\n | 133 | 民主 |\n | 134 | 法治 |\n | 135 | 行政 |\n | 136 | 国家治理 |\n | 137 | 社会事业 |\n | 138 | 社会保障 |\n | 139 | 民族宗教 |\n | 140 | 人口就业 |\n | 141 | 社会治理 |\n | 142 | 文化产业 |\n | 143 | 公共文化 |\n | 144 | 文化体制 |\n | 145 | 文化思想 |\n | 146 | 资源 |\n | 147 | 能源 |\n | 148 | 环境 |\n | 149 | 生态文明 |\n | 150 | 思想建设 |\n | 151 | 作风建设 |\n | 152 | 组织建设 |\n | 153 | 制度建设 |\n | 154 | 反腐倡廉 |\n | 155 | 中国外交 |\n | 156 | 全球治理 |\n | 157 | 大国关系 |\n | 158 | 地区政治 |\n | 181 | 执政能力 |","location":"viewpoint.ts"}} />
+
+| `:id` | 专题名称 |
+| ----- | -------- |
+| 2 | 党的建设 |
+| 3 | 社会 |
+| 4 | 生态 |
+| 5 | 政治 |
+| 6 | 经济 |
+| 7 | 文化 |
+| 9 | 热点专题 |
+| 10 | 国际关系 |
+| 13 | 国外智库 |
+| 46 | 智库报告 |
+| 57 | 智库要闻 |
+| 126 | 世界经济 |
+| 127 | 宏观经济 |
+| 128 | 区域经济 |
+| 129 | 产业企业 |
+| 130 | 三农问题 |
+| 131 | 财政金融 |
+| 132 | 科技创新 |
+| 133 | 民主 |
+| 134 | 法治 |
+| 135 | 行政 |
+| 136 | 国家治理 |
+| 137 | 社会事业 |
+| 138 | 社会保障 |
+| 139 | 民族宗教 |
+| 140 | 人口就业 |
+| 141 | 社会治理 |
+| 142 | 文化产业 |
+| 143 | 公共文化 |
+| 144 | 文化体制 |
+| 145 | 文化思想 |
+| 146 | 资源 |
+| 147 | 能源 |
+| 148 | 环境 |
+| 149 | 生态文明 |
+| 150 | 思想建设 |
+| 151 | 作风建设 |
+| 152 | 组织建设 |
+| 153 | 制度建设 |
+| 154 | 反腐倡廉 |
+| 155 | 中国外交 |
+| 156 | 全球治理 |
+| 157 | 大国关系 |
+| 158 | 地区政治 |
+| 181 | 执政能力 |
## 中华人民共和国学位证书查询 {#zhong-hua-ren-min-gong-he-guo-xue-wei-zheng-shu-cha-xun}
-### 各学位授予单位学位证书上网进度 {#zhong-hua-ren-min-gong-he-guo-xue-wei-zheng-shu-cha-xun-ge-xue-wei-shou-yu-dan-wei-xue-wei-zheng-shu-shang-wang-jin-du}
-
-<Route author="TonyRL" example="/chinadegrees/11" path="/chinadegrees/:province?" paramsDesc={['省市代号,见下表,亦可在 [这里](http://www.chinadegrees.com.cn/help/provinceSwqk.html) 找到,默认为 `11`']} radar="1" puppeteer="1" notOperational="1">
- | 省市 | 代号 |
- | ---------------- | ---- |
- | 北京市 | 11 |
- | 天津市 | 12 |
- | 河北省 | 13 |
- | 山西省 | 14 |
- | 内蒙古自治区 | 15 |
- | 辽宁省 | 21 |
- | 吉林省 | 22 |
- | 黑龙江省 | 23 |
- | 上海市 | 31 |
- | 江苏省 | 32 |
- | 浙江省 | 33 |
- | 安徽省 | 34 |
- | 福建省 | 35 |
- | 江西省 | 36 |
- | 山东省 | 37 |
- | 河南省 | 41 |
- | 湖北省 | 42 |
- | 湖南省 | 43 |
- | 广东省 | 44 |
- | 广西壮族自治区 | 45 |
- | 海南省 | 46 |
- | 重庆市 | 50 |
- | 四川省 | 51 |
- | 贵州省 | 52 |
- | 云南省 | 53 |
- | 西藏自治区 | 54 |
- | 陕西省 | 61 |
- | 甘肃省 | 62 |
- | 青海省 | 63 |
- | 宁夏回族自治区 | 64 |
- | 新疆维吾尔自治区 | 65 |
- | 台湾 | 71 |
-</Route>
+### Unknown {#zhong-hua-ren-min-gong-he-guo-xue-wei-zheng-shu-cha-xun-unknown}
+
+<Route data={{"path":"/:province?","categories":["study"],"example":"/chinadegrees/11","parameters":{"province":"省市代号,见下表,亦可在 [这里](http://www.chinadegrees.com.cn/help/provinceSwqk.html) 找到,默认为 `11`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["TonyRL"],"location":"province.ts"}} />
diff --git a/website/docs/routes/traditional-media.mdx b/website/docs/routes/traditional-media.mdx
index 3074c61ae9a8ce..16c9790245672b 100644
--- a/website/docs/routes/traditional-media.mdx
+++ b/website/docs/routes/traditional-media.mdx
@@ -1,386 +1,208 @@
-# 📰 News
-
-## 21 财经 {#21-cai-jing}
-
-### 频道 {#21-cai-jing-pin-dao}
-
-<Route author="brilon" example="/21caijing/channel/readnumber" path="/21caijing/channel/:name" paramsDesc={['频道名称,可在 [https://m.21jingji.com/](https://m.21jingji.com/) 页面 URL 中找到']} />
-
-## ABC News {#abc-news}
-
-### Channel & Topic {#abc-news-channel-topic}
-
-<Route author="nczitzk" example="/abc" path="/abc/:category?" paramsDesc={['Category, can be found in the URL, can also be filled in with the `documentId` in the source code of the page, `news/justin` as **Just In** by default']}>
- :::tip
- All Topics in [Topic Library](https://abc.net.au/news/topics) are supported, you can fill in the field after `topic` in its URL, or fill in the `documentId`.
-
- For example, the URL for [Computer Science](https://www.abc.net.au/news/topic/computer-science) is `https://www.abc.net.au/news/topic/computer-science`, the `category` is `news/topic/computer-science`, and the `documentId` of the Topic is `2302`, so the route is [/abc/news/topic/computer-science](https://rsshub.app/abc/news/topic/computer-science) and [/abc/2302](https://rsshub.app/abc/2302).
-
- The supported channels are all listed in the table below. For other channels, please find the `documentId` in the source code of the channel page and fill it in as above.
- :::
-</Route>
-
-## Aljazeera 半岛电视台 {#aljazeera-ban-dao-dian-shi-tai}
-
-### News {#aljazeera-ban-dao-dian-shi-tai-news}
-
-<Route author="nczitzk" example="/aljazeera/english/news" path="/aljazeera/:language?/:category?" paramsDesc={['Language, see below, arbric by default, as Arbric', 'Category, can be found in URL, homepage by default']}>
- Language
-
- | Arbric | Chinese | English |
- | ------ | ------- | ------- |
- | arbric | chinese | english |
-
- :::tip
- If you subscribe to [Al Jazeera English - Economy](https://www.aljazeera.com/economy), whose language is `english` and whose path is `economy`, you can get the route as [`/aljazeera/english/economy`](https://rsshub.app/aljazeera/english/economy)
-
- If you subscribe to [Al Jazeera Chinese - Political](https://chinese.aljazeera.net/news/political) with language `chinese` and path `news/political`, you can get the route as [`/aljazeera/chinese/news/political`](https://rsshub.app/aljazeera/chinese/news/political)
- :::
-</Route>
-
-### Tag {#aljazeera-ban-dao-dian-shi-tai-tag}
-
-<Route author="nczitzk" example="/aljazeera/english/tag/science-and-technology" path="/aljazeera/:language?/tag/:id" paramsDesc={['Language, see below, arbric by default, as Arbric', 'Tag id, can be found in URL']}>
- Language
-
- | Arbric | Chinese | English |
- | ------ | ------- | ------- |
- | arbric | chinese | english |
-
- :::tip
- If you subscribe to [Al Jazeera English - Science and Technology](https://www.aljazeera.com/tag/science-and-technology), whose language is `english` and whose path is `science-and-technology`, you can get the route as [`/aljazeera/english/tag/science-and-technology`](https://rsshub.app/aljazeera/english/tag/science-and-technology)
- :::
-</Route>
-
-### Official RSS {#aljazeera-ban-dao-dian-shi-tai-official-rss}
-
-<Route author="nczitzk" example="/aljazeera/english/rss" path="/aljazeera/:language?/rss" paramsDesc={['Language, see below, arbric by default, as Arbric']}>
- Language
-
- | Arbric | Chinese | English |
- | ------ | ------- | ------- |
- | arbric | chinese | english |
-
- :::tip
- There is no RSS source for Al Jazeera Chinese, returning homepage content by default
- :::
-</Route>
+# traditional-media
## AP News {#ap-news}
### Topics {#ap-news-topics}
-<Route author="zoenglinghou mjysci TonyRL" example="/apnews/topics/apf-topnews" path="/apnews/topics/:topic?" paramsDesc={['Topic name, can 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`, `trending-news` by default']} radar="1" />
-
-## BBC {#bbc}
-
-### News {#bbc-news}
-
-<Route author="HenryQW DIYgod" example="/bbc/world-asia" path="/bbc/:channel?" paramsDesc={['channel, default to `top stories`']}>
- Provides a better reading experience (full text articles) over the official ones.
-
- Support major channels, refer to [BBC RSS feeds](https://www.bbc.co.uk/news/10628494). Eg, `business` for `https://feeds.bbci.co.uk/news/business/rss.xml`.
-
- - Channel contains sub-directories, such as `https://feeds.bbci.co.uk/news/world/asia/rss.xml`, replace `/` with `-`, `/bbc/world-asia`.
-</Route>
-
-### BBC 中文网 {#bbc-bbc-zhong-wen-wang}
-
-<Route author="HenryQW" example="/bbc/chinese/business" path="/bbc/:lang/:channel?" paramsDesc={['语言,简体或繁体中文','频道,默认为主页']} notOperational="1">
- 支持大部分频道,频道名称见 [BBC 中文网 RSS 服务](https://www.bbc.com/zhongwen/simp/services/2009/09/000000_rss)。
-
- 简体版:
-
- - 频道,如金融财经 `https://www.bbc.co.uk/zhongwen/simp/business/index.xml` 则为 `/bbc/chinese/business`.
-
- 繁體版:
-
- - 频道,如金融財經 `https://www.bbc.co.uk/zhongwen/trad/business/index.xml` 则为 `/bbc/traditionalchinese/business`.
-</Route>
+<Route data={{"path":"/topics/:topic?","categories":["traditional-media"],"example":"/apnews/topics/apf-topnews","parameters":{"topic":"Topic name, can 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`, `trending-news` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["apnews.com/hub/:topic"],"target":"/topics/:topic"},"name":"Topics","maintainers":["zoenglinghou","mjysci","TonyRL"],"location":"topics.ts"}} />
## Caixin Global {#caixin-global}
### Latest News {#caixin-global-latest-news}
-<Route author="TonyRL" example="/caixinglobal/latest" path="/caixinglobal/latest" radar="1" />
+<Route data={{"path":"/latest","categories":["traditional-media"],"example":"/caixinglobal/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caixinglobal.com/news","caixinglobal.com/"]},"name":"Latest News","maintainers":["TonyRL"],"url":"caixinglobal.com/news","location":"latest.ts"}} />
## Canadian Broadcasting Corporation {#canadian-broadcasting-corporation}
### News {#canadian-broadcasting-corporation-news}
-<Route author="wb14123" example="/cbc/topics" path="/cbc/topics/:topic?" paramsDesc={['Channel,`Top Stories` by default. For secondary channel like `canada/toronto`, use `-` to replace `/`']} radar="1" notOperational="1" />
-
-## Chicago Tribune {#chicago-tribune}
+<Route data={{"path":"/topics/:topic?","categories":["traditional-media"],"example":"/cbc/topics","parameters":{"topic":"Channel,`Top Stories` by default. For secondary channel like `canada/toronto`, use `-` to replace `/`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cbc.ca/news"],"target":"/topics"},"name":"News","maintainers":["wb14123"],"url":"cbc.ca/news","location":"topics.ts"}} />
-### News {#chicago-tribune-news}
-
-<Route author="oppilate" example="/chicagotribune/nation-world" path="/chicagotribune/:category/:subcategory?" paramsDesc={['Category', 'Subcategory']}>
- Generates full-text that the official feed doesn't provide.
- Refer to [Chicago Tribune's feed page](https://www.chicagotribune.com/about/ct-chicago-tribune-rss-feeds-htmlstory.html) for categories. For instance, `https://www.chicagotribune.com/arcio/rss/category/nation-world/` corresponds to `/chicagotribune/nation-world`.
-</Route>
-
-## ChinaFile {#chinafile}
+## CNBC {#cnbc}
-### Reporting & Opinion {#chinafile-reporting-opinion}
+### Full article RSS {#cnbc-full-article-rss}
-<Route author="oppilate" example="/chinafile/all" path="/chinafile/:category?" paramsDesc={['Category, by default `all`']}>
- Generates full-text feeds that the official feed doesn't provide.
+<Route data={{"path":"/rss/:id?","categories":["traditional-media"],"example":"/cnbc/rss","parameters":{"id":"Channel ID, can be found in Official RSS URL, `100003114` (Top News) by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cnbc.com/id/:id/device/rss/rss.html"],"target":"/rss/:id"},"name":"Full article RSS","maintainers":["TonyRL"],"description":"Provides a better reading experience (full articles) over the official ones.\n\n Support all channels, refer to [CNBC RSS feeds](https://www.cnbc.com/rss-feeds/).","location":"rss.ts"}} />
- | All | The China NGO Project |
- | --- | --------------------- |
- | all | ngo |
-</Route>
+Provides a better reading experience (full articles) over the official ones.
-## CNBC {#cnbc}
+Support all channels, refer to [CNBC RSS feeds](https://www.cnbc.com/rss-feeds/).
-### Full article RSS {#cnbc-full-article-rss}
+## Corona Virus Disease 2019 {#corona-virus-disease-2019}
-<Route author="TonyRL" example="/cnbc/rss" path="/cnbc/rss/:id?" paramsDesc={['Channel ID, can be found in Official RSS URL, `100003114` (Top News) by default']}>
- Provides a better reading experience (full articles) over the official ones.
+### News {#corona-virus-disease-2019-news}
- Support all channels, refer to [CNBC RSS feeds](https://www.cnbc.com/rss-feeds/).
-</Route>
+<Route data={{"path":"/:category_id","categories":["traditional-media"],"example":"/scmp/3","parameters":{"category_id":"Category"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scmp.com/rss/:category_id/feed"]},"name":"News","maintainers":["proletarius101"],"description":"See the [official RSS page](https://www.scmp.com/rss) to get the ID of each category. This route provides fulltext that the offical feed doesn't.","location":"index.ts"}} />
-## Deutsche Welle {#deutsche-welle}
+See the [official RSS page](https://www.scmp.com/rss) to get the ID of each category. This route provides fulltext that the offical feed doesn't.
-### News {#deutsche-welle-news}
+### Topics {#corona-virus-disease-2019-topics}
-<Route author="nczitzk" example="/dw/en" path="/dw/:lang?/:caty?" paramsDesc={['Language, can be found in the URL of the corresponding language version page, German by default', 'Category, all by default']}>
- | All | German Press | Culture | Economy | Science & Nature |
- | --- | ------------ | ------- | ------- | ---------------- |
- | all | press | cul | eco | sci |
-</Route>
+<Route data={{"path":"/topics/:topic","categories":["traditional-media"],"example":"/scmp/topics/coronavirus-pandemic-all-stories","parameters":{"topic":"Topic, can be found in URL"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scmp.com/topics/:topic"]},"name":"Topics","maintainers":["TonyRL"],"location":"topic.ts"}} />
## DNA India {#dna-india}
### News {#dna-india-news}
-<Route author="Rjnishant530" example="/dnaindia/headlines" path="/dnaindia/:category" paramsDesc={['Find it in the URL, or tables below']} radar="1">
- Categories:
+<Route data={{"path":["/:category","/topic/:topic"],"categories":["traditional-media"],"example":"/dnaindia/headlines","parameters":{"category":"Find it in the URL, or tables below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dnaindia.com/:category"]},"name":"News","maintainers":["Rjnishant530"],"description":"Categories:\n\n | Headlines | Explainer | India | Entertainment | Sports | Viral | Lifestyle | Education | Business | World |\n | --------- | --------- | ----- | ------------- | ------ | ----- | --------- | --------- | -------- | ----- |\n | headlines | explainer | india | entertainment | sports | viral | lifestyle | education | business | world |","location":"category.ts"}} />
- | Headlines | Explainer | India | Entertainment | Sports | Viral | Lifestyle | Education | Business | World |
- | --------- | --------- | ----- | ------------- | ------ | ----- | --------- | --------- | -------- | ----- |
- | headlines | explainer | india | entertainment | sports | viral | lifestyle | education | business | world |
-</Route>
+Categories:
-### Topic {#dna-india-topic}
+| Headlines | Explainer | India | Entertainment | Sports | Viral | Lifestyle | Education | Business | World |
+| --------- | --------- | ----- | ------------- | ------ | ----- | --------- | --------- | -------- | ----- |
+| headlines | explainer | india | entertainment | sports | viral | lifestyle | education | business | world |
-<Route author="Rjnishant530" example="/dnaindia/topic/dna-verified" path="/dnaindia/topic/:topic" paramsDesc={['Find it in the URL']} radar="1">
- Topics:
+### News {#dna-india-news}
+
+<Route data={{"path":["/:category","/topic/:topic"],"categories":["traditional-media"],"example":"/dnaindia/headlines","parameters":{"category":"Find it in the URL, or tables below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dnaindia.com/:category"]},"name":"News","maintainers":["Rjnishant530"],"description":"Categories:\n\n | Headlines | Explainer | India | Entertainment | Sports | Viral | Lifestyle | Education | Business | World |\n | --------- | --------- | ----- | ------------- | ------ | ----- | --------- | --------- | -------- | ----- |\n | headlines | explainer | india | entertainment | sports | viral | lifestyle | education | business | world |","location":"category.ts"}} />
- | DNA verified |
- | ------------ |
- | dna-verified |
+Categories:
- :::tip[Topic]
- The URL of the form `https://www.dnaindia.com/topic/dna-verified` demonstrates the utilization of the subdomain `topic`
- :::
-</Route>
+| Headlines | Explainer | India | Entertainment | Sports | Viral | Lifestyle | Education | Business | World |
+| --------- | --------- | ----- | ------------- | ------ | ----- | --------- | --------- | -------- | ----- |
+| headlines | explainer | india | entertainment | sports | viral | lifestyle | education | business | world |
## Ekantipur / कान्तिपुर (Nepal) {#ekantipur-%E0%A4%95%E0%A4%BE%E0%A4%A8%E0%A5%8D%E0%A4%A4%E0%A4%BF%E0%A4%AA%E0%A5%81%E0%A4%B0-nepal}
### Full Article RSS {#ekantipur-%E0%A4%95%E0%A4%BE%E0%A4%A8%E0%A5%8D%E0%A4%A4%E0%A4%BF%E0%A4%AA%E0%A5%81%E0%A4%B0-nepal-full-article-rss}
-<Route author="maniche04" example="/ekantipur/news" path="/ekantipur/:channel?" paramsDesc={['Find it in the ekantipur.com menu or pick from the list below:']} radar="1">
- Channels:
+<Route data={{"path":"/:channel?","categories":["traditional-media"],"example":"/ekantipur/news","parameters":{"channel":"Find it in the ekantipur.com menu or pick from the list below:"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ekantipur.com/:channel"],"target":"/:channel"},"name":"Full Article RSS","maintainers":["maniche04"],"description":"Channels:\n\n | समाचार | अर्थ / वाणिज्य | विचार | खेलकुद | उपत्यका | मनोरञ्जन | फोटोफिचर | फिचर | विश्व | ब्लग |\n | ---- | -------- | ------- | ------ | -------- | ------------- | -------------- | ------- | ----- | ---- |\n | news | business | opinion | sports | national | entertainment | photo_feature | feature | world | blog |","location":"issue.ts"}} />
+
+Channels:
- | समाचार | अर्थ / वाणिज्य | विचार | खेलकुद | उपत्यका | मनोरञ्जन | फोटोफिचर | फिचर | विश्व | ब्लग |
- | ---- | -------- | ------- | ------ | -------- | ------------- | -------------- | ------- | ----- | ---- |
- | news | business | opinion | sports | national | entertainment | photo\_feature | feature | world | blog |
-</Route>
+| समाचार | अर्थ / वाणिज्य | विचार | खेलकुद | उपत्यका | मनोरञ्जन | फोटोफिचर | फिचर | विश्व | ब्लग |
+| ---- | -------- | ------- | ------ | -------- | ------------- | -------------- | ------- | ----- | ---- |
+| news | business | opinion | sports | national | entertainment | photo\_feature | feature | world | blog |
## Financial Times {#financial-times}
-### FT 中文网 {#financial-times-ft-zhong-wen-wang}
+### myFT personal RSS {#financial-times-myft-personal-rss}
-<Route author="HenryQW xyqfer" example="/ft/chinese/hotstoryby7day" path="/ft/:language/:channel?" paramsDesc={['语言,简体`chinese`,繁体`traditional`', '频道,缺省为每日更新']}>
- :::tip
- - 不支持付费文章。
- :::
+<Route data={{"path":"/myft/:key","categories":["traditional-media"],"example":"/ft/myft/rss-key","parameters":{"key":"the last part of myFT personal RSS address"},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"myFT personal RSS","maintainers":["HenryQW"],"description":":::tip\n - Visit ft.com -> myFT -> Contact Preferences to enable personal RSS feed, see [help.ft.com](https://help.ft.com/faq/email-alerts-and-contact-preferences/what-is-myft-rss-feed/)\n - Obtain the key from the personal RSS address, it looks like `12345678-abcd-4036-82db-vdv20db024b8`\n :::","location":"myft.ts"}} />
- 通过提取文章全文,以提供比官方源更佳的阅读体验。
+:::tip
+- Visit ft.com -> myFT -> Contact Preferences to enable personal RSS feed, see [help.ft.com](https://help.ft.com/faq/email-alerts-and-contact-preferences/what-is-myft-rss-feed/)
+- Obtain the key from the personal RSS address, it looks like `12345678-abcd-4036-82db-vdv20db024b8`
+:::
- 支持所有频道,频道名称见 [官方频道 RSS](http://www.ftchinese.com/channel/rss.html).
+### FT 中文网 {#financial-times-ft-zhong-wen-wang}
- - 频道为单一路径,如 `http://www.ftchinese.com/rss/news` 则为 `/ft/chinese/news`.
- - 频道包含多重路径,如 `http://www.ftchinese.com/rss/column/007000002` 则替换 `/` 为 `-` `/ft/chinese/column-007000002`.
-</Route>
+<Route data={{"path":"/:language/:channel?","categories":["traditional-media"],"example":"/ft/chinese/hotstoryby7day","parameters":{"language":"语言,简体`chinese`,繁体`traditional`","channel":"频道,缺省为每日更新"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"FT 中文网","maintainers":["HenryQW","xyqfer"],"description":":::tip\n - 不支持付费文章。\n :::\n\n 通过提取文章全文,以提供比官方源更佳的阅读体验。\n\n 支持所有频道,频道名称见 [官方频道 RSS](http://www.ftchinese.com/channel/rss.html).\n\n - 频道为单一路径,如 `http://www.ftchinese.com/rss/news` 则为 `/ft/chinese/news`.\n - 频道包含多重路径,如 `http://www.ftchinese.com/rss/column/007000002` 则替换 `/` 为 `-` `/ft/chinese/column-007000002`.","location":"channel.ts"}} />
-### myFT personal RSS {#financial-times-myft-personal-rss}
+:::tip
+- 不支持付费文章。
+:::
-<Route author="HenryQW" example="/ft/myft/rss-key" path="/ft/myft/:key" paramsDesc={['the last part of myFT personal RSS address']} configRequired="1">
- :::tip
- - Visit ft.com -> myFT -> Contact Preferences to enable personal RSS feed, see [help.ft.com](https://help.ft.com/faq/email-alerts-and-contact-preferences/what-is-myft-rss-feed/)
- - Obtain the key from the personal RSS address, it looks like `12345678-abcd-4036-82db-vdv20db024b8`
- :::
-</Route>
+通过提取文章全文,以提供比官方源更佳的阅读体验。
+
+支持所有频道,频道名称见 [官方频道 RSS](http://www.ftchinese.com/channel/rss.html).
+
+- 频道为单一路径,如 `http://www.ftchinese.com/rss/news` 则为 `/ft/chinese/news`.
+- 频道包含多重路径,如 `http://www.ftchinese.com/rss/column/007000002` 则替换 `/` 为 `-` `/ft/chinese/column-007000002`.
## Korean Central News Agency (KCNA) 朝鲜中央通讯社 {#korean-central-news-agency-kcna-chao-xian-zhong-yang-tong-xun-she}
### News {#korean-central-news-agency-kcna-chao-xian-zhong-yang-tong-xun-she-news}
-<Route author="Rongronggg9" example="/kcna/en" path="/kcna/:lang/:category?" paramsDesc={['Language, refer to the table below', 'Category, refer to the table below']} anticrawler="1" radar="1">
- | Language | 조선어 | English | 中国语 | Русский | Español | 日本語 |
- | -------- | ------ | ------- | ------ | ------- | ------- | ------ |
- | `:lang` | `kp` | `en` | `cn` | `ru` | `es` | `jp` |
-
- | Category | `:category` |
- | ---------------------------------------------------------------- | ---------------------------------- |
- | WPK General Secretary **Kim Jong Un**'s Revolutionary Activities | `54c0ca4ca013a92cc9cf95bd4004c61a` |
- | Latest News (default) | `1ee9bdb7186944f765208f34ecfb5407` |
- | Top News | `5394b80bdae203fadef02522cfb578c0` |
- | Home News | `b2b3bcc1b0a4406ab0c36e45d5db58db` |
- | Documents | `a8754921399857ebdbb97a98a1e741f5` |
- | World | `593143484cf15d48ce85c26139582395` |
- | Society-Life | `93102e5a735d03979bc58a3a7aefb75a` |
- | External | `0f98b4623a3ef82aeea78df45c423fd0` |
- | News Commentary | `12c03a49f7dbe829bceea8ac77088c21` |
-</Route>
+<Route data={{"path":"/:lang/:category?","categories":["traditional-media"],"example":"/kcna/en","parameters":{"lang":"Language, refer to the table below","category":"Category, refer to the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.kcna.kp/:lang","www.kcna.kp/:lang/category/articles/q/1ee9bdb7186944f765208f34ecfb5407.kcmsf","www.kcna.kp/:lang/category/articles.kcmsf"],"target":"/:lang"},"name":"News","maintainers":["Rongronggg9"],"description":"| Language | 조선어 | English | 中国语 | Русский | Español | 日本語 |\n | -------- | ------ | ------- | ------ | ------- | ------- | ------ |\n | `:lang` | `kp` | `en` | `cn` | `ru` | `es` | `jp` |\n\n | Category | `:category` |\n | ---------------------------------------------------------------- | ---------------------------------- |\n | WPK General Secretary **Kim Jong Un**'s Revolutionary Activities | `54c0ca4ca013a92cc9cf95bd4004c61a` |\n | Latest News (default) | `1ee9bdb7186944f765208f34ecfb5407` |\n | Top News | `5394b80bdae203fadef02522cfb578c0` |\n | Home News | `b2b3bcc1b0a4406ab0c36e45d5db58db` |\n | Documents | `a8754921399857ebdbb97a98a1e741f5` |\n | World | `593143484cf15d48ce85c26139582395` |\n | Society-Life | `93102e5a735d03979bc58a3a7aefb75a` |\n | External | `0f98b4623a3ef82aeea78df45c423fd0` |\n | News Commentary | `12c03a49f7dbe829bceea8ac77088c21` |","location":"news.ts"}} />
+
+| Language | 조선어 | English | 中国语 | Русский | Español | 日本語 |
+| -------- | ------ | ------- | ------ | ------- | ------- | ------ |
+| `:lang` | `kp` | `en` | `cn` | `ru` | `es` | `jp` |
+
+| Category | `:category` |
+| ---------------------------------------------------------------- | ---------------------------------- |
+| WPK General Secretary **Kim Jong Un**'s Revolutionary Activities | `54c0ca4ca013a92cc9cf95bd4004c61a` |
+| Latest News (default) | `1ee9bdb7186944f765208f34ecfb5407` |
+| Top News | `5394b80bdae203fadef02522cfb578c0` |
+| Home News | `b2b3bcc1b0a4406ab0c36e45d5db58db` |
+| Documents | `a8754921399857ebdbb97a98a1e741f5` |
+| World | `593143484cf15d48ce85c26139582395` |
+| Society-Life | `93102e5a735d03979bc58a3a7aefb75a` |
+| External | `0f98b4623a3ef82aeea78df45c423fd0` |
+| News Commentary | `12c03a49f7dbe829bceea8ac77088c21` |
## La Jornada {#la-jornada}
### News {#la-jornada-news}
-<Route author="Thealf154" example="/jornada/2022-10-12/capital" path="/jornada/:date?/:category?" paramsDesc={['Date string, must be in format of `YYYY-MM-DD`. You can get today\'s news using `today`', 'Category, refer to the table below']} radar="1">
- Provides a way to get an specific rss feed by date and category over the official one.
-
- | Category | `:category` |
- | -------------------- | ----------- |
- | Capital | capital |
- | Cartones | cartones |
- | Ciencia y Tecnología | ciencia |
- | Cultura | cultura |
- | Deportes | deportes |
- | Economía | economia |
- | Estados | estados |
- | Mundo | mundo |
- | Opinión | opinion |
- | Política | politica |
- | Sociedad | sociedad |
-</Route>
-
-## Ming Pao 明报 {#ming-pao-ming-bao}
-
-### 即时新闻 {#ming-pao-ming-bao-ji-shi-xin-wen}
-
-<Route author="TonyRL" example="/mingpao/ins/all" path="/mingpao/ins/:category?" paramsDesc={['频道,预设为总目录']}>
- | category | 即时新闻频道 |
- | -------- | ------------ |
- | all | 总目录 |
- | s00001 | 港闻 |
- | s00002 | 经济 |
- | s00003 | 地产 |
- | s00004 | 两岸 |
- | s00005 | 国际 |
- | s00006 | 体育 |
- | s00007 | 娱乐 |
- | s00022 | 文摘 |
- | s00024 | 热点 |
-</Route>
-
-### Ming Pao Daily 每日明报 {#ming-pao-ming-bao-ming-pao-daily-mei-ri-ming-bao}
-
-<Route author="TonyRL" example="/mingpao/pns/s00017" path="/mingpao/pns/:category?" paramsDesc={['channel,default to brief']} />
+<Route data={{"path":"/:date?/:category?","categories":["traditional-media"],"example":"/jornada/2022-10-12/capital","parameters":{"date":"Date string, must be in format of `YYYY-MM-DD`. You can get today's news using `today`","category":"Category, refer to the table below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["Thealf154"],"description":"Provides a way to get an specific rss feed by date and category over the official one.\n\n | Category | `:category` |\n | -------------------- | ----------- |\n | Capital | capital |\n | Cartones | cartones |\n | Ciencia y Tecnología | ciencia |\n | Cultura | cultura |\n | Deportes | deportes |\n | Economía | economia |\n | Estados | estados |\n | Mundo | mundo |\n | Opinión | opinion |\n | Política | politica |\n | Sociedad | sociedad |","location":"index.ts"}} />
-:::tip
-Only `s00017` is in English.
-:::
+Provides a way to get an specific rss feed by date and category over the official one.
-| category | Channel |
-| -------- | ------------- |
-| s00001 | Brief |
-| s00002 | Local |
-| s00003 | Editorial |
-| s00004 | Economy |
-| s00005 | Supplement |
-| s00011 | Education |
-| s00012 | Views |
-| s00013 | China |
-| s00014 | International |
-| s00015 | Sports |
-| s00016 | Entertainment |
-| s00017 | English |
-| s00018 | Columnist |
+| Category | `:category` |
+| -------------------- | ----------- |
+| Capital | capital |
+| Cartones | cartones |
+| Ciencia y Tecnología | ciencia |
+| Cultura | cultura |
+| Deportes | deportes |
+| Economía | economia |
+| Estados | estados |
+| Mundo | mundo |
+| Opinión | opinion |
+| Política | politica |
+| Sociedad | sociedad |
## National Public Radio {#national-public-radio}
### News {#national-public-radio-news}
-<Route author="bennyyip" example="/npr/1001" path="/npr/:endpoint?" paramsDesc={['Channel ID, can be found in Official RSS URL, `1001` by default']}>
- Provide full article RSS for CBC topics.
-</Route>
+<Route data={{"path":"/:endpoint?","categories":["traditional-media"],"example":"/npr/1001","parameters":{"endpoint":"Channel ID, can be found in Official RSS URL, `1001` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["bennyyip"],"description":"Provide full article RSS for CBC topics.","location":"full.ts"}} />
+
+Provide full article RSS for CBC topics.
## NHK {#nhk}
### News Web Easy {#nhk-news-web-easy}
-<Route author="Andiedie" example="/nhk/news_web_easy" path="/nhk/news_web_easy" />
+<Route data={{"path":"/news_web_easy","categories":["traditional-media"],"example":"/nhk/news_web_easy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www3.nhk.or.jp/news/easy/","www3.nhk.or.jp/"]},"name":"News Web Easy","maintainers":["Andiedie"],"url":"www3.nhk.or.jp/news/easy/","location":"news-web-easy.ts"}} />
### WORLD-JAPAN - Top Stories {#nhk-world-japan-top-stories}
-<Route author="TonyRL" example="/nhk/news/en" path="/nhk/news/:lang?" paramsDesc={['Language, see below, `en` by default']} radar="1" notOperational="1">
- | العربية | বাংলা | မြန်မာဘာသာစကား | 中文(简体) | 中文(繁體) | English | Français |
- | ------- | -- | ------------ | ------------ | ------------ | ------- | -------- |
- | ar | bn | my | zh | zt | en | fr |
+<Route data={{"path":"/news/:lang?","categories":["traditional-media"],"example":"/nhk/news/en","parameters":{"lang":"Language, see below, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www3.nhk.or.jp/nhkworld/:lang/news/list/","www3.nhk.or.jp/nhkworld/:lang/news/"],"target":"/news/:lang"},"name":"WORLD-JAPAN - Top Stories","maintainers":["TonyRL"],"description":"| العربية | বাংলা | မြန်မာဘာသာစကား | 中文(简体) | 中文(繁體) | English | Français |\n | ------- | -- | ------------ | ------------ | ------------ | ------- | -------- |\n | ar | bn | my | zh | zt | en | fr |\n\n | हिन्दी | Bahasa Indonesia | 코리언 | فارسی | Português | Русский | Español |\n | -- | ---------------- | ------ | ----- | --------- | ------- | ------- |\n | hi | id | ko | fa | pt | ru | es |\n\n | Kiswahili | ภาษาไทย | Türkçe | Українська | اردو | Tiếng Việt |\n | --------- | ------- | ------ | ---------- | ---- | ---------- |\n | sw | th | tr | uk | ur | vi |","location":"news.ts"}} />
+
+| العربية | বাংলা | မြန်မာဘာသာစကား | 中文(简体) | 中文(繁體) | English | Français |
+| ------- | -- | ------------ | ------------ | ------------ | ------- | -------- |
+| ar | bn | my | zh | zt | en | fr |
- | हिन्दी | Bahasa Indonesia | 코리언 | فارسی | Português | Русский | Español |
- | -- | ---------------- | ------ | ----- | --------- | ------- | ------- |
- | hi | id | ko | fa | pt | ru | es |
+| हिन्दी | Bahasa Indonesia | 코리언 | فارسی | Português | Русский | Español |
+| -- | ---------------- | ------ | ----- | --------- | ------- | ------- |
+| hi | id | ko | fa | pt | ru | es |
- | Kiswahili | ภาษาไทย | Türkçe | Українська | اردو | Tiếng Việt |
- | --------- | ------- | ------ | ---------- | ---- | ---------- |
- | sw | th | tr | uk | ur | vi |
-</Route>
+| Kiswahili | ภาษาไทย | Türkçe | Українська | اردو | Tiếng Việt |
+| --------- | ------- | ------ | ---------- | ---- | ---------- |
+| sw | th | tr | uk | ur | vi |
## Now 新聞 {#now-xin-wen}
### 新聞 {#now-xin-wen-xin-wen}
-<Route author="nczitzk" example="/now/news" path="/now/news/:category?/:id?" paramsDesc={['分类,见下表,默认为首页', '编号,可在对应专题/节目页 URL 中找到 topicId']}>
- :::tip
- **编号** 仅对事件追蹤、評論節目、新聞專題三个分类起作用,例子如下:
-
- 对于 [事件追蹤](https://news.now.com/home/tracker) 中的 [塔利班奪權](https://news.now.com/home/tracker/detail?catCode=123\&topicId=1056) 话题,其网址为 `https://news.now.com/home/tracker/detail?catCode=123&topicId=1056`,其中 `topicId` 为 1056,则对应路由为 [`/now/news/tracker/1056`](https://rsshub.app/now/news/tracker/1056)
- :::
-
- | 首頁 | 港聞 | 兩岸國際 | 娛樂 |
- | ---- | ----- | ------------- | ------------- |
- | | local | international | entertainment |
-
- | 生活 | 科技 | 財經 | 體育 |
- | ---- | ---------- | ------- | ------ |
- | life | technology | finance | sports |
-
- | 事件追蹤 | 評論節目 | 新聞專題 |
- | -------- | -------- | -------- |
- | tracker | feature | opinion |
-</Route>
+<Route data={{"path":"/news/:category?/:id?","categories":["traditional-media"],"example":"/now/news","parameters":{"category":"分类,见下表,默认为首页","id":"编号,可在对应专题/节目页 URL 中找到 topicId"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.now.com/"]},"name":"新聞","maintainers":["nczitzk"],"url":"news.now.com/","description":":::tip\n **编号** 仅对事件追蹤、評論節目、新聞專題三个分类起作用,例子如下:\n\n 对于 [事件追蹤](https://news.now.com/home/tracker) 中的 [塔利班奪權](https://news.now.com/home/tracker/detail?catCode=123&topicId=1056) 话题,其网址为 `https://news.now.com/home/tracker/detail?catCode=123&topicId=1056`,其中 `topicId` 为 1056,则对应路由为 [`/now/news/tracker/1056`](https://rsshub.app/now/news/tracker/1056)\n :::\n\n | 首頁 | 港聞 | 兩岸國際 | 娛樂 |\n | ---- | ----- | ------------- | ------------- |\n | | local | international | entertainment |\n\n | 生活 | 科技 | 財經 | 體育 |\n | ---- | ---------- | ------- | ------ |\n | life | technology | finance | sports |\n\n | 事件追蹤 | 評論節目 | 新聞專題 |\n | -------- | -------- | -------- |\n | tracker | feature | opinion |","location":"news.ts"}} />
-### 熱門 {#now-xin-wen-re-men}
-
-<Route author="nczitzk" example="/now/news/rank" path="/now/news/rank" />
+:::tip
+**编号** 仅对事件追蹤、評論節目、新聞專題三个分类起作用,例子如下:
-## Radio France Internationale 法国国际广播电台 {#radio-france-internationale-fa-guo-guo-ji-guang-bo-dian-tai}
+对于 [事件追蹤](https://news.now.com/home/tracker) 中的 [塔利班奪權](https://news.now.com/home/tracker/detail?catCode=123\&topicId=1056) 话题,其网址为 `https://news.now.com/home/tracker/detail?catCode=123&topicId=1056`,其中 `topicId` 为 1056,则对应路由为 [`/now/news/tracker/1056`](https://rsshub.app/now/news/tracker/1056)
+:::
-### Generic News {#radio-france-internationale-fa-guo-guo-ji-guang-bo-dian-tai-generic-news}
+| 首頁 | 港聞 | 兩岸國際 | 娛樂 |
+| ---- | ----- | ------------- | ------------- |
+| | local | international | entertainment |
-<Route author="nczitzk" example="/rfi" path="/rfi/:path*" paramsDesc={['URL path, can be obtained from the URL of the corresponding page, `en` by default']} radar="1">
- :::tip
- - To subscribe to [English News](https://www.rfi.fr/en/), whose URL is `https://www.rfi.fr/en`, you can get the route as [`/rfi/en`](https://rsshub.app/rfi/en).
- - To subscribe to [English Europe News](https://www.rfi.fr/en/europe/), whose URL is `https://www.rfi.fr/en/europe`, you can get the route as [`/rfi/en/europe`](https://rsshub.app/rfi/en/europe).
- - To subscribe to topic [Paris Olympics 2024](https://www.rfi.fr/en/tag/paris-olympics-2024/), whose URL is `https://www.rfi.fr/en/tag/paris-olympics-2024`, you can get the route as [`/rfi/en/tag/paris-olympics-2024`](https://rsshub.app/rfi/en/tag/paris-olympics-2024).
- :::
+| 生活 | 科技 | 財經 | 體育 |
+| ---- | ---------- | ------- | ------ |
+| life | technology | finance | sports |
- :::warning
- This route does not support podcasts, please use the Offical RSS feed instead.
- :::
-</Route>
+| 事件追蹤 | 評論節目 | 新聞專題 |
+| -------- | -------- | -------- |
+| tracker | feature | opinion |
## Radio Free Asia (RFA) 自由亚洲电台 {#radio-free-asia-rfa-zi-you-ya-zhou-dian-tai}
### News {#radio-free-asia-rfa-zi-you-ya-zhou-dian-tai-news}
-<Route author="zphw" example="/rfa/english" path="/rfa/:language?/:channel?/:subChannel?" paramsDesc={['language, English by default', 'channel', 'subchannel, where applicable']} />
+<Route data={{"path":"/:language?/:channel?/:subChannel?","categories":["traditional-media"],"example":"/rfa/english","parameters":{"language":"language, English by default","channel":"channel","subChannel":"subchannel, where applicable"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["zphw"],"description":"Delivers a better experience by supporting parameter specification.\n\nParameters can be obtained from the official website, for instance:\n\n`https://www.rfa.org/cantonese/news` corresponds to `/rfa/cantonese/news`\n\n`https://www.rfa.org/cantonese/news/htm` corresponds to `/rfa/cantonese/news/htm`","location":"index.ts"}} />
Delivers a better experience by supporting parameter specification.
@@ -398,246 +220,176 @@ You can use `sophi=true` query parameter to invoke the **experimental** method,
### Category/Topic/Author {#reuters-lu-tou-she-category-topic-author}
-<Route author="HenryQW proletarius101 LyleLee nczitzk" example="/reuters/world/us" path="/reuters/:category/:topic?" paramsDesc={['find it in the URL, or tables below', 'find it in the URL, or tables below']}>
- - `:category`:
+<Route data={{"path":"/:category/:topic?","categories":["traditional-media"],"example":"/reuters/world/us","parameters":{"category":"find it in the URL, or tables below","topic":"find it in the URL, or tables below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["reuters.com/:category/:topic?","reuters.com/"]},"name":"Category/Topic/Author","maintainers":["LyleLee","HenryQW","proletarius101","black-desk","nczitzk"],"description":"- `:category`:\n\n | World | Business | Legal | Markets | Breakingviews | Technology | Graphics |\n | ----- | -------- | ----- | ------- | ------------- | ---------- | -------- |\n | world | business | legal | markets | breakingviews | technology | graphics |\n\n - `world/:topic`:\n\n | All | Africa | Americas | Asia Pacific | China | Europe | India | Middle East | United Kingdom | United States | The Great Reboot | Reuters Next |\n | --- | ------ | -------- | ------------ | ----- | ------ | ----- | ----------- | -------------- | ------------- | ---------------- | ------------ |\n | | africa | americas | asia-pacific | china | europe | india | middle-east | uk | us | the-great-reboot | reuters-next |\n\n - `business/:topic`:\n\n | All | Aerospace & Defense | Autos & Transportation | Energy | Environment | Finance | Healthcare & Pharmaceuticals | Media & Telecom | Retail & Consumer | Sustainable Business | Charged | Future of Health | Future of Money | Take Five | Reuters Impact |\n | --- | ------------------- | ---------------------- | ------ | ----------- | ------- | ---------------------------- | --------------- | ----------------- | -------------------- | ------- | ---------------- | --------------- | --------- | -------------- |\n | | aerospace-defense | autos-transportation | energy | environment | finance | healthcare-pharmaceuticals | media-telecom | retail-consumer | sustainable-business | charged | future-of-health | future-of-money | take-five | reuters-impact |\n\n - `legal/:topic`:\n\n | All | Government | Legal Industry | Litigation | Transactional |\n | --- | ---------- | -------------- | ---------- | ------------- |\n | | government | legalindustry | litigation | transactional |\n\n - `authors/:topic`:\n\n | Default | Jonathan Landay | any other authors |\n | ------- | --------------- | ----------------- |\n | reuters | jonathan-landay | their name in URL |\n\n More could be found in the URL of the category/topic page.","location":"common.ts"}} />
- | World | Business | Legal | Markets | Breakingviews | Technology | Graphics |
- | ----- | -------- | ----- | ------- | ------------- | ---------- | -------- |
- | world | business | legal | markets | breakingviews | technology | graphics |
+- `:category`:
- - `world/:topic`:
+ | World | Business | Legal | Markets | Breakingviews | Technology | Graphics |
+ | ----- | -------- | ----- | ------- | ------------- | ---------- | -------- |
+ | world | business | legal | markets | breakingviews | technology | graphics |
- | All | Africa | Americas | Asia Pacific | China | Europe | India | Middle East | United Kingdom | United States | The Great Reboot | Reuters Next |
- | --- | ------ | -------- | ------------ | ----- | ------ | ----- | ----------- | -------------- | ------------- | ---------------- | ------------ |
- | | africa | americas | asia-pacific | china | europe | india | middle-east | uk | us | the-great-reboot | reuters-next |
+- `world/:topic`:
- - `business/:topic`:
+ | All | Africa | Americas | Asia Pacific | China | Europe | India | Middle East | United Kingdom | United States | The Great Reboot | Reuters Next |
+ | --- | ------ | -------- | ------------ | ----- | ------ | ----- | ----------- | -------------- | ------------- | ---------------- | ------------ |
+ | | africa | americas | asia-pacific | china | europe | india | middle-east | uk | us | the-great-reboot | reuters-next |
- | All | Aerospace & Defense | Autos & Transportation | Energy | Environment | Finance | Healthcare & Pharmaceuticals | Media & Telecom | Retail & Consumer | Sustainable Business | Charged | Future of Health | Future of Money | Take Five | Reuters Impact |
- | --- | ------------------- | ---------------------- | ------ | ----------- | ------- | ---------------------------- | --------------- | ----------------- | -------------------- | ------- | ---------------- | --------------- | --------- | -------------- |
- | | aerospace-defense | autos-transportation | energy | environment | finance | healthcare-pharmaceuticals | media-telecom | retail-consumer | sustainable-business | charged | future-of-health | future-of-money | take-five | reuters-impact |
+- `business/:topic`:
- - `legal/:topic`:
+ | All | Aerospace & Defense | Autos & Transportation | Energy | Environment | Finance | Healthcare & Pharmaceuticals | Media & Telecom | Retail & Consumer | Sustainable Business | Charged | Future of Health | Future of Money | Take Five | Reuters Impact |
+ | --- | ------------------- | ---------------------- | ------ | ----------- | ------- | ---------------------------- | --------------- | ----------------- | -------------------- | ------- | ---------------- | --------------- | --------- | -------------- |
+ | | aerospace-defense | autos-transportation | energy | environment | finance | healthcare-pharmaceuticals | media-telecom | retail-consumer | sustainable-business | charged | future-of-health | future-of-money | take-five | reuters-impact |
- | All | Government | Legal Industry | Litigation | Transactional |
- | --- | ---------- | -------------- | ---------- | ------------- |
- | | government | legalindustry | litigation | transactional |
+- `legal/:topic`:
- - `authors/:topic`:
+ | All | Government | Legal Industry | Litigation | Transactional |
+ | --- | ---------- | -------------- | ---------- | ------------- |
+ | | government | legalindustry | litigation | transactional |
- | Default | Jonathan Landay | any other authors |
- | ------- | --------------- | ----------------- |
- | reuters | jonathan-landay | their name in URL |
+- `authors/:topic`:
- More could be found in the URL of the category/topic page.
-</Route>
+ | Default | Jonathan Landay | any other authors |
+ | ------- | --------------- | ----------------- |
+ | reuters | jonathan-landay | their name in URL |
+
+More could be found in the URL of the category/topic page.
### Inverstigates {#reuters-lu-tou-she-inverstigates}
-<Route author="LyleLee" example="/reuters/investigates" path="/reuters/investigates" />
+<Route data={{"path":"/investigates","categories":["traditional-media"],"example":"/reuters/investigates","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Inverstigates","maintainers":["LyleLee"],"location":"investigates.ts"}} />
## Rodong Sinmun 劳动新闻 {#rodong-sinmun-lao-dong-xin-wen}
### News {#rodong-sinmun-lao-dong-xin-wen-news}
-<Route author="TonyRL" example="/rodong/news" path="/rodong/news/:language?" paramsDesc={['Language, see below, `ko` by default']} radar="1">
- | 조선어 | English | 中文 |
- | ------ | ------- | ---- |
- | ko | en | cn |
-</Route>
-
-## RTHK 香港電台 {#rthk-xiang-gang-dian-tai}
+<Route data={{"path":"/news/:language?","categories":["traditional-media"],"example":"/rodong/news","parameters":{"language":"Language, see below, `ko` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rodong.rep.kp/cn/index.php","rodong.rep.kp/en/index.php","rodong.rep.kp/ko/index.php","rodong.rep.kp/cn","rodong.rep.kp/en","rodong.rep.kp/ko"],"target":"/news"},"name":"News","maintainers":["TonyRL"],"url":"rodong.rep.kp/cn/index.php","description":"| 조선어 | English | 中文 |\n | ------ | ------- | ---- |\n | ko | en | cn |","location":"news.ts"}} />
-### News {#rthk-xiang-gang-dian-tai-news}
-
-RTHK offical provides full text RSS, check the offical website for detail information: [https://news.rthk.hk/rthk/en/rss.htm](https://news.rthk.hk/rthk/en/rss.htm)
-
-This route adds the missing photo and Link element. (Offical RSS doesn't have Link element may cause issue on some RSS client)
-
-<Route author="KeiLongW" example="/rthk-news/hk/international" path="/rthk-news/:lang/:category" paramsDesc={['Language,Traditional Chinese`hk`,English`en`','Category']}>
- | local | greaterchina | international | finance | sport |
- | ---------- | ------------------ | ------------- | ------------ | ---------- |
- | Local News | Greater China News | World News | Finance News | Sport News |
-</Route>
-
-### 傳媒透視 {#rthk-xiang-gang-dian-tai-chuan-mei-tou-shi}
-
-<Route author="tpnonthealps" example="/mediadigest/latest" path="/mediadigest/:range" paramsDesc={['时间范围']}>
- 细则:
-
- - `:range` 时间范围参数
- (可为 `latest` 或 `四位数字的年份`)
-
- - `latest`: 最新的 50 篇文章
-
- - `2020`: 2020 年的所有文章
-
- - 全文输出转换为简体字: `?opencc=t2s`
- (`opencc` 是 RSSHub 的通用参数,详情请参阅 [「中文简繁体转换」](/parameter#中文简繁体转换))
-</Route>
+| 조선어 | English | 中文 |
+| ------ | ------- | ---- |
+| ko | en | cn |
## Russian News Agency TASS {#russian-news-agency-tass}
### News {#russian-news-agency-tass-news}
-<Route author="TonyRL" example="/tass/politics" path="/tass/:category?" paramsDesc={['Category, can be found in URL, `politics` by default']} radar="1">
- | Russian Politics & Diplomacy | World | Business & Economy | Military & Defense | Science & Space | Emergencies | Society & Culture | Press Review | Sports |
- | ---------------------------- | ----- | ------------------ | ------------------ | --------------- | ----------- | ----------------- | ------------ | ------ |
- | politics | world | economy | defense | science | emergencies | society | pressreview | sports |
-</Route>
+<Route data={{"path":"/:category?","categories":["traditional-media"],"example":"/tass/politics","parameters":{"category":"Category, can be found in URL, `politics` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tass.com/:category"],"target":"/:category"},"name":"News","maintainers":["TonyRL"],"description":"| Russian Politics & Diplomacy | World | Business & Economy | Military & Defense | Science & Space | Emergencies | Society & Culture | Press Review | Sports |\n | ---------------------------- | ----- | ------------------ | ------------------ | --------------- | ----------- | ----------------- | ------------ | ------ |\n | politics | world | economy | defense | science | emergencies | society | pressreview | sports |","location":"news.ts"}} />
+
+| Russian Politics & Diplomacy | World | Business & Economy | Military & Defense | Science & Space | Emergencies | Society & Culture | Press Review | Sports |
+| ---------------------------- | ----- | ------------------ | ------------------ | --------------- | ----------- | ----------------- | ------------ | ------ |
+| politics | world | economy | defense | science | emergencies | society | pressreview | sports |
## Solidot {#solidot}
### 最新消息 {#solidot-zui-xin-xiao-xi}
-<Route author="sgqy" example="/solidot/linux" path="/solidot/:type?" paramsDesc={['消息类型。默认为 www. 在网站上方选择后复制子域名即可']}>
- :::tip
- Solidot 提供的 feed:
-
- - [https://www.solidot.org/index.rss](https://www.solidot.org/index.rss)
- :::
+<Route data={{"path":"/:type?","categories":["traditional-media"],"example":"/solidot/linux","parameters":{"type":"消息类型。默认为 www. 在网站上方选择后复制子域名即可"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新消息","maintainers":["sgqy","hang333","TonyRL"],"description":":::tip\n Solidot 提供的 feed:\n\n - [https://www.solidot.org/index.rss](https://www.solidot.org/index.rss)\n :::\n\n | 全部 | 创业 | Linux | 科学 | 科技 | 移动 | 苹果 | 硬件 | 软件 | 安全 | 游戏 | 书籍 | ask | idle | 博客 | 云计算 | 奇客故事 |\n | ---- | ------- | ----- | ------- | ---------- | ------ | ----- | -------- | -------- | -------- | ----- | ----- | --- | ---- | ---- | ------ | -------- |\n | www | startup | linux | science | technology | mobile | apple | hardware | software | security | games | books | ask | idle | blog | cloud | story |","location":"main.ts"}} />
- | 全部 | 创业 | Linux | 科学 | 科技 | 移动 | 苹果 | 硬件 | 软件 | 安全 | 游戏 | 书籍 | ask | idle | 博客 | 云计算 | 奇客故事 |
- | ---- | ------- | ----- | ------- | ---------- | ------ | ----- | -------- | -------- | -------- | ----- | ----- | --- | ---- | ---- | ------ | -------- |
- | www | startup | linux | science | technology | mobile | apple | hardware | software | security | games | books | ask | idle | blog | cloud | story |
-</Route>
-
-## South China Morning Post 南华早报 {#south-china-morning-post-nan-hua-zao-bao}
-
-### News {#south-china-morning-post-nan-hua-zao-bao-news}
-
-<Route author="proletarius101" example="/scmp/3" path="/scmp/:category_id" paramsDesc={['Category']}>
- See the [official RSS page](https://www.scmp.com/rss) to get the ID of each category. This route provides fulltext that the offical feed doesn't.
-</Route>
+:::tip
+Solidot 提供的 feed:
-### Topics {#south-china-morning-post-nan-hua-zao-bao-topics}
+- [https://www.solidot.org/index.rss](https://www.solidot.org/index.rss)
+:::
-<Route author="TonyRL" example="/scmp/topics/coronavirus-pandemic-all-stories" path="/scmp/topics/:topic" paramsDesc={['Topic, can be found in URL']} radar="1" />
+| 全部 | 创业 | Linux | 科学 | 科技 | 移动 | 苹果 | 硬件 | 软件 | 安全 | 游戏 | 书籍 | ask | idle | 博客 | 云计算 | 奇客故事 |
+| ---- | ------- | ----- | ------- | ---------- | ------ | ----- | -------- | -------- | -------- | ----- | ----- | --- | ---- | ---- | ------ | -------- |
+| www | startup | linux | science | technology | mobile | apple | hardware | software | security | games | books | ask | idle | blog | cloud | story |
## Sputnik News 俄罗斯卫星通讯社 {#sputnik-news-e-luo-si-wei-xing-tong-xun-she}
### Category {#sputnik-news-e-luo-si-wei-xing-tong-xun-she-category}
-<Route author="nczitzk" example="/sputniknews" path="/sputniknews/:category?/:language?" paramsDesc={['Category, can be found in URL, `news` by default', 'Language, see below, English by default']}>
- Categories for International site:
-
- | WORLD | COVID-19 | BUSINESS | SPORT | TECH | OPINION |
- | ----- | -------- | -------- | ----- | ---- | ------- |
- | world | covid-19 | business | sport | tech | opinion |
-
- Categories for Chinese site:
-
- | 新闻 | 中国 | 俄罗斯 | 国际 | 俄中关系 | 评论 |
- | ---- | ----- | ------ | --------------- | ------------------------ | ------- |
- | news | china | russia | category\_guoji | russia\_china\_relations | opinion |
-
- Language
-
- | Language | Id |
- | ----------- | ----------- |
- | English | english |
- | Spanish | spanish |
- | German | german |
- | French | french |
- | Greek | greek |
- | Italian | italian |
- | Czech | czech |
- | Polish | polish |
- | Serbian | serbian |
- | Latvian | latvian |
- | Lithuanian | lithuanian |
- | Moldavian | moldavian |
- | Belarusian | belarusian |
- | Armenian | armenian |
- | Abkhaz | abkhaz |
- | Ssetian | ssetian |
- | Georgian | georgian |
- | Azerbaijani | azerbaijani |
- | Arabic | arabic |
- | Turkish | turkish |
- | Persian | persian |
- | Dari | dari |
- | Kazakh | kazakh |
- | Kyrgyz | kyrgyz |
- | Uzbek | uzbek |
- | Tajik | tajik |
- | Vietnamese | vietnamese |
- | Japanese | japanese |
- | Chinese | chinese |
- | Portuguese | portuguese |
-</Route>
+<Route data={{"path":"/:category?/:language?","categories":["traditional-media"],"example":"/sputniknews","parameters":{"category":"Category, can be found in URL, `news` by default","language":"Language, see below, English by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Category","maintainers":["nczitzk"],"description":"Categories for International site:\n\n | WORLD | COVID-19 | BUSINESS | SPORT | TECH | OPINION |\n | ----- | -------- | -------- | ----- | ---- | ------- |\n | world | covid-19 | business | sport | tech | opinion |\n\n Categories for Chinese site:\n\n | 新闻 | 中国 | 俄罗斯 | 国际 | 俄中关系 | 评论 |\n | ---- | ----- | ------ | --------------- | ------------------------ | ------- |\n | news | china | russia | category_guoji | russia_china_relations | opinion |\n\n Language\n\n | Language | Id |\n | ----------- | ----------- |\n | English | english |\n | Spanish | spanish |\n | German | german |\n | French | french |\n | Greek | greek |\n | Italian | italian |\n | Czech | czech |\n | Polish | polish |\n | Serbian | serbian |\n | Latvian | latvian |\n | Lithuanian | lithuanian |\n | Moldavian | moldavian |\n | Belarusian | belarusian |\n | Armenian | armenian |\n | Abkhaz | abkhaz |\n | Ssetian | ssetian |\n | Georgian | georgian |\n | Azerbaijani | azerbaijani |\n | Arabic | arabic |\n | Turkish | turkish |\n | Persian | persian |\n | Dari | dari |\n | Kazakh | kazakh |\n | Kyrgyz | kyrgyz |\n | Uzbek | uzbek |\n | Tajik | tajik |\n | Vietnamese | vietnamese |\n | Japanese | japanese |\n | Chinese | chinese |\n | Portuguese | portuguese |","location":"index.ts"}} />
+
+Categories for International site:
+
+| WORLD | COVID-19 | BUSINESS | SPORT | TECH | OPINION |
+| ----- | -------- | -------- | ----- | ---- | ------- |
+| world | covid-19 | business | sport | tech | opinion |
+
+Categories for Chinese site:
+
+| 新闻 | 中国 | 俄罗斯 | 国际 | 俄中关系 | 评论 |
+| ---- | ----- | ------ | --------------- | ------------------------ | ------- |
+| news | china | russia | category\_guoji | russia\_china\_relations | opinion |
+
+Language
+
+| Language | Id |
+| ----------- | ----------- |
+| English | english |
+| Spanish | spanish |
+| German | german |
+| French | french |
+| Greek | greek |
+| Italian | italian |
+| Czech | czech |
+| Polish | polish |
+| Serbian | serbian |
+| Latvian | latvian |
+| Lithuanian | lithuanian |
+| Moldavian | moldavian |
+| Belarusian | belarusian |
+| Armenian | armenian |
+| Abkhaz | abkhaz |
+| Ssetian | ssetian |
+| Georgian | georgian |
+| Azerbaijani | azerbaijani |
+| Arabic | arabic |
+| Turkish | turkish |
+| Persian | persian |
+| Dari | dari |
+| Kazakh | kazakh |
+| Kyrgyz | kyrgyz |
+| Uzbek | uzbek |
+| Tajik | tajik |
+| Vietnamese | vietnamese |
+| Japanese | japanese |
+| Chinese | chinese |
+| Portuguese | portuguese |
## Taiwan News 台灣英文新聞 {#taiwan-news-tai-wan-ying-wen-xin-wen}
### Hot News {#taiwan-news-tai-wan-ying-wen-xin-wen-hot-news}
-<Route author="TonyRL" example="/taiwannews/hot" path="/taiwannews/hot/:lang?" paramsDesc={['Language, `en` or `zh`, `en` by default']} radar="1" />
+<Route data={{"path":"/hot/:lang?","categories":["traditional-media"],"example":"/taiwannews/hot","parameters":{"lang":"Language, `en` or `zh`, `en` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["taiwannews.com.tw/:lang/index"],"target":"/hot/:lang"},"name":"Hot News","maintainers":["TonyRL"],"location":"hot.ts"}} />
## The Atlantic {#the-atlantic}
### News {#the-atlantic-news}
-<Route author="EthanWng97" example="/theatlantic/latest" path="/theatlantic/:category" paramsDesc={['category, see below']}>
- | Popular | Latest | Politics | Technology | Business |
- | ------------ | ------ | -------- | ---------- | -------- |
- | most-popular | latest | politics | technology | business |
+<Route data={{"path":"/:category","categories":["traditional-media"],"example":"/theatlantic/latest","parameters":{"category":"category, see below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.theatlantic.com/:category"]},"name":"News","maintainers":["EthanWng97"],"description":"| Popular | Latest | Politics | Technology | Business |\n | ------------ | ------ | -------- | ---------- | -------- |\n | most-popular | latest | politics | technology | business |\n\n More categories (except photo) can be found within the navigation bar at [https://www.theatlantic.com](https://www.theatlantic.com)","location":"news.ts"}} />
+
+| Popular | Latest | Politics | Technology | Business |
+| ------------ | ------ | -------- | ---------- | -------- |
+| most-popular | latest | politics | technology | business |
- More categories (except photo) can be found within the navigation bar at [https://www.theatlantic.com](https://www.theatlantic.com)
-</Route>
+More categories (except photo) can be found within the navigation bar at [https://www.theatlantic.com](https://www.theatlantic.com)
## The Economist {#the-economist}
### Category {#the-economist-category}
-<Route author="ImSingee" example="/economist/latest" path="/economist/:endpoint" paramsDesc={['Category name, can be found on the [official page](https://www.economist.com/rss). For example, https://www.economist.com/china/rss.xml to china']} radar="1" />
+<Route data={{"path":"/:endpoint","categories":["traditional-media"],"example":"/economist/latest","parameters":{"endpoint":"Category name, can be found on the [official page](https://www.economist.com/rss). For example, https://www.economist.com/china/rss.xml to china"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["economist.com/:endpoint"]},"name":"Category","maintainers":["ImSingee"],"location":"full.ts"}} />
### Espresso {#the-economist-espresso}
-<Route author="TonyRL" example="/economist/espresso" path="/economist/espresso" radar="1" />
+<Route data={{"path":"/espresso","categories":["traditional-media"],"example":"/economist/espresso","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["economist.com/the-world-in-brief","economist.com/espresso"]},"name":"Espresso","maintainers":["TonyRL"],"url":"economist.com/the-world-in-brief","location":"espresso.ts"}} />
### Global Business Review {#the-economist-global-business-review}
-<Route author="prnake" example="/economist/global-business-review/cn-en" path="/economist/global-business-review/:language?" paramsDesc={['Language, `en`, `cn`, `tw` are supported, support multiple options, default to cn-en']} radar="1" />
-
-## The Guardian 卫报 {#the-guardian-wei-bao}
-
-### Editorial {#the-guardian-wei-bao-editorial}
-
-<Route author="HenryQW" example="/guardian/editorial" path="/guardian/editorial">
- Provides a better reading experience (full text articles) over the official one.
-</Route>
-
-### China {#the-guardian-wei-bao-china}
-
-<Route author="Polynomia" example="/guardian/china" path="/guardian/china" />
+<Route data={{"path":"/global-business-review/:language?","categories":["traditional-media"],"example":"/economist/global-business-review/cn-en","parameters":{"language":"Language, `en`, `cn`, `tw` are supported, support multiple options, default to cn-en"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["businessreview.global/"],"target":"/global-business-review"},"name":"Global Business Review","maintainers":["prnake"],"url":"businessreview.global/","location":"global-business-review.ts"}} />
## The Hindu {#the-hindu}
### Topic {#the-hindu-topic}
-<Route author="TonyRL" example="/thehindu/topic/rains" path="/thehindu/topic/:topic" paramsDesc={['Topic slug, can be found in URL.']} radar="1" />
+<Route data={{"path":"/topic/:topic","categories":["traditional-media"],"example":"/thehindu/topic/rains","parameters":{"topic":"Topic slug, can be found in URL."},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["thehindu.com/topic/:topic"]},"name":"Topic","maintainers":["TonyRL"],"location":"topic.ts"}} />
## The New York Times 纽约时报 {#the-new-york-times-niu-yue-shi-bao}
-### News {#the-new-york-times-niu-yue-shi-bao-news}
-
-<Route author="HenryQW" example="/nytimes/dual" path="/nytimes/:lang?" paramsDesc={['language, default to Chinese']}>
- By extracting the full text of articles, we provide a better reading experience (full text articles) over the official one.
-
- | Default to Chinese | Chinese-English | English | Chinese-English (Traditional Chinese) | Traditional Chinese |
- | ------------------ | --------------- | ------- | ------------------------------------- | ------------------- |
- | (empty) | dual | en | dual-traditionalchinese | traditionalchinese |
-</Route>
-
-### 新闻简报 {#the-new-york-times-niu-yue-shi-bao-xin-wen-jian-bao}
-
-<Route author="yueyericardo nczitzk" example="/nytimes/daily_briefing_chinese" path="/nytimes/daily_briefing_chinese">
- 网站地址:[https://www.nytimes.com/zh-hans/series/daily-briefing-chinese](https://www.nytimes.com/zh-hans/series/daily-briefing-chinese)
-</Route>
-
### Best Seller Books {#the-new-york-times-niu-yue-shi-bao-best-seller-books}
-<Route author="melvinto" example="/nytimes/book/combined-print-and-e-book-nonfiction" path="/nytimes/book/:category?" />
+<Route data={{"path":"/book/:category?","categories":["traditional-media"],"example":"/nytimes/book/combined-print-and-e-book-nonfiction","parameters":{"category":"N"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nytimes.com/"],"target":""},"name":"Best Seller Books","maintainers":["melvinto"],"url":"nytimes.com/","description":"| Category |\n| ------------------------------------ |\n| combined-print-and-e-book-nonfiction |\n| hardcover-nonfiction |\n| paperback-nonfiction |\n| advice-how-to-and-miscellaneous |\n| combined-print-and-e-book-fiction |\n| hardcover-fiction |\n| trade-fiction-paperback |\n| childrens-middle-grade-hardcover |\n| picture-books |\n| series-books |\n| young-adult-hardcover |","location":"book.ts"}} />
| Category |
| ------------------------------------ |
@@ -653,859 +405,522 @@ This route adds the missing photo and Link element. (Offical RSS doesn't have Li
| series-books |
| young-adult-hardcover |
-## The Nikkei 日本経済新聞 {#the-nikkei-ri-ben-jing-ji-xin-wen}
+### News {#the-new-york-times-niu-yue-shi-bao-news}
-### Home {#the-nikkei-ri-ben-jing-ji-xin-wen-home}
+<Route data={{"path":"/:lang?","categories":["traditional-media"],"example":"/nytimes/dual","parameters":{"lang":"language, default to Chinese"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nytimes.com/"],"target":""},"name":"News","maintainers":["HenryQW"],"url":"nytimes.com/","description":"By extracting the full text of articles, we provide a better reading experience (full text articles) over the official one.\n\n | Default to Chinese | Chinese-English | English | Chinese-English (Traditional Chinese) | Traditional Chinese |\n | ------------------ | --------------- | ------- | ------------------------------------- | ------------------- |\n | (empty) | dual | en | dual-traditionalchinese | traditionalchinese |","location":"index.ts"}} />
-<Route author="zjysdhr" example="/nikkei/index" path="/nikkei/index" radar="1" />
+By extracting the full text of articles, we provide a better reading experience (full text articles) over the official one.
-### News {#the-nikkei-ri-ben-jing-ji-xin-wen-news}
+| Default to Chinese | Chinese-English | English | Chinese-English (Traditional Chinese) | Traditional Chinese |
+| ------------------ | --------------- | ------- | ------------------------------------- | ------------------- |
+| (empty) | dual | en | dual-traditionalchinese | traditionalchinese |
-<Route author="Arracc" example="/nikkei/news" path="/nikkei/:category/:article_type?" paramsDesc={['Category, see table below','Only includes free articles, set `free` to enable, disabled by default']}>
- | 総合 | オピニオン | 経済 | 政治 | 金融 | マーケット | ビジネス | マネーのまなび | テック | 国際 | スポーツ | 社会・調査 | 地域 | 文化 | ライフスタイル |
- | ---- | ---------- | ------- | -------- | --------- | ---------- | -------- | -------------- | ---------- | ------------- | -------- | ---------- | ----- | ------- | -------------- |
- | news | opinion | economy | politics | financial | business | 不支持 | 不支持 | technology | international | sports | society | local | culture | lifestyle |
-</Route>
+### 新闻简报 {#the-new-york-times-niu-yue-shi-bao-xin-wen-jian-bao}
-### 中文版新闻 {#the-nikkei-ri-ben-jing-ji-xin-wen-zhong-wen-ban-xin-wen}
+<Route data={{"path":"/daily_briefing_chinese","categories":["traditional-media"],"example":"/nytimes/daily_briefing_chinese","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nytimes.com/"],"target":""},"name":"新闻简报","maintainers":["yueyericardo","nczitzk"],"url":"nytimes.com/","description":"网站地址:[https://www.nytimes.com/zh-hans/series/daily-briefing-chinese](https://www.nytimes.com/zh-hans/series/daily-briefing-chinese)","location":"daily-briefing-chinese.ts"}} />
-<Route author="nczitzk" example="/nikkei/cn" path="/nikkei/cn/:language?/:path?" paramsDesc={['语言,可选 `zh` 即 繁体中文,`cn` 即 简体中文', '类目路径,默认为空,可在对应类目页 URL 中找到']} radar="1">
- :::tip
- 如 [中国 经济 日经中文网](https://cn.nikkei.com/china/ceconomy.html) 的 URL 为 `https://cn.nikkei.com/china/ceconomy.html` 对应路由为 [`/nikkei/cn/cn/china/ceconomy`](https://rsshub.app/nikkei/cn/cn/china/ceconomy)
+网站地址:[https://www.nytimes.com/zh-hans/series/daily-briefing-chinese](https://www.nytimes.com/zh-hans/series/daily-briefing-chinese)
- 如 [中國 經濟 日經中文網](https://zh.cn.nikkei.com/china/ceconomy.html) 的 URL 为 `https://zh.cn.nikkei.com/china/ceconomy.html` 对应路由为 [`/nikkei/cn/zh/china/ceconomy`](https://rsshub.app/nikkei/cn/zh/china/ceconomy)
+## The Nikkei 日本経済新聞 {#the-nikkei-ri-ben-jing-ji-xin-wen}
- 特别地,当 `path` 填入 `rss` 后(如路由为 [`/nikkei/cn/cn/rss`](https://rsshub.app/nikkei/cn/cn/rss)),此时返回的是 [官方 RSS 的内容](https://cn.nikkei.com/rss.html)
- :::
-</Route>
+### News {#the-nikkei-ri-ben-jing-ji-xin-wen-news}
+
+<Route data={{"path":"/:category/:article_type?","categories":["traditional-media"],"example":"/nikkei/news","parameters":{"category":"Category, see table below","article_type":"Only includes free articles, set `free` to enable, disabled by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.nikkei.com/:category/archive","www.nikkei.com/:category"],"target":"/:category"},"name":"News","maintainers":["Arracc"],"description":"| 総合 | オピニオン | 経済 | 政治 | 金融 | マーケット | ビジネス | マネーのまなび | テック | 国際 | スポーツ | 社会・調査 | 地域 | 文化 | ライフスタイル |\n | ---- | ---------- | ------- | -------- | --------- | ---------- | -------- | -------------- | ---------- | ------------- | -------- | ---------- | ----- | ------- | -------------- |\n | news | opinion | economy | politics | financial | business | 不支持 | 不支持 | technology | international | sports | society | local | culture | lifestyle |","location":"news.ts"}} />
+
+| 総合 | オピニオン | 経済 | 政治 | 金融 | マーケット | ビジネス | マネーのまなび | テック | 国際 | スポーツ | 社会・調査 | 地域 | 文化 | ライフスタイル |
+| ---- | ---------- | ------- | -------- | --------- | ---------- | -------- | -------------- | ---------- | ------------- | -------- | ---------- | ----- | ------- | -------------- |
+| news | opinion | economy | politics | financial | business | 不支持 | 不支持 | technology | international | sports | society | local | culture | lifestyle |
### Nikkei Asia Latest News {#the-nikkei-ri-ben-jing-ji-xin-wen-nikkei-asia-latest-news}
-<Route author="rainrdx" example="/nikkei/asia" path="/nikkei/asia" radar="1" />
+<Route data={{"path":"/asia","categories":["traditional-media"],"example":"/nikkei/asia","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["asia.nikkei.com/"]},"name":"Nikkei Asia Latest News","maintainers":["rainrdx"],"url":"asia.nikkei.com/","location":"asia/index.ts"}} />
## The Wall Street Journal (WSJ) 华尔街日报 {#the-wall-street-journal-wsj-hua-er-jie-ri-bao}
### News {#the-wall-street-journal-wsj-hua-er-jie-ri-bao-news}
-<Route author="oppilate EthanWng97" example="/wsj/en-us/opinion" path="/wsj/:lang/:category?" paramsDesc={['Language, `en-us`, `zh-cn`, `zh-tw`', 'Category. See below']}>
- en\_us
-
- | World | U.S. | Politics | Economy | Business | Tech | Markets | Opinion | Books & Arts | Real Estate | Life & Work | Sytle | Sports |
- | ----- | ---- | -------- | ------- | -------- | ---------- | ------- | ------- | ------------ | ----------- | ----------- | ------------------- | ------ |
- | world | us | politics | economy | business | technology | markets | opinion | books-arts | realestate | life-work | style-entertainment | sports |
-
- zh-cn / zh-tw
-
- | 国际 | 中国 | 金融市场 | 经济 | 商业 | 科技 | 派 | 专栏与观点 |
- | ----- | ----- | -------- | ------- | -------- | ---------- | --------- | ---------- |
- | world | china | markets | economy | business | technology | life-arts | opinion |
+<Route data={{"path":"/:lang/:category?","categories":["traditional-media"],"example":"/wsj/en-us/opinion","parameters":{"lang":"Language, `en-us`, `zh-cn`, `zh-tw`","category":"Category. See below"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["oppilate"],"description":"en_us\n\n | World | U.S. | Politics | Economy | Business | Tech | Markets | Opinion | Books & Arts | Real Estate | Life & Work | Sytle | Sports |\n | ----- | ---- | -------- | ------- | -------- | ---------- | ------- | ------- | ------------ | ----------- | ----------- | ------------------- | ------ |\n | world | us | politics | economy | business | technology | markets | opinion | books-arts | realestate | life-work | style-entertainment | sports |\n\n zh-cn / zh-tw\n\n | 国际 | 中国 | 金融市场 | 经济 | 商业 | 科技 | 派 | 专栏与观点 |\n | ----- | ----- | -------- | ------- | -------- | ---------- | --------- | ---------- |\n | world | china | markets | economy | business | technology | life-arts | opinion |\n\n Provide full article RSS for WSJ topics.","location":"news.ts"}} />
- Provide full article RSS for WSJ topics.
-</Route>
+en\_us
-## Voice of America (VOA) {#voice-of-america-voa}
+| World | U.S. | Politics | Economy | Business | Tech | Markets | Opinion | Books & Arts | Real Estate | Life & Work | Sytle | Sports |
+| ----- | ---- | -------- | ------- | -------- | ---------- | ------- | ------- | ------------ | ----------- | ----------- | ------------------- | ------ |
+| world | us | politics | economy | business | technology | markets | opinion | books-arts | realestate | life-work | style-entertainment | sports |
-透過提取全文,以獲得更好的閱讀體驗
+zh-cn / zh-tw
-<Route author="zphw" example="/voa/cantonese/zprtie-ttp" path="/voa/:language/:channel?" paramsDesc={['語言','頻道,可於官網獲取']}>
- `语言`
+| 国际 | 中国 | 金融市场 | 经济 | 商业 | 科技 | 派 | 专栏与观点 |
+| ----- | ----- | -------- | ------- | -------- | ---------- | --------- | ---------- |
+| world | china | markets | economy | business | technology | life-arts | opinion |
- | 粵語 | 中文 | 藏語 |
- | --------- | ------- | ------- |
- | cantonese | chinese | tibetan |
-
- `频道`
-
- 可於各語言官網聚合新聞處 (如 [https://www.voacantonese.com/rssfeeds](https://www.voacantonese.com/rssfeeds)) 獲取
-
- 例如 `https://www.voacantonese.com/api/zyrtyequty` 將對應 `/voa/cantonese/zyrtyequty`
-</Route>
+Provide full article RSS for WSJ topics.
## Voice of Mongolia 蒙古之声 {#voice-of-mongolia-meng-gu-zhi-sheng}
### News {#voice-of-mongolia-meng-gu-zhi-sheng-news}
-<Route author="zphw" example="/vom/featured" path="/vom/featured/:lang?" paramsDesc={['Language, see the table below, `mn` by default']}>
- | English | 日本語 | Монгол | Русский | 简体中文 |
- | ------- | ------ | ------ | ------- | -------- |
- | en | ja | mn | ru | zh |
-</Route>
+<Route data={{"path":"/featured/:lang?","categories":["traditional-media"],"example":"/vom/featured","parameters":{"lang":"Language, see the table below, `mn` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["vom.mn/:lang","vom.mn/"],"target":"/featured/:lang"},"name":"News","maintainers":["TonyRL"],"description":"| English | 日本語 | Монгол | Русский | 简体中文 |\n | ------- | ------ | ------ | ------- | -------- |\n | en | ja | mn | ru | zh |","location":"featured.ts"}} />
+
+| English | 日本語 | Монгол | Русский | 简体中文 |
+| ------- | ------ | ------ | ------- | -------- |
+| en | ja | mn | ru | zh |
## Yomiuri Shimbun 読売新聞 {#yomiuri-shimbun-du-mai-xin-wen}
### News {#yomiuri-shimbun-du-mai-xin-wen-news}
-<Route author="Arracc" example="/yomiuri/news" path="/yomiuri/:category?" paramsDesc={['Category, `news` by default']}>
- Free articles only.
-
- | Category | Parameter |
- | -------------- | --------- |
- | 新着・速報 | news |
- | 社会 | national |
- | 政治 | politics |
- | 経済 | economy |
- | スポーツ | sports |
- | 国際 | world |
- | 地域 | local |
- | 科学・IT | science |
- | エンタメ・文化 | culture |
- | ライフ | life |
- | 医療・健康 | medical |
- | 教育・就活 | kyoiku |
- | 選挙・世論調査 | election |
- | 囲碁・将棋 | igoshougi |
- | 社説 | editorial |
- | 皇室 | koushitsu |
-</Route>
-
-## 半月谈 {#ban-yue-tan}
-
-### 板块 {#ban-yue-tan-ban-kuai}
-
-<Route author="LogicJake" example="/banyuetan/jicengzhili" path="/banyuetan/:name" paramsDesc={['板块名称,可在 URL 中找到']} />
+<Route data={{"path":"/:category?","categories":["traditional-media"],"example":"/yomiuri/news","parameters":{"category":"Category, `news` by default"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.yomiuri.co.jp/:category?"]},"name":"News","maintainers":["Arracc"],"description":"Free articles only.\n\n | Category | Parameter |\n | -------------- | --------- |\n | 新着・速報 | news |\n | 社会 | national |\n | 政治 | politics |\n | 経済 | economy |\n | スポーツ | sports |\n | 国際 | world |\n | 地域 | local |\n | 科学・IT | science |\n | エンタメ・文化 | culture |\n | ライフ | life |\n | 医療・健康 | medical |\n | 教育・就活 | kyoiku |\n | 選挙・世論調査 | election |\n | 囲碁・将棋 | igoshougi |\n | 社説 | editorial |\n | 皇室 | koushitsu |","location":"news.ts"}} />
+
+Free articles only.
+
+| Category | Parameter |
+| -------------- | --------- |
+| 新着・速報 | news |
+| 社会 | national |
+| 政治 | politics |
+| 経済 | economy |
+| スポーツ | sports |
+| 国際 | world |
+| 地域 | local |
+| 科学・IT | science |
+| エンタメ・文化 | culture |
+| ライフ | life |
+| 医療・健康 | medical |
+| 教育・就活 | kyoiku |
+| 選挙・世論調査 | election |
+| 囲碁・将棋 | igoshougi |
+| 社説 | editorial |
+| 皇室 | koushitsu |
## 北极星电力网 {#bei-ji-xing-dian-li-wang}
-### 环保要闻 {#bei-ji-xing-dian-li-wang-huan-bao-yao-wen}
-
-<Route author="zsimple" example="/bjx/huanbao" path="/bjx/huanbao" radar="1" />
-
### 光伏 {#bei-ji-xing-dian-li-wang-guang-fu}
-<Route author="Sxuet" example="/bjx/gf/sc" path="/bjx/gf/:type" paramsDesc={['分类,北极星光伏最后的`type`字段']} radar="1">
- `:type` 类型可选如下
-
- | 要闻 | 政策 | 市场行情 | 企业动态 | 独家观点 | 项目工程 | 招标采购 | 财经 | 国际行情 | 价格趋势 | 技术跟踪 |
- | ---- | ---- | -------- | -------- | -------- | -------- | -------- | ---- | -------- | -------- | -------- |
- | yw | zc | sc | mq | dj | xm | zb | cj | gj | sj | js |
-</Route>
-
-## 财新网 {#cai-xin-wang}
-
-> 网站部分内容需要付费订阅,RSS 仅做更新提醒,不含付费内容。
+<Route data={{"path":"/gf/:type","categories":["traditional-media"],"example":"/bjx/gf/sc","parameters":{"type":"分类,北极星光伏最后的`type`字段"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"光伏","maintainers":["Sxuet"],"description":"`:type` 类型可选如下\n\n | 要闻 | 政策 | 市场行情 | 企业动态 | 独家观点 | 项目工程 | 招标采购 | 财经 | 国际行情 | 价格趋势 | 技术跟踪 |\n | ---- | ---- | -------- | -------- | -------- | -------- | -------- | ---- | -------- | -------- | -------- |\n | yw | zc | sc | mq | dj | xm | zb | cj | gj | sj | js |","location":"types.ts"}} />
-### 新闻分类 {#cai-xin-wang-xin-wen-fen-lei}
+`:type` 类型可选如下
-<Route author="idealclover" example="/caixin/finance/regulation" path="/caixin/:column/:category" paramsDesc={['栏目名', '栏目下的子分类名']} supportPodcast="1">
- Column 列表:
+| 要闻 | 政策 | 市场行情 | 企业动态 | 独家观点 | 项目工程 | 招标采购 | 财经 | 国际行情 | 价格趋势 | 技术跟踪 |
+| ---- | ---- | -------- | -------- | -------- | -------- | -------- | ---- | -------- | -------- | -------- |
+| yw | zc | sc | mq | dj | xm | zb | cj | gj | sj | js |
- | 经济 | 金融 | 政经 | 环科 | 世界 | 观点网 | 文化 | 周刊 |
- | ------- | ------- | ----- | ------- | ------------- | ------- | ------- | ------ |
- | economy | finance | china | science | international | opinion | culture | weekly |
+### 环保要闻 {#bei-ji-xing-dian-li-wang-huan-bao-yao-wen}
- 以金融板块为例的 category 列表:(其余 column 以类似方式寻找)
+<Route data={{"path":"/huanbao","categories":["traditional-media"],"example":"/bjx/huanbao","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["huanbao.bjx.com.cn/yw","huanbao.bjx.com.cn/"]},"name":"环保要闻","maintainers":["zsimple"],"url":"huanbao.bjx.com.cn/yw","location":"huanbao.ts"}} />
- | 监管 | 银行 | 证券基金 | 信托保险 | 投资 | 创新 | 市场 |
- | ---------- | ---- | -------- | ---------------- | ---------- | ---------- | ------ |
- | regulation | bank | stock | insurance\_trust | investment | innovation | market |
+## 财新博客 {#cai-xin-bo-ke}
- Category 列表:
+> 网站部分内容需要付费订阅,RSS 仅做更新提醒,不含付费内容。
- | 封面报道 | 开卷 | 社论 | 时事 | 编辑寄语 | 经济 | 金融 | 商业 | 环境与科技 | 民生 | 副刊 |
- | ---------- | ----- | --------- | ---------------- | ------------ | ------- | ------- | -------- | ----------------------- | ------- | ------ |
- | coverstory | first | editorial | current\_affairs | editor\_desk | economy | finance | business | environment\_technology | cwcivil | column |
-</Route>
+### 财新数据通 {#cai-xin-bo-ke-cai-xin-shu-ju-tong}
-### 首页新闻 {#cai-xin-wang-shou-ye-xin-wen}
+<Route data={{"path":"/database","categories":["traditional-media"],"example":"/caixin/database","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["k.caixin.com/web","k.caixin.com/"]},"name":"财新数据通","maintainers":["nczitzk"],"url":"k.caixin.com/web","location":"database.ts"}} />
-<Route author="EsuRt" example="/caixin/article" path="/caixin/article" radar="1" supportPodcast="1" />
+### 财新一线 {#cai-xin-bo-ke-cai-xin-yi-xian}
-### 最新文章 {#cai-xin-wang-zui-xin-wen-zhang}
+<Route data={{"path":"/k","categories":["traditional-media"],"example":"/caixin/k","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"财新一线","maintainers":["boypt"],"location":"k.ts"}} />
-<Route author="tpnonthealps" example="/caixin/latest" path="/caixin/latest" radar="1">
- 说明:此 RSS feed 会自动抓取财新网的最新文章,但不包含 FM 及视频内容。
-</Route>
+### 财新周刊 {#cai-xin-bo-ke-cai-xin-zhou-kan}
-### 财新数据通 {#cai-xin-wang-cai-xin-shu-ju-tong}
+<Route data={{"path":"/weekly","categories":["traditional-media"],"example":"/caixin/weekly","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["weekly.caixin.com/","weekly.caixin.com/*"]},"name":"财新周刊","maintainers":["TonyRL"],"url":"weekly.caixin.com/","location":"weekly.ts"}} />
-<Route author="nczitzk" example="/caixin/database" path="/caixin/database" radar="1" />
+### 首页新闻 {#cai-xin-bo-ke-shou-ye-xin-wen}
-### 财新一线 {#cai-xin-wang-cai-xin-yi-xian}
+<Route data={{"path":"/article","categories":["traditional-media"],"example":"/caixin/article","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"radar":{"source":["caixin.com/"]},"name":"首页新闻","maintainers":["EsuRt"],"url":"caixin.com/","location":"article.ts"}} />
-<Route author="boypt" example="/caixin/k" path="/caixin/k" radar="1" supportPodcast="1" />
+### 新闻分类 {#cai-xin-bo-ke-xin-wen-fen-lei}
-### 财新周刊 {#cai-xin-wang-cai-xin-zhou-kan}
+<Route data={{"path":"/:column/:category","categories":["traditional-media"],"example":"/caixin/finance/regulation","parameters":{"column":"栏目名","category":"栏目下的子分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":true,"supportScihub":false},"name":"新闻分类","maintainers":["idealclover"],"description":"Column 列表:\n\n | 经济 | 金融 | 政经 | 环科 | 世界 | 观点网 | 文化 | 周刊 |\n | ------- | ------- | ----- | ------- | ------------- | ------- | ------- | ------ |\n | economy | finance | china | science | international | opinion | culture | weekly |\n\n 以金融板块为例的 category 列表:(其余 column 以类似方式寻找)\n\n | 监管 | 银行 | 证券基金 | 信托保险 | 投资 | 创新 | 市场 |\n | ---------- | ---- | -------- | ---------------- | ---------- | ---------- | ------ |\n | regulation | bank | stock | insurance_trust | investment | innovation | market |\n\n Category 列表:\n\n | 封面报道 | 开卷 | 社论 | 时事 | 编辑寄语 | 经济 | 金融 | 商业 | 环境与科技 | 民生 | 副刊 |\n | ---------- | ----- | --------- | ---------------- | ------------ | ------- | ------- | -------- | ----------------------- | ------- | ------ |\n | coverstory | first | editorial | current_affairs | editor_desk | economy | finance | business | environment_technology | cwcivil | column |","location":"category.ts"}} />
-<Route author="TonyRL" example="/caixin/weekly" path="/caixin/weekly" radar="1" />
+Column 列表:
-## 参考消息 {#can-kao-xiao-xi}
-
-### 栏目 {#can-kao-xiao-xi-lan-mu}
+| 经济 | 金融 | 政经 | 环科 | 世界 | 观点网 | 文化 | 周刊 |
+| ------- | ------- | ----- | ------- | ------------- | ------- | ------- | ------ |
+| economy | finance | china | science | international | opinion | culture | weekly |
-<Route author="yuxinliu-alex nczitzk" example="/cankaoxiaoxi/column/diyi" path="/cankaoxiaoxi/column/:id?" paramsDesc={['栏目 id,默认为 `diyi`,即第一关注']}>
- | 栏目 | id |
- | -------------- | -------- |
- | 第一关注 | diyi |
- | 中国 | zhongguo |
- | 国际 | gj |
- | 观点 | guandian |
- | 锐参考 | ruick |
- | 体育健康 | tiyujk |
- | 科技应用 | kejiyy |
- | 文化旅游 | wenhualy |
- | 参考漫谈 | cankaomt |
- | 研究动态 | yjdt |
- | 海外智库 | hwzk |
- | 业界信息・观点 | yjxx |
- | 海外看中国城市 | hwkzgcs |
- | 译名趣谈 | ymymqt |
- | 译名发布 | ymymfb |
- | 双语汇 | ymsyh |
- | 参考视频 | video |
- | 军事 | junshi |
- | 参考人物 | cankaorw |
-</Route>
+以金融板块为例的 category 列表:(其余 column 以类似方式寻找)
-## 朝日新聞デジタル {#chao-ri-xin-wen-%E3%83%87%E3%82%B8%E3%82%BF%E3%83%AB}
+| 监管 | 银行 | 证券基金 | 信托保险 | 投资 | 创新 | 市场 |
+| ---------- | ---- | -------- | ---------------- | ---------- | ---------- | ------ |
+| regulation | bank | stock | insurance\_trust | investment | innovation | market |
-### 新聞 {#chao-ri-xin-wen-%E3%83%87%E3%82%B8%E3%82%BF%E3%83%AB-xin-wen}
+Category 列表:
-<Route author="nczitzk" example="/asahi/area/hokkaido" path="/asahi/area/:id" paramsDesc={['地方 id,见下表']} notOperational="1">
- 北海道・東北
+| 封面报道 | 开卷 | 社论 | 时事 | 编辑寄语 | 经济 | 金融 | 商业 | 环境与科技 | 民生 | 副刊 |
+| ---------- | ----- | --------- | ---------------- | ------------ | ------- | ------- | -------- | ----------------------- | ------- | ------ |
+| coverstory | first | editorial | current\_affairs | editor\_desk | economy | finance | business | environment\_technology | cwcivil | column |
- | 北海道 | 青森 | 秋田 | 岩手 | 山形 | 宮城 | 福島 |
- | -------- | ------ | ----- | ----- | -------- | ------ | --------- |
- | hokkaido | aomori | akita | iwate | yamagata | miyagi | fukushima |
+### 最新文章 {#cai-xin-bo-ke-zui-xin-wen-zhang}
- 関東
+<Route data={{"path":"/latest","categories":["traditional-media"],"example":"/caixin/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["caixin.com/"]},"name":"最新文章","maintainers":["tpnonthealps"],"url":"caixin.com/","description":"说明:此 RSS feed 会自动抓取财新网的最新文章,但不包含 FM 及视频内容。","location":"latest.ts"}} />
- | 群馬 | 茨城 | 栃木 | 埼玉 | 千葉 | 東京 | 神奈川 |
- | ----- | ------- | ------- | ------- | ----- | ----- | -------- |
- | gunma | ibaraki | tochigi | saitama | chiba | tokyo | kanagawa |
+说明:此 RSS feed 会自动抓取财新网的最新文章,但不包含 FM 及视频内容。
- 東海・甲信越
+## 参考消息 {#can-kao-xiao-xi}
- | 静岡 | 岐阜 | 愛知 | 三重 | 新潟 | 山梨 | 長野 |
- | -------- | ---- | ----- | ---- | ------- | --------- | ------ |
- | shizuoka | gifu | aichi | mie | niigata | yamanashi | nagano |
+### 栏目 {#can-kao-xiao-xi-lan-mu}
- 近畿・北陸
+<Route data={{"path":["/column/:id?","/:id?"],"categories":["traditional-media"],"example":"/cankaoxiaoxi/column/diyi","parameters":{"id":"栏目 id,默认为 `diyi`,即第一关注"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["yuxinliu-alex","nczitzk"],"description":"| 栏目 | id |\n | -------------- | -------- |\n | 第一关注 | diyi |\n | 中国 | zhongguo |\n | 国际 | gj |\n | 观点 | guandian |\n | 锐参考 | ruick |\n | 体育健康 | tiyujk |\n | 科技应用 | kejiyy |\n | 文化旅游 | wenhualy |\n | 参考漫谈 | cankaomt |\n | 研究动态 | yjdt |\n | 海外智库 | hwzk |\n | 业界信息・观点 | yjxx |\n | 海外看中国城市 | hwkzgcs |\n | 译名趣谈 | ymymqt |\n | 译名发布 | ymymfb |\n | 双语汇 | ymsyh |\n | 参考视频 | video |\n | 军事 | junshi |\n | 参考人物 | cankaorw |","location":"index.ts"}} />
+
+| 栏目 | id |
+| -------------- | -------- |
+| 第一关注 | diyi |
+| 中国 | zhongguo |
+| 国际 | gj |
+| 观点 | guandian |
+| 锐参考 | ruick |
+| 体育健康 | tiyujk |
+| 科技应用 | kejiyy |
+| 文化旅游 | wenhualy |
+| 参考漫谈 | cankaomt |
+| 研究动态 | yjdt |
+| 海外智库 | hwzk |
+| 业界信息・观点 | yjxx |
+| 海外看中国城市 | hwkzgcs |
+| 译名趣谈 | ymymqt |
+| 译名发布 | ymymfb |
+| 双语汇 | ymsyh |
+| 参考视频 | video |
+| 军事 | junshi |
+| 参考人物 | cankaorw |
- | 滋賀 | 京都 | 奈良 | 和歌山 | 大阪 | 兵庫 | 富山 | 石川 | 福井 |
- | ----- | ----- | ---- | -------- | ----- | ----- | ------ | -------- | ----- |
- | shiga | kyoto | nara | wakayama | osaka | hyogo | toyama | ishikawa | fukui |
+### 栏目 {#can-kao-xiao-xi-lan-mu}
- 中国・四国
+<Route data={{"path":["/column/:id?","/:id?"],"categories":["traditional-media"],"example":"/cankaoxiaoxi/column/diyi","parameters":{"id":"栏目 id,默认为 `diyi`,即第一关注"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["yuxinliu-alex","nczitzk"],"description":"| 栏目 | id |\n | -------------- | -------- |\n | 第一关注 | diyi |\n | 中国 | zhongguo |\n | 国际 | gj |\n | 观点 | guandian |\n | 锐参考 | ruick |\n | 体育健康 | tiyujk |\n | 科技应用 | kejiyy |\n | 文化旅游 | wenhualy |\n | 参考漫谈 | cankaomt |\n | 研究动态 | yjdt |\n | 海外智库 | hwzk |\n | 业界信息・观点 | yjxx |\n | 海外看中国城市 | hwkzgcs |\n | 译名趣谈 | ymymqt |\n | 译名发布 | ymymfb |\n | 双语汇 | ymsyh |\n | 参考视频 | video |\n | 军事 | junshi |\n | 参考人物 | cankaorw |","location":"index.ts"}} />
+
+| 栏目 | id |
+| -------------- | -------- |
+| 第一关注 | diyi |
+| 中国 | zhongguo |
+| 国际 | gj |
+| 观点 | guandian |
+| 锐参考 | ruick |
+| 体育健康 | tiyujk |
+| 科技应用 | kejiyy |
+| 文化旅游 | wenhualy |
+| 参考漫谈 | cankaomt |
+| 研究动态 | yjdt |
+| 海外智库 | hwzk |
+| 业界信息・观点 | yjxx |
+| 海外看中国城市 | hwkzgcs |
+| 译名趣谈 | ymymqt |
+| 译名发布 | ymymfb |
+| 双语汇 | ymsyh |
+| 参考视频 | video |
+| 军事 | junshi |
+| 参考人物 | cankaorw |
- | 鳥取 | 島根 | 岡山 | 広島 | 山口 | 香川 | 愛媛 | 徳島 | 高知 |
- | ------- | ------- | ------- | --------- | --------- | ------ | ----- | --------- | ----- |
- | tottori | shimane | okayama | hiroshima | yamaguchi | kagawa | ehime | tokushima | kochi |
+## 第一财经 {#di-yi-cai-jing}
- 九州・沖縄
+### 关注 {#di-yi-cai-jing-guan-zhu}
- | 福岡 | 大分 | 宮崎 | 鹿児島 | 佐賀 | 長崎 | 熊本 | 沖縄 |
- | ------- | ---- | -------- | --------- | ---- | -------- | -------- | ------- |
- | fukuoka | oita | miyazaki | kagoshima | saga | nagasaki | kumamoto | okinawa |
-</Route>
+<Route data={{"path":"/feed/:id?","categories":["traditional-media"],"example":"/yicai/feed/669","parameters":{"id":"主题 id,可在对应主题页中找到,默认为一财早报"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/feed/:id","yicai.com/feed"],"target":"/feed/:id"},"name":"关注","maintainers":["nczitzk"],"description":":::tip\n 全部主题词见 [此处](https://www.yicai.com/feed/alltheme)\n :::","location":"feed.ts"}} />
-## 第一财经 {#di-yi-cai-jing}
+:::tip
+全部主题词见 [此处](https://www.yicai.com/feed/alltheme)
+:::
-### 最新 {#di-yi-cai-jing-zui-xin}
+### 视听 {#di-yi-cai-jing-shi-ting}
-<Route author="nczitzk" example="/yicai/latest" path="/yicai/latest" />
+<Route data={{"path":"/video/:id?","categories":["traditional-media"],"example":"/yicai/video","parameters":{"id":"分类 id,见下表,可在对应分类页中找到,默认为视听"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/video/:id","yicai.com/video"],"target":"/video/:id"},"name":"视听","maintainers":["nczitzk"],"description":"| Id | 名称 |\n | -------------------- | ---------------------------- |\n | youliao | 有料 |\n | appshipin | 此刻 |\n | yicaisudi | 速递 |\n | caishang | 财商 |\n | shiji | 史记 |\n | jinrigushi | 今日股市 |\n | tangulunjin | 谈股论金 |\n | gongsiyuhangye | 公司与行业 |\n | cjyxx | 财经夜行线 |\n | 6thtradingday | 第六交易日 |\n | cjfw | 财经风味 |\n | chuangshidai | 创时代 |\n | weilaiyaoqinghan | 未来邀请函 |\n | tounaofengbao | 头脑风暴 |\n | zhongguojingyingzhe | 中国经营者 |\n | shichanglingjuli | 市场零距离 |\n | huanqiucaijing | 环球财经视界 |\n | zgjcqyjglsxftl | 中国杰出企业家管理思想访谈录 |\n | jiemacaishang | 解码财商 |\n | sxpl | 首席评论 |\n | zhongguojingjiluntan | 中国经济论坛 |\n | opinionleader | 意见领袖 |\n | xinjinrong | 解码新金融 |\n | diyidichan | 第一地产 |\n | zhichedaren | 智车达人 |\n | chuangtoufengyun | 创投风云 |\n | chunxiangrensheng | 醇享人生 |\n | diyishengyin | 第一声音 |\n | sanliangboqianjin | 财智双全 |\n | weilaiyaoqinghan | 未来邀请函 |\n | zjdy | 主角 ▪ 大医 |\n | leye | 乐业之城 |\n | sanrenxing | 价值三人行 |\n | yuandongli | 中国源动力 |\n | pioneerzone | 直击引领区 |","location":"video.ts"}} />
+
+| Id | 名称 |
+| -------------------- | ---------------------------- |
+| youliao | 有料 |
+| appshipin | 此刻 |
+| yicaisudi | 速递 |
+| caishang | 财商 |
+| shiji | 史记 |
+| jinrigushi | 今日股市 |
+| tangulunjin | 谈股论金 |
+| gongsiyuhangye | 公司与行业 |
+| cjyxx | 财经夜行线 |
+| 6thtradingday | 第六交易日 |
+| cjfw | 财经风味 |
+| chuangshidai | 创时代 |
+| weilaiyaoqinghan | 未来邀请函 |
+| tounaofengbao | 头脑风暴 |
+| zhongguojingyingzhe | 中国经营者 |
+| shichanglingjuli | 市场零距离 |
+| huanqiucaijing | 环球财经视界 |
+| zgjcqyjglsxftl | 中国杰出企业家管理思想访谈录 |
+| jiemacaishang | 解码财商 |
+| sxpl | 首席评论 |
+| zhongguojingjiluntan | 中国经济论坛 |
+| opinionleader | 意见领袖 |
+| xinjinrong | 解码新金融 |
+| diyidichan | 第一地产 |
+| zhichedaren | 智车达人 |
+| chuangtoufengyun | 创投风云 |
+| chunxiangrensheng | 醇享人生 |
+| diyishengyin | 第一声音 |
+| sanliangboqianjin | 财智双全 |
+| weilaiyaoqinghan | 未来邀请函 |
+| zjdy | 主角 ▪ 大医 |
+| leye | 乐业之城 |
+| sanrenxing | 价值三人行 |
+| yuandongli | 中国源动力 |
+| pioneerzone | 直击引领区 |
### 头条 {#di-yi-cai-jing-tou-tiao}
-<Route author="nczitzk" example="/yicai/headline" path="/yicai/headline" />
-
-### VIP 频道 {#di-yi-cai-jing-vip-pin-dao}
-
-<Route author="nczitzk" example="/yicai/vip/428" path="/yicai/vip/:id?" paramsDesc={['频道 id,可在对应频道页中找到,默认为一元点金']} />
+<Route data={{"path":"/headline","categories":["traditional-media"],"example":"/yicai/headline","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/"]},"name":"头条","maintainers":["nczitzk"],"url":"yicai.com/","location":"headline.ts"}} />
### 新闻 {#di-yi-cai-jing-xin-wen}
-<Route author="nczitzk" example="/yicai/news" path="/yicai/news/:id?" paramsDesc={['分类 id,见下表,可在对应分类页中找到,默认为新闻']}>
- | Id | 名称 |
- | ------------------------ | ---------- |
- | gushi | A 股 |
- | kechuangban | 科创板 |
- | hongguan | 大政 |
- | jinrong | 金融 |
- | quanqiushichang | 海外市场 |
- | gongsi | 产经 |
- | shijie | 全球 |
- | kechuang | 科技 |
- | quyu | 区域 |
- | comment | 评论 |
- | dafengwenhua | 商业人文 |
- | books | 阅读周刊 |
- | loushi | 地产 |
- | automobile | 汽车 |
- | china\_financial\_herald | 对话陆家嘴 |
- | fashion | 时尚 |
- | ad | 商业资讯 |
- | info | 资讯 |
- | jzfxb | 价值风向标 |
- | shuducaijing | 数读财经 |
- | shujujiepan | 数据解盘 |
- | shudushenghuo | 数读生活 |
- | cbndata | CBNData |
- | dtcj | DT 财经 |
- | xfsz | 消费数知 |
-</Route>
-
-### 关注 {#di-yi-cai-jing-guan-zhu}
-
-<Route author="nczitzk" example="/yicai/feed/669" path="/yicai/feed/:id?" paramsDesc={['主题 id,可在对应主题页中找到,默认为一财早报']}>
- :::tip
- 全部主题词见 [此处](https://www.yicai.com/feed/alltheme)
- :::
-</Route>
+<Route data={{"path":"/news/:id?","categories":["traditional-media"],"example":"/yicai/news","parameters":{"id":"分类 id,见下表,可在对应分类页中找到,默认为新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/news/:id","yicai.com/news"],"target":"/news/:id"},"name":"新闻","maintainers":["nczitzk"],"description":"| Id | 名称 |\n | ------------------------ | ---------- |\n | gushi | A 股 |\n | kechuangban | 科创板 |\n | hongguan | 大政 |\n | jinrong | 金融 |\n | quanqiushichang | 海外市场 |\n | gongsi | 产经 |\n | shijie | 全球 |\n | kechuang | 科技 |\n | quyu | 区域 |\n | comment | 评论 |\n | dafengwenhua | 商业人文 |\n | books | 阅读周刊 |\n | loushi | 地产 |\n | automobile | 汽车 |\n | china_financial_herald | 对话陆家嘴 |\n | fashion | 时尚 |\n | ad | 商业资讯 |\n | info | 资讯 |\n | jzfxb | 价值风向标 |\n | shuducaijing | 数读财经 |\n | shujujiepan | 数据解盘 |\n | shudushenghuo | 数读生活 |\n | cbndata | CBNData |\n | dtcj | DT 财经 |\n | xfsz | 消费数知 |","location":"news.ts"}} />
+
+| Id | 名称 |
+| ------------------------ | ---------- |
+| gushi | A 股 |
+| kechuangban | 科创板 |
+| hongguan | 大政 |
+| jinrong | 金融 |
+| quanqiushichang | 海外市场 |
+| gongsi | 产经 |
+| shijie | 全球 |
+| kechuang | 科技 |
+| quyu | 区域 |
+| comment | 评论 |
+| dafengwenhua | 商业人文 |
+| books | 阅读周刊 |
+| loushi | 地产 |
+| automobile | 汽车 |
+| china\_financial\_herald | 对话陆家嘴 |
+| fashion | 时尚 |
+| ad | 商业资讯 |
+| info | 资讯 |
+| jzfxb | 价值风向标 |
+| shuducaijing | 数读财经 |
+| shujujiepan | 数据解盘 |
+| shudushenghuo | 数读生活 |
+| cbndata | CBNData |
+| dtcj | DT 财经 |
+| xfsz | 消费数知 |
-### 视听 {#di-yi-cai-jing-shi-ting}
+### 一财号 {#di-yi-cai-jing-yi-cai-hao}
-<Route author="nczitzk" example="/yicai/video" path="/yicai/video/:id?" paramsDesc={['分类 id,见下表,可在对应分类页中找到,默认为视听']}>
- | Id | 名称 |
- | -------------------- | ---------------------------- |
- | youliao | 有料 |
- | appshipin | 此刻 |
- | yicaisudi | 速递 |
- | caishang | 财商 |
- | shiji | 史记 |
- | jinrigushi | 今日股市 |
- | tangulunjin | 谈股论金 |
- | gongsiyuhangye | 公司与行业 |
- | cjyxx | 财经夜行线 |
- | 6thtradingday | 第六交易日 |
- | cjfw | 财经风味 |
- | chuangshidai | 创时代 |
- | weilaiyaoqinghan | 未来邀请函 |
- | tounaofengbao | 头脑风暴 |
- | zhongguojingyingzhe | 中国经营者 |
- | shichanglingjuli | 市场零距离 |
- | huanqiucaijing | 环球财经视界 |
- | zgjcqyjglsxftl | 中国杰出企业家管理思想访谈录 |
- | jiemacaishang | 解码财商 |
- | sxpl | 首席评论 |
- | zhongguojingjiluntan | 中国经济论坛 |
- | opinionleader | 意见领袖 |
- | xinjinrong | 解码新金融 |
- | diyidichan | 第一地产 |
- | zhichedaren | 智车达人 |
- | chuangtoufengyun | 创投风云 |
- | chunxiangrensheng | 醇享人生 |
- | diyishengyin | 第一声音 |
- | sanliangboqianjin | 财智双全 |
- | weilaiyaoqinghan | 未来邀请函 |
- | zjdy | 主角 ▪ 大医 |
- | leye | 乐业之城 |
- | sanrenxing | 价值三人行 |
- | yuandongli | 中国源动力 |
- | pioneerzone | 直击引领区 |
-</Route>
+<Route data={{"path":"/author/:id?","categories":["traditional-media"],"example":"/yicai/author/100005663","parameters":{"id":"作者 id,可在对应作者页中找到,默认为第一财经研究院"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/author/:id","yicai.com/author"],"target":"/author/:id"},"name":"一财号","maintainers":["nczitzk"],"location":"author.ts"}} />
### 正在 {#di-yi-cai-jing-zheng-zai}
-<Route author="sanmmm nczitzk" example="/yicai/brief" path="/yicai/brief" />
+<Route data={{"path":"/brief","categories":["traditional-media"],"example":"/yicai/brief","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/brief"]},"name":"正在","maintainers":["sanmmm","nczitzk"],"url":"yicai.com/brief","location":"brief.ts"}} />
-### 一财号 {#di-yi-cai-jing-yi-cai-hao}
+### 最新 {#di-yi-cai-jing-zui-xin}
-<Route author="nczitzk" example="/yicai/author/100005663" path="/yicai/author/:id?" paramsDesc={['作者 id,可在对应作者页中找到,默认为第一财经研究院']} />
+<Route data={{"path":"/latest","categories":["traditional-media"],"example":"/yicai/latest","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/"]},"name":"最新","maintainers":["nczitzk"],"url":"yicai.com/","location":"latest.ts"}} />
### DT 财经 {#di-yi-cai-jing-dt-cai-jing}
-<Route author="nczitzk" example="/yicai/dt/article" path="/yicai/dt/:column?/:category?" paramsDesc={['栏目,见下表,默认为文章', '分类,见下表,默认为全部']} radar="1">
- #### [文章](https://dt.yicai.com/article)
-
- | 分类 | ID |
- | -------- | ---------- |
- | 全部 | article/0 |
- | 新流行 | article/31 |
- | 新趋势 | article/32 |
- | 商业黑马 | article/33 |
- | 新品 | article/34 |
- | 营销 | article/35 |
- | 大公司 | article/36 |
- | 城市生活 | article/38 |
-
- #### [报告](https://dt.yicai.com/report)
-
- | 分类 | ID |
- | ---------- | --------- |
- | 全部 | report/0 |
- | 人群观念 | report/9 |
- | 人群行为 | report/22 |
- | 美妆个护 | report/23 |
- | 3C 数码 | report/24 |
- | 营销趋势 | report/25 |
- | 服饰鞋包 | report/27 |
- | 互联网 | report/28 |
- | 城市与居住 | report/29 |
- | 消费趋势 | report/30 |
- | 生活趋势 | report/37 |
-
- #### [可视化](https://dt.yicai.com/visualization)
-
- | 分类 | ID |
- | -------- | ---------------- |
- | 全部 | visualization/0 |
- | 新流行 | visualization/39 |
- | 新趋势 | visualization/40 |
- | 商业黑马 | visualization/41 |
- | 新品 | visualization/42 |
- | 营销 | visualization/43 |
- | 大公司 | visualization/44 |
- | 城市生活 | visualization/45 |
-</Route>
+<Route data={{"path":"/dt/:column?/:category?","categories":["traditional-media"],"example":"/yicai/dt/article","parameters":{"column":"栏目,见下表,默认为文章","category":"分类,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"DT 财经","maintainers":["nczitzk"],"description":"#### [文章](https://dt.yicai.com/article)\n\n | 分类 | ID |\n | -------- | ---------- |\n | 全部 | article/0 |\n | 新流行 | article/31 |\n | 新趋势 | article/32 |\n | 商业黑马 | article/33 |\n | 新品 | article/34 |\n | 营销 | article/35 |\n | 大公司 | article/36 |\n | 城市生活 | article/38 |\n\n #### [报告](https://dt.yicai.com/report)\n\n | 分类 | ID |\n | ---------- | --------- |\n | 全部 | report/0 |\n | 人群观念 | report/9 |\n | 人群行为 | report/22 |\n | 美妆个护 | report/23 |\n | 3C 数码 | report/24 |\n | 营销趋势 | report/25 |\n | 服饰鞋包 | report/27 |\n | 互联网 | report/28 |\n | 城市与居住 | report/29 |\n | 消费趋势 | report/30 |\n | 生活趋势 | report/37 |\n\n #### [可视化](https://dt.yicai.com/visualization)\n\n | 分类 | ID |\n | -------- | ---------------- |\n | 全部 | visualization/0 |\n | 新流行 | visualization/39 |\n | 新趋势 | visualization/40 |\n | 商业黑马 | visualization/41 |\n | 新品 | visualization/42 |\n | 营销 | visualization/43 |\n | 大公司 | visualization/44 |\n | 城市生活 | visualization/45 |","location":"dt.ts"}} />
+
+#### [文章](https://dt.yicai.com/article) {#di-yi-cai-jing-dt-cai-jing-}
+
+| 分类 | ID |
+| -------- | ---------- |
+| 全部 | article/0 |
+| 新流行 | article/31 |
+| 新趋势 | article/32 |
+| 商业黑马 | article/33 |
+| 新品 | article/34 |
+| 营销 | article/35 |
+| 大公司 | article/36 |
+| 城市生活 | article/38 |
+
+#### [报告](https://dt.yicai.com/report) {#di-yi-cai-jing-dt-cai-jing-}
+
+| 分类 | ID |
+| ---------- | --------- |
+| 全部 | report/0 |
+| 人群观念 | report/9 |
+| 人群行为 | report/22 |
+| 美妆个护 | report/23 |
+| 3C 数码 | report/24 |
+| 营销趋势 | report/25 |
+| 服饰鞋包 | report/27 |
+| 互联网 | report/28 |
+| 城市与居住 | report/29 |
+| 消费趋势 | report/30 |
+| 生活趋势 | report/37 |
+
+#### [可视化](https://dt.yicai.com/visualization) {#di-yi-cai-jing-dt-cai-jing-}
+
+| 分类 | ID |
+| -------- | ---------------- |
+| 全部 | visualization/0 |
+| 新流行 | visualization/39 |
+| 新趋势 | visualization/40 |
+| 商业黑马 | visualization/41 |
+| 新品 | visualization/42 |
+| 营销 | visualization/43 |
+| 大公司 | visualization/44 |
+| 城市生活 | visualization/45 |
-## 东方网 {#dong-fang-wang}
-
-### 上海新闻 {#dong-fang-wang-shang-hai-xin-wen}
-
-<Route author="saury" example="/eastday/sh" path="/eastday/sh" />
+### VIP 频道 {#di-yi-cai-jing-vip-pin-dao}
-### 原创 {#dong-fang-wang-yuan-chuang}
+<Route data={{"path":"/vip/:id?","categories":["traditional-media"],"example":"/yicai/vip/428","parameters":{"id":"频道 id,可在对应频道页中找到,默认为一元点金"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yicai.com/vip/product/:id","yicai.com/"],"target":"/vip/:id"},"name":"VIP 频道","maintainers":["nczitzk"],"location":"vip.ts"}} />
-<Route author="nczitzk" example="/eastday/portrait" path="/eastday/portrait" />
+## 东方网 {#dong-fang-wang}
### 24 小时热闻 {#dong-fang-wang-24-xiao-shi-re-wen}
-<Route author="nczitzk" example="/eastday/24" path="/eastday/24/:category?" paramsDesc={['分类,见下表,默认为社会']}>
- | 推荐 | 社会 | 娱乐 | 国际 | 军事 |
- | ---- | ---- | ---- | ---- | ---- |
+<Route data={{"path":"/24/:category?","categories":["traditional-media"],"example":"/eastday/24","parameters":{"category":"分类,见下表,默认为社会"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mini.eastday.com/"],"target":"/24"},"name":"24 小时热闻","maintainers":["nczitzk"],"url":"mini.eastday.com/","description":"| 推荐 | 社会 | 娱乐 | 国际 | 军事 |\n | ---- | ---- | ---- | ---- | ---- |\n\n | 养生 | 汽车 | 体育 | 财经 | 游戏 |\n | ---- | ---- | ---- | ---- | ---- |\n\n | 科技 | 国内 | 宠物 | 情感 | 人文 | 教育 |\n | ---- | ---- | ---- | ---- | ---- | ---- |","location":"24.ts"}} />
- | 养生 | 汽车 | 体育 | 财经 | 游戏 |
- | ---- | ---- | ---- | ---- | ---- |
+| 推荐 | 社会 | 娱乐 | 国际 | 军事 |
+| ---- | ---- | ---- | ---- | ---- |
- | 科技 | 国内 | 宠物 | 情感 | 人文 | 教育 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
-</Route>
+| 养生 | 汽车 | 体育 | 财经 | 游戏 |
+| ---- | ---- | ---- | ---- | ---- |
-## 东网 {#dong-wang}
+| 科技 | 国内 | 宠物 | 情感 | 人文 | 教育 |
+| ---- | ---- | ---- | ---- | ---- | ---- |
-### 即時新聞 {#dong-wang-ji-shi-xin-wen}
+### 上海新闻 {#dong-fang-wang-shang-hai-xin-wen}
-<Route author="Fatpandac" example="/oncc/zh-hant/news" path="/oncc/:language/:channel?" paramsDesc={['`zh-hans` 为简体,`zh-hant` 为繁体', '频道,默认为港澳']}>
- 频道参数可以从官网的地址中获取,如:
+<Route data={{"path":"/sh","categories":["traditional-media"],"example":"/eastday/sh","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sh.eastday.com/"]},"name":"上海新闻","maintainers":["saury"],"url":"sh.eastday.com/","location":"sh.ts"}} />
- `https://hk.on.cc/hk/finance/index_cn.html` 对应 `/oncc/zh-hans/finance`
+### 原创 {#dong-fang-wang-yuan-chuang}
- `https://hk.on.cc/hk/finance/index.html` 对应 `/oncc/zh-hant/finance`
-</Route>
+<Route data={{"path":"/portrait","categories":["traditional-media"],"example":"/eastday/portrait","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.eastday.com/"]},"name":"原创","maintainers":["nczitzk"],"url":"www.eastday.com/","location":"portrait.ts"}} />
+
+## 东网 {#dong-wang}
### Money18 {#dong-wang-money18}
-<Route author="nczitzk" example="/oncc/money18/exp" path="/oncc/money18/:id?" paramsDesc={['栏目 id,可在对应栏目页 URL 中找到,默认为 exp,即新聞總覽']}>
- | 新聞總覽 | 全日焦點 | 板塊新聞 | 國際金融 | 大行報告 | A 股新聞 | 地產新聞 | 投資理財 | 新股 IPO | 科技財情 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | --------- | -------- | -------- |
- | exp | fov | industry | int | recagent | ntlgroup | pro | weainvest | ipo | tech |
-</Route>
+<Route data={{"path":"/money18/:id?","categories":["traditional-media"],"example":"/oncc/money18/exp","parameters":{"id":"栏目 id,可在对应栏目页 URL 中找到,默认为 exp,即新聞總覽"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Money18","maintainers":["nczitzk"],"description":"| 新聞總覽 | 全日焦點 | 板塊新聞 | 國際金融 | 大行報告 | A 股新聞 | 地產新聞 | 投資理財 | 新股 IPO | 科技財情 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | --------- | -------- | -------- |\n | exp | fov | industry | int | recagent | ntlgroup | pro | weainvest | ipo | tech |","location":"money18.ts"}} />
-## 公視新聞網 {#gong-shi-xin-wen-wang}
+| 新聞總覽 | 全日焦點 | 板塊新聞 | 國際金融 | 大行報告 | A 股新聞 | 地產新聞 | 投資理財 | 新股 IPO | 科技財情 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | --------- | -------- | -------- |
+| exp | fov | industry | int | recagent | ntlgroup | pro | weainvest | ipo | tech |
-### 即時新聞 {#gong-shi-xin-wen-wang-ji-shi-xin-wen}
+### 即時新聞 {#dong-wang-ji-shi-xin-wen}
-<Route author="nczitzk" example="/pts/dailynews" path="/pts/dailynews" />
+<Route data={{"path":"/:language/:channel?","categories":["traditional-media"],"example":"/oncc/zh-hant/news","parameters":{"language":"`zh-hans` 为简体,`zh-hant` 为繁体","channel":"频道,默认为港澳"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"即時新聞","maintainers":["Fatpandac"],"description":"频道参数可以从官网的地址中获取,如:\n\n `https://hk.on.cc/hk/finance/index_cn.html` 对应 `/oncc/zh-hans/finance`\n\n `https://hk.on.cc/hk/finance/index.html` 对应 `/oncc/zh-hant/finance`","location":"index.ts"}} />
-### 專題策展 {#gong-shi-xin-wen-wang-zhuan-ti-ce-zhan}
+频道参数可以从官网的地址中获取,如:
-<Route author="nczitzk" example="/pts/curations" path="/pts/curations" />
+`https://hk.on.cc/hk/finance/index_cn.html` 对应 `/oncc/zh-hans/finance`
-### 觀點 {#gong-shi-xin-wen-wang-guan-dian}
+`https://hk.on.cc/hk/finance/index.html` 对应 `/oncc/zh-hant/finance`
-<Route author="nczitzk" example="/pts/opinion" path="/pts/opinion" />
+## 公視新聞網 {#gong-shi-xin-wen-wang}
### 數位敘事 {#gong-shi-xin-wen-wang-shu-wei-xu-shi}
-<Route author="nczitzk" example="/pts/projects" path="/pts/projects" />
-
-### 深度報導 {#gong-shi-xin-wen-wang-shen-du-bao-dao}
-
-<Route author="nczitzk" example="/pts/report" path="/pts/report" />
-
-### 分類 {#gong-shi-xin-wen-wang-fen-lei}
+<Route data={{"path":"/projects","categories":["traditional-media"],"example":"/pts/projects","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.pts.org.tw/projects","news.pts.org.tw/"]},"name":"數位敘事","maintainers":["nczitzk"],"url":"news.pts.org.tw/projects","location":"projects.ts"}} />
-<Route author="nczitzk" example="/pts/category/9" path="/pts/category/:id" paramsDesc={['分類 id,见下表,可在对应分類页 URL 中找到']}>
- | 名称 | 编号 |
- | -------- | ---- |
- | 政治 | 1 |
- | 社會 | 7 |
- | 全球 | 4 |
- | 生活 | 5 |
- | 兩岸 | 9 |
- | 地方 | 11 |
- | 產經 | 10 |
- | 文教科技 | 6 |
- | 環境 | 3 |
- | 社福人權 | 12 |
-</Route>
-
-### 標籤 {#gong-shi-xin-wen-wang-biao-qian}
+### 整理報導 {#gong-shi-xin-wen-wang-zheng-li-bao-dao}
-<Route author="nczitzk" example="/pts/tag/230" path="/pts/tag/:id" paramsDesc={['標籤 id,可在对应標籤页 URL 中找到']} />
+<Route data={{"path":"/live/:id","categories":["traditional-media"],"example":"/pts/live/62e8e4bbb4de2cbd74468b2b","parameters":{"id":"報導 id,可在对应整理報導页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.pts.org.tw/live/:id","news.pts.org.tw/"]},"name":"整理報導","maintainers":[],"location":"live.ts"}} />
-### 整理報導 {#gong-shi-xin-wen-wang-zheng-li-bao-dao}
+### 專題策展 {#gong-shi-xin-wen-wang-zhuan-ti-ce-zhan}
-<Route author="nczitzk" example="/pts/live/62e8e4bbb4de2cbd74468b2b" path="/pts/live/:id" paramsDesc={['報導 id,可在对应整理報導页 URL 中找到']} />
+<Route data={{"path":"/curations","categories":["traditional-media"],"example":"/pts/curations","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.pts.org.tw/curations","news.pts.org.tw/"]},"name":"專題策展","maintainers":["nczitzk"],"url":"news.pts.org.tw/curations","location":"curations.ts"}} />
## 共同网 {#gong-tong-wang}
### 最新报道 {#gong-tong-wang-zui-xin-bao-dao}
-<Route author="Rongronggg9" example="/kyodonews" path="/kyodonews/:language?/:keyword?" paramsDesc={['语言: `china` = 简体中文 (默认), `tchina` = 繁體中文', '关键词']}>
- `keyword` 为关键词,由于共同网有许多关键词并不在主页列出,此处不一一列举,可从关键词页的 URL 的最后一级路径中提取。如 `日中关系` 的关键词页 URL 为 `https://china.kyodonews.net/news/japan-china_relationship`, 则将 `japan-china_relationship` 填入 `keyword`。特别地,当填入 `rss` 时,将从共同网官方 RSS 中抓取文章;略去时,将从首页抓取最新报道 (注意:首页更新可能比官方 RSS 稍慢)。
-</Route>
+<Route data={{"path":"/:language?/:keyword?","categories":["traditional-media"],"example":"/kyodonews","parameters":{"language":"语言: `china` = 简体中文 (默认), `tchina` = 繁體中文","keyword":"关键词"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新报道","maintainers":["Rongronggg9"],"description":"`keyword` 为关键词,由于共同网有许多关键词并不在主页列出,此处不一一列举,可从关键词页的 URL 的最后一级路径中提取。如 `日中关系` 的关键词页 URL 为 `https://china.kyodonews.net/news/japan-china_relationship`, 则将 `japan-china_relationship` 填入 `keyword`。特别地,当填入 `rss` 时,将从共同网官方 RSS 中抓取文章;略去时,将从首页抓取最新报道 (注意:首页更新可能比官方 RSS 稍慢)。","location":"index.ts"}} />
+
+`keyword` 为关键词,由于共同网有许多关键词并不在主页列出,此处不一一列举,可从关键词页的 URL 的最后一级路径中提取。如 `日中关系` 的关键词页 URL 为 `https://china.kyodonews.net/news/japan-china_relationship`, 则将 `japan-china_relationship` 填入 `keyword`。特别地,当填入 `rss` 时,将从共同网官方 RSS 中抓取文章;略去时,将从首页抓取最新报道 (注意:首页更新可能比官方 RSS 稍慢)。
## 广州日报 {#guang-zhou-ri-bao}
### 客户端 {#guang-zhou-ri-bao-ke-hu-duan}
-<Route author="TimWu007" example="/gzdaily/app/74" path="/gzdaily/app/:column?" paramsDesc={['栏目 ID,点击对应栏目后在地址栏找到']}>
- :::tip
- 在北京时间深夜可能无法获取内容。
- :::
+<Route data={{"path":"/app/:column?","categories":["traditional-media"],"example":"/gzdaily/app/74","parameters":{"column":"栏目 ID,点击对应栏目后在地址栏找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"客户端","maintainers":["TimWu007"],"description":":::tip\n 在北京时间深夜可能无法获取内容。\n :::\n\n 常用栏目 ID:\n\n | 栏目名 | ID |\n | ------ | ---- |\n | 首页 | 74 |\n | 时局 | 374 |\n | 广州 | 371 |\n | 大湾区 | 397 |\n | 城区 | 2980 |","location":"app.ts"}} />
- 常用栏目 ID:
-
- | 栏目名 | ID |
- | ------ | ---- |
- | 首页 | 74 |
- | 时局 | 374 |
- | 广州 | 371 |
- | 大湾区 | 397 |
- | 城区 | 2980 |
-</Route>
-
-## 国际金融报栏目 {#guo-ji-jin-rong-bao-lan-mu}
+:::tip
+在北京时间深夜可能无法获取内容。
+:::
-### 栏目 {#guo-ji-jin-rong-bao-lan-mu-lan-mu}
+常用栏目 ID:
-<Route author="Origami404" example="/ifnews/48" path="/ifnews/:cid" paramsDesc={['栏目 ID']}>
- `cid`可在对应栏目的 url 后的参数中获取,如`热点快报`的栏目 url 为`http://www.ifnews.com/column.html?cid=48`, `cid`即为`48`.
-</Route>
+| 栏目名 | ID |
+| ------ | ---- |
+| 首页 | 74 |
+| 时局 | 374 |
+| 广州 | 371 |
+| 大湾区 | 397 |
+| 城区 | 2980 |
## 河北网络广播电视台 {#he-bei-wang-luo-guang-bo-dian-shi-tai}
### 农博士在行动 {#he-bei-wang-luo-guang-bo-dian-shi-tai-nong-bo-shi-zai-xing-dong}
-<Route author="iamqiz nczitzk" example="/hebtv/nbszxd" path="/hebtv/nbszxd" radar="1" supportBT="1" supportPodcast="1" />
+<Route data={{"path":"/nbszxd","categories":["traditional-media"],"example":"/hebtv/nbszxd","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":true,"supportPodcast":true,"supportScihub":false},"radar":{"source":["web.cmc.hebtv.com/cms/rmt0336/19/19js/st/ds/nmpd/nbszxd/index.shtml"]},"name":"农博士在行动","maintainers":["iamqiz","nczitzk"],"url":"web.cmc.hebtv.com/cms/rmt0336/19/19js/st/ds/nmpd/nbszxd/index.shtml","location":"nong-bo-shi-zai-xing-dong.ts"}} />
## 湖南日报 {#hu-nan-ri-bao}
### 电子刊物 {#hu-nan-ri-bao-dian-zi-kan-wu}
-<Route author="nczitzk" example="/hnrb" path="/hnrb/:id?" paramsDesc={['编号,见下表,默认为全部']} anticrawler="1">
- | 版 | 编号 |
- | -------------------- | ---- |
- | 全部 | |
- | 第 01 版:头版 | 1 |
- | 第 02 版:要闻 | 2 |
- | 第 03 版:要闻 | 3 |
- | 第 04 版:深度 | 4 |
- | 第 05 版:市州 | 5 |
- | 第 06 版:理论・学习 | 6 |
- | 第 07 版:观察 | 7 |
- | 第 08 版:时事 | 8 |
- | 第 09 版:中缝 | 9 |
-</Route>
+<Route data={{"path":"/:id?","categories":["traditional-media"],"example":"/hnrb","parameters":{"id":"编号,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["voc.com.cn/"],"target":"/:id"},"name":"电子刊物","maintainers":["nczitzk"],"url":"voc.com.cn/","description":"| 版 | 编号 |\n | -------------------- | ---- |\n | 全部 | |\n | 第 01 版:头版 | 1 |\n | 第 02 版:要闻 | 2 |\n | 第 03 版:要闻 | 3 |\n | 第 04 版:深度 | 4 |\n | 第 05 版:市州 | 5 |\n | 第 06 版:理论・学习 | 6 |\n | 第 07 版:观察 | 7 |\n | 第 08 版:时事 | 8 |\n | 第 09 版:中缝 | 9 |","location":"index.ts"}} />
+
+| 版 | 编号 |
+| -------------------- | ---- |
+| 全部 | |
+| 第 01 版:头版 | 1 |
+| 第 02 版:要闻 | 2 |
+| 第 03 版:要闻 | 3 |
+| 第 04 版:深度 | 4 |
+| 第 05 版:市州 | 5 |
+| 第 06 版:理论・学习 | 6 |
+| 第 07 版:观察 | 7 |
+| 第 08 版:时事 | 8 |
+| 第 09 版:中缝 | 9 |
## 华尔街见闻 {#hua-er-jie-jian-wen}
-### 资讯 {#hua-er-jie-jian-wen-zi-xun}
-
-<Route author="nczitzk" example="/wallstreetcn/global" path="/wallstreetcn/:category?" paramsDesc={['资讯分类,默认`global`,见下表']}>
- | id | 分类 |
- | ------------ | ---- |
- | global | 最新 |
- | shares | 股市 |
- | bonds | 债市 |
- | commodities | 商品 |
- | forex | 外汇 |
- | enterprise | 公司 |
- | asset-manage | 资管 |
- | tmt | 科技 |
- | estate | 地产 |
- | car | 汽车 |
- | medicine | 医药 |
-</Route>
-
-### 最新 {#hua-er-jie-jian-wen-zui-xin}
-
-<Route author="conanjunn nczitzk" example="/wallstreetcn/news/global" path="/wallstreetcn/news/global" />
-
### 实时快讯 {#hua-er-jie-jian-wen-shi-shi-kuai-xun}
-<Route author="nczitzk" example="/wallstreetcn/live" path="/wallstreetcn/live/:category?/:score?" paramsDesc={['快讯分类,默认`global`,见下表', '快讯重要度,默认`1`全部快讯,可设置为`2`只看重要的']}>
- | 要闻 | A 股 | 美股 | 港股 | 外汇 | 商品 | 理财 |
- | ------ | ------- | -------- | -------- | ----- | --------- | --------- |
- | global | a-stock | us-stock | hk-stock | forex | commodity | financing |
-</Route>
+<Route data={{"path":"/live/:category?/:score?","categories":["traditional-media"],"example":"/wallstreetcn/live","parameters":{"category":"快讯分类,默认`global`,见下表","score":"快讯重要度,默认`1`全部快讯,可设置为`2`只看重要的"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wallstreetcn.com/live/:category","wallstreetcn.com/"],"target":"/live/:category?"},"name":"实时快讯","maintainers":["nczitzk"],"description":"| 要闻 | A 股 | 美股 | 港股 | 外汇 | 商品 | 理财 |\n | ------ | ------- | -------- | -------- | ----- | --------- | --------- |\n | global | a-stock | us-stock | hk-stock | forex | commodity | financing |","location":"live.ts"}} />
+
+| 要闻 | A 股 | 美股 | 港股 | 外汇 | 商品 | 理财 |
+| ------ | ------- | -------- | -------- | ----- | --------- | --------- |
+| global | a-stock | us-stock | hk-stock | forex | commodity | financing |
### 最热文章 {#hua-er-jie-jian-wen-zui-re-wen-zhang}
-<Route author="nczitzk" example="/wallstreetcn/hot" path="/wallstreetcn/hot/:period?" paramsDesc={['时期,可选 `day` 即 当日 或 `week` 即 当周,默认为当日']} />
+<Route data={{"path":"/hot/:period?","categories":["traditional-media"],"example":"/wallstreetcn/hot","parameters":{"period":"时期,可选 `day` 即 当日 或 `week` 即 当周,默认为当日"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wallstreetcn.com/"]},"name":"最热文章","maintainers":["nczitzk"],"url":"wallstreetcn.com/","location":"hot.ts"}} />
## 華視 {#hua-shi}
### 新聞 {#hua-shi-xin-wen}
-<Route author="miles170" example="/cts/real" path="/cts/:category" paramsDesc={['类别']} radar="1" anticrawler="1">
- | 即時 | 氣象 | 政治 | 國際 | 社會 | 運動 | 生活 | 財經 | 台語 | 地方 | 產業 | 綜合 | 藝文 | 娛樂 |
- | ---- | ------- | -------- | ------------- | ------- | ------ | ---- | ----- | --------- | ----- | ---- | ------- | ---- | --------- |
- | real | weather | politics | international | society | sports | life | money | taiwanese | local | pr | general | arts | entertain |
-</Route>
+<Route data={{"path":"/:category","categories":["traditional-media"],"example":"/cts/real","parameters":{"category":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.cts.com.tw/:category/index.html"]},"name":"新聞","maintainers":["miles170"],"description":"| 即時 | 氣象 | 政治 | 國際 | 社會 | 運動 | 生活 | 財經 | 台語 | 地方 | 產業 | 綜合 | 藝文 | 娛樂 |\n | ---- | ------- | -------- | ------------- | ------- | ------ | ---- | ----- | --------- | ----- | ---- | ------- | ---- | --------- |\n | real | weather | politics | international | society | sports | life | money | taiwanese | local | pr | general | arts | entertain |","location":"news.ts"}} />
+
+| 即時 | 氣象 | 政治 | 國際 | 社會 | 運動 | 生活 | 財經 | 台語 | 地方 | 產業 | 綜合 | 藝文 | 娛樂 |
+| ---- | ------- | -------- | ------------- | ------- | ------ | ---- | ----- | --------- | ----- | ---- | ------- | ---- | --------- |
+| real | weather | politics | international | society | sports | life | money | taiwanese | local | pr | general | arts | entertain |
## 环球网 {#huan-qiu-wang}
### 分类 {#huan-qiu-wang-fen-lei}
-<Route author="yuxinliu-alex" example="/huanqiu/news/china" path="/huanqiu/news/:category?" paramsDesc={['类别,可以使用二级域名作为参数,默认为:china']}>
- | 国内新闻 | 国际新闻 | 军事 | 台海 | 评论 |
- | -------- | -------- | ---- | ------ | ------- |
- | china | world | mil | taiwai | opinion |
-</Route>
-
-## 极客公园 {#ji-ke-gong-yuan}
+<Route data={{"path":"/news/:category?","categories":["traditional-media"],"example":"/huanqiu/news/china","parameters":{"category":"类别,可以使用二级域名作为参数,默认为:china"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["huanqiu.com/"]},"name":"分类","maintainers":["yuxinliu-alex"],"url":"huanqiu.com/","description":"| 国内新闻 | 国际新闻 | 军事 | 台海 | 评论 |\n | -------- | -------- | ---- | ------ | ------- |\n | china | world | mil | taiwai | opinion |","location":"index.ts"}} />
-### 全球快讯 {#ji-ke-gong-yuan-quan-qiu-kuai-xun}
-
-<Route author="xyqfer" example="/geekpark/breakingnews" path="/geekpark/breakingnews" />
-
-## 界面新闻 {#jie-mian-xin-wen}
-
-### 栏目 {#jie-mian-xin-wen-lan-mu}
-
-<Route author="WenhuWee nczitzk" example="/jiemian/lists/65" path="/jiemian/lists/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']} radar="1">
- | [首页](https://www.jiemian.com) | [商业](https://www.jiemian.com/lists/2.html) | [财经](https://www.jiemian.com/lists/800.html) | [新闻](https://www.jiemian.com/lists/801.html) | [文化生活](https://www.jiemian.com/lists/130.html) | [快报](https://www.jiemian.com/lists/4.html) |
- | ------------------------------- | -------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | -------------------------------------------------- | -------------------------------------------- |
- | | 2 | 800 | 801 | 130 | 4 |
-
- <details>
- <summary>更多分类</summary>
-
- #### [首页](https://www.jiemian.com)
-
- | [科技](https://www.jiemian.com/lists/65.html) | [金融](https://www.jiemian.com/lists/9.html) | [证券](https://www.jiemian.com/lists/112.html) | [地产](https://www.jiemian.com/lists/62.html) | [汽车](https://www.jiemian.com/lists/51.html) | [健康](https://www.jiemian.com/lists/472.html) |
- | --------------------------------------------- | -------------------------------------------- | ---------------------------------------------- | --------------------------------------------- | --------------------------------------------- | ---------------------------------------------- |
- | 65 | 9 | 112 | 62 | 51 | 472 |
-
- | [大湾区](https://www.jiemian.com/lists/680.html) | [元宇宙](https://www.jiemian.com/lists/704.html) | [文旅](https://www.jiemian.com/lists/105.html) | [数据](https://www.jiemian.com/lists/154.html) | [ESG](https://www.jiemian.com/lists/712.html) | [双碳](https://www.jiemian.com/lists/877.html) |
- | ------------------------------------------------ | ------------------------------------------------ | ---------------------------------------------- | ---------------------------------------------- | --------------------------------------------- | ---------------------------------------------- |
- | 680 | 704 | 105 | 154 | 712 | 877 |
-
- | [电厂](https://www.jiemian.com/lists/872.html) |
- | ---------------------------------------------- |
- | 872 |
-
- #### [商业](https://www.jiemian.com/lists/2.html)
-
- | [科技](https://www.jiemian.com/lists/65.html) | [地产](https://www.jiemian.com/lists/62.html) | [ 汽车](https://www.jiemian.com/lists/51.html) | [消费](https://www.jiemian.com/lists/31.html) | [工业](https://www.jiemian.com/lists/28.html) | [时尚](https://www.jiemian.com/lists/68.html) |
- | --------------------------------------------- | --------------------------------------------- | ---------------------------------------------- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- |
- | 65 | 62 | 51 | 31 | 28 | 68 |
-
- | [交通](https://www.jiemian.com/lists/30.html) | [医药](https://www.jiemian.com/lists/472.html) | [互联网](https://www.jiemian.com/lists/851.html) | [创投 ](https://www.jiemian.com/lists/858.html) | [能源](https://www.jiemian.com/lists/856.html) | [数码](https://www.jiemian.com/lists/853.html) |
- | --------------------------------------------- | ---------------------------------------------- | ------------------------------------------------ | ----------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
- | 30 | 472 | 851 | 858 | 856 | 853 |
-
- | [教育](https://www.jiemian.com/lists/256.html) | [食品](https://www.jiemian.com/lists/845.html) | [新能源](https://www.jiemian.com/lists/857.html) | [家电](https://www.jiemian.com/lists/850.html) | [健康](https://www.jiemian.com/lists/854.html) | [酒业](https://www.jiemian.com/lists/676.html) |
- | ---------------------------------------------- | ---------------------------------------------- | ------------------------------------------------ | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
- | 256 | 845 | 857 | 850 | 854 | 676 |
-
- | [物流](https://www.jiemian.com/lists/841.html) | [零售](https://www.jiemian.com/lists/847.html) | [美妆](https://www.jiemian.com/lists/838.html) | [楼市](https://www.jiemian.com/city/main/181.html) | [家居](https://www.jiemian.com/lists/694.html) | [餐饮](https://www.jiemian.com/lists/848.html) |
- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | -------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
- | 841 | 847 | 838 | city/main/181 | 694 | 848 |
-
- | [日用](https://www.jiemian.com/lists/846.html) | [企服](https://www.jiemian.com/lists/852.html) | [珠宝](https://www.jiemian.com/lists/839.html) | [腕表](https://www.jiemian.com/lists/840.html) | [ 商学院](https://www.jiemian.com/lists/605.html) | [元宇宙](https://www.jiemian.com/lists/704.html) |
- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- | ------------------------------------------------- | ------------------------------------------------ |
- | 846 | 852 | 839 | 840 | 605 | 704 |
-
- | [电厂](https://www.jiemian.com/lists/872.html) | [农业](https://www.jiemian.com/lists/883.html) |
- | ---------------------------------------------- | ---------------------------------------------- |
- | 872 | 883 |
-
- #### [财经](https://www.jiemian.com/lists/800.html)
-
- | [金融](https://www.jiemian.com/lists/9.html) | [投资](https://www.jiemian.com/lists/86.html) | [证券](https://www.jiemian.com/lists/112.html) | [IPO](https://www.jiemian.com/lists/699.html) | [宏观](https://www.jiemian.com/lists/174.html) | [股市](https://www.jiemian.com/lists/418.html) |
- | -------------------------------------------- | --------------------------------------------- | ---------------------------------------------- | --------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
- | 9 | 86 | 112 | 699 | 174 | 418 |
-
- | [财富](https://www.jiemian.com/lists/410.html) | [有连云](https://www.jiemian.com/lists/889.html) |
- | ---------------------------------------------- | ------------------------------------------------ |
- | 410 | 889 |
-
- #### [新闻](https://www.jiemian.com/lists/801.html)
-
- | [天下](https://www.jiemian.com/lists/32.html) | [中国](https://www.jiemian.com/lists/71.html) | [ 评论](https://www.jiemian.com/lists/8.html) | [数据](https://www.jiemian.com/lists/154.html) | [职场](https://www.jiemian.com/lists/50.html) | [国是](https://www.jiemian.com/lists/422.html) |
- | --------------------------------------------- | --------------------------------------------- | --------------------------------------------- | ---------------------------------------------- | --------------------------------------------- | ---------------------------------------------- |
- | 32 | 71 | 8 | 154 | 50 | 422 |
-
- | [体育](https://www.jiemian.com/lists/82.html) | [文娱](https://www.jiemian.com/lists/63.html) | [ 影像](https://www.jiemian.com/lists/225.html) | [营销](https://www.jiemian.com/lists/49.html) | [大 湾区](https://www.jiemian.com/lists/680.html) | [ESG](https://www.jiemian.com/lists/712.html) |
- | --------------------------------------------- | --------------------------------------------- | ----------------------------------------------- | --------------------------------------------- | ------------------------------------------------- | --------------------------------------------- |
- | 82 | 63 | 225 | 49 | 680 | 712 |
-
- | [双碳](https://www.jiemian.com/lists/877.html) | [长三角](https://www.jiemian.com/lists/917.html) |
- | ---------------------------------------------- | ------------------------------------------------ |
- | 877 | 917 |
-
- #### [文化生活](https://www.jiemian.com/lists/130.html)
-
- | [文化](https://www.jiemian.com/lists/130.html) | [文旅](https://www.jiemian.com/lists/105.html) | [生活方式](https://www.jiemian.com/lists/135.html) | [美食美酒](https://www.jiemian.com/lists/865.html) | [艺术](https://www.jiemian.com/lists/643.html) | [游戏](https://www.jiemian.com/lists/118.html) |
- | ---------------------------------------------- | ---------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------- |
- | 130 | 105 | 135 | 865 | 643 | 118 |
-
- | [正午](https://www.jiemian.com/lists/53.html) | [箭厂](https://www.jiemian.com/video/lists/195_1.html) |
- | --------------------------------------------- | ------------------------------------------------------ |
- | 53 | video/lists/195\_1 |
-
- #### [快报](https://www.jiemian.com/lists/4.html)
-
- | [今日热点](https://www.jiemian.com/lists/1324kb.html) | [公司头条](https://www.jiemian.com/lists/1322kb.html) | [股市前沿](https://www.jiemian.com/lists/1327kb.html) | [监管通报](https://www.jiemian.com/lists/1330kb.html) | [财经速览](https://www.jiemian.com/lists/1326kb.html) | [时事追踪](https://www.jiemian.com/lists/1325kb.html) |
- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
- | 1324kb | 1322kb | 1327kb | 1330kb | 1326kb | 1325kb |
- </details>
-</Route>
-
-### VIP {#jie-mian-xin-wen-vip}
-
-<Route author="nczitzk" example="/jiemian/pro/lists/12" path="/jiemian/pro/lists/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']} radar="1">
- | [投资早晚报](https://www.jiemian.com/pro/lists/12.html) | [宏观晚 6 点](https://www.jiemian.com/pro/lists/20.html) | [打新早报](https://www.jiemian.com/pro/lists/21.html) | [盘前机会前瞻](https://www.jiemian.com/pro/lists/13.html) | [公告快评](https://www.jiemian.com/pro/lists/14.html) | [盘中必读](https://www.jiemian.com/pro/lists/15.html) |
- | ------------------------------------------------------- | -------------------------------------------------------- | ----------------------------------------------------- | --------------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
- | 12 | 20 | 21 | 13 | 14 | 15 |
-
- | [金股挖掘](https://www.jiemian.com/pro/lists/16.html) | [调研早知道](https://www.jiemian.com/pro/lists/17.html) | [研报新知](https://www.jiemian.com/pro/lists/18.html) | [大势侦察](https://www.jiemian.com/pro/lists/1.html) | [市场风向标](https://www.jiemian.com/pro/lists/19.html) |
- | ----------------------------------------------------- | ------------------------------------------------------- | ----------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------------- |
- | 16 | 17 | 18 | 1 | 19 |
-</Route>
-
-### 界面号 {#jie-mian-xin-wen-jie-mian-hao}
-
-<Route author="nczitzk" example="/jiemian/account/main/1" path="/jiemian/account/main/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']} radar="1">
- | [财经号](https://www.jiemian.com/account/main/1.html) | [城市号](https://www.jiemian.com/account/main/2.html) | [媒体号](https://www.jiemian.com/account/main/3.html) |
- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- |
- | 1 | 2 | 3 |
-</Route>
-
-### 视频 {#jie-mian-xin-wen-shi-pin}
-
-<Route author="nczitzk" example="/jiemian/video/lists/258_1" path="/jiemian/video/lists/:id" paramsDesc={['分类 id,见下表,可在对应分类页 URL 中找到']} radar="1">
- | [界面 Vnews](https://www.jiemian.com/video/lists/258_1.html) | [直播](https://www.jiemian.com/videoLive/lists_1.html) | [箭厂](https://www.jiemian.com/video/lists/195_1.html) | [面谈](https://www.jiemian.com/video/lists/111_1.html) | [品牌创酷](https://www.jiemian.com/video/lists/226_1.html) | [番 茄社](https://www.jiemian.com/video/lists/567_1.html) |
- | ------------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ---------------------------------------------------------- | --------------------------------------------------------- |
- | 258\_1 | videoLive/lists\_1 | 195\_1 | 111\_1 | 226\_1 | 567\_1 |
-
- | [商业微史记](https://www.jiemian.com/video/lists/882_1.html) |
- | ------------------------------------------------------------ |
- | 882\_1 |
-</Route>
-
-### 专题 {#jie-mian-xin-wen-zhuan-ti}
-
-<Route author="nczitzk" example="/jiemian/special/1192" path="/jiemian/special/lists/:id" paramsDesc={['分类 id,可在对应分类页 URL 中找到']} radar="1" />
-
-## 经济观察网 {#jing-ji-guan-cha-wang}
-
-### 栏目 {#jing-ji-guan-cha-wang-lan-mu}
-
-<Route author="nczitzk" example="/eeo/yaowen/dashi" path="/eeo/:column?/:category?" paramsDesc={['栏目,见下表,默认为 商业产业', '分类,见下表,默认为该栏目下所有分类']}>
- :::tip
- 以下小标题即栏目 `column`,标题下表格中为对应栏目的分类 `category`,两者需要配合使用。
-
- 如订阅 **时事・政策・宏观** 栏目中的 **大宗商品** 分类,填入 [`/eeo/yaowen/dzsp`](http://rsshub.app/eeo/yaowen/dzsp)。
-
- 若栏目下没有分类,如 **商业产业** 栏目,直接填入 [`/eeo/shangyechanye`](http://rsshub.app/eeo/shangyechanye)。
-
- 或者欲订阅该栏目下的所有分类,如订阅 **时事・政策・宏观** 中的所有分类,则直接将分类 `category` 留空,即 [`/eeo/yaowen`](http://rsshub.app/eeo/yaowen)。
- :::
-
- 商业产业 shangyechanye [`/eeo/shangyechanye`](http://rsshub.app/eeo/shangyechanye)
-
- 财经 caijing [`/eeo/caijing`](http://rsshub.app/eeo/caijing)
-
- 上市公司 ssgsn [`/eeo/ssgsn`](http://rsshub.app/eeo/ssgsn)
-
- 地产 dichan [`/eeo/dichan`](http://rsshub.app/eeo/dichan)
-
- 汽车 qiche [`/eeo/qiche`](http://rsshub.app/eeo/qiche)
-
- TMT tmt [`/eeo/tmt`](http://rsshub.app/eeo/tmt)
-
- 评论 pinglun [`/eeo/pinglun`](http://rsshub.app/eeo/pinglun)
-
- 研究院 yanjiuyuan [`/eeo/yanjiuyuan`](http://rsshub.app/eeo/yanjiuyuan)
-
- :::tip[建议]
- 请优先选择订阅以上栏目,下面的栏目大部分已经很久没有更新。
- :::
-
- 两会 lianghui [`/eeo/lianghui`](http://rsshub.app/eeo/lianghui)
-
- 时事・政策・宏观 yaowen [`/eeo/yaowen`](http://rsshub.app/eeo/yaowen)
-
- | 时事 | 政策 | 宏观 | 智库 | 首席观点 | 大宗商品 |
- | ----- | ------ | ------- | ---------- | -------- | -------- |
- | dashi | hfggzc | hfshuju | hfdongjian | sxgd | dzsp |
-
- 证券・资本・理财 jinrong [`/eeo/jinrong`](http://rsshub.app/eeo/jinrong)
-
- | 债市 | 资本 | 理财 | 证券 | 银行 |
- | ------- | ----- | ----- | --------- | ----- |
- | zhaishi | ziben | licai | zhengquan | jijin |
-
- | 保险 | PE / 创投 | 科创板 | 新三板 | 互联网金融 |
- | ------- | --------- | ----------- | --------- | ---------- |
- | jinkong | chuangtou | kechuangban | xinsanban | hlwjr |
-
- 新科技・互联网・O2O shangye [`/eeo/shangye`](http://rsshub.app/eeo/shangye)
-
- | 新科技 | 互联网 | 大健康 | O2O | 花蕾之约 | 创业家笔记 | 环境 |
- | ----------- | --------- | ------ | ----- | ------------ | ---------- | -------- |
- | xinnengyuan | dianshang | yiliao | wuliu | hualeizhiyue | cyjbj | huanjing |
-
- 房产・汽车・消费 fcqcxf [`/eeo/fcqcxf`](http://rsshub.app/eeo/fcqcxf)
-
- | 房产 | 汽车 | 消费 |
- | ------ | ----- | ------- |
- | dichan | qiche | xiaofei |
-
- 影视・体育・娱乐 yule [`/eeo/yule`](http://rsshub.app/eeo/yule)
-
- | 娱乐 | 影视 | 体育 | 教育 |
- | ---- | ------- | ---- | ------ |
- | yule | yingshi | tiyu | jiaoyu |
-
- 观察家・书评・思想 gcj [`/eeo/gcj`](http://rsshub.app/eeo/gcj)
-
- | 观察家 | 专栏 | 个人历史 | 书评 |
- | ---------- | -------- | -------- | ------- |
- | guanchajia | zhuanlan | lishi | shuping |
-
- | 纵深 | 文化 | 领读 |
- | -------- | ------ | ------ |
- | zongshen | wenhua | lingdu |
-</Route>
-
-### 分类资讯 {#jing-ji-guan-cha-wang-fen-lei-zi-xun}
-
-<Route author="epirus" example="/eeo/15" path="/eeo/:category" paramsDesc={['分类']}>
- category 对应的关键词有
-
- | 时事 | 政策 | 证券 | 资本 | 理财 | 新科技 | 大健康 | 房产 | 汽车 | 消费 | 影视 | 娱乐 | 体育 | 教育 | 观察家 | 专栏 | 书评 | 个人历史 | 宏观 |
- | ---- | ---- | ---- | ---- | ---- | ------ | ------ | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ---- | ---- | -------- | ---- |
- | 01 | 02 | 03 | 04 | 05 | 06 | 07 | 08 | 09 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
-</Route>
-
-## 靠谱新闻 {#kao-pu-xin-wen}
-
-### 新闻聚合 {#kao-pu-xin-wen-xin-wen-ju-he}
-
-<Route author="wushijishan nczitzk" example="/kaopunews/:language?" path="/kaopunews" paramsDesc={['语言,可选 zh-hans 即简体中文,或 zh-hant 即繁体中文']} />
+| 国内新闻 | 国际新闻 | 军事 | 台海 | 评论 |
+| -------- | -------- | ---- | ------ | ------- |
+| china | world | mil | taiwai | opinion |
## 客家電視台 {#ke-jia-dian-shi-tai}
### 新聞首頁 {#ke-jia-dian-shi-tai-xin-wen-shou-ye}
-<Route author="TonyRL" example="/hakkatv/news" path="/hakkatv/news/:type?" paramsDesc={['新聞,見下表,留空為全部']} radar="1">
- | 客家焦點 | 政經要聞 | 民生醫療 | 地方風采 | 國際萬象 |
- | -------- | --------- | -------- | -------- | ------------- |
- | hakka | political | medical | local | international |
-</Route>
+<Route data={{"path":"/news/:type?","categories":["traditional-media"],"example":"/hakkatv/news","parameters":{"type":"新聞,見下表,留空為全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hakkatv.org.tw/news"],"target":"/news"},"name":"新聞首頁","maintainers":["TonyRL"],"url":"hakkatv.org.tw/news","description":"| 客家焦點 | 政經要聞 | 民生醫療 | 地方風采 | 國際萬象 |\n | -------- | --------- | -------- | -------- | ------------- |\n | hakka | political | medical | local | international |","location":"type.ts"}} />
+
+| 客家焦點 | 政經要聞 | 民生醫療 | 地方風采 | 國際萬象 |
+| -------- | --------- | -------- | -------- | ------------- |
+| hakka | political | medical | local | international |
## 理论网 {#li-lun-wang}
### 学习时报 {#li-lun-wang-xue-xi-shi-bao}
-<Route author="nczitzk" example="/cntheory/paper" path="/cntheory/paper/:id?" paramsDesc={['板块,默认为全部']}>
- 如订阅 **第 A1 版:国内大局**,路由为 [`/cntheory/paper/国内大局`](https://rsshub.app/cntheory/paper/国内大局)。
-</Route>
+<Route data={{"path":"/paper/:id?","categories":["traditional-media"],"example":"/cntheory/paper","parameters":{"id":"板块,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"学习时报","maintainers":["nczitzk"],"description":"如订阅 **第 A1 版:国内大局**,路由为 [`/cntheory/paper/国内大局`](https://rsshub.app/cntheory/paper/国内大局)。","location":"paper.ts"}} />
+
+如订阅 **第 A1 版:国内大局**,路由为 [`/cntheory/paper/国内大局`](https://rsshub.app/cntheory/paper/国内大局)。
## 联合早报 {#lian-he-zao-bao}
@@ -1513,868 +928,621 @@ This route adds the missing photo and Link element. (Offical RSS doesn't have Li
由于 [RSSHub#10309](https://github.com/DIYgod/RSSHub/issues/10309) 中的问题,使用靠近香港的服务器部署将从 hk 版联合早报爬取内容,造成输出的新闻段落顺序错乱。如有订阅此源的需求,建议寻求部署在远离香港的服务器上的 RSSHub,或者在自建时选择远离香港的服务器。
:::
-### 即时新闻 {#lian-he-zao-bao-ji-shi-xin-wen}
+### 互动新闻 {#lian-he-zao-bao-hu-dong-xin-wen}
-<Route author="lengthmin" example="/zaobao/realtime/china" path="/zaobao/realtime/:section?" paramsDesc={['分类,缺省为 china']}>
- | 中国 | 新加坡 | 国际 | 财经 |
- | ----- | --------- | ----- | -------- |
- | china | singapore | world | zfinance |
-</Route>
+<Route data={{"path":"/interactive-graphics","categories":["traditional-media"],"example":"/zaobao/interactive-graphics","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"互动新闻","maintainers":["shunf4"],"location":"interactive.ts"}} />
-### 新闻 {#lian-he-zao-bao-xin-wen}
+### 即时新闻 {#lian-he-zao-bao-ji-shi-xin-wen}
+
+<Route data={{"path":"/realtime/:section?","categories":["traditional-media"],"example":"/zaobao/realtime/china","parameters":{"section":"分类,缺省为 china"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"即时新闻","maintainers":["shunf4"],"description":"| 中国 | 新加坡 | 国际 | 财经 |\n | ----- | --------- | ----- | -------- |\n | china | singapore | world | zfinance |","location":"realtime.ts"}} />
-<Route author="lengthmin" example="/zaobao/znews/china" path="/zaobao/znews/:section?" paramsDesc={['分类,缺省为 china']}>
- | 中国 | 新加坡 | 东南亚 | 国际 | 体育 |
- | ----- | --------- | ------ | ----- | ------ |
- | china | singapore | sea | world | sports |
-</Route>
+| 中国 | 新加坡 | 国际 | 财经 |
+| ----- | --------- | ----- | -------- |
+| china | singapore | world | zfinance |
### 其他栏目 {#lian-he-zao-bao-qi-ta-lan-mu}
+<Route data={{"path":"/:type?/:section?","categories":["traditional-media"],"example":"/zaobao/lifestyle/health","parameters":{"type":"https://www.zaobao.com/**lifestyle**/health 中的 **lifestyle**","section":"https://www.zaobao.com/lifestyle/**health** 中的 **health**"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"其他栏目","maintainers":["shunf4"],"description":"除了上面两个兼容规则之外,联合早报网站里所有页面形如 [https://www.zaobao.com/lifestyle/health](https://www.zaobao.com/lifestyle/health) 这样的栏目都能被这个规则解析到,早报的大部分栏目都是这个样式的。你可以测试之后再订阅。","location":"index.ts"}} />
+
除了上面两个兼容规则之外,联合早报网站里所有页面形如 [https://www.zaobao.com/lifestyle/health](https://www.zaobao.com/lifestyle/health) 这样的栏目都能被这个规则解析到,早报的大部分栏目都是这个样式的。你可以测试之后再订阅。
-<Route author="lengthmin" example="/zaobao/lifestyle/health" path="/zaobao/:type?/:section?" paramsDesc={['https://www.zaobao.com/**lifestyle**/health 中的 **lifestyle**', 'https://www.zaobao.com/lifestyle/**health** 中的 **health**']} notOperational="1" />
+### 新闻 {#lian-he-zao-bao-xin-wen}
-### 互动新闻 {#lian-he-zao-bao-hu-dong-xin-wen}
+<Route data={{"path":"/znews/:section?","categories":["traditional-media"],"example":"/zaobao/znews/china","parameters":{"section":"分类,缺省为 china"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["shunf4"],"description":"| 中国 | 新加坡 | 东南亚 | 国际 | 体育 |\n | ----- | --------- | ------ | ----- | ------ |\n | china | singapore | sea | world | sports |","location":"znews.ts"}} />
-<Route author="shunf4" example="/zaobao/interactive-graphics" path="/zaobao/interactive-graphics" />
+| 中国 | 新加坡 | 东南亚 | 国际 | 体育 |
+| ----- | --------- | ------ | ----- | ------ |
+| china | singapore | sea | world | sports |
## 聯合新聞網 {#lian-he-xin-wen-wang}
### 即時新聞 {#lian-he-xin-wen-wang-ji-shi-xin-wen}
-<Route author="miles170" example="/udn/news/breakingnews/99" path="/udn/news/breakingnews/:id" paramsDesc={['类别']} radar="1">
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 99 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |
- | 精選 | 要聞 | 社會 | 地方 | 兩岸 | 國際 | 財經 | 運動 | 娛樂 | 生活 | 股市 | 文教 | 數位 | 不分類 |
-</Route>
+<Route data={{"path":"/news/breakingnews/:id","categories":["traditional-media"],"example":"/udn/news/breakingnews/99","parameters":{"id":"类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["udn.com/news/breaknews/1/:id","udn.com/"]},"name":"即時新聞","maintainers":["miles170"],"description":"| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 99 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |\n | 精選 | 要聞 | 社會 | 地方 | 兩岸 | 國際 | 財經 | 運動 | 娛樂 | 生活 | 股市 | 文教 | 數位 | 不分類 |","location":"breaking-news.ts"}} />
-### 轉角國際 - 首頁 {#lian-he-xin-wen-wang-zhuan-jiao-guo-ji-shou-ye}
-
-<Route author="emdoe nczitzk" example="/udn/global" path="/udn/global/:category?" paramsDesc={['分类,见下表,默认为首頁']}>
- | 首頁 | 最新文章 | 熱門文章 |
- | ---- | -------- | -------- |
- | | new | hot |
-</Route>
+| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | 12 | 13 | 99 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ |
+| 精選 | 要聞 | 社會 | 地方 | 兩岸 | 國際 | 財經 | 運動 | 娛樂 | 生活 | 股市 | 文教 | 數位 | 不分類 |
### 轉角國際 - 標籤 {#lian-he-xin-wen-wang-zhuan-jiao-guo-ji-biao-qian}
-<Route author="nczitzk" example="/udn/global/tag/過去24小時" path="/udn/global/tag/:tag?" paramsDesc={['标签,可在对应标签页 URL 中找到']}>
- | 過去 24 小時 | 鏡頭背後 | 深度專欄 | 重磅廣播 |
- | ------------ | -------- | -------- | -------- |
-</Route>
+<Route data={{"path":"/global/tag/:tag?","categories":["traditional-media"],"example":"/udn/global/tag/過去24小時","parameters":{"tag":"标签,可在对应标签页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["global.udn.com/search/tagging/1020/:tag","global.udn.com/"]},"name":"轉角國際 - 標籤","maintainers":["emdoe","nczitzk"],"description":"| 過去 24 小時 | 鏡頭背後 | 深度專欄 | 重磅廣播 |\n | ------------ | -------- | -------- | -------- |","location":"global/tag.ts"}} />
+
+| 過去 24 小時 | 鏡頭背後 | 深度專欄 | 重磅廣播 |
+| ------------ | -------- | -------- | -------- |
+
+### 轉角國際 - 首頁 {#lian-he-xin-wen-wang-zhuan-jiao-guo-ji-shou-ye}
+
+<Route data={{"path":"/global/:category?","categories":["traditional-media"],"example":"/udn/global","parameters":{"category":"分类,见下表,默认为首頁"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["global.udn.com/global_vision/index/:category","global.udn.com/"]},"name":"轉角國際 - 首頁","maintainers":["nczitzk"],"description":"| 首頁 | 最新文章 | 熱門文章 |\n | ---- | -------- | -------- |\n | | new | hot |","location":"global/index.ts"}} />
+
+| 首頁 | 最新文章 | 熱門文章 |
+| ---- | -------- | -------- |
+| | new | hot |
## 南方都市报 {#nan-fang-dou-shi-bao}
### 奥一网 {#nan-fang-dou-shi-bao-ao-yi-wang}
-<Route author="TimWu007" example="/oeeee/web/170" path="/oeeee/web/:channel" paramsDesc={['频道 ID']}>
- - 若在桌面端打开奥一网栏目页(如 `https://www.oeeee.com/api/channel.php?s=/index/index/channel/gz`),可查看该页源代码,搜索 `OECID`。
- - 若在移动端打开奥一网栏目页(格式例:`https://m.oeeee.com/m.php?s=/m2/channel&channel_id=169`),即可从 url 中获取。需注意的是,如果该栏目页的 url 格式为 `https://m.oeeee.com/detailChannel_indexData.html?channel_id=266` ,则 `266` 并非为本路由可用的频道 ID,建议从桌面端获取。
-</Route>
-
-### 南都客户端(按南都号 ID) {#nan-fang-dou-shi-bao-nan-dou-ke-hu-duan-an-nan-dou-hao-id}
+<Route data={{"path":"/web/:channel","categories":["traditional-media"],"example":"/oeeee/web/170","parameters":{"channel":"频道 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"奥一网","maintainers":["TimWu007"],"description":"- 若在桌面端打开奥一网栏目页(如 `https://www.oeeee.com/api/channel.php?s=/index/index/channel/gz`),可查看该页源代码,搜索 `OECID`。\n - 若在移动端打开奥一网栏目页(格式例:`https://m.oeeee.com/m.php?s=/m2/channel&channel_id=169`),即可从 url 中获取。需注意的是,如果该栏目页的 url 格式为 `https://m.oeeee.com/detailChannel_indexData.html?channel_id=266` ,则 `266` 并非为本路由可用的频道 ID,建议从桌面端获取。","location":"web.ts"}} />
-<Route author="TimWu007" example="/oeeee/app/channel/50" path="/oeeee/app/channel/:id?" paramsDesc={['南都号 ID']}>
- 南都号的 UID 可通过 `m.mp.oeeee.com` 下的文章页面获取。点击文章上方的南都号头像,进入该南都号的个人主页,即可从 url 中获取。
-</Route>
+- 若在桌面端打开奥一网栏目页(如 `https://www.oeeee.com/api/channel.php?s=/index/index/channel/gz`),可查看该页源代码,搜索 `OECID`。
+- 若在移动端打开奥一网栏目页(格式例:`https://m.oeeee.com/m.php?s=/m2/channel&channel_id=169`),即可从 url 中获取。需注意的是,如果该栏目页的 url 格式为 `https://m.oeeee.com/detailChannel_indexData.html?channel_id=266` ,则 `266` 并非为本路由可用的频道 ID,建议从桌面端获取。
### 南都客户端(按记者) {#nan-fang-dou-shi-bao-nan-dou-ke-hu-duan-an-ji-zhe}
-<Route author="TimWu007" example="/oeeee/app/reporter/249" path="/oeeee/app/reporter/:id" paramsDesc={['记者 UID']}>
- 记者的 UID 可通过 `m.mp.oeeee.com` 下的文章页面获取。点击文章下方的作者头像,进入该作者的个人主页,即可从 url 中获取。
-</Route>
+<Route data={{"path":"/app/reporter/:id","categories":["traditional-media"],"example":"/oeeee/app/reporter/249","parameters":{"id":"记者 UID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"南都客户端(按记者)","maintainers":["TimWu007"],"description":"记者的 UID 可通过 `m.mp.oeeee.com` 下的文章页面获取。点击文章下方的作者头像,进入该作者的个人主页,即可从 url 中获取。","location":"app/reporter.ts"}} />
+
+记者的 UID 可通过 `m.mp.oeeee.com` 下的文章页面获取。点击文章下方的作者头像,进入该作者的个人主页,即可从 url 中获取。
## 南方网 {#nan-fang-wang}
### 南方 +(按栏目 ID) {#nan-fang-wang-nan-fang-an-lan-mu-id}
-<Route author="TimWu007" example="/southcn/nfapp/column/38" path="/southcn/nfapp/column/:column?" paramsDesc={['栏目或南方号 ID']}>
- :::tip
- 若此处输入的是栏目 ID(而非南方号 ID),则该接口会返回与输入栏目相关联栏目的文章。例如,输入栏目 ID `38`(广州),则返回的结果还会包含 ID 为 `3547`(市长报道集)的文章。
- :::
+<Route data={{"path":"/nfapp/column/:column?","categories":["traditional-media"],"example":"/southcn/nfapp/column/38","parameters":{"column":"栏目或南方号 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"南方 +(按栏目 ID)","maintainers":["TimWu007"],"description":":::tip\n 若此处输入的是栏目 ID(而非南方号 ID),则该接口会返回与输入栏目相关联栏目的文章。例如,输入栏目 ID `38`(广州),则返回的结果还会包含 ID 为 `3547`(市长报道集)的文章。\n :::\n\n 1. `pc.nfapp.southcn.com` 下的文章页面,可通过 url 查看,例:`http://pc.nfapp.southcn.com/13707/7491109.html` 的栏目 ID 为 `13707`。\n 2. `static.nfapp.southcn.com` 下的文章页面,可查看网页源代码,搜索 `columnid`。\n 3. [https://m.nfapp.southcn.com/column/all](https://m.nfapp.southcn.com/column/all) 列出了部分栏目,`id` 即为栏目 ID。","location":"nfapp/column.ts"}} />
+
+:::tip
+若此处输入的是栏目 ID(而非南方号 ID),则该接口会返回与输入栏目相关联栏目的文章。例如,输入栏目 ID `38`(广州),则返回的结果还会包含 ID 为 `3547`(市长报道集)的文章。
+:::
- 1. `pc.nfapp.southcn.com` 下的文章页面,可通过 url 查看,例:`http://pc.nfapp.southcn.com/13707/7491109.html` 的栏目 ID 为 `13707`。
- 2. `static.nfapp.southcn.com` 下的文章页面,可查看网页源代码,搜索 `columnid`。
- 3. [https://m.nfapp.southcn.com/column/all](https://m.nfapp.southcn.com/column/all) 列出了部分栏目,`id` 即为栏目 ID。
-</Route>
+1. `pc.nfapp.southcn.com` 下的文章页面,可通过 url 查看,例:`http://pc.nfapp.southcn.com/13707/7491109.html` 的栏目 ID 为 `13707`。
+2. `static.nfapp.southcn.com` 下的文章页面,可查看网页源代码,搜索 `columnid`。
+3. [https://m.nfapp.southcn.com/column/all](https://m.nfapp.southcn.com/column/all) 列出了部分栏目,`id` 即为栏目 ID。
### 南方 +(按作者) {#nan-fang-wang-nan-fang-an-zuo-zhe}
-<Route author="TimWu007" example="/southcn/nfapp/reporter/969927791" path="/southcn/nfapp/reporter/:reporter" paramsDesc={['作者 UUID']} notOperational="1">
- 作者的 UUID 只可通过 `static.nfapp.southcn.com` 下的文章页面获取。点击文章下方的作者介绍,进入该作者的个人主页,即可从 url 中获取。
-</Route>
-
-## 南方周末 {#nan-fang-zhou-mo}
-
-### 新闻分类 {#nan-fang-zhou-mo-xin-wen-fen-lei}
-
-<Route author="ranpox xyqfer" example="/infzm/2" path="/infzm/:id" paramsDesc={['南方周末内容分区 id, 可在该内容分区的 URL 中找到(即 https://www.infzm.com/contents?term_id=:id)']}>
- 下面给出部分参考:
-
- | 推荐 | 新闻 | 观点 | 文化 | 人物 | 影像 | 专题 | 生活 | 视频 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 1 | 2 | 3 | 4 | 7 | 8 | 6 | 5 | 131 |
-</Route>
-
-## 南湖清风 {#nan-hu-qing-feng}
-
-### 嘉兴日报 {#nan-hu-qing-feng-jia-xing-ri-bao}
-
-<Route author="nczitzk" example="/cnjxol/jxrb" path="/cnjxol/jxrb/:id?" paramsDesc={['编号,见下表,默认为全部']} anticrawler="1">
- | 版 | 编号 |
- | -------------------- | ---- |
- | 全部 | |
- | 第 01 版:要闻 | 01 |
- | 第 02 版:要闻 | 02 |
- | 第 03 版:要闻 | 03 |
- | 第 04 版:嘉一度 | 04 |
- | 第 05 版:聚焦 | 05 |
- | 第 06 版:党报热线 | 06 |
- | 第 07 版:天下 | 07 |
- | 第 08 版:聚焦 | 08 |
- | 第 09 版:南湖新闻 | 09 |
- | 第 10 版:综合 | 10 |
- | 第 11 版:梅花洲 | 11 |
- | 第 12 版:南湖纵横 | 12 |
- | 第 13 版:秀洲新闻 | 13 |
- | 第 14 版:综合 | 14 |
- | 第 15 版:秀・观察 | 15 |
- | 第 16 版:走进高新区 | 16 |
-</Route>
-
-### 南湖晚报 {#nan-hu-qing-feng-nan-hu-wan-bao}
-
-<Route author="nczitzk" example="/cnjxol/nhwb" path="/cnjxol/nhwb/:id?" paramsDesc={['编号,见下表,默认为全部']} anticrawler="1">
- | 版 | 编号 |
- | ------------------------------------ | ---- |
- | 全部 | |
- | 第 01 版:要闻 | 01 |
- | 第 02 版:品质嘉兴・红船旁的美丽城镇 | 02 |
- | 第 03 版:嘉兴新闻 | 03 |
- | 第 04 版:嘉兴新闻 | 04 |
- | 第 05 版:今日聚焦 | 05 |
- | 第 06 版:嘉兴新闻 | 06 |
- | 第 07 版:热线新闻 | 07 |
- | 第 08 版:财经新闻 | 08 |
- | 第 09 版:热线新闻 | 09 |
- | 第 10 版:公益广告 | 10 |
- | 第 11 版:消费周刊 | 11 |
- | 第 12 版:悦读坊 | 12 |
-</Route>
+<Route data={{"path":"/nfapp/reporter/:reporter","categories":["traditional-media"],"example":"/southcn/nfapp/reporter/969927791","parameters":{"reporter":"作者 UUID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"南方 +(按作者)","maintainers":["TimWu007"],"description":"作者的 UUID 只可通过 `static.nfapp.southcn.com` 下的文章页面获取。点击文章下方的作者介绍,进入该作者的个人主页,即可从 url 中获取。","location":"nfapp/reporter.ts"}} />
+
+作者的 UUID 只可通过 `static.nfapp.southcn.com` 下的文章页面获取。点击文章下方的作者介绍,进入该作者的个人主页,即可从 url 中获取。
## 内蒙古广播电视台 {#nei-meng-gu-guang-bo-dian-shi-tai}
### 点播 {#nei-meng-gu-guang-bo-dian-shi-tai-dian-bo}
-<Route author="nczitzk" example="/nmtv/column/877" path="/nmtv/column/:id?" paramsDesc={['栏目 id,可在对应栏目 URL 中找到']}>
- :::tip
- 如 [蒙古语卫视新闻联播](http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877) 的 URL 为 `http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877`,其栏目 id 为末尾数字编号,即 `877`。可以得到其对应路由为 [`/nmtv/column/877`](https://rsshub.app/nmtv/column/877)
- :::
-</Route>
+<Route data={{"path":"/column/:id?","categories":["traditional-media"],"example":"/nmtv/column/877","parameters":{"id":"栏目 id,可在对应栏目 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"点播","maintainers":["nczitzk"],"description":":::tip\n 如 [蒙古语卫视新闻联播](http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877) 的 URL 为 `http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877`,其栏目 id 为末尾数字编号,即 `877`。可以得到其对应路由为 [`/nmtv/column/877`](https://rsshub.app/nmtv/column/877)\n :::","location":"column.ts"}} />
+
+:::tip
+如 [蒙古语卫视新闻联播](http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877) 的 URL 为 `http://www.nmtv.cn/folder292/folder663/folder301/folder830/folder877`,其栏目 id 为末尾数字编号,即 `877`。可以得到其对应路由为 [`/nmtv/column/877`](https://rsshub.app/nmtv/column/877)
+:::
## 澎湃新闻 {#peng-pai-xin-wen}
以下所有路由可使用参数`old`以采取旧全文获取方法。该方法会另外获取网页中的图片与视频资源。在原始 url 追加`?old=yes`以启用.
-### 首页头条 {#peng-pai-xin-wen-shou-ye-tou-tiao}
-
-<Route author="HenryQW nczitzk bigfei" example="/thepaper/featured" path="/thepaper/featured" />
-
-### 频道 {#peng-pai-xin-wen-pin-dao}
-
-<Route author="xyqfer nczitzk bigfei" example="/thepaper/channel/25950" path="/thepaper/channel/:id" paramsDesc={['频道 id,可在频道页 URL 中找到']}>
- | 频道 ID | 频道名 |
- | ------- | ------ |
- | 26916 | 视频 |
- | 108856 | 战疫 |
- | 25950 | 时事 |
- | 25951 | 财经 |
- | 36079 | 澎湃号 |
- | 119908 | 科技 |
- | 25952 | 思想 |
- | 119489 | 智库 |
- | 25953 | 生活 |
- | 26161 | 问吧 |
- | 122908 | 国际 |
- | -21 | 体育 |
- | -24 | 评论 |
-</Route>
-
### 栏目 {#peng-pai-xin-wen-lan-mu}
-<Route author="nczitzk bigfei" example="/thepaper/list/25457" path="/thepaper/list/:id" paramsDesc={['栏目 id,可在栏目页 URL 中找到']}>
- | 栏目 ID | 栏目名 |
- | ------- | ------------ |
- | 26912 | 上直播 |
- | 26913 | 七环视频 |
- | 26965 | 温度计 |
- | 26908 | 一级视场 |
- | 27260 | World 湃 |
- | 26907 | 湃客科技 |
- | 33168 | 纪录湃 |
- | 26911 | 围观 |
- | 26918 | @所有人 |
- | 26906 | 大都会 |
- | 26909 | 追光灯 |
- | 26910 | 运动装 |
- | 26914 | 健寻记 |
- | 82188 | AI 播报 |
- | 89035 | 眼界 |
- | 92278 | 关键帧 |
- | 90069 | 战疫 |
- | 25462 | 中国政库 |
- | 25488 | 中南海 |
- | 97924 | 初心之路 |
- | 25489 | 舆论场 |
- | 25490 | 打虎记 |
- | 25423 | 人事风向 |
- | 25426 | 法治中国 |
- | 25424 | 一号专案 |
- | 25463 | 港台来信 |
- | 25491 | 长三角政商 |
- | 25428 | 直击现场 |
- | 68750 | 公益湃 |
- | 27604 | 暖闻 |
- | 25464 | 澎湃质量报告 |
- | 25425 | 绿政公署 |
- | 25429 | 澎湃国际 |
- | 25481 | 外交学人 |
- | 25430 | 澎湃防务 |
- | 25678 | 唐人街 |
- | 25427 | 澎湃人物 |
- | 25422 | 浦江头条 |
- | 25487 | 教育家 |
- | 25634 | 全景现场 |
- | 25635 | 美数课 |
- | 25600 | 快看 |
- | 25434 | 10% 公司 |
- | 25436 | 能见度 |
- | 25433 | 地产界 |
- | 25438 | 财经上下游 |
- | 25435 | 金改实验室 |
- | 25437 | 牛市点线面 |
- | 119963 | IPO 最前线 |
- | 25485 | 澎湃商学院 |
- | 25432 | 自贸区连线 |
- | 37978 | 进博会在线 |
- | 36079 | 湃客 |
- | 27392 | 政务 |
- | 77286 | 媒体 |
- | 27234 | 科学湃 |
- | 119445 | 生命科学 |
- | 119447 | 未来 2% |
- | 119446 | 元宇宙观察 |
- | 119448 | 科创 101 |
- | 119449 | 科学城邦 |
- | 25444 | 社论 |
- | 27224 | 澎湃评论 |
- | 26525 | 思想湃 |
- | 26878 | 上海书评 |
- | 25483 | 思想市场 |
- | 25457 | 私家历史 |
- | 25574 | 翻书党 |
- | 25455 | 艺术评论 |
- | 26937 | 古代艺术 |
- | 25450 | 文化课 |
- | 25482 | 逝者 |
- | 25536 | 专栏 |
- | 26506 | 异次元 |
- | 97313 | 海平面 |
- | 103076 | 一问三知 |
- | 25445 | 澎湃研究所 |
- | 25446 | 全球智库 |
- | 26915 | 城市漫步 |
- | 25456 | 市政厅 |
- | 104191 | 世界会客厅 |
- | 25448 | 有戏 |
- | 26609 | 文艺范 |
- | 25942 | 身体 |
- | 26015 | 私・奔 |
- | 25599 | 运动家 |
- | 25842 | 私家地理 |
- | 80623 | 非常品 |
- | 26862 | 楼市 |
- | 25769 | 生活方式 |
- | 25990 | 澎湃联播 |
- | 26173 | 视界 |
- | 26202 | 亲子学堂 |
- | 26404 | 赢家 |
- | 26490 | 汽车圈 |
- | 115327 | IP SH |
- | 117340 | 酒业 |
-</Route>
-
-### 侧边栏 {#peng-pai-xin-wen-ce-bian-lan}
-
-<Route author="bigfei" example="/thepaper/sidebar/hotNews" path="/thepaper/sidebar/sec?" paramsDesc={['边栏 id,如下, 默认hotNews']}>
- | 边栏 ID | 边栏名 |
- | ------------------------ | -------- |
- | hotNews | 澎湃热榜 |
- | financialInformationNews | 澎湃财讯 |
- | morningEveningNews | 早晚报 |
-</Route>
+<Route data={{"path":"/list/:id","categories":["traditional-media"],"example":"/thepaper/list/25457","parameters":{"id":"栏目 id,可在栏目页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"栏目","maintainers":["nczitzk","bigfei"],"description":"| 栏目 ID | 栏目名 |\n | ------- | ------------ |\n | 26912 | 上直播 |\n | 26913 | 七环视频 |\n | 26965 | 温度计 |\n | 26908 | 一级视场 |\n | 27260 | World 湃 |\n | 26907 | 湃客科技 |\n | 33168 | 纪录湃 |\n | 26911 | 围观 |\n | 26918 | @所有人 |\n | 26906 | 大都会 |\n | 26909 | 追光灯 |\n | 26910 | 运动装 |\n | 26914 | 健寻记 |\n | 82188 | AI 播报 |\n | 89035 | 眼界 |\n | 92278 | 关键帧 |\n | 90069 | 战疫 |\n | 25462 | 中国政库 |\n | 25488 | 中南海 |\n | 97924 | 初心之路 |\n | 25489 | 舆论场 |\n | 25490 | 打虎记 |\n | 25423 | 人事风向 |\n | 25426 | 法治中国 |\n | 25424 | 一号专案 |\n | 25463 | 港台来信 |\n | 25491 | 长三角政商 |\n | 25428 | 直击现场 |\n | 68750 | 公益湃 |\n | 27604 | 暖闻 |\n | 25464 | 澎湃质量报告 |\n | 25425 | 绿政公署 |\n | 25429 | 澎湃国际 |\n | 25481 | 外交学人 |\n | 25430 | 澎湃防务 |\n | 25678 | 唐人街 |\n | 25427 | 澎湃人物 |\n | 25422 | 浦江头条 |\n | 25487 | 教育家 |\n | 25634 | 全景现场 |\n | 25635 | 美数课 |\n | 25600 | 快看 |\n | 25434 | 10% 公司 |\n | 25436 | 能见度 |\n | 25433 | 地产界 |\n | 25438 | 财经上下游 |\n | 25435 | 金改实验室 |\n | 25437 | 牛市点线面 |\n | 119963 | IPO 最前线 |\n | 25485 | 澎湃商学院 |\n | 25432 | 自贸区连线 |\n | 37978 | 进博会在线 |\n | 36079 | 湃客 |\n | 27392 | 政务 |\n | 77286 | 媒体 |\n | 27234 | 科学湃 |\n | 119445 | 生命科学 |\n | 119447 | 未来 2% |\n | 119446 | 元宇宙观察 |\n | 119448 | 科创 101 |\n | 119449 | 科学城邦 |\n | 25444 | 社论 |\n | 27224 | 澎湃评论 |\n | 26525 | 思想湃 |\n | 26878 | 上海书评 |\n | 25483 | 思想市场 |\n | 25457 | 私家历史 |\n | 25574 | 翻书党 |\n | 25455 | 艺术评论 |\n | 26937 | 古代艺术 |\n | 25450 | 文化课 |\n | 25482 | 逝者 |\n | 25536 | 专栏 |\n | 26506 | 异次元 |\n | 97313 | 海平面 |\n | 103076 | 一问三知 |\n | 25445 | 澎湃研究所 |\n | 25446 | 全球智库 |\n | 26915 | 城市漫步 |\n | 25456 | 市政厅 |\n | 104191 | 世界会客厅 |\n | 25448 | 有戏 |\n | 26609 | 文艺范 |\n | 25942 | 身体 |\n | 26015 | 私・奔 |\n | 25599 | 运动家 |\n | 25842 | 私家地理 |\n | 80623 | 非常品 |\n | 26862 | 楼市 |\n | 25769 | 生活方式 |\n | 25990 | 澎湃联播 |\n | 26173 | 视界 |\n | 26202 | 亲子学堂 |\n | 26404 | 赢家 |\n | 26490 | 汽车圈 |\n | 115327 | IP SH |\n | 117340 | 酒业 |","location":"list.ts"}} />
+
+| 栏目 ID | 栏目名 |
+| ------- | ------------ |
+| 26912 | 上直播 |
+| 26913 | 七环视频 |
+| 26965 | 温度计 |
+| 26908 | 一级视场 |
+| 27260 | World 湃 |
+| 26907 | 湃客科技 |
+| 33168 | 纪录湃 |
+| 26911 | 围观 |
+| 26918 | @所有人 |
+| 26906 | 大都会 |
+| 26909 | 追光灯 |
+| 26910 | 运动装 |
+| 26914 | 健寻记 |
+| 82188 | AI 播报 |
+| 89035 | 眼界 |
+| 92278 | 关键帧 |
+| 90069 | 战疫 |
+| 25462 | 中国政库 |
+| 25488 | 中南海 |
+| 97924 | 初心之路 |
+| 25489 | 舆论场 |
+| 25490 | 打虎记 |
+| 25423 | 人事风向 |
+| 25426 | 法治中国 |
+| 25424 | 一号专案 |
+| 25463 | 港台来信 |
+| 25491 | 长三角政商 |
+| 25428 | 直击现场 |
+| 68750 | 公益湃 |
+| 27604 | 暖闻 |
+| 25464 | 澎湃质量报告 |
+| 25425 | 绿政公署 |
+| 25429 | 澎湃国际 |
+| 25481 | 外交学人 |
+| 25430 | 澎湃防务 |
+| 25678 | 唐人街 |
+| 25427 | 澎湃人物 |
+| 25422 | 浦江头条 |
+| 25487 | 教育家 |
+| 25634 | 全景现场 |
+| 25635 | 美数课 |
+| 25600 | 快看 |
+| 25434 | 10% 公司 |
+| 25436 | 能见度 |
+| 25433 | 地产界 |
+| 25438 | 财经上下游 |
+| 25435 | 金改实验室 |
+| 25437 | 牛市点线面 |
+| 119963 | IPO 最前线 |
+| 25485 | 澎湃商学院 |
+| 25432 | 自贸区连线 |
+| 37978 | 进博会在线 |
+| 36079 | 湃客 |
+| 27392 | 政务 |
+| 77286 | 媒体 |
+| 27234 | 科学湃 |
+| 119445 | 生命科学 |
+| 119447 | 未来 2% |
+| 119446 | 元宇宙观察 |
+| 119448 | 科创 101 |
+| 119449 | 科学城邦 |
+| 25444 | 社论 |
+| 27224 | 澎湃评论 |
+| 26525 | 思想湃 |
+| 26878 | 上海书评 |
+| 25483 | 思想市场 |
+| 25457 | 私家历史 |
+| 25574 | 翻书党 |
+| 25455 | 艺术评论 |
+| 26937 | 古代艺术 |
+| 25450 | 文化课 |
+| 25482 | 逝者 |
+| 25536 | 专栏 |
+| 26506 | 异次元 |
+| 97313 | 海平面 |
+| 103076 | 一问三知 |
+| 25445 | 澎湃研究所 |
+| 25446 | 全球智库 |
+| 26915 | 城市漫步 |
+| 25456 | 市政厅 |
+| 104191 | 世界会客厅 |
+| 25448 | 有戏 |
+| 26609 | 文艺范 |
+| 25942 | 身体 |
+| 26015 | 私・奔 |
+| 25599 | 运动家 |
+| 25842 | 私家地理 |
+| 80623 | 非常品 |
+| 26862 | 楼市 |
+| 25769 | 生活方式 |
+| 25990 | 澎湃联播 |
+| 26173 | 视界 |
+| 26202 | 亲子学堂 |
+| 26404 | 赢家 |
+| 26490 | 汽车圈 |
+| 115327 | IP SH |
+| 117340 | 酒业 |
### 明查 {#peng-pai-xin-wen-ming-cha}
-<Route author="nczitzk" example="/thepaper/factpaper" path="/thepaper/factpaper/:status?" paramsDesc={['状态 id,可选 `1` 即 有定论 或 `0` 即 核查中,默认为 `1`']} />
-
-### 澎湃美数组作品集 {#peng-pai-xin-wen-peng-pai-mei-shu-zu-zuo-pin-ji}
-
-<Route author="umm233" example="/thepaper/839studio/2" path="/thepaper/839studio/:id?" paramsDesc={['分类 id 可选,默认订阅全部分类']}>
- | 视频 | 交互 | 信息图 | 数据故事 |
- | ---- | ---- | ------ | -------- |
- | 2 | 4 | 3 | 453 |
-</Route>
-
-## 齐鲁网 {#qi-lu-wang}
-
-### 电视节目 {#qi-lu-wang-dian-shi-jie-mu}
-
-<Route author="nczitzk" example="/iqilu/v/sdws/sdxwlb" path="/iqilu/v/:category?" paramsDesc={['节目 id,可在对应节目页 URL 中找到,见下表,默认为 `sdws/sdxwlb`,即山东新闻联播']} radar="1" supportPodcast="1" anticrawler="1">
- | 节目名称 | 节目 id |
- | ---------------- | -------------- |
- | 山东新闻联播 | sdws/sdxwlb |
- | 闪电大视野 | ggpd/sddsy |
- | 山东三农新闻联播 | nkpd/snxw |
- | 每日新闻 | qlpd/mrxw |
- | 新闻午班车 | ggpd/xwwbc |
- | 戏宇宙 | sdws/xyz/ |
- | 中国礼 中国乐 | qlpd/zglzgy |
- | 超级语文课 | sdws/cjywk |
- | 文物里的山东 | yspd/wwldsd |
- | 拉呱 | qlpd/l0 |
- | 生活帮 | shpd/shb |
- | 快乐大赢家 | zypd/kldyj |
- | 乡村季风 | nkpd/xcjf |
- | 健康是 1 | ggpd/jks1 |
- | 此时此刻 | sdws/cishicike |
-</Route>
-
-## 人民网 {#ren-min-wang}
+<Route data={{"path":"/factpaper/:status?","categories":["traditional-media"],"example":"/thepaper/factpaper","parameters":{"status":"状态 id,可选 `1` 即 有定论 或 `0` 即 核查中,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["factpaper.cn/"],"target":"/factpaper/:status"},"name":"明查","maintainers":["nczitzk"],"url":"factpaper.cn/","location":"factpaper.ts"}} />
-### 通用 {#ren-min-wang-tong-yong}
-
-<Route author="nczitzk" example="/people" path="/people/:site?/:category?" paramsDesc={['站点,可在对应站点 URL 中找到', '分类,可在对应分类页中找到']}>
- 订阅 **单级** 栏目如 [滚动 -- 生态 -- 人民网](http://env.people.com.cn/GB/74877/index.html) 分类栏目,分为 3 步:
-
- 1. 将 URL `http://env.people.com.cn/GB/74877/index.html` 中 `http://` 与 `.people.com.cn/` 中间的 `env` 作为 `site` 参数填入;
- 2. 将 `http://env.people.com.cn/GB/` 与 `/index.html` 间的 `74877` 作为 `category` 参数填入;
- 3. 最终可获得 [`/people/env/74877`](https://rsshub.app/people/env/74877)。
+### 频道 {#peng-pai-xin-wen-pin-dao}
- 订阅 **多级** 栏目如 [经济观察 -- 观点 -- 人民网](http://opinion.people.com.cn/GB/427456/434878/index.html) 分类栏目,同样分为 3 步:
+<Route data={{"path":"/channel/:id","categories":["traditional-media"],"example":"/thepaper/channel/25950","parameters":{"id":"频道 id,可在频道页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"频道","maintainers":["xyqfer","nczitzk","bigfei"],"description":"| 频道 ID | 频道名 |\n | ------- | ------ |\n | 26916 | 视频 |\n | 108856 | 战疫 |\n | 25950 | 时事 |\n | 25951 | 财经 |\n | 36079 | 澎湃号 |\n | 119908 | 科技 |\n | 25952 | 思想 |\n | 119489 | 智库 |\n | 25953 | 生活 |\n | 26161 | 问吧 |\n | 122908 | 国际 |\n | -21 | 体育 |\n | -24 | 评论 |","location":"channel.ts"}} />
+
+| 频道 ID | 频道名 |
+| ------- | ------ |
+| 26916 | 视频 |
+| 108856 | 战疫 |
+| 25950 | 时事 |
+| 25951 | 财经 |
+| 36079 | 澎湃号 |
+| 119908 | 科技 |
+| 25952 | 思想 |
+| 119489 | 智库 |
+| 25953 | 生活 |
+| 26161 | 问吧 |
+| 122908 | 国际 |
+| -21 | 体育 |
+| -24 | 评论 |
- 1. 将 URL `http://opinion.people.com.cn/GB/427456/434878/index.html` 中 `http://` 与 `.people.com.cn/` 中间的 `opinion` 作为 `site` 参数填入;
- 2. 把 `http://opinion.people.com.cn/GB/` 与 `/index.html` 间 `427456/434878` 作为 `category` 参数填入;
- 3. 最终可获得 [`/people/opinion/427456/434878`](https://rsshub.app/people/opinion/427456/434878)。
+### 首页头条 {#peng-pai-xin-wen-shou-ye-tou-tiao}
- :::tip
- 人民网大部分站点支持上述通用规则进行订阅。
- :::
-</Route>
+<Route data={{"path":"/featured","categories":["traditional-media"],"example":"/thepaper/featured","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["thepaper.cn/"]},"name":"首页头条","maintainers":["HenryQW","nczitzk","bigfei"],"url":"thepaper.cn/","location":"featured.ts"}} />
-### 习近平系列重要讲话 {#ren-min-wang-xi-jin-ping-xi-lie-zhong-yao-jiang-hua}
+## 人民网 {#ren-min-wang}
-<Route author="LogicJake" example="/people/xjpjh" path="/people/xjpjh/:keyword?/:year?" paramsDesc={['关键词,默认不填','年份,默认 all']} />
+### 领导留言板 {#ren-min-wang-ling-dao-liu-yan-ban}
-### 中国共产党新闻网 24 小时滚动新闻 {#ren-min-wang-zhong-guo-gong-chan-dang-xin-wen-wang-24-xiao-shi-gun-dong-xin-wen}
+<Route data={{"path":"/liuyan/:id/:state?","categories":["traditional-media"],"example":"/people/liuyan/539","parameters":{"id":"编号,可在对应人物页 URL 中找到","state":"状态,见下表,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["liuyan.people.com.cn/"]},"name":"领导留言板","maintainers":["nczitzk"],"url":"liuyan.people.com.cn/","description":"| 全部 | 待回复 | 办理中 | 已办理 |\n | ---- | ------ | ------ | ------ |\n | 1 | 2 | 3 | 4 |","location":"liuyan.ts"}} />
-<Route author="nczitzk" example="/people/cpc/24h" path="/people/cpc/24h" />
+| 全部 | 待回复 | 办理中 | 已办理 |
+| ---- | ------ | ------ | ------ |
+| 1 | 2 | 3 | 4 |
-### 领导留言板 {#ren-min-wang-ling-dao-liu-yan-ban}
+### 习近平系列重要讲话 {#ren-min-wang-xi-jin-ping-xi-lie-zhong-yao-jiang-hua}
-<Route author="nczitzk" example="/people/liuyan/539" path="/people/liuyan/:id/:state?" paramsDesc={['编号,可在对应人物页 URL 中找到', '状态,见下表,默认为全部']}>
- | 全部 | 待回复 | 办理中 | 已办理 |
- | ---- | ------ | ------ | ------ |
- | 1 | 2 | 3 | 4 |
-</Route>
+<Route data={{"path":"/xjpjh/:keyword?/:year?","categories":["traditional-media"],"example":"/people/xjpjh","parameters":{"keyword":"关键词,默认不填","year":"年份,默认 all"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["people.com.cn/"],"target":"/:site?/:category?"},"name":"习近平系列重要讲话","maintainers":[],"url":"people.com.cn/","location":"xjpjh.ts"}} />
## 三立新聞網 {#san-li-xin-wen-wang}
### 新聞 {#san-li-xin-wen-wang-xin-wen}
-<Route author="nczitzk" example="/setn" path="/setn/:category?" paramsDesc={['分类,见下表,默认为即時']}>
- | 即時 | 熱門 | 娛樂 | 政治 | 社會 |
- | ---- | ---- | ---- | ---- | ---- |
-
- | 國際 | 兩岸 | 生活 | 健康 | 旅遊 |
- | ---- | ---- | ---- | ---- | ---- |
-
- | 運動 | 地方 | 財經 | 富房網 | 名家 |
- | ---- | ---- | ---- | ------ | ---- |
+<Route data={{"path":"/:category?","categories":["traditional-media"],"example":"/setn","parameters":{"category":"分类,见下表,默认为即時"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["setn.com/ViewAll.aspx","setn.com/"],"target":""},"name":"新聞","maintainers":["nczitzk"],"url":"setn.com/ViewAll.aspx","description":"| 即時 | 熱門 | 娛樂 | 政治 | 社會 |\n | ---- | ---- | ---- | ---- | ---- |\n\n | 國際 | 兩岸 | 生活 | 健康 | 旅遊 |\n | ---- | ---- | ---- | ---- | ---- |\n\n | 運動 | 地方 | 財經 | 富房網 | 名家 |\n | ---- | ---- | ---- | ------ | ---- |\n\n | 新奇 | 科技 | 汽車 | 寵物 | 女孩 | HOT 焦點 |\n | ---- | ---- | ---- | ---- | ---- | -------- |","location":"index.ts"}} />
- | 新奇 | 科技 | 汽車 | 寵物 | 女孩 | HOT 焦點 |
- | ---- | ---- | ---- | ---- | ---- | -------- |
-</Route>
+| 即時 | 熱門 | 娛樂 | 政治 | 社會 |
+| ---- | ---- | ---- | ---- | ---- |
-## 三联生活周刊 {#san-lian-sheng-huo-zhou-kan}
+| 國際 | 兩岸 | 生活 | 健康 | 旅遊 |
+| ---- | ---- | ---- | ---- | ---- |
-### 栏目 {#san-lian-sheng-huo-zhou-kan-lan-mu}
+| 運動 | 地方 | 財經 | 富房網 | 名家 |
+| ---- | ---- | ---- | ------ | ---- |
-提取文章全文,获得更好的阅读体验。支持所有频道,频道名称见 [杂志栏目](https://www.lifeweek.com.cn/classify?type=2)。例如 [调查栏目](https://www.lifeweek.com.cn/column/9) URL 最后的数字为栏目 ID
-
-<Route author="changren-wcr" example="/lifeweek/channel/9" path="/lifeweek/channel/:channel" paramsDesc={['栏目 ID']}>
- | 调查 | 热点 | 人物 | 社会 | 经济 | 文化 |
- | ---- | ---- | ---- | ---- | ---- | ---- |
- | 9 | 6 | 10 | 2 | 3 | 4 |
-</Route>
-
-### 标签 {#san-lian-sheng-huo-zhou-kan-biao-qian}
-
-提取文章全文,获得更好的阅读体验。支持所有标签,标签名称见 [全部标签](https://www.lifeweek.com.cn/classify?type=1)。例如 [社会调查标签](https://www.lifeweek.com.cn/articleList/122) URL 最后的数字为标签 ID
-
-<Route author="changren-wcr" example="/lifeweek/tag/122" path="/lifeweek/tag/:tag" paramsDesc={['标签 ID']}>
- | 社会调查 | 社会 | 经济 | 理财 | 热点 |
- | -------- | ---- | ---- | ---- | ---- |
- | 122 | 21 | 73 | 74 | 123 |
-</Route>
+| 新奇 | 科技 | 汽車 | 寵物 | 女孩 | HOT 焦點 |
+| ---- | ---- | ---- | ---- | ---- | -------- |
## 厦门网 {#xia-men-wang}
### 数字媒体 {#xia-men-wang-shu-zi-mei-ti}
-<Route author="nczitzk" example="/xmnn/epaper/xmrb" path="/xmnn/epaper/:id?" paramsDesc={['报纸 id,见下表,默认为 `xmrb`,即厦门日报']} radar="1">
- | 厦门日报 | 厦门晚报 | 海西晨报 | 城市捷报 |
- | -------- | -------- | -------- | -------- |
- | xmrb | xmwb | hxcb | csjb |
-</Route>
-
-### 新闻 {#xia-men-wang-xin-wen}
-
-<Route author="nczitzk" example="/xmnn/news/xmxw" path="/xmnn/news/:category?" paramsDesc={['分类 id,见下表,默认为厦门新闻']} radar="1">
- | 分类名 | 分类 id |
- | ------------ | ------- |
- | 厦门新闻发布 | xmxwfb |
- | 厦门新闻 | xmxw |
- | 本网快报 | bwkb |
- | 厦门网眼 | xmwy |
- | 福建新闻 | fjxw |
- | 国内新闻 | gnxw |
- | 国际新闻 | gjxw |
- | 台海新闻 | thxw |
- | 社会新闻 | shxw |
-</Route>
+<Route data={{"path":"/epaper/:id?","categories":["traditional-media"],"example":"/xmnn/epaper/xmrb","parameters":{"id":"报纸 id,见下表,默认为 `xmrb`,即厦门日报"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["epaper.xmnn.cn/:id"],"target":"/epaper/:id"},"name":"数字媒体","maintainers":["nczitzk"],"description":"| 厦门日报 | 厦门晚报 | 海西晨报 | 城市捷报 |\n | -------- | -------- | -------- | -------- |\n | xmrb | xmwb | hxcb | csjb |","location":"epaper.ts"}} />
+
+| 厦门日报 | 厦门晚报 | 海西晨报 | 城市捷报 |
+| -------- | -------- | -------- | -------- |
+| xmrb | xmwb | hxcb | csjb |
## 四川广播电视台 {#si-chuan-guang-bo-dian-shi-tai}
### 电视回放 {#si-chuan-guang-bo-dian-shi-tai-dian-shi-hui-fang}
-<Route author="nczitzk" example="/sctv/programme/1" path="/sctv/programme/:id?/:limit?/:isFull?" paramsDesc={['节目 id,可在对应节目页中找到,默认为 `1`,即四川新闻联播', '期数,默认为 15,即单次获取最新 15 期', '是否仅获取完整视频,填写 true/yes 表示是、false/no 表示否,默认是']}>
- :::tip
- 参数 **是否仅获取完整视频** 设置为 `true` `yes` `t` `y` 等值后,路由仅返回当期节目的完整视频,而不会返回节目所提供的节选视频。
-
- 查看更多电视节目请前往 [电视回放](https://www.sctv.com/column/list)
- :::
-
- | 节目 | id |
- | ---------------------- | ------- |
- | 四川新闻联播 | 1 |
- | 早安四川 | 2 |
- | 今日视点 | 3 |
- | 龙门阵摆四川 | 10523 |
- | 非常话题 | 1014756 |
- | 新闻现场 | 8385 |
- | 黄金三十分 | 8386 |
- | 全媒直播间 | 8434 |
- | 晚报十点半 | 8435 |
- | 现场快报 | 8436 |
- | 四川乡村新闻 | 3673 |
- | 四川文旅报道 | 8174 |
- | 乡村会客厅 | 3674 |
- | 金字招牌 | 3675 |
- | 问您所 “?” | 3677 |
- | 蜀你最能 | 3679 |
- | 美丽乡村印象 | 3678 |
- | 美丽乡村 | 3676 |
- | 乡村大篷车 | 3680 |
- | 华西论健 | 3681 |
- | 乡村聚乐部 | 3682 |
- | 医保近距离 | 6403 |
- | 音你而来 | 7263 |
- | 吃八方 | 7343 |
- | 世界那么大 | 7344 |
- | 风云川商 | 7345 |
- | 麻辣烫 | 7346 |
- | 财经快报 | 7473 |
- | 医生来了 | 7873 |
- | 安逸的旅途 | 8383 |
- | 运动 + | 8433 |
- | 好戏连台 | 9733 |
- | 防癌大讲堂 | 1018673 |
- | 消费新观察 | 1017153 |
- | 天天耍大牌 | 1014753 |
- | 廉洁四川 | 1014754 |
- | 看世界 | 1014755 |
- | 金熊猫说教育(资讯版) | 1014757 |
- | 她说 | 1014759 |
- | 嗨宝贝 | 1014762 |
- | 萌眼看世界 | 1014764 |
- | 乡村大讲堂 | 1014765 |
- | 四川党建 | 1014766 |
- | 健康四川 | 1014767 |
- | 技能四川 | 12023 |
-</Route>
+<Route data={{"path":"/programme/:id?/:limit?/:isFull?","categories":["traditional-media"],"example":"/sctv/programme/1","parameters":{"id":"节目 id,可在对应节目页中找到,默认为 `1`,即四川新闻联播","limit":"期数,默认为 15,即单次获取最新 15 期","isFull":"是否仅获取完整视频,填写 true/yes 表示是、false/no 表示否,默认是"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"电视回放","maintainers":["nczitzk"],"description":":::tip\n 参数 **是否仅获取完整视频** 设置为 `true` `yes` `t` `y` 等值后,路由仅返回当期节目的完整视频,而不会返回节目所提供的节选视频。\n\n 查看更多电视节目请前往 [电视回放](https://www.sctv.com/column/list)\n :::\n\n | 节目 | id |\n | ---------------------- | ------- |\n | 四川新闻联播 | 1 |\n | 早安四川 | 2 |\n | 今日视点 | 3 |\n | 龙门阵摆四川 | 10523 |\n | 非常话题 | 1014756 |\n | 新闻现场 | 8385 |\n | 黄金三十分 | 8386 |\n | 全媒直播间 | 8434 |\n | 晚报十点半 | 8435 |\n | 现场快报 | 8436 |\n | 四川乡村新闻 | 3673 |\n | 四川文旅报道 | 8174 |\n | 乡村会客厅 | 3674 |\n | 金字招牌 | 3675 |\n | 问您所 “?” | 3677 |\n | 蜀你最能 | 3679 |\n | 美丽乡村印象 | 3678 |\n | 美丽乡村 | 3676 |\n | 乡村大篷车 | 3680 |\n | 华西论健 | 3681 |\n | 乡村聚乐部 | 3682 |\n | 医保近距离 | 6403 |\n | 音你而来 | 7263 |\n | 吃八方 | 7343 |\n | 世界那么大 | 7344 |\n | 风云川商 | 7345 |\n | 麻辣烫 | 7346 |\n | 财经快报 | 7473 |\n | 医生来了 | 7873 |\n | 安逸的旅途 | 8383 |\n | 运动 + | 8433 |\n | 好戏连台 | 9733 |\n | 防癌大讲堂 | 1018673 |\n | 消费新观察 | 1017153 |\n | 天天耍大牌 | 1014753 |\n | 廉洁四川 | 1014754 |\n | 看世界 | 1014755 |\n | 金熊猫说教育(资讯版) | 1014757 |\n | 她说 | 1014759 |\n | 嗨宝贝 | 1014762 |\n | 萌眼看世界 | 1014764 |\n | 乡村大讲堂 | 1014765 |\n | 四川党建 | 1014766 |\n | 健康四川 | 1014767 |\n | 技能四川 | 12023 |","location":"programme.ts"}} />
-## 天下雜誌 {#tian-xia-za-zhi}
+:::tip
+参数 **是否仅获取完整视频** 设置为 `true` `yes` `t` `y` 等值后,路由仅返回当期节目的完整视频,而不会返回节目所提供的节选视频。
-### 最新上線 {#tian-xia-za-zhi-zui-xin-shang-xian}
+查看更多电视节目请前往 [电视回放](https://www.sctv.com/column/list)
+:::
-<Route author="TonyRL" example="/cw/today" path="/cw/today" radar="1" puppeteer="1" />
+| 节目 | id |
+| ---------------------- | ------- |
+| 四川新闻联播 | 1 |
+| 早安四川 | 2 |
+| 今日视点 | 3 |
+| 龙门阵摆四川 | 10523 |
+| 非常话题 | 1014756 |
+| 新闻现场 | 8385 |
+| 黄金三十分 | 8386 |
+| 全媒直播间 | 8434 |
+| 晚报十点半 | 8435 |
+| 现场快报 | 8436 |
+| 四川乡村新闻 | 3673 |
+| 四川文旅报道 | 8174 |
+| 乡村会客厅 | 3674 |
+| 金字招牌 | 3675 |
+| 问您所 “?” | 3677 |
+| 蜀你最能 | 3679 |
+| 美丽乡村印象 | 3678 |
+| 美丽乡村 | 3676 |
+| 乡村大篷车 | 3680 |
+| 华西论健 | 3681 |
+| 乡村聚乐部 | 3682 |
+| 医保近距离 | 6403 |
+| 音你而来 | 7263 |
+| 吃八方 | 7343 |
+| 世界那么大 | 7344 |
+| 风云川商 | 7345 |
+| 麻辣烫 | 7346 |
+| 财经快报 | 7473 |
+| 医生来了 | 7873 |
+| 安逸的旅途 | 8383 |
+| 运动 + | 8433 |
+| 好戏连台 | 9733 |
+| 防癌大讲堂 | 1018673 |
+| 消费新观察 | 1017153 |
+| 天天耍大牌 | 1014753 |
+| 廉洁四川 | 1014754 |
+| 看世界 | 1014755 |
+| 金熊猫说教育(资讯版) | 1014757 |
+| 她说 | 1014759 |
+| 嗨宝贝 | 1014762 |
+| 萌眼看世界 | 1014764 |
+| 乡村大讲堂 | 1014765 |
+| 四川党建 | 1014766 |
+| 健康四川 | 1014767 |
+| 技能四川 | 12023 |
+
+## 天下雜誌 {#tian-xia-za-zhi}
### 主頻道 {#tian-xia-za-zhi-zhu-bin-dao}
-<Route author="TonyRL" example="/cw/master/8" path="/cw/master/:channel" paramsDesc={['主頻道 ID,可在 URL 中找到']} radar="1" puppeteer="1">
- | 主頻道名稱 | 主頻道 ID |
- | ---------- | --------- |
- | 財經 | 8 |
- | 產業 | 7 |
- | 國際 | 9 |
- | 管理 | 10 |
- | 環境 | 12 |
- | 教育 | 13 |
- | 人物 | 14 |
- | 政治社會 | 77 |
- | 調查排行 | 15 |
- | 健康關係 | 79 |
- | 時尚品味 | 11 |
- | 運動生活 | 103 |
- | 重磅外媒 | 16 |
-</Route>
+<Route data={{"path":"/master/:channel","categories":["traditional-media"],"example":"/cw/master/8","parameters":{"channel":"主頻道 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"主頻道","maintainers":["TonyRL"],"description":"| 主頻道名稱 | 主頻道 ID |\n | ---------- | --------- |\n | 財經 | 8 |\n | 產業 | 7 |\n | 國際 | 9 |\n | 管理 | 10 |\n | 環境 | 12 |\n | 教育 | 13 |\n | 人物 | 14 |\n | 政治社會 | 77 |\n | 調查排行 | 15 |\n | 健康關係 | 79 |\n | 時尚品味 | 11 |\n | 運動生活 | 103 |\n | 重磅外媒 | 16 |","location":"master.ts"}} />
+
+| 主頻道名稱 | 主頻道 ID |
+| ---------- | --------- |
+| 財經 | 8 |
+| 產業 | 7 |
+| 國際 | 9 |
+| 管理 | 10 |
+| 環境 | 12 |
+| 教育 | 13 |
+| 人物 | 14 |
+| 政治社會 | 77 |
+| 調查排行 | 15 |
+| 健康關係 | 79 |
+| 時尚品味 | 11 |
+| 運動生活 | 103 |
+| 重磅外媒 | 16 |
### 子頻道 {#tian-xia-za-zhi-zi-bin-dao}
-<Route author="TonyRL" example="/cw/sub/615" path="/cw/sub/:channel" paramsDesc={['子頻道 ID,可在 URL 中找到']} radar="1" puppeteer="1" anticrawler="1" />
-
-### 作者 {#tian-xia-za-zhi-zuo-zhe}
+<Route data={{"path":"/sub/:channel","categories":["traditional-media"],"example":"/cw/sub/615","parameters":{"channel":"子頻道 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"子頻道","maintainers":["TonyRL"],"location":"sub.ts"}} />
-<Route author="TonyRL" example="/cw/author/57" path="/cw/author/:channel" paramsDesc={['作者 ID,可在 URL 中找到']} radar="1" puppeteer="1" anticrawler="1" />
+### 最新上線 {#tian-xia-za-zhi-zui-xin-shang-xian}
-## 文汇报 {#wen-hui-bao}
+<Route data={{"path":"/today","categories":["traditional-media"],"example":"/cw/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cw.com.tw/today","cw.com.tw/"]},"name":"最新上線","maintainers":["TonyRL"],"url":"cw.com.tw/today","location":"today.ts"}} />
-### 分类 {#wen-hui-bao-fen-lei}
+### 作者 {#tian-xia-za-zhi-zuo-zhe}
-<Route author="hoilc" example="/whb/bihui" path="/whb/:category" paramsDesc={['文汇报分类名,可在该分类的 URL 中找到(即 http://www.whb.cn/zhuzhan/:category/index.html)']} />
+<Route data={{"path":"/author/:channel","categories":["traditional-media"],"example":"/cw/author/57","parameters":{"channel":"作者 ID,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cw.com.tw/author/:channel"]},"name":"作者","maintainers":["TonyRL"],"location":"author.ts"}} />
## 无线新闻 {#wu-xian-xin-wen}
### 新闻 {#wu-xian-xin-wen-xin-wen}
-<Route author="nczitzk" example="/tvb/news" path="/tvb/news/:category?/:language?" paramsDesc={['分类,见下表,默认为要聞', '语言,见下表']}>
- 分类
+<Route data={{"path":"/news/:category?/:language?","categories":["traditional-media"],"example":"/tvb/news","parameters":{"category":"分类,见下表,默认为要聞","language":"语言,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tvb.com/:language/:category","tvb.com/"]},"name":"新闻","maintainers":["nczitzk"],"description":"分类\n\n | 要聞 | 快訊 | 港澳 | 兩岸 | 國際 | 財經 | 體育 | 法庭 | 天氣 |\n | ----- | ------- | ----- | ------------ | ----- | ------- | ------ | ---------- | ------- |\n | focus | instant | local | greaterchina | world | finance | sports | parliament | weather |\n\n 语言\n\n | 繁 | 简 |\n | -- | -- |\n | tc | sc |","location":"news.ts"}} />
- | 要聞 | 快訊 | 港澳 | 兩岸 | 國際 | 財經 | 體育 | 法庭 | 天氣 |
- | ----- | ------- | ----- | ------------ | ----- | ------- | ------ | ---------- | ------- |
- | focus | instant | local | greaterchina | world | finance | sports | parliament | weather |
+分类
- 语言
+| 要聞 | 快訊 | 港澳 | 兩岸 | 國際 | 財經 | 體育 | 法庭 | 天氣 |
+| ----- | ------- | ----- | ------------ | ----- | ------- | ------ | ---------- | ------- |
+| focus | instant | local | greaterchina | world | finance | sports | parliament | weather |
- | 繁 | 简 |
- | -- | -- |
- | tc | sc |
-</Route>
+语言
+
+| 繁 | 简 |
+| -- | -- |
+| tc | sc |
## 希望之声 {#xi-wang-zhi-sheng}
### 频道 {#xi-wang-zhi-sheng-pin-dao}
-<Route author="Fatpandac" example="/soundofhope/term/203" path="/soundofhope/:channel/:id" paramsDesc={['频道', '子频道 ID']} anticrawler="1">
- 参数均可在官网获取,如:
+<Route data={{"path":"/:channel/:id","categories":["traditional-media"],"example":"/soundofhope/term/203","parameters":{"channel":"频道","id":"子频道 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["soundofhope.org/:channel/:id"]},"name":"频道","maintainers":["Fatpandac"],"description":"参数均可在官网获取,如:\n\n `https://www.soundofhope.org/term/203` 对应 `/soundofhope/term/203`","location":"channel.ts"}} />
+
+参数均可在官网获取,如:
- `https://www.soundofhope.org/term/203` 对应 `/soundofhope/term/203`
-</Route>
+`https://www.soundofhope.org/term/203` 对应 `/soundofhope/term/203`
## 香港经济日报 {#xiang-gang-jing-ji-ri-bao}
### 新闻 {#xiang-gang-jing-ji-ri-bao-xin-wen}
+<Route data={{"path":"/:category?","categories":["traditional-media"],"example":"/hket/sran001","parameters":{"category":"分类,默认为全部新闻,可在 URL 中找到,部分见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.hket.com/"],"target":""},"name":"新闻","maintainers":["TonyRL"],"url":"www.hket.com/","description":"香港经济日报已有提供简单 RSS,详细可前往官方网站: [https://www.hket.com/rss](https://www.hket.com/rss)\n\n此路由主要补全官方 RSS 全文输出及完善分类输出。\n\n <details>\n <summary>分类</summary>\n\n | sran001 | sran008 | sran010 | sran011 | sran012 | srat006 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 全部新闻 | 财经地产 | 科技信息 | 国际新闻 | 商业新闻 | 香港新闻 |\n\n | sran009 | sran009-1 | sran009-2 | sran009-3 | sran009-4 | sran009-5 | sran009-6 |\n | -------- | --------- | --------- | ---------- | --------- | --------- | --------- |\n | 即时财经 | 股市 | 新股 IPO | 新经济追踪 | 当炒股 | 宏观解读 | Hot Talk |\n\n | sran011-1 | sran011-2 | sran011-3 |\n | --------- | ------------ | ------------ |\n | 环球政治 | 环球经济金融 | 环球社会热点 |\n\n | sran016 | sran016-1 | sran016-2 | sran016-3 | sran016-4 | sran016-5 |\n | ---------- | ---------- | ---------- | ---------- | ---------- | -------------- |\n | 大湾区主页 | 大湾区发展 | 大湾区工作 | 大湾区买楼 | 大湾区消费 | 大湾区投资理财 |\n\n | srac002 | srac003 | srac004 | srac005 |\n | -------- | -------- | -------- | -------- |\n | 即时中国 | 经济脉搏 | 国情动向 | 社会热点 |\n\n | srat001 | srat008 | srat055 | srat069 | srat070 |\n | ------- | ------- | -------- | -------- | --------- |\n | 话题 | 观点 | 休闲消费 | 娱乐新闻 | TOPick TV |\n\n | srat052 | srat052-1 | srat052-2 | srat052-3 |\n | -------- | --------- | ---------- | --------- |\n | 健康主页 | 食用安全 | 医生诊症室 | 保健美颜 |\n\n | srat053 | srat053-1 | srat053-2 | srat053-3 | srat053-4 |\n | -------- | --------- | --------- | --------- | ---------- |\n | 亲子主页 | 儿童健康 | 育儿经 | 教育 | 亲子好去处 |\n\n | srat053-6 | srat053-61 | srat053-62 | srat053-63 | srat053-64 |\n | ----------- | ---------- | ---------- | ---------- | ---------- |\n | Band 1 学堂 | 幼稚园 | 中小学 | 尖子教室 | 海外升学 |\n\n | srat072-1 | srat072-2 | srat072-3 | srat072-4 |\n | ---------- | ---------- | ---------------- | ----------------- |\n | 健康身心活 | 抗癌新方向 | 「糖」「心」解密 | 风湿不再 你我自在 |\n\n | sraw007 | sraw009 | sraw010 | sraw011 | sraw012 | sraw014 | sraw018 | sraw019 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 全部博客 | Bloggers | 收息攻略 | 精明消费 | 退休规划 | 个人增值 | 财富管理 | 绿色金融 |\n\n | sraw015 | sraw015-07 | sraw015-08 | sraw015-09 | sraw015-10 |\n | -------- | ---------- | ---------- | ---------- | ---------- |\n | 移民百科 | 海外置业 | 移民攻略 | 移民点滴 | 海外理财 |\n\n | sraw020 | sraw020-1 | sraw020-2 | sraw020-3 | sraw020-4 |\n | -------- | ------------ | --------- | --------- | --------- |\n | ESG 主页 | ESG 趋势政策 | ESG 投资 | ESG 企业 | ESG 社会 |\n </details>","location":"index.ts"}} />
+
香港经济日报已有提供简单 RSS,详细可前往官方网站: [https://www.hket.com/rss](https://www.hket.com/rss)
此路由主要补全官方 RSS 全文输出及完善分类输出。
-<Route author="TonyRL" example="/hket/sran001" path="/hket/:category?" paramsDesc={['分类,默认为全部新闻,可在 URL 中找到,部分见下表']} radar="1">
- <details>
- <summary>分类</summary>
+<details>
+ <summary>分类</summary>
- | sran001 | sran008 | sran010 | sran011 | sran012 | srat006 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 全部新闻 | 财经地产 | 科技信息 | 国际新闻 | 商业新闻 | 香港新闻 |
+ | sran001 | sran008 | sran010 | sran011 | sran012 | srat006 |
+ | -------- | -------- | -------- | -------- | -------- | -------- |
+ | 全部新闻 | 财经地产 | 科技信息 | 国际新闻 | 商业新闻 | 香港新闻 |
- | sran009 | sran009-1 | sran009-2 | sran009-3 | sran009-4 | sran009-5 | sran009-6 |
- | -------- | --------- | --------- | ---------- | --------- | --------- | --------- |
- | 即时财经 | 股市 | 新股 IPO | 新经济追踪 | 当炒股 | 宏观解读 | Hot Talk |
+ | sran009 | sran009-1 | sran009-2 | sran009-3 | sran009-4 | sran009-5 | sran009-6 |
+ | -------- | --------- | --------- | ---------- | --------- | --------- | --------- |
+ | 即时财经 | 股市 | 新股 IPO | 新经济追踪 | 当炒股 | 宏观解读 | Hot Talk |
- | sran011-1 | sran011-2 | sran011-3 |
- | --------- | ------------ | ------------ |
- | 环球政治 | 环球经济金融 | 环球社会热点 |
+ | sran011-1 | sran011-2 | sran011-3 |
+ | --------- | ------------ | ------------ |
+ | 环球政治 | 环球经济金融 | 环球社会热点 |
- | sran016 | sran016-1 | sran016-2 | sran016-3 | sran016-4 | sran016-5 |
- | ---------- | ---------- | ---------- | ---------- | ---------- | -------------- |
- | 大湾区主页 | 大湾区发展 | 大湾区工作 | 大湾区买楼 | 大湾区消费 | 大湾区投资理财 |
+ | sran016 | sran016-1 | sran016-2 | sran016-3 | sran016-4 | sran016-5 |
+ | ---------- | ---------- | ---------- | ---------- | ---------- | -------------- |
+ | 大湾区主页 | 大湾区发展 | 大湾区工作 | 大湾区买楼 | 大湾区消费 | 大湾区投资理财 |
- | srac002 | srac003 | srac004 | srac005 |
- | -------- | -------- | -------- | -------- |
- | 即时中国 | 经济脉搏 | 国情动向 | 社会热点 |
+ | srac002 | srac003 | srac004 | srac005 |
+ | -------- | -------- | -------- | -------- |
+ | 即时中国 | 经济脉搏 | 国情动向 | 社会热点 |
- | srat001 | srat008 | srat055 | srat069 | srat070 |
- | ------- | ------- | -------- | -------- | --------- |
- | 话题 | 观点 | 休闲消费 | 娱乐新闻 | TOPick TV |
+ | srat001 | srat008 | srat055 | srat069 | srat070 |
+ | ------- | ------- | -------- | -------- | --------- |
+ | 话题 | 观点 | 休闲消费 | 娱乐新闻 | TOPick TV |
- | srat052 | srat052-1 | srat052-2 | srat052-3 |
- | -------- | --------- | ---------- | --------- |
- | 健康主页 | 食用安全 | 医生诊症室 | 保健美颜 |
+ | srat052 | srat052-1 | srat052-2 | srat052-3 |
+ | -------- | --------- | ---------- | --------- |
+ | 健康主页 | 食用安全 | 医生诊症室 | 保健美颜 |
- | srat053 | srat053-1 | srat053-2 | srat053-3 | srat053-4 |
- | -------- | --------- | --------- | --------- | ---------- |
- | 亲子主页 | 儿童健康 | 育儿经 | 教育 | 亲子好去处 |
+ | srat053 | srat053-1 | srat053-2 | srat053-3 | srat053-4 |
+ | -------- | --------- | --------- | --------- | ---------- |
+ | 亲子主页 | 儿童健康 | 育儿经 | 教育 | 亲子好去处 |
- | srat053-6 | srat053-61 | srat053-62 | srat053-63 | srat053-64 |
- | ----------- | ---------- | ---------- | ---------- | ---------- |
- | Band 1 学堂 | 幼稚园 | 中小学 | 尖子教室 | 海外升学 |
+ | srat053-6 | srat053-61 | srat053-62 | srat053-63 | srat053-64 |
+ | ----------- | ---------- | ---------- | ---------- | ---------- |
+ | Band 1 学堂 | 幼稚园 | 中小学 | 尖子教室 | 海外升学 |
- | srat072-1 | srat072-2 | srat072-3 | srat072-4 |
- | ---------- | ---------- | ---------------- | ----------------- |
- | 健康身心活 | 抗癌新方向 | 「糖」「心」解密 | 风湿不再 你我自在 |
+ | srat072-1 | srat072-2 | srat072-3 | srat072-4 |
+ | ---------- | ---------- | ---------------- | ----------------- |
+ | 健康身心活 | 抗癌新方向 | 「糖」「心」解密 | 风湿不再 你我自在 |
- | sraw007 | sraw009 | sraw010 | sraw011 | sraw012 | sraw014 | sraw018 | sraw019 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 全部博客 | Bloggers | 收息攻略 | 精明消费 | 退休规划 | 个人增值 | 财富管理 | 绿色金融 |
+ | sraw007 | sraw009 | sraw010 | sraw011 | sraw012 | sraw014 | sraw018 | sraw019 |
+ | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+ | 全部博客 | Bloggers | 收息攻略 | 精明消费 | 退休规划 | 个人增值 | 财富管理 | 绿色金融 |
- | sraw015 | sraw015-07 | sraw015-08 | sraw015-09 | sraw015-10 |
- | -------- | ---------- | ---------- | ---------- | ---------- |
- | 移民百科 | 海外置业 | 移民攻略 | 移民点滴 | 海外理财 |
+ | sraw015 | sraw015-07 | sraw015-08 | sraw015-09 | sraw015-10 |
+ | -------- | ---------- | ---------- | ---------- | ---------- |
+ | 移民百科 | 海外置业 | 移民攻略 | 移民点滴 | 海外理财 |
- | sraw020 | sraw020-1 | sraw020-2 | sraw020-3 | sraw020-4 |
- | -------- | ------------ | --------- | --------- | --------- |
- | ESG 主页 | ESG 趋势政策 | ESG 投资 | ESG 企业 | ESG 社会 |
- </details>
-</Route>
+ | sraw020 | sraw020-1 | sraw020-2 | sraw020-3 | sraw020-4 |
+ | -------- | ------------ | --------- | --------- | --------- |
+ | ESG 主页 | ESG 趋势政策 | ESG 投资 | ESG 企业 | ESG 社会 |
+</details>
## 新华每日电讯 {#xin-hua-mei-ri-dian-xun}
### 今日 {#xin-hua-mei-ri-dian-xun-jin-ri}
-<Route author="Dustin-Jiang" example="/mrdx/today" path="/mrdx/today" />
-
-## 新假期周刊 {#xin-jia-qi-zhou-kan}
-
-### 最新文章 {#xin-jia-qi-zhou-kan-zui-xin-wen-zhang}
-
-<Route author="TonyRL" example="/weekendhk" path="/weekendhk" radar="1" />
-
-## 新京报 {#xin-jing-bao}
-
-### 栏目 {#xin-jing-bao-lan-mu}
-
-<Route author="DIYgod" example="/bjnews/realtime" path="/bjnews/:category" paramsDesc={['新京报的栏目名,点击对应栏目后在地址栏找到']} />
+<Route data={{"path":"/today","categories":["traditional-media"],"example":"/mrdx/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mrdx.cn*"]},"name":"今日","maintainers":["Dustin-Jiang"],"url":"mrdx.cn*","location":"daily.ts"}} />
## 新快报 {#xin-kuai-bao}
### 新闻 {#xin-kuai-bao-xin-wen}
-<Route author="TimWu007" example="/xkb/350" path="/xkb/:channel" paramsDesc={['栏目 ID,点击对应栏目后在地址栏找到']}>
- 常用栏目 ID:
+<Route data={{"path":"/:channel","categories":["traditional-media"],"example":"/xkb/350","parameters":{"channel":"栏目 ID,点击对应栏目后在地址栏找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["TimWu007"],"description":"常用栏目 ID:\n\n | 栏目名 | ID |\n | ------ | --- |\n | 首页 | 350 |\n | 重点 | 359 |\n | 广州 | 353 |\n | 湾区 | 360 |\n | 天下 | 355 |","location":"index.ts"}} />
+
+常用栏目 ID:
- | 栏目名 | ID |
- | ------ | --- |
- | 首页 | 350 |
- | 重点 | 359 |
- | 广州 | 353 |
- | 湾区 | 360 |
- | 天下 | 355 |
-</Route>
+| 栏目名 | ID |
+| ------ | --- |
+| 首页 | 350 |
+| 重点 | 359 |
+| 广州 | 353 |
+| 湾区 | 360 |
+| 天下 | 355 |
## 新蓝网(浙江广播电视集团) {#xin-lan-wang-zhe-jiang-guang-bo-dian-shi-ji-tuan}
### 浙江新闻联播 {#xin-lan-wang-zhe-jiang-guang-bo-dian-shi-ji-tuan-zhe-jiang-xin-wen-lian-bo}
-<Route author="yhkang" example="/cztv/zjxwlb" path="/cztv/zjxwlb" />
+<Route data={{"path":"/zjxwlb","categories":["traditional-media"],"example":"/cztv/zjxwlb","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cztv.com/videos/zjxwlb","cztv.com/"]},"name":"浙江新闻联播","maintainers":["yhkang"],"url":"cztv.com/videos/zjxwlb","location":"zjxwlb.ts"}} />
### 浙江新闻联播 - 每日合集 {#xin-lan-wang-zhe-jiang-guang-bo-dian-shi-ji-tuan-zhe-jiang-xin-wen-lian-bo-mei-ri-he-ji}
-<Route author="yhkang" example="/cztv/zjxwlb/daily" path="/cztv/zjxwlb/daily" />
+<Route data={{"path":"/zjxwlb/daily","categories":["traditional-media"],"example":"/cztv/zjxwlb/daily","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cztv.com/videos/zjxwlb","cztv.com/"]},"name":"浙江新闻联播 - 每日合集","maintainers":["yhkang"],"url":"cztv.com/videos/zjxwlb","location":"daily.ts"}} />
## 新唐人电视台 {#xin-tang-ren-dian-shi-tai}
### 频道 {#xin-tang-ren-dian-shi-tai-pin-dao}
-<Route author="Fatpandac" example="/ntdtv/b5/prog1201" path="/ntdtv/:language/:id" paramsDesc={['语言,简体为`gb`,繁体为`b5`', '子频道名称']}>
- 参数均可在官网获取,如:
+<Route data={{"path":"/:language/:id","categories":["traditional-media"],"example":"/ntdtv/b5/prog1201","parameters":{"language":"语言,简体为`gb`,繁体为`b5`","id":"子频道名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ntdtv.com/:language/:id"]},"name":"频道","maintainers":["Fatpandac"],"description":"参数均可在官网获取,如:\n\n `https://www.ntdtv.com/b5/prog1201` 对应 `/ntdtv/b5/prog1201`","location":"channel.ts"}} />
+
+参数均可在官网获取,如:
- `https://www.ntdtv.com/b5/prog1201` 对应 `/ntdtv/b5/prog1201`
-</Route>
+`https://www.ntdtv.com/b5/prog1201` 对应 `/ntdtv/b5/prog1201`
## 信报财经新闻 {#xin-bao-cai-jing-xin-wen}
### 即时新闻 {#xin-bao-cai-jing-xin-wen-ji-shi-xin-wen}
-<Route author="TonyRL" example="/hkej/index" path="/hkej/:category?" paramsDesc={['分类,默认为全部新闻']} anticrawler="1">
- | index | stock | hongkong | china | international | property | current |
- | -------- | -------- | -------- | -------- | ------------- | -------- | -------- |
- | 全部新闻 | 港股直击 | 香港财经 | 中国财经 | 国际财经 | 地产新闻 | 时事脉搏 |
-</Route>
+<Route data={{"path":"/:category?","categories":["traditional-media"],"example":"/hkej/index","parameters":{"category":"分类,默认为全部新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hkej.com/"]},"name":"即时新闻","maintainers":["TonyRL"],"url":"hkej.com/","description":"| index | stock | hongkong | china | international | property | current |\n | -------- | -------- | -------- | -------- | ------------- | -------- | -------- |\n | 全部新闻 | 港股直击 | 香港财经 | 中国财经 | 国际财经 | 地产新闻 | 时事脉搏 |","location":"index.ts"}} />
-## 星島日報 {#xing-dao-ri-bao}
+| index | stock | hongkong | china | international | property | current |
+| -------- | -------- | -------- | -------- | ------------- | -------- | -------- |
+| 全部新闻 | 港股直击 | 香港财经 | 中国财经 | 国际财经 | 地产新闻 | 时事脉搏 |
-### 即時 {#xing-dao-ri-bao-ji-shi}
-
-<Route author="TonyRL" example="/stheadline/std/realtime/kol" path="/stheadline/std/realtime/:category*" paramsDesc={['分類路徑,URL 中 `/realtime/` 後的部分,預設為`即時`']} radar="1" />
-
-## 星洲网 {#xing-zhou-wang}
-
-### 首页 {#xing-zhou-wang-shou-ye}
-
-<Route author="nczitzk" example="/sinchew" path="/sinchew" />
-
-### 最新 {#xing-zhou-wang-zui-xin}
-
-<Route author="nczitzk" example="/sinchew/latest" path="/sinchew/latest" />
+## 央视新闻 {#yang-shi-xin-wen}
-### 分类 {#xing-zhou-wang-fen-lei}
+### 栏目 {#yang-shi-xin-wen-lan-mu}
-<Route author="nczitzk" example="/sinchew/category/头条" path="/sinchew/category/:category?" paramsDesc={['分类,见下表,亦可以在对应分类页 URL 中找到']}>
- | 头条 | 国内 | 国际 | 言路 | 财经 | 地方 | 副刊 | 娱乐 | 体育 | 百格 | 星角攝 | 好运来 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ------ | ------ |
+<Route data={{"path":"/lm/:id?","categories":["traditional-media"],"example":"/cctv/lm/xwzk","parameters":{"id":"栏目 id,可在对应栏目页 URL 中找到,默认为 `xwzk` 即 新闻周刊"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.cctv.com/:category"],"target":"/:category"},"name":"栏目","maintainers":["nczitzk"],"description":"| 焦点访谈 | 等着我 | 今日说法 | 开讲啦 |\n | -------- | ------ | -------- | ------ |\n | jdft | dzw | jrsf | kjl |\n\n | 正大综艺 | 经济半小时 | 第一动画乐园 |\n | -------- | ---------- | ------------ |\n | zdzy | jjbxs | dydhly |\n\n :::tip\n 更多栏目请看 [这里](https://tv.cctv.com/lm)\n :::","location":"lm.ts"}} />
- :::tip
- 若订阅单级分类 [头条](https://www.sinchew.com.my/category/头条),其 URL 为 [https://www.sinchew.com.my/category/ 头条](https://www.sinchew.com.my/category/头条),则路由为 [`/sinchew/category/头条`](https://rsshub.app/sinchew/category/头条)。
+| 焦点访谈 | 等着我 | 今日说法 | 开讲啦 |
+| -------- | ------ | -------- | ------ |
+| jdft | dzw | jrsf | kjl |
- 若订阅多级分类 [国际 > 天下事](https://www.sinchew.com.my/category/国际/天下事),其 URL 为 [https://www.sinchew.com.my/category/ 国际 / 天下事](https://www.sinchew.com.my/category/国际/天下事),则路由为 [`/sinchew/category/国际/天下事`](https://rsshub.app/sinchew/category/国际/天下事)。
- :::
-</Route>
+| 正大综艺 | 经济半小时 | 第一动画乐园 |
+| -------- | ---------- | ------------ |
+| zdzy | jjbxs | dydhly |
-## 央视新闻 {#yang-shi-xin-wen}
+:::tip
+更多栏目请看 [这里](https://tv.cctv.com/lm)
+:::
### 新闻联播 {#yang-shi-xin-wen-xin-wen-lian-bo}
-<Route author="zengxs" example="/cctv/xwlb" path="/cctv/xwlb" radar="1">
- 新闻联播内容摘要。
-</Route>
+<Route data={{"path":"/xwlb","categories":["traditional-media"],"example":"/cctv/xwlb","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["tv.cctv.com/lm/xwlb","tv.cctv.com/"]},"name":"新闻联播","maintainers":["zengxs"],"url":"tv.cctv.com/lm/xwlb","description":"新闻联播内容摘要。","location":"xwlb.ts"}} />
-### 栏目 {#yang-shi-xin-wen-lan-mu}
-
-<Route author="nczitzk" example="/cctv/lm/xwzk" path="/cctv/lm/:id?" paramsDesc={['栏目 id,可在对应栏目页 URL 中找到,默认为 `xwzk` 即 新闻周刊']} radar="1">
- | 焦点访谈 | 等着我 | 今日说法 | 开讲啦 |
- | -------- | ------ | -------- | ------ |
- | jdft | dzw | jrsf | kjl |
+新闻联播内容摘要。
- | 正大综艺 | 经济半小时 | 第一动画乐园 |
- | -------- | ---------- | ------------ |
- | zdzy | jjbxs | dydhly |
+### 央视网图片《镜象》 {#yang-shi-xin-wen-yang-shi-wang-tu-pian-%E3%80%8A-jing-xiang-%E3%80%8B}
- :::tip
- 更多栏目请看 [这里](https://tv.cctv.com/lm)
- :::
-</Route>
+<Route data={{"path":"/photo/jx","categories":["traditional-media"],"example":"/cctv/photo/jx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["photo.cctv.com/jx","photo.cctv.com/"]},"name":"央视网图片《镜象》","maintainers":["nczitzk"],"url":"photo.cctv.com/jx","location":"jx.ts"}} />
### 专题 {#yang-shi-xin-wen-zhuan-ti}
-<Route author="idealclover xyqfer" example="/cctv/world" path="/cctv/:category" paramsDesc={['分类名']} radar="1">
- | 新闻 | 国内 | 国际 | 社会 | 法治 | 文娱 | 科技 | 生活 | 教育 | 每周质量报告 | 新闻 1+1 |
- | ---- | ----- | ----- | ------- | ---- | ---- | ---- | ---- | ---- | ------------ | --------- |
- | news | china | world | society | law | ent | tech | life | edu | mzzlbg | xinwen1j1 |
-</Route>
+<Route data={{"path":"/:category","categories":["traditional-media"],"example":"/cctv/world","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.cctv.com/:category"]},"name":"专题","maintainers":["idealclover","xyqfer"],"description":"| 新闻 | 国内 | 国际 | 社会 | 法治 | 文娱 | 科技 | 生活 | 教育 | 每周质量报告 | 新闻 1+1 |\n | ---- | ----- | ----- | ------- | ---- | ---- | ---- | ---- | ---- | ------------ | --------- |\n | news | china | world | society | law | ent | tech | life | edu | mzzlbg | xinwen1j1 |","location":"category.ts"}} />
-### 新闻联播文字版 {#yang-shi-xin-wen-xin-wen-lian-bo-wen-zi-ban}
-
-<Route author="luyuhuang" example="/xinwenlianbo/index" path="/xinwenlianbo/index" radar="1" anticrawler="1" />
-
-### 央视网图片《镜象》 {#yang-shi-xin-wen-yang-shi-wang-tu-pian-%E3%80%8A-jing-xiang-%E3%80%8B}
-
-<Route author="nczitzk" example="/cctv/photo/jx" path="/cctv/photo/jx" radar="1" />
+| 新闻 | 国内 | 国际 | 社会 | 法治 | 文娱 | 科技 | 生活 | 教育 | 每周质量报告 | 新闻 1+1 |
+| ---- | ----- | ----- | ------- | ---- | ---- | ---- | ---- | ---- | ------------ | --------- |
+| news | china | world | society | law | ent | tech | life | edu | mzzlbg | xinwen1j1 |
## 羊城晚报金羊网 {#yang-cheng-wan-bao-jin-yang-wang}
### 新闻 {#yang-cheng-wan-bao-jin-yang-wang-xin-wen}
-<Route author="TimWu007" example="/ycwb/1" path="/ycwb/:node" paramsDesc={['栏目 id']}>
- 注:小部分栏目的 URL 会给出 nodeid。如未给出,可打开某条新闻链接后,查看网页源代码,搜索 nodeid 的值。
+<Route data={{"path":"/:node","categories":["traditional-media"],"example":"/ycwb/1","parameters":{"node":"栏目 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["TimWu007"],"description":"注:小部分栏目的 URL 会给出 nodeid。如未给出,可打开某条新闻链接后,查看网页源代码,搜索 nodeid 的值。\n\n 常用栏目节点:\n\n | 首页 | 中国 | 国际 | 体育 | 要闻 | 珠江评论 | 民生观察 | 房产 | 金羊教育 | 金羊财富 | 金羊文化 | 金羊健康 | 金羊汽车 |\n | ---- | ---- | ---- | ---- | ---- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- |\n | 1 | 14 | 15 | 16 | 22 | 1875 | 21773 | 222 | 5725 | 633 | 5281 | 21692 | 223 |\n\n | 广州 | 广州 - 广州要闻 | 广州 - 社会百态 | 广州 - 深读广州 | 广州 - 生活服务 | 今日大湾区 | 广东 - 政经热闻 | 广东 - 民生视点 | 广东 - 滚动新闻 |\n | ---- | --------------- | --------------- | --------------- | --------------- | ---------- | --------------- | --------------- | --------------- |\n | 18 | 5261 | 6030 | 13352 | 83422 | 100418 | 13074 | 12252 | 12212 |","location":"index.ts"}} />
+
+注:小部分栏目的 URL 会给出 nodeid。如未给出,可打开某条新闻链接后,查看网页源代码,搜索 nodeid 的值。
- 常用栏目节点:
+常用栏目节点:
- | 首页 | 中国 | 国际 | 体育 | 要闻 | 珠江评论 | 民生观察 | 房产 | 金羊教育 | 金羊财富 | 金羊文化 | 金羊健康 | 金羊汽车 |
- | ---- | ---- | ---- | ---- | ---- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 14 | 15 | 16 | 22 | 1875 | 21773 | 222 | 5725 | 633 | 5281 | 21692 | 223 |
+| 首页 | 中国 | 国际 | 体育 | 要闻 | 珠江评论 | 民生观察 | 房产 | 金羊教育 | 金羊财富 | 金羊文化 | 金羊健康 | 金羊汽车 |
+| ---- | ---- | ---- | ---- | ---- | -------- | -------- | ---- | -------- | -------- | -------- | -------- | -------- |
+| 1 | 14 | 15 | 16 | 22 | 1875 | 21773 | 222 | 5725 | 633 | 5281 | 21692 | 223 |
- | 广州 | 广州 - 广州要闻 | 广州 - 社会百态 | 广州 - 深读广州 | 广州 - 生活服务 | 今日大湾区 | 广东 - 政经热闻 | 广东 - 民生视点 | 广东 - 滚动新闻 |
- | ---- | --------------- | --------------- | --------------- | --------------- | ---------- | --------------- | --------------- | --------------- |
- | 18 | 5261 | 6030 | 13352 | 83422 | 100418 | 13074 | 12252 | 12212 |
-</Route>
+| 广州 | 广州 - 广州要闻 | 广州 - 社会百态 | 广州 - 深读广州 | 广州 - 生活服务 | 今日大湾区 | 广东 - 政经热闻 | 广东 - 民生视点 | 广东 - 滚动新闻 |
+| ---- | --------------- | --------------- | --------------- | --------------- | ---------- | --------------- | --------------- | --------------- |
+| 18 | 5261 | 6030 | 13352 | 83422 | 100418 | 13074 | 12252 | 12212 |
## 浙江在线 {#zhe-jiang-zai-xian}
### 浙报集团系列报刊 {#zhe-jiang-zai-xian-zhe-bao-ji-tuan-xi-lie-bao-kan}
-<Route author="nczitzk" example="/zjol/paper/zjrb" path="/zjol/paper/:id?" paramsDesc={['报纸 id,见下表,默认为 `zjrb`,即浙江日报']}>
- | 浙江日报 | 钱江晚报 | 美术报 | 浙江老年报 | 浙江法制报 | 江南游报 |
- | -------- | -------- | ------ | ---------- | ---------- | -------- |
- | zjrb | qjwb | msb | zjlnb | zjfzb | jnyb |
-</Route>
+<Route data={{"path":"/paper/:id?","categories":["traditional-media"],"example":"/zjol/paper/zjrb","parameters":{"id":"报纸 id,见下表,默认为 `zjrb`,即浙江日报"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"浙报集团系列报刊","maintainers":["nczitzk"],"description":"| 浙江日报 | 钱江晚报 | 美术报 | 浙江老年报 | 浙江法制报 | 江南游报 |\n | -------- | -------- | ------ | ---------- | ---------- | -------- |\n | zjrb | qjwb | msb | zjlnb | zjfzb | jnyb |","location":"paper.ts"}} />
+
+| 浙江日报 | 钱江晚报 | 美术报 | 浙江老年报 | 浙江法制报 | 江南游报 |
+| -------- | -------- | ------ | ---------- | ---------- | -------- |
+| zjrb | qjwb | msb | zjlnb | zjfzb | jnyb |
## 中国环球电视网 {#zhong-guo-huan-qiu-dian-shi-wang}
### 播客 {#zhong-guo-huan-qiu-dian-shi-wang-bo-ke}
-<Route author="5upernova-heng" example="/cgtn/podcast/ezfm/4" path="/cgtn/podcast/:category/:id" paramsDesc={['类型名','播客 id']} radar="1">
- > 类型名与播客 id 可以在播客对应的 URL 中找到
- > 如 URL `https://radio.cgtn.com/podcast/column/ezfm/More-to-Read/4` ,其 `category` 为 `ezfm` ,`id` 为 `4`,对应的订阅路由为 [`/podcast/ezfm/4`](https://rsshub.app/podcast/ezfm/4)
-</Route>
+<Route data={{"path":"/podcast/:category/:id","categories":["traditional-media"],"example":"/cgtn/podcast/ezfm/4","parameters":{"category":"类型名","id":"播客 id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cgtn.com/podcast/column/:category/*/:id"]},"name":"播客","maintainers":["5upernova-heng"],"description":"> 类型名与播客 id 可以在播客对应的 URL 中找到\n > 如 URL `https://radio.cgtn.com/podcast/column/ezfm/More-to-Read/4` ,其 `category` 为 `ezfm` ,`id` 为 `4`,对应的订阅路由为 [`/podcast/ezfm/4`](https://rsshub.app/podcast/ezfm/4)","location":"podcast.ts"}} />
+
+> 类型名与播客 id 可以在播客对应的 URL 中找到
+> 如 URL `https://radio.cgtn.com/podcast/column/ezfm/More-to-Read/4` ,其 `category` 为 `ezfm` ,`id` 为 `4`,对应的订阅路由为 [`/podcast/ezfm/4`](https://rsshub.app/podcast/ezfm/4)
## 中国科技网 {#zhong-guo-ke-ji-wang}
### 科技日报 {#zhong-guo-ke-ji-wang-ke-ji-ri-bao}
-<Route author="lyqluis" example="/stdaily/digitalpaper" path="/stdaily/digitalpaper" />
-
-## 中国日报 {#zhong-guo-ri-bao}
-
-### 英语点津 {#zhong-guo-ri-bao-ying-yu-dian-jin}
-
-<Route author="sanmmm" example="/chinadaily/english/thelatest" path="/chinadaily/english/:category" paramsDesc={['目录分类']}>
- 目录分类
-
- | 最新 | 双语 | 热词 | 口语 | 译词 | 视频 | 听力 | 专栏 | 文件 | 考试 |
- | --------- | --------------- | -------------- | ---------------- | -------------- | ------------ | --------- | --------- | ------------------------ | ------------ |
- | thelatest | news\_bilingual | news\_hotwords | practice\_tongue | trans\_collect | video\_links | audio\_cd | columnist | 5af95d44a3103f6866ee845c | englishexams |
-</Route>
-
-## 中国新闻网 {#zhong-guo-xin-wen-wang}
-
-### 最新 {#zhong-guo-xin-wen-wang-zui-xin}
-
-<Route author="yuxinliu-alex" example="/chinanews" path="/chinanews" radar="1" />
+<Route data={{"path":"/digitalpaper","categories":["traditional-media"],"example":"/stdaily/digitalpaper","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"科技日报","maintainers":["lyqluis"],"location":"digitalpaper.ts"}} />
## 中国新闻周刊 {#zhong-guo-xin-wen-zhou-kan}
### 栏目 {#zhong-guo-xin-wen-zhou-kan-lan-mu}
+<Route data={{"path":"/:channel","categories":["traditional-media"],"example":"/inewsweek/survey","parameters":{"channel":"栏目"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["inewsweek.cn/:channel","inewsweek.cn/"]},"name":"栏目","maintainers":["changren-wcr"],"description":"提取文章全文。\n\n | 封面 | 时政 | 社会 | 经济 | 国际 | 调查 | 人物 |\n | ----- | -------- | ------- | ------- | ----- | ------ | ------ |\n | cover | politics | society | finance | world | survey | people |","location":"index.ts"}} />
+
提取文章全文。
-<Route author="changren-wcr" example="/inewsweek/survey" path="/inewsweek/:channel" paramsDesc={['栏目']}>
- | 封面 | 时政 | 社会 | 经济 | 国际 | 调查 | 人物 |
- | ----- | -------- | ------- | ------- | ----- | ------ | ------ |
- | cover | politics | society | finance | world | survey | people |
-</Route>
+| 封面 | 时政 | 社会 | 经济 | 国际 | 调查 | 人物 |
+| ----- | -------- | ------- | ------- | ----- | ------ | ------ |
+| cover | politics | society | finance | world | survey | people |
-## 中山网 {#zhong-shan-wang}
+## 中央通讯社 {#zhong-yang-tong-xun-she}
-### 中山网新闻 {#zhong-shan-wang-zhong-shan-wang-xin-wen}
+### Unknown {#zhong-yang-tong-xun-she-unknown}
-<Route author="laampui" example="/zsnews/index/35" path="/zsnews/index/:cateid" paramsDesc={['类别']}>
- | 35 | 36 | 37 | 38 | 39 |
- | ---- | ---- | ---- | ---- | ---- |
- | 本地 | 镇区 | 热点 | 社会 | 综合 |
-</Route>
-
-## 中央通讯社 {#zhong-yang-tong-xun-she}
+<Route data={{"path":"/web/:id?","categories":["traditional-media"],"example":"/cna/web/aall","parameters":{"id":"分类 id,见上表。此參數默认为 aall"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["dzx-dzx"],"location":"web/index.ts"}} />
### 分类 {#zhong-yang-tong-xun-she-fen-lei}
-<Route author="nczitzk" example="/cna/aall" path="/cna/:id?" paramsDesc={['分类 id 或新闻专题 id。分类 id 见下表,新闻专题 id 為 https://www.cna.com.tw/list/newstopic.aspx 中,連結的數字部份。此參數默认为 aall']}>
- | 即時 | 政治 | 國際 | 兩岸 | 產經 | 證券 | 科技 | 生活 | 社會 | 地方 | 文化 | 運動 | 娛樂 |
- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
- | aall | aipl | aopl | acn | aie | asc | ait | ahel | asoc | aloc | acul | aspt | amov |
-</Route>
-
-### 分类 (网页爬虫方法) {#zhong-yang-tong-xun-she-fen-lei-wang-ye-pa-chong-fang-fa}
+<Route data={{"path":"/:id?","categories":["traditional-media"],"example":"/cna/aall","parameters":{"id":"分类 id 或新闻专题 id。分类 id 见下表,新闻专题 id 為 https://www.cna.com.tw/list/newstopic.aspx 中,連結的數字部份。此參數默认为 aall"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"分类","maintainers":["nczitzk"],"description":"| 即時 | 政治 | 國際 | 兩岸 | 產經 | 證券 | 科技 | 生活 | 社會 | 地方 | 文化 | 運動 | 娛樂 |\n | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |\n | aall | aipl | aopl | acn | aie | asc | ait | ahel | asoc | aloc | acul | aspt | amov |","location":"index.ts"}} />
-<Route author="dzx-dzx" example="/cna/web/aall" path="/cna/web/:id?" paramsDesc={['分类 id,见上表。此參數默认为 aall']} />
+| 即時 | 政治 | 國際 | 兩岸 | 產經 | 證券 | 科技 | 生活 | 社會 | 地方 | 文化 | 運動 | 娛樂 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| aall | aipl | aopl | acn | aie | asc | ait | ahel | asoc | aloc | acul | aspt | amov |
diff --git a/website/docs/routes/travel.mdx b/website/docs/routes/travel.mdx
index 4ff25ff2831c36..113c62ee69ef67 100644
--- a/website/docs/routes/travel.mdx
+++ b/website/docs/routes/travel.mdx
@@ -1,125 +1,97 @@
-# 🛫 Travel
+# travel
## 12306 {#12306}
-### 最新动态 {#12306-zui-xin-dong-tai}
+### 售票信息 {#12306-shou-piao-xin-xi}
-<Route author="LogicJake" example="/12306/zxdt" path="/12306/zxdt/:id?" paramsDesc={['铁路局id,可在 URL 中找到,不填默认显示所有铁路局动态']} />
+<Route data={{"path":"/:date/:from/:to/:type?","categories":["travel"],"example":"/12306/2022-02-19/重庆/永川东","parameters":{"date":"时间,格式为(YYYY-MM-DD)","from":"始发站","to":"终点站","type":"售票类型,成人和学生可选,默认为成人"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"售票信息","maintainers":["Fatpandac"],"location":"index.ts"}} />
-### 售票信息 {#12306-shou-piao-xin-xi}
+### 最新动态 {#12306-zui-xin-dong-tai}
-<Route author="Fatpandac" example="/12306/2022-02-19/重庆/永川东" path="/12306/:date/:from/:to/:type?" paramsDesc={['时间,格式为(YYYY-MM-DD)', '始发站', '终点站', '售票类型,成人和学生可选,默认为成人']} />
+<Route data={{"path":"/zxdt/:id?","categories":["travel"],"example":"/12306/zxdt","parameters":{"id":"铁路局id,可在 URL 中找到,不填默认显示所有铁路局动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.12306.cn/","www.12306.cn/mormhweb/1/:id/index_fl.html"],"target":"/zxdt/:id"},"name":"最新动态","maintainers":["LogicJake"],"url":"www.12306.cn/","location":"zxdt.ts"}} />
## Brooklyn Museum 纽约布鲁克林博物馆 {#brooklyn-museum-niu-yue-bu-lu-ke-lin-bo-wu-guan}
### Exhibitions {#brooklyn-museum-niu-yue-bu-lu-ke-lin-bo-wu-guan-exhibitions}
-<Route author="chazeon" example="/brooklynmuseum/exhibitions" path="/brooklynmuseum/exhibitions/:state?" paramsDesc={['展览进行的状态:`current` 对应展览当前正在进行,`past` 对应过去的展览,`upcoming` 对应即将举办的展览,默认为 `current`']} />
+<Route data={{"path":"/exhibitions/:state?","categories":["travel"],"example":"/brooklynmuseum/exhibitions","parameters":{"state":"展览进行的状态:`current` 对应展览当前正在进行,`past` 对应过去的展览,`upcoming` 对应即将举办的展览,默认为 `current`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Exhibitions","maintainers":[],"location":"exhibitions.ts"}} />
## National Geographic {#national-geographic}
### Latest Stories {#national-geographic-latest-stories}
-<Route author="miles170" example="/nationalgeographic/latest-stories" path="/nationalgeographic/latest-stories" />
+<Route data={{"path":"/latest-stories","categories":["travel"],"example":"/nationalgeographic/latest-stories","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.nationalgeographic.com/pages/topic/latest-stories"]},"name":"Latest Stories","maintainers":["miles170"],"url":"www.nationalgeographic.com/pages/topic/latest-stories","location":"latest-stories.ts"}} />
## New Museum 纽约新美术馆 {#new-museum-niu-yue-xin-mei-shu-guan}
### Exhibitions {#new-museum-niu-yue-xin-mei-shu-guan-exhibitions}
-<Route author="chazeon" example="/newmuseum/exhibitions" path="/newmuseum/exhibitions" />
+<Route data={{"path":"/exhibitions","categories":["travel"],"example":"/newmuseum/exhibitions","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Exhibitions","maintainers":["chazeon"],"location":"exhibitions.ts"}} />
## 飞客茶馆 {#fei-ke-cha-guan}
-### 优惠信息 {#fei-ke-cha-guan-you-hui-xin-xi}
+### 信用卡 {#fei-ke-cha-guan-xin-yong-ka}
-<Route author="howel52" example="/flyert/preferential" path="/flyert/preferential" />
+<Route data={{"path":"/creditcard/:bank","categories":["travel"],"example":"/flyert/creditcard/zhongxin","parameters":{"bank":"信用卡板块各银行的拼音简称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["flyert.com/"]},"name":"信用卡","maintainers":["nicolaszf"],"url":"flyert.com/","description":"| 信用卡模块 | bank |\n | ---------- | ------------- |\n | 国内信用卡 | creditcard |\n | 浦发银行 | pufa |\n | 招商银行 | zhaoshang |\n | 中信银行 | zhongxin |\n | 交通银行 | jiaotong |\n | 中国银行 | zhonghang |\n | 工商银行 | gongshang |\n | 广发银行 | guangfa |\n | 农业银行 | nongye |\n | 建设银行 | jianshe |\n | 汇丰银行 | huifeng |\n | 民生银行 | mingsheng |\n | 兴业银行 | xingye |\n | 花旗银行 | huaqi |\n | 上海银行 | shanghai |\n | 无卡支付 | wuka |\n | 投资理财 | 137 |\n | 网站权益汇 | 145 |\n | 境外信用卡 | intcreditcard |","location":"creditcard.ts"}} />
+
+| 信用卡模块 | bank |
+| ---------- | ------------- |
+| 国内信用卡 | creditcard |
+| 浦发银行 | pufa |
+| 招商银行 | zhaoshang |
+| 中信银行 | zhongxin |
+| 交通银行 | jiaotong |
+| 中国银行 | zhonghang |
+| 工商银行 | gongshang |
+| 广发银行 | guangfa |
+| 农业银行 | nongye |
+| 建设银行 | jianshe |
+| 汇丰银行 | huifeng |
+| 民生银行 | mingsheng |
+| 兴业银行 | xingye |
+| 花旗银行 | huaqi |
+| 上海银行 | shanghai |
+| 无卡支付 | wuka |
+| 投资理财 | 137 |
+| 网站权益汇 | 145 |
+| 境外信用卡 | intcreditcard |
-### 信用卡 {#fei-ke-cha-guan-xin-yong-ka}
+### 优惠信息 {#fei-ke-cha-guan-you-hui-xin-xi}
-<Route author="nicolaszf" example="/flyert/creditcard/zhongxin" path="/flyert/creditcard/:bank" paramsDesc={['信用卡板块各银行的拼音简称']}>
- | 信用卡模块 | bank |
- | ---------- | ------------- |
- | 国内信用卡 | creditcard |
- | 浦发银行 | pufa |
- | 招商银行 | zhaoshang |
- | 中信银行 | zhongxin |
- | 交通银行 | jiaotong |
- | 中国银行 | zhonghang |
- | 工商银行 | gongshang |
- | 广发银行 | guangfa |
- | 农业银行 | nongye |
- | 建设银行 | jianshe |
- | 汇丰银行 | huifeng |
- | 民生银行 | mingsheng |
- | 兴业银行 | xingye |
- | 花旗银行 | huaqi |
- | 上海银行 | shanghai |
- | 无卡支付 | wuka |
- | 投资理财 | 137 |
- | 网站权益汇 | 145 |
- | 境外信用卡 | intcreditcard |
-</Route>
+<Route data={{"path":"/preferential","categories":["travel"],"example":"/flyert/preferential","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["flyert.com/"]},"name":"优惠信息","maintainers":["howel52"],"url":"flyert.com/","location":"preferential.ts"}} />
## 福州地铁 {#fu-zhou-di-tie}
### 通知公告 {#fu-zhou-di-tie-tong-zhi-gong-gao}
-<Route author="HankChow" example="/fzmtr/announcements" path="/fzmtr/announcements" />
+<Route data={{"path":"/announcements","categories":["travel"],"example":"/fzmtr/announcements","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通知公告","maintainers":["HankChow"],"location":"announcements.ts"}} />
## 广州地铁 {#guang-zhou-di-tie}
### 新闻 {#guang-zhou-di-tie-xin-wen}
-<Route author="HankChow" example="/guangzhoumetro/news" path="/guangzhoumetro/news" />
+<Route data={{"path":"/news","categories":["travel"],"example":"/guangzhoumetro/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻","maintainers":["HankChow"],"location":"news.ts"}} />
## 国家地理 {#guo-jia-di-li}
### 分类 {#guo-jia-di-li-fen-lei}
-<Route author="fengkx" example="/natgeo/environment/article" path="/natgeo/:cat/:type?" paramsDesc={['分类', '类型, 例如`https://www.natgeomedia.com/environment/photo/`对应 `cat`, `type` 分别为 `environment`, `photo`']} />
-
-## 活动行 {#huo-dong-xing}
-
-### 最新活动 {#huo-dong-xing-zui-xin-huo-dong}
-
-<Route author="kfgamehacker" example="/huodongxing/explore" path="/huodongxing/explore" />
-
-## 马蜂窝 {#ma-feng-wo}
-
-### 游记 {#ma-feng-wo-you-ji}
-
-<Route author="sinchang" example="/mafengwo/note/hot" path="/mafengwo/note/:type" paramsDesc={['目前支持两种, `hot` 代表热门游记, `latest` 代表最新游记']} />
-
-### 自由行 {#ma-feng-wo-zi-you-xing}
-
-<Route author="nczitzk" example="/mafengwo/ziyouxing/10186" path="/mafengwo/ziyouxing/:code" paramsDesc={['目的地代码,可在该目的地页面的 URL 中找到']} notOperational="1">
- 目的地代码请参见 [这里](http://www.mafengwo.cn/mdd/)
-</Route>
-
-## 纽约大都会美术馆 {#niu-yue-da-dou-hui-mei-shu-guan}
-
-### Exhibitions {#niu-yue-da-dou-hui-mei-shu-guan-exhibitions}
-
-<Route author="chazeon" example="/metmuseum/exhibitions" path="/metmusem/exhibitions/:state?" paramsDesc={['展览进行的状态:`current` 对应展览当前正在进行,`past` 对应过去的展览,`upcoming` 对应即将举办的展览,默认为 `current`']} anticrawler="1" />
+<Route data={{"path":"/:cat/:type?","categories":["travel"],"example":"/natgeo/environment/article","parameters":{"cat":"分类","type":"类型, 例如`https://www.natgeomedia.com/environment/photo/`对应 `cat`, `type` 分别为 `environment`, `photo`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["natgeomedia.com/:cat/:type","natgeomedia.com/"],"target":"/:cat/:type"},"name":"分类","maintainers":["fengkx"],"location":"natgeo.ts"}} />
## 纽约犹太人博物馆 {#niu-yue-you-tai-ren-bo-wu-guan}
### Exhibitions {#niu-yue-you-tai-ren-bo-wu-guan-exhibitions}
-<Route author="chazeon" example="/jewishmuseum/exhibitions" path="/jewishmuseum/exhibitions" />
+<Route data={{"path":"/exhibitions","categories":["travel"],"example":"/jewishmuseum/exhibitions","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Exhibitions","maintainers":["chazeon"],"location":"exhibitions.ts"}} />
## 中国国际航空公司 {#zhong-guo-guo-ji-hang-kong-gong-si}
### 服务公告 {#zhong-guo-guo-ji-hang-kong-gong-si-fu-wu-gong-gao}
-<Route author="LandonLi" example="/airchina/announcement" path="/airchina/announcement" radar="1" />
+<Route data={{"path":"/announcement","categories":["travel"],"example":"/airchina/announcement","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.airchina.com.cn/"]},"name":"服务公告","maintainers":["LandonLi"],"url":"www.airchina.com.cn/","location":"index.ts"}} />
## 走进日本 {#zou-jin-ri-ben}
-### 政治外交 {#zou-jin-ri-ben-zheng-zhi-wai-jiao}
+### Unknown {#zou-jin-ri-ben-unknown}
-<Route author="laampui" example="/nippon/Politics" path="/nippon/:category?" paramsDesc={['默认政治,可选如下']}>
- | 政治 | 经济 | 社会 | 展览预告 | 焦点专题 | 深度报道 | 话题 | 日本信息库 | 日本一蹩 | 人物访谈 | 编辑部通告 |
- | -------- | ------- | ------- | -------- | ------------------ | -------- | ------------ | ---------- | ------------- | -------- | ------------- |
- | Politics | Economy | Society | Culture | Science,Technology | In-depth | japan-topics | japan-data | japan-glances | People | Announcements |
-</Route>
+<Route data={{"path":"/:category?","categories":["travel"],"example":"/nippon/Politics","parameters":{"category":"默认政治,可选如下"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.nippon.com/nippon/:category?","www.nippon.com/cn"]},"name":"Unknown","maintainers":["laampui"],"location":"index.ts"}} />
diff --git a/website/docs/routes/university.mdx b/website/docs/routes/university.mdx
index 2849402a251e10..c11af7a813b215 100644
--- a/website/docs/routes/university.mdx
+++ b/website/docs/routes/university.mdx
@@ -1,3707 +1,2063 @@
-# 🎓 University
-
-## Beijing Jiaotong University 北京交通大学 {#beijing-jiaotong-university-bei-jing-jiao-tong-da-xue}
-
-### BJTU Graduate School {#beijing-jiaotong-university-bei-jing-jiao-tong-da-xue-bjtu-graduate-school}
-
-<Route author="E1nzbern" example="/bjtu/gs/all" path="/bjtu/gs/:type" paramsDesc={['Type of articles']}>
- | All articles | Notification | News | Admissions Promotion | Training | Degrees | Admissions | Master Admissions | PhD Admissions | Admissions Brochure | Admissions Policies and Regulations | Notice from Graduate Student Work Department | News from Graduate Student Work Department |
- | ------------ | ------------ | ---- | -------------------- | -------- | ------- | ---------- | ----------------- | -------------- | ------------------- | ----------------------------------- | -------------------------------------------- | ------------------------------------------ |
- | all | noti | news | zsxc | py | xw | zs | sszs | bszs | zsjz | zcfg | ygbtzgg | ygbnews |
-</Route>
-
-Note: [Source website](https://gs.bjtu.edu.cn/) only provides articles in Chinese.
+# university
## East China Normal University 华东师范大学 {#east-china-normal-university-hua-dong-shi-fan-da-xue}
### ACM Online-Judge contests list {#east-china-normal-university-hua-dong-shi-fan-da-xue-acm-online-judge-contests-list}
-<Route author="a180285" example="/ecnu/acm/contest/public" path="/ecnu/acm/contest/:category?" radar="1" paramsDesc={['category is optional, default is all, use `public` for public only contests']} notOperational="1" />
+<Route data={{"path":"/acm/contest/:category?","categories":["university"],"example":"/ecnu/acm/contest/public","parameters":{"category":"category is optional, default is all, use `public` for public only contests"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["acm.ecnu.edu.cn/contest/","acm.ecnu.edu.cn/"],"target":"/acm/contest/"},"name":"ACM Online-Judge contests list","maintainers":["a180285"],"url":"acm.ecnu.edu.cn/contest/","location":"contest.ts"}} />
### 研究生院 {#east-china-normal-university-hua-dong-shi-fan-da-xue-yan-jiu-sheng-yuan}
-<Route author="shengmaosu" example="/ecnu/yjs" path="/ecnu/yjs" radar="1" />
+<Route data={{"path":"/yjs","categories":["university"],"example":"/ecnu/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.kaoyan.com/ecnu/tiaoji","yz.kaoyan.com/"]},"name":"研究生院","maintainers":["shengmaosu"],"url":"yz.kaoyan.com/ecnu/tiaoji","location":"yjs.ts"}} />
-## MIT {#mit}
-
-### MIT OCW Most popular courses of the month {#mit-mit-ocw-most-popular-courses-of-the-month}
+## Nanjing University of the Arts 南京艺术学院 {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan}
-<Route author="dwemerx" example="/mit/ocw-top" path="/mit/ocw-top" notOperational="1" />
+### Graduate Institute {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-graduate-institute}
-### MIT graduateadmissions's all blogs {#mit-mit-graduateadmissions-s-all-blogs}
+<Route data={{"path":"/gra/:type","categories":["university"],"example":"/nua/gra/1959","parameters":{"type":"News Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grad.nua.edu.cn/:type/list.htm"]},"name":"Graduate Institute","maintainers":["evnydd0sf"],"description":"| News Type | Parameters |\n | --------- | ---------- |\n | 招生工作 | 1959 |\n | 培养工作 | 1962 |\n | 学位工作 | 1958 |","location":"gra.ts"}} />
-<Route author="LogicJake" example="/mit/graduateadmissions/index/all" path="/mit/graduateadmissions/index/all" notOperational="1" />
+| News Type | Parameters |
+| --------- | ---------- |
+| 招生工作 | 1959 |
+| 培养工作 | 1962 |
+| 学位工作 | 1958 |
-### MIT graduateadmissions's blogs by department {#mit-mit-graduateadmissions-s-blogs-by-department}
+### Library {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-library}
-<Route author="LogicJake" example="/mit/graduateadmissions/department/eecs" path="/mit/graduateadmissions/department/:name" paramsDesc={['department name which can be found in url']} notOperational="1" />
+<Route data={{"path":"/lib/:type","categories":["university"],"example":"/nua/lib/xwdt","parameters":{"type":"News Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lib.nua.edu.cn/:type/list.htm"]},"name":"Library","maintainers":["evnydd0sf"],"description":"| News Type | Parameters |\n | --------- | ---------- |\n | 新闻动态 | xwdt |\n | 党建动态 | djdt |\n | 资源动态 | zydt |\n | 服务动态 | fwdt |","location":"lib.ts"}} />
-### MIT graduateadmissions's blogs by category {#mit-mit-graduateadmissions-s-blogs-by-category}
+| News Type | Parameters |
+| --------- | ---------- |
+| 新闻动态 | xwdt |
+| 党建动态 | djdt |
+| 资源动态 | zydt |
+| 服务动态 | fwdt |
-<Route author="LogicJake" example="/mit/graduateadmissions/category/beyond-the-lab" path="/mit/graduateadmissions/category/:name" paramsDesc={['category name which can be found in url']} notOperational="1" />
+### Official Information {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-official-information}
-### MIT CSAIL {#mit-mit-csail}
+<Route data={{"path":"/index/:type","categories":["university"],"example":"/nua/index/346","parameters":{"type":"News Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["index.nua.edu.cn/:type/list.htm"]},"name":"Official Information","maintainers":["evnydd0sf"],"description":"| News Type | Parameters |\n | --------- | ---------- |\n | 公告 | 346 |\n | 南艺要闻 | 332 |","location":"index.ts"}} />
-<Route author="nczitzk" example="/mit/csail/news" path="/mit/csail/news" />
+| News Type | Parameters |
+| --------- | ---------- |
+| 公告 | 346 |
+| 南艺要闻 | 332 |
-## Nanjing University of the Arts 南京艺术学院 {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan}
+### School of Design {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-school-of-design}
-### Official Information {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-official-information}
+<Route data={{"path":"/dc/:type","categories":["university"],"example":"/nua/dc/news","parameters":{"type":"News Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dc.nua.edu.cn/:type/list.htm"]},"name":"School of Design","maintainers":["evnydd0sf"],"description":"| News Type | Parameters |\n | ------------------------ | ---------- |\n | 学院新闻 NEWS | news |\n | 展览 EXHIBITION | exhibition |\n | 研创 RESEARCH & CREATION | rc |\n | 项目 PROJECT | project |\n | 党团 PARTY | party |\n | 后浪 YOUTH | youth |","location":"dc.ts"}} />
-<Route author="evnydd0sf" example="/nua/index/346" path="/nua/index/:type" paramsDesc={['News Type']} radar="1" anticrawler="1">
- | News Type | Parameters |
- | --------- | ---------- |
- | 公告 | 346 |
- | 南艺要闻 | 332 |
-</Route>
+| News Type | Parameters |
+| ------------------------ | ---------- |
+| 学院新闻 NEWS | news |
+| 展览 EXHIBITION | exhibition |
+| 研创 RESEARCH & CREATION | rc |
+| 项目 PROJECT | project |
+| 党团 PARTY | party |
+| 后浪 YOUTH | youth |
### Shuangxing Information {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-shuangxing-information}
-<Route author="evnydd0sf" example="/nua/sxw/230" path="/nua/sxw/:type" paramsDesc={['News Type']} radar="1" anticrawler="1">
- | News Type | Parameters |
- | --------- | ---------- |
- | 校园电视 | 230 |
- | 院部动态 | 232 |
- | 动感校园 | 233 |
- | 招就指南 | 234 |
- | 南艺院报 | 236 |
-</Route>
+<Route data={{"path":"/sxw/:type","categories":["university"],"example":"/nua/sxw/230","parameters":{"type":"News Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sxw.nua.edu.cn/:type/list.htm"]},"name":"Shuangxing Information","maintainers":["evnydd0sf"],"description":"| News Type | Parameters |\n | --------- | ---------- |\n | 校园电视 | 230 |\n | 院部动态 | 232 |\n | 动感校园 | 233 |\n | 招就指南 | 234 |\n | 南艺院报 | 236 |","location":"sxw.ts"}} />
-### School of Design {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-school-of-design}
-
-<Route author="evnydd0sf" example="/nua/dc/news" path="/nua/dc/:type" paramsDesc={['News Type']} radar="1" anticrawler="1">
- | News Type | Parameters |
- | ------------------------ | ---------- |
- | 学院新闻 NEWS | news |
- | 展览 EXHIBITION | exhibition |
- | 研创 RESEARCH & CREATION | rc |
- | 项目 PROJECT | project |
- | 党团 PARTY | party |
- | 后浪 YOUTH | youth |
-</Route>
-
-### Graduate Institute {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-graduate-institute}
+| News Type | Parameters |
+| --------- | ---------- |
+| 校园电视 | 230 |
+| 院部动态 | 232 |
+| 动感校园 | 233 |
+| 招就指南 | 234 |
+| 南艺院报 | 236 |
-<Route author="evnydd0sf" example="/nua/gra/1959" path="/nua/gra/:type" paramsDesc={['News Type']} radar="1" anticrawler="1">
- | News Type | Parameters |
- | --------- | ---------- |
- | 招生工作 | 1959 |
- | 培养工作 | 1962 |
- | 学位工作 | 1958 |
-</Route>
+## Tianjin University 天津大学 {#tianjin-university-tian-jin-da-xue}
-### Library {#nanjing-university-of-the-arts-nan-jing-yi-shu-xue-yuan-library}
+### Admission Office of Graduate {#tianjin-university-tian-jin-da-xue-admission-office-of-graduate}
-<Route author="evnydd0sf" example="/nua/lib/xwdt" path="/nua/lib/:type" paramsDesc={['News Type']} radar="1" anticrawler="1">
- | News Type | Parameters |
- | --------- | ---------- |
- | 新闻动态 | xwdt |
- | 党建动态 | djdt |
- | 资源动态 | zydt |
- | 服务动态 | fwdt |
-</Route>
+<Route data={{"path":"/yzb/:type?","categories":["university"],"example":"/tju/yzb/notice","parameters":{"type":"default `notice`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Admission Office of Graduate","maintainers":["SuperPung"],"description":"| School-level Notice | Master | Doctor | On-the-job Degree |\n | :-----------------: | :----: | :----: | :---------------: |\n | notice | master | doctor | job |","location":"yzb/index.ts"}} />
-## Polimi {#polimi}
+| School-level Notice | Master | Doctor | On-the-job Degree |
+| :-----------------: | :----: | :----: | :---------------: |
+| notice | master | doctor | job |
-### News {#polimi-news}
+### College of Intelligence and Computing {#tianjin-university-tian-jin-da-xue-college-of-intelligence-and-computing}
-<Route author="exuanbo" example="/polimi/news" path="/polimi/news/:language?" paramsDesc={['English language code en']} notOperational="1" />
+<Route data={{"path":"/cic/:type?","categories":["university"],"example":"/tju/cic/news","parameters":{"type":"default `news`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"College of Intelligence and Computing","maintainers":["SuperPung"],"description":"| College News | Notification | TJU Forum for CIC |\n | :----------: | :----------: | :---------------: |\n | news | notification | forum |","location":"cic/index.ts"}} />
-## Tianjin University 天津大学 {#tianjin-university-tian-jin-da-xue}
+| College News | Notification | TJU Forum for CIC |
+| :----------: | :----------: | :---------------: |
+| news | notification | forum |
### News {#tianjin-university-tian-jin-da-xue-news}
-<Route author="SuperPung" example="/tju/news/focus" path="/tju/news/:type?" paramsDesc={['default `focus`']}>
- | Focus on TJU | General News | Internal News | Media Report | Pictures of TJU |
- | :----------: | :----------: | :-----------: | :----------: | :-------------: |
- | focus | general | internal | media | picture |
-</Route>
-
-### College of Intelligence and Computing {#tianjin-university-tian-jin-da-xue-college-of-intelligence-and-computing}
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/tju/news/focus","parameters":{"type":"default `focus`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"News","maintainers":["SuperPung"],"description":"| Focus on TJU | General News | Internal News | Media Report | Pictures of TJU |\n | :----------: | :----------: | :-----------: | :----------: | :-------------: |\n | focus | general | internal | media | picture |","location":"news/index.ts"}} />
-<Route author="SuperPung" example="/tju/cic/news" path="/tju/cic/:type?" paramsDesc={['default `news`']}>
- | College News | Notification | TJU Forum for CIC |
- | :----------: | :----------: | :---------------: |
- | news | notification | forum |
-</Route>
+| Focus on TJU | General News | Internal News | Media Report | Pictures of TJU |
+| :----------: | :----------: | :-----------: | :----------: | :-------------: |
+| focus | general | internal | media | picture |
### The Office of Academic Affairs {#tianjin-university-tian-jin-da-xue-the-office-of-academic-affairs}
-<Route author="AmosChenYQ SuperPung" example="/tju/oaa/news" path="/tju/oaa/:type?" paramsDesc={['default `news`']}>
- | News | Notification |
- | :--: | :----------: |
- | news | notification |
-</Route>
+<Route data={{"path":"/oaa/:type?","categories":["university"],"example":"/tju/oaa/news","parameters":{"type":"default `news`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"The Office of Academic Affairs","maintainers":["AmosChenYQ","SuperPung"],"description":"| News | Notification |\n | :--: | :----------: |\n | news | notification |","location":"oaa/index.ts"}} />
-### Admission Office of Graduate {#tianjin-university-tian-jin-da-xue-admission-office-of-graduate}
+| News | Notification |
+| :--: | :----------: |
+| news | notification |
-<Route author="SuperPung" example="/tju/yzb/notice" path="/tju/yzb/:type?" paramsDesc={['default `notice`']}>
- | School-level Notice | Master | Doctor | On-the-job Degree |
- | :-----------------: | :----: | :----: | :---------------: |
- | notice | master | doctor | job |
-</Route>
+## University of Washington {#university-of-washington}
-## University of Massachusetts Amherst {#university-of-massachusetts-amherst}
+### Global Innovation Exchange News {#university-of-washington-global-innovation-exchange-news}
-### College of Electrical and Computer Engineering {#university-of-massachusetts-amherst-college-of-electrical-and-computer-engineering}
+<Route data={{"path":"/gix/news/:category","categories":["university"],"example":"/uw/gix/news/blog","parameters":{"category":"Blog Type"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gixnetwork.org/news/:category"]},"name":"Global Innovation Exchange News","maintainers":["dykderrick"],"description":"| Blog | In The News |\n | ---- | ----------- |\n | blog | inthenews |","location":"gix/news.ts"}} />
-#### News {#university-of-massachusetts-amherst-college-of-electrical-and-computer-engineering-news}
+| Blog | In The News |
+| ---- | ----------- |
+| blog | inthenews |
-<Route author="gammapi" example="/umass/amherst/ecenews" path="/umass/amherst/ecenews" radar="1" notOperational="1" />
+## 安徽建筑大学 {#an-hui-jian-zhu-da-xue}
-#### Seminar {#university-of-massachusetts-amherst-college-of-electrical-and-computer-engineering-seminar}
+### 通知公告 {#an-hui-jian-zhu-da-xue-tong-zhi-gong-gao}
-<Route author="gammapi" example="/umass/amherst/eceseminar" path="/umass/amherst/eceseminar" radar="1" notOperational="1" />
+<Route data={{"path":"/news","categories":["university"],"example":"/ahjzu/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.ahjzu.edu.cn/20/list.htm"]},"name":"通知公告","maintainers":["Yuk-0v0"],"url":"news.ahjzu.edu.cn/20/list.htm","location":"news.ts"}} />
-Note:[Source website](https://ece.umass.edu/seminar) may be empty when there's no upcoming seminars. This is normal and will cause rsshub fail to fetch this feed.
+## 北京大学 {#bei-jing-da-xue}
-### College of Information & Computer Sciences News {#university-of-massachusetts-amherst-college-of-information-computer-sciences-news}
+### 北大未名 BBS 全站十大 {#bei-jing-da-xue-bei-da-wei-ming-bbs-quan-zhan-shi-da}
-<Route author="gammapi" example="/umass/amherst/csnews" path="/umass/amherst/csnews" radar="1" />
+<Route data={{"path":"/bbs/hot","categories":["university"],"example":"/pku/bbs/hot","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bbs.pku.edu.cn/v2/hot-topic.php","bbs.pku.edu.cn/"]},"name":"北大未名 BBS 全站十大","maintainers":["wooddance"],"url":"bbs.pku.edu.cn/v2/hot-topic.php","description":":::warning\n 论坛部分帖子正文内容的获取需要用户登录后的 Cookie 值,详情见部署页面的配置模块。\n :::","location":"bbs/hot.ts"}} />
-### International Programs Office {#university-of-massachusetts-amherst-international-programs-office}
+:::warning
+论坛部分帖子正文内容的获取需要用户登录后的 Cookie 值,详情见部署页面的配置模块。
+:::
-#### Events {#university-of-massachusetts-amherst-international-programs-office-events}
+### 观点 - 国家发展研究院 {#bei-jing-da-xue-guan-dian-guo-jia-fa-zhan-yan-jiu-yuan}
-<Route author="gammapi" example="/umass/amherst/ipostories" path="/umass/amherst/ipostories" radar="1" />
+<Route data={{"path":"/nsd/gd","categories":["university"],"example":"/pku/nsd/gd","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["nsd.pku.edu.cn/"]},"name":"观点 - 国家发展研究院","maintainers":["MisLink"],"url":"nsd.pku.edu.cn/","location":"nsd.ts"}} />
-#### Featured Stories {#university-of-massachusetts-amherst-international-programs-office-featured-stories}
+### 每周一推 - 中国政治学研究中心 {#bei-jing-da-xue-mei-zhou-yi-tui-zhong-guo-zheng-zhi-xue-yan-jiu-zhong-xin}
-<Route author="gammapi" example="/umass/amherst/ipoevents" path="/umass/amherst/ipoevents" radar="1" notOperational="1" />
+<Route data={{"path":"/rccp/mzyt","categories":["university"],"example":"/pku/rccp/mzyt","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.rccp.pku.edu.cn/"]},"name":"每周一推 - 中国政治学研究中心","maintainers":["vhxubo"],"url":"www.rccp.pku.edu.cn/","location":"rccp/mzyt.ts"}} />
-## University of Texas at Dallas {#university-of-texas-at-dallas}
+### 人事处 {#bei-jing-da-xue-ren-shi-chu}
-### International Student Services {#university-of-texas-at-dallas-international-student-services}
+<Route data={{"path":"/hr/:category?","categories":["university"],"example":"/pku/hr","parameters":{"category":"分类,见下方说明,默认为首页最新公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hr.pku.edu.cn/"]},"name":"人事处","maintainers":["nczitzk"],"url":"hr.pku.edu.cn/","description":":::tip\n 分类字段处填写的是对应北京大学人事处分类页网址中介于 **`http://hr.pku.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。\n\n 如 [北京大学人事处 - 人才招聘 - 教师 - 教学科研人员](https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm) 的网址为 `https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm` 其中介于 **`http://hr.pku.edu.cn/`** 和 **`/index.ht`** 中间的一段为 `rczp/js/jxkyry`。随后,并将其中的 `/` 修改为 `-`,可以得到 `rczp-js-jxkyry`。所以最终我们的路由为 [`/pku/hr/rczp-js-jxkyry`](https://rsshub.app/pku/hr/rczp-js-jxkyry)\n :::","location":"hr.ts"}} />
-<Route author="Chang4Tech" example="/utdallas/isso" path="/utdallas/isso" notOperational="1" />
+:::tip
+分类字段处填写的是对应北京大学人事处分类页网址中介于 **`http://hr.pku.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。
-## University of Washington {#university-of-washington}
+如 [北京大学人事处 - 人才招聘 - 教师 - 教学科研人员](https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm) 的网址为 `https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm` 其中介于 **`http://hr.pku.edu.cn/`** 和 **`/index.ht`** 中间的一段为 `rczp/js/jxkyry`。随后,并将其中的 `/` 修改为 `-`,可以得到 `rczp-js-jxkyry`。所以最终我们的路由为 [`/pku/hr/rczp-js-jxkyry`](https://rsshub.app/pku/hr/rczp-js-jxkyry)
+:::
-### Global Innovation Exchange News {#university-of-washington-global-innovation-exchange-news}
+### 软件与微电子学院 - 硕士统考招生通知 {#bei-jing-da-xue-ruan-jian-yu-wei-dian-zi-xue-yuan-shuo-shi-tong-kao-zhao-sheng-tong-zhi}
-<Route author="dykderrick" example="/uw/gix/news/blog" path="/uw/gix/news/:category" paramsDesc={['Blog Type']}>
- | Blog | In The News |
- | ---- | ----------- |
- | blog | inthenews |
-</Route>
+<Route data={{"path":"/ss/pgadmin","categories":["university"],"example":"/pku/ss/pgadmin","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ss.pku.edu.cn/admission/admbrochure/admission01","ss.pku.edu.cn/"]},"name":"软件与微电子学院 - 硕士统考招生通知","maintainers":["legr4ndk"],"url":"ss.pku.edu.cn/admission/admbrochure/admission01","location":"ss/pg-admin.ts"}} />
-## 安徽工业大学 {#an-hui-gong-ye-da-xue}
+### 软件与微电子学院 - 招生通知 {#bei-jing-da-xue-ruan-jian-yu-wei-dian-zi-xue-yuan-zhao-sheng-tong-zhi}
-### 教务处 {#an-hui-gong-ye-da-xue-jiao-wu-chu}
+<Route data={{"path":"/ss/admission","categories":["university"],"example":"/pku/ss/admission","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ss.pku.edu.cn/admission/admnotice","ss.pku.edu.cn/"]},"name":"软件与微电子学院 - 招生通知","maintainers":["legr4ndk"],"url":"ss.pku.edu.cn/admission/admnotice","location":"ss/admission.ts"}} />
-<Route author="Diffumist" example="/ahut/jwc" path="/ahut/jwc" />
+### 生命科学学院近期讲座 {#bei-jing-da-xue-sheng-ming-ke-xue-xue-yuan-jin-qi-jiang-zuo}
-### 学校要闻 {#an-hui-gong-ye-da-xue-xue-xiao-yao-wen}
+<Route data={{"path":"/cls/lecture","categories":["university"],"example":"/pku/cls/lecture","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bio.pku.edu.cn/homes/Index/news_jz/7/7.html","bio.pku.edu.cn/"]},"name":"生命科学学院近期讲座","maintainers":["TPOB"],"url":"bio.pku.edu.cn/homes/Index/news_jz/7/7.html","location":"cls/lecture.ts"}} />
-<Route author="Diffumist" example="/ahut/news" path="/ahut/news" />
+### 生命科学学院通知公告 {#bei-jing-da-xue-sheng-ming-ke-xue-xue-yuan-tong-zhi-gong-gao}
-### 计算机学院公告 {#an-hui-gong-ye-da-xue-ji-suan-ji-xue-yuan-gong-gao}
+<Route data={{"path":"/cls/announcement","categories":["university"],"example":"/pku/cls/announcement","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bio.pku.edu.cn/homes/Index/news/21/21.html","bio.pku.edu.cn/"]},"name":"生命科学学院通知公告","maintainers":["william-swl"],"url":"bio.pku.edu.cn/homes/Index/news/21/21.html","location":"cls/announcement.ts"}} />
-<Route author="Diffumist" example="/ahut/cstzgg" path="/ahut/cstzgg" notOperational="1" />
+### 学生就业指导服务中心 {#bei-jing-da-xue-xue-sheng-jiu-ye-zhi-dao-fu-wu-zhong-xin}
-## 安徽建筑大学 {#an-hui-jian-zhu-da-xue}
+<Route data={{"path":"/scc/recruit/:type?","categories":["university"],"example":"/pku/scc/recruit/zpxx","parameters":{"type":"分区,见下表,默认请求 `zpxx`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"学生就业指导服务中心","maintainers":["DylanXie123"],"description":"| xwrd | tzgg | zpxx | sxxx | cyxx |\n | -------- | -------- | -------- | -------- | -------- |\n | 新闻热点 | 通知公告 | 招聘信息 | 实习信息 | 创业信息 |","location":"scc/recruit.ts"}} />
-### 通知公告 {#an-hui-jian-zhu-da-xue-tong-zhi-gong-gao}
+| xwrd | tzgg | zpxx | sxxx | cyxx |
+| -------- | -------- | -------- | -------- | -------- |
+| 新闻热点 | 通知公告 | 招聘信息 | 实习信息 | 创业信息 |
-<Route author="Yuk-0v0" example="/ahjzu/news" path="/ahjzu/news" notOperational="1" />
+### 研究生招生网 {#bei-jing-da-xue-yan-jiu-sheng-zhao-sheng-wang}
-## 安徽农业大学 {#an-hui-nong-ye-da-xue}
+<Route data={{"path":"/admission/sszs","categories":["university"],"example":"/pku/admission/sszs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["admission.pku.edu.cn/zsxx/sszs/index.htm","admission.pku.edu.cn/"]},"name":"研究生招生网","maintainers":["pkuyjs"],"url":"admission.pku.edu.cn/zsxx/sszs/index.htm","location":"pkuyjs.ts"}} />
-### 计算机学院 {#an-hui-nong-ye-da-xue-ji-suan-ji-xue-yuan}
+## 北京航空航天大学 {#bei-jing-hang-kong-hang-tian-da-xue}
-<Route author="SimonHu-HN" example="/ahau/cs_news/xxtg" path="/ahau/cs_news/:type" paramsDesc={['类型名']} notOperational="1">
- | 信息通告 | 新闻动态 |
- | -------- | -------- |
- | xxtg | xwddyn |
-</Route>
+### 新闻网 {#bei-jing-hang-kong-hang-tian-da-xue-xin-wen-wang}
-### 教务处 {#an-hui-nong-ye-da-xue-jiao-wu-chu}
+<Route data={{"path":"/news/:type","categories":["university"],"example":"/buaa/news/zhxw","parameters":{"type":"新闻版块"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻网","maintainers":["AlanDecode"],"description":"| 综合新闻 | 信息公告 | 学术文化 | 校园风采 | 科教在线 | 媒体北航 | 专题新闻 | 北航人物 |\n | -------- | --------- | ------------ | --------- | --------- | --------- | -------- | -------- |\n | zhxw | xxgg_new | xsjwhhd_new | xyfc_new | kjzx_new | mtbh_new | ztxw | bhrw |","location":"news/index.ts"}} />
-<Route author="SimonHu-HN" example="/ahau/jwc/jwyw" path="/ahau/jwc/:type" paramsDesc={['类型名']} notOperational="1">
- | 教务要闻 | 通知公告 |
- | -------- | -------- |
- | jwyw | tzgg |
-</Route>
+| 综合新闻 | 信息公告 | 学术文化 | 校园风采 | 科教在线 | 媒体北航 | 专题新闻 | 北航人物 |
+| -------- | --------- | ------------ | --------- | --------- | --------- | -------- | -------- |
+| zhxw | xxgg\_new | xsjwhhd\_new | xyfc\_new | kjzx\_new | mtbh\_new | ztxw | bhrw |
-### 安农大官网新闻 {#an-hui-nong-ye-da-xue-an-nong-da-guan-wang-xin-wen}
+## 北京科技大学 {#bei-jing-ke-ji-da-xue}
-<Route author="SimonHu-HN" example="/ahau/main/xnyw" path="/ahau/main/:type" paramsDesc={['类型名']} notOperational="1">
- | 校内要闻 | 学院动态 |
- | -------- | -------- |
- | xnyw | xydt |
-</Route>
+### 天津学院 {#bei-jing-ke-ji-da-xue-tian-jin-xue-yuan}
-## 安徽医科大学 {#an-hui-yi-ke-da-xue}
+<Route data={{"path":"/tj/news/:type?","categories":["university"],"example":"/ustb/tj/news/all","parameters":{"type":"默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"天津学院","maintainers":["henbf"],"description":"| 全部 | 学院新闻 | 学术活动 | 城市建设学院 | 信息工程学院 | 经济学院 | 管理学院 | 材料系 | 机械工程系 | 护理系 | 法律系 | 外语系 | 艺术系 |\n | ---- | -------- | -------- | ------------ | ------------ | -------- | -------- | ------ | ---------- | ------ | ------ | ------ | ------ |\n | all | xyxw | xshhd | csjsxy | xxgcxy | jjx | glxy | clx | jxgcx | hlx | flx | wyx | ysx |","location":"tj/news.ts"}} />
-### 研究生学院通知公告 {#an-hui-yi-ke-da-xue-yan-jiu-sheng-xue-yuan-tong-zhi-gong-gao}
+| 全部 | 学院新闻 | 学术活动 | 城市建设学院 | 信息工程学院 | 经济学院 | 管理学院 | 材料系 | 机械工程系 | 护理系 | 法律系 | 外语系 | 艺术系 |
+| ---- | -------- | -------- | ------------ | ------------ | -------- | -------- | ------ | ---------- | ------ | ------ | ------ | ------ |
+| all | xyxw | xshhd | csjsxy | xxgcxy | jjx | glxy | clx | jxgcx | hlx | flx | wyx | ysx |
-<Route author="Origami404" example="/ahmu/news" path="/ahmu/news" notOperational="1" />
+### 研究生院 {#bei-jing-ke-ji-da-xue-yan-jiu-sheng-yuan}
-## 北华航天工业学院 {#bei-hua-hang-tian-gong-ye-xue-yuan}
+<Route data={{"path":"/yjsy/news/:type","categories":["university"],"example":"/ustb/yjsy/news/all","parameters":{"type":"文章类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.ustb.edu.cn/:type"]},"name":"研究生院","maintainers":["DA1Y1"],"description":"| 北京科技大学研究生院 | 土木与资源工程学院 | 能源与环境工程学院 | 冶金与生态工程学院 | 材料科学与工程学院 | 机械工程学院 | 自动化学院 | 计算机与通信工程学院 | 数理学院 | 化学与生物工程学院 | 经济管理学院 | 文法学院 | 马克思主义学院 | 外国语学院 | 国家材料服役安全科学中心 | 新金属材料国家重点实验室 | 工程技术研究院 | 钢铁共性技术协同创新中心 | 钢铁冶金新技术国家重点实验室 | 新材料技术研究院 | 科技史与文化遗产研究院 | 顺德研究生院 |\n | -------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ------------ | ---------- | -------------------- | -------- | ------------------ | ------------ | -------- | -------------- | ---------- | ------------------------ | ------------------------ | -------------- | ------------------------ | ---------------------------- | ---------------- | ---------------------- | ------------ |\n | all | cres | seee | metall | mse | me | saee | scce | shuli | huasheng | sem | wenfa | marx | sfs | ncms | skl | iet | cicst | slam | adma | ihmm | sd |","location":"yjsy/news.ts"}} />
-### 新闻 {#bei-hua-hang-tian-gong-ye-xue-yuan-xin-wen}
+| 北京科技大学研究生院 | 土木与资源工程学院 | 能源与环境工程学院 | 冶金与生态工程学院 | 材料科学与工程学院 | 机械工程学院 | 自动化学院 | 计算机与通信工程学院 | 数理学院 | 化学与生物工程学院 | 经济管理学院 | 文法学院 | 马克思主义学院 | 外国语学院 | 国家材料服役安全科学中心 | 新金属材料国家重点实验室 | 工程技术研究院 | 钢铁共性技术协同创新中心 | 钢铁冶金新技术国家重点实验室 | 新材料技术研究院 | 科技史与文化遗产研究院 | 顺德研究生院 |
+| -------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ------------ | ---------- | -------------------- | -------- | ------------------ | ------------ | -------- | -------------- | ---------- | ------------------------ | ------------------------ | -------------- | ------------------------ | ---------------------------- | ---------------- | ---------------------- | ------------ |
+| all | cres | seee | metall | mse | me | saee | scce | shuli | huasheng | sem | wenfa | marx | sfs | ncms | skl | iet | cicst | slam | adma | ihmm | sd |
-<Route author="SunShinenny" example="/nciae/news" path="/nciae/news" notOperational="1" />
+### 研究生招生信息网 {#bei-jing-ke-ji-da-xue-yan-jiu-sheng-zhao-sheng-xin-xi-wang}
-### 学术信息 {#bei-hua-hang-tian-gong-ye-xue-yuan-xue-shu-xin-xi}
+<Route data={{"path":"/yzxc/tzgg","categories":["university"],"example":"/ustb/yzxc/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yzxc.ustb.edu.cn/"]},"name":"研究生招生信息网","maintainers":["yanbot-team"],"url":"yzxc.ustb.edu.cn/","location":"yzxc/tzgg.ts"}} />
-<Route author="SunShinenny" example="/nciae/xsxx" path="/nciae/xsxx" notOperational="1" />
+## 北京理工大学 {#bei-jing-li-gong-da-xue}
-### 通知公告 {#bei-hua-hang-tian-gong-ye-xue-yuan-tong-zhi-gong-gao}
+### 计院通知 {#bei-jing-li-gong-da-xue-ji-yuan-tong-zhi}
-<Route author="SunShinenny" example="/nciae/tzgg" path="/nciae/tzgg" notOperational="1" />
+<Route data={{"path":"/cs","categories":["university"],"example":"/bit/cs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cs.bit.edu.cn/tzgg","cs.bit.edu.cn/"]},"name":"计院通知","maintainers":["sinofp"],"url":"cs.bit.edu.cn/tzgg","location":"cs/cs.ts"}} />
-## 北京大学 {#bei-jing-da-xue}
+### 教务处通知 {#bei-jing-li-gong-da-xue-jiao-wu-chu-tong-zhi}
-### 信科公告通知 {#bei-jing-da-xue-xin-ke-gong-gao-tong-zhi}
+<Route data={{"path":"/jwc","categories":["university"],"example":"/bit/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.bit.edu.cn/tzgg","jwc.bit.edu.cn/"]},"name":"教务处通知","maintainers":["sinofp"],"url":"jwc.bit.edu.cn/tzgg","location":"jwc/jwc.ts"}} />
-<Route author="Ir1d" example="/pku/eecs/0" path="/pku/eecs/:type" paramsDesc={['分区 type,可在网页 URL 中找到']} radar="1" notOperational="1">
- | 全部 | 学院通知 | 人事通知 | 教务通知 | 学工通知 | 科研通知 | 财务通知 | 工会通知 | 院友通知 |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 1 | 2 | 6 | 8 | 7 | 5 | 3 | 4 |
-</Route>
+### 人才招聘 {#bei-jing-li-gong-da-xue-ren-cai-zhao-pin}
-### 每周一推 - 中国政治学研究中心 {#bei-jing-da-xue-mei-zhou-yi-tui-zhong-guo-zheng-zhi-xue-yan-jiu-zhong-xin}
+<Route data={{"path":"/rszhaopin","categories":["university"],"example":"/bit/rszhaopin","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rszhaopin.bit.edu.cn/"]},"name":"人才招聘","maintainers":["nczitzk"],"url":"rszhaopin.bit.edu.cn/","location":"rszhaopin.ts"}} />
-<Route author="vhxubo" example="/pku/rccp/mzyt" path="/pku/rccp/mzyt" radar="1" />
+### 研究生院招生信息 {#bei-jing-li-gong-da-xue-yan-jiu-sheng-yuan-zhao-sheng-xin-xi}
-### 生命科学学院近期讲座 {#bei-jing-da-xue-sheng-ming-ke-xue-xue-yuan-jin-qi-jiang-zuo}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/bit/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grd.bit.edu.cn/zsgz/zsxx/index.htm","grd.bit.edu.cn/"]},"name":"研究生院招生信息","maintainers":["shengmaosu"],"url":"grd.bit.edu.cn/zsgz/zsxx/index.htm","location":"yjs.ts"}} />
-<Route author="TPOB" example="/pku/cls/lecture" path="/pku/cls/lecture" radar="1" />
+## 北京师范大学 {#bei-jing-shi-fan-da-xue}
-### 生命科学学院通知公告 {#bei-jing-da-xue-sheng-ming-ke-xue-xue-yuan-tong-zhi-gong-gao}
+### 教务处通知公告 {#bei-jing-shi-fan-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
-<Route author="william-swl" example="/pku/cls/announcement" path="/pku/cls/announcement" radar="1" />
+<Route data={{"path":"/jwc/:type","categories":["university"],"example":"/bjfu/jwc/jwkx","parameters":{"type":"通知类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.bjfu.edu.cn/:type/index.html"]},"name":"教务处通知公告","maintainers":["markmingjie"],"description":"| 教务快讯 | 考试信息 | 课程信息 | 教改动态 | 图片新闻 |\n | -------- | -------- | -------- | -------- | -------- |\n | jwkx | ksxx | kcxx | jgdt | tpxw |","location":"jwc/index.ts"}} />
-### 北大未名 BBS 全站十大 {#bei-jing-da-xue-bei-da-wei-ming-bbs-quan-zhan-shi-da}
+| 教务快讯 | 考试信息 | 课程信息 | 教改动态 | 图片新闻 |
+| -------- | -------- | -------- | -------- | -------- |
+| jwkx | ksxx | kcxx | jgdt | tpxw |
-<Route author="wooddance" example="/pku/bbs/hot" path="/pku/bbs/hot" radar="1" anticrawler="1">
- :::warning
- 论坛部分帖子正文内容的获取需要用户登录后的 Cookie 值,详情见部署页面的配置模块。
- :::
-</Route>
+### 科技处通知公告 {#bei-jing-shi-fan-da-xue-ke-ji-chu-tong-zhi-gong-gao}
-### 学生就业指导服务中心 {#bei-jing-da-xue-xue-sheng-jiu-ye-zhi-dao-fu-wu-zhong-xin}
+<Route data={{"path":"/kjc","categories":["university"],"example":"/bjfu/kjc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["kyc.bjfu.edu.cn/"]},"name":"科技处通知公告","maintainers":["markmingjie"],"url":"kyc.bjfu.edu.cn/","location":"kjc.ts"}} />
-<Route author="DylanXie123" example="/pku/scc/recruit/zpxx" path="/pku/scc/recruit/:type?" paramsDesc={['分区,见下表,默认请求 `zpxx`']} radar="1">
- | xwrd | tzgg | zpxx | sxxx | cyxx |
- | -------- | -------- | -------- | -------- | -------- |
- | 新闻热点 | 通知公告 | 招聘信息 | 实习信息 | 创业信息 |
-</Route>
+### 绿色新闻网 {#bei-jing-shi-fan-da-xue-lv-se-xin-wen-wang}
-### 人事处 {#bei-jing-da-xue-ren-shi-chu}
+<Route data={{"path":"/news/:type","categories":["university"],"example":"/bjfu/news/lsyw","parameters":{"type":"新闻栏目"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.bjfu.edu.cn/:type/index.html"]},"name":"绿色新闻网","maintainers":["markmingjie"],"description":"| 绿色要闻 | 校园动态 | 教学科研 | 党建思政 | 一周排行 |\n | -------- | -------- | -------- | -------- | -------- |\n | lsyw | xydt | jxky | djsz | yzph |","location":"news/index.ts"}} />
-<Route author="nczitzk" example="/pku/hr" path="/pku/hr/:category?" paramsDesc={['分类,见下方说明,默认为首页最新公告']} radar="1" notOperational="1">
- :::tip
- 分类字段处填写的是对应北京大学人事处分类页网址中介于 **`http://hr.pku.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。
+| 绿色要闻 | 校园动态 | 教学科研 | 党建思政 | 一周排行 |
+| -------- | -------- | -------- | -------- | -------- |
+| lsyw | xydt | jxky | djsz | yzph |
- 如 [北京大学人事处 - 人才招聘 - 教师 - 教学科研人员](https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm) 的网址为 `https://hr.pku.edu.cn/rczp/js/jxkyry/index.htm` 其中介于 **`http://hr.pku.edu.cn/`** 和 **`/index.ht`** 中间的一段为 `rczp/js/jxkyry`。随后,并将其中的 `/` 修改为 `-`,可以得到 `rczp-js-jxkyry`。所以最终我们的路由为 [`/pku/hr/rczp-js-jxkyry`](https://rsshub.app/pku/hr/rczp-js-jxkyry)
- :::
-</Route>
+### 信息学院通知 {#bei-jing-shi-fan-da-xue-xin-xi-xue-yuan-tong-zhi}
-### 研究生招生网 {#bei-jing-da-xue-yan-jiu-sheng-zhao-sheng-wang}
+<Route data={{"path":"/it/:type","categories":["university"],"example":"/bjfu/it/xyxw","parameters":{"type":"通知类别"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["it.bjfu.edu.cn/:type/index.html"]},"name":"信息学院通知","maintainers":["wzc-blog"],"description":"| 学院新闻 | 科研动态 | 本科生培养 | 研究生培养 |\n | -------- | -------- | ---------- | ---------- |\n | xyxw | kydt | pydt | pydt2 |","location":"it/index.ts"}} />
-<Route author="shengmaosu" example="/pku/admission/sszs" path="/pku/admission/sszs" radar="1" />
+| 学院新闻 | 科研动态 | 本科生培养 | 研究生培养 |
+| -------- | -------- | ---------- | ---------- |
+| xyxw | kydt | pydt | pydt2 |
-### 观点 - 国家发展研究院 {#bei-jing-da-xue-guan-dian-guo-jia-fa-zhan-yan-jiu-yuan}
+### 研究生院培养动态 {#bei-jing-shi-fan-da-xue-yan-jiu-sheng-yuan-pei-yang-dong-tai}
-<Route author="MisLink" example="/pku/nsd/gd" path="/pku/nsd/gd" radar="1" />
+<Route data={{"path":"/grs","categories":["university"],"example":"/bjfu/grs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["graduate.bjfu.edu.cn/"]},"name":"研究生院培养动态","maintainers":["markmingjie"],"url":"graduate.bjfu.edu.cn/","location":"grs.ts"}} />
-### 软件与微电子学院 - 通知公告 {#bei-jing-da-xue-ruan-jian-yu-wei-dian-zi-xue-yuan-tong-zhi-gong-gao}
+## 北京师范大学 {#bei-jing-shi-fan-da-xue}
-<Route author="legr4ndk" example="/pku/ss/notices" path="/pku/ss/notices" radar="1" notOperational="1" />
+### 党委学生工作部 {#bei-jing-shi-fan-da-xue-dang-wei-xue-sheng-gong-zuo-bu}
-### 软件与微电子学院 - 招生通知 {#bei-jing-da-xue-ruan-jian-yu-wei-dian-zi-xue-yuan-zhao-sheng-tong-zhi}
+<Route data={{"path":"/dwxgb/:category/:type","categories":["university"],"example":"/bnu/dwxgb/xwzx/tzgg","parameters":{"category":"大分类","type":"子分类,例子如下"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dwxgb.bnu.edu.cn/:category/:type/index.html"]},"name":"党委学生工作部","maintainers":["Fatpandac"],"description":"`https://dwxgb.bnu.edu.cn/xwzx/tzgg/index.html` 则对应为 `/bnu/dwxgb/xwzx/tzgg","location":"dwxgb.ts"}} />
-<Route author="legr4ndk" example="/pku/ss/admission" path="/pku/ss/admission" radar="1" anticrawler="1" />
+`https://dwxgb.bnu.edu.cn/xwzx/tzgg/index.html` 则对应为 \`/bnu/dwxgb/xwzx/tzgg
-### 软件与微电子学院 - 硕士统考招生通知 {#bei-jing-da-xue-ruan-jian-yu-wei-dian-zi-xue-yuan-shuo-shi-tong-kao-zhao-sheng-tong-zhi}
+### 经济与工商管理学院 {#bei-jing-shi-fan-da-xue-jing-ji-yu-gong-shang-guan-li-xue-yuan}
-<Route author="legr4ndk" example="/pku/ss/pgadmin" path="/pku/ss/pgadmin" radar="1" />
+<Route data={{"path":"/bs/:category?","categories":["university"],"example":"/bnu/bs","parameters":{"category":"分类,见下表,默认为学院新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bs.bnu.edu.cn/:category/index.html"],"target":"/bs/:category"},"name":"经济与工商管理学院","maintainers":["nczitzk"],"description":"| 学院新闻 | 通知公告 | 学术成果 | 学术讲座 | 教师观点 | 人才招聘 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | xw | zytzyyg | xzcg | xzjz | xz | bshzs |","location":"bs.ts"}} />
-## 北京航空航天大学 {#bei-jing-hang-kong-hang-tian-da-xue}
+| 学院新闻 | 通知公告 | 学术成果 | 学术讲座 | 教师观点 | 人才招聘 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| xw | zytzyyg | xzcg | xzjz | xz | bshzs |
-### 新闻网 {#bei-jing-hang-kong-hang-tian-da-xue-xin-wen-wang}
+## 北京协和医学院 {#bei-jing-xie-he-yi-xue-yuan}
-<Route author="AlanDecode" example="/buaa/news/zhxw" path="/buaa/news/:type" paramsDesc={['新闻版块']} radar="1">
- | 综合新闻 | 信息公告 | 学术文化 | 校园风采 | 科教在线 | 媒体北航 | 专题新闻 | 北航人物 |
- | -------- | --------- | ------------ | --------- | --------- | --------- | -------- | -------- |
- | zhxw | xxgg\_new | xsjwhhd\_new | xyfc\_new | kjzx\_new | mtbh\_new | ztxw | bhrw |
-</Route>
+### “4+4” 试点班招生网通知公告 {#bei-jing-xie-he-yi-xue-yuan-4-4-shi-dian-ban-zhao-sheng-wang-tong-zhi-gong-gao}
-### 集成电路科学与工程学院 {#bei-jing-hang-kong-hang-tian-da-xue-ji-cheng-dian-lu-ke-xue-yu-gong-cheng-xue-yuan}
+<Route data={{"path":"/mdadmission","categories":["university"],"example":"/pumc/mdadmission","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["mdadmission.pumc.edu.cn/mdweb/site","mdadmission.pumc.edu.cn/"]},"name":"“4+4” 试点班招生网通知公告","maintainers":["nczitzk"],"url":"mdadmission.pumc.edu.cn/mdweb/site","location":"mdadmission.ts"}} />
-<Route author="MeanZhang" example="/buaa/sme/tzgg" path="/buaa/sme/:path*" paramsDesc={['版块路径,默认为 `gzgg`']} radar="1">
- :::tip
- 路径参数应填写板块 URL 中 `http://www.sme.buaa.edu.cn/` 和 `.htm` 之间的字段。
+## 北京邮电大学 {#bei-jing-you-dian-da-xue}
- 示例:
+### 人才招聘 {#bei-jing-you-dian-da-xue-ren-cai-zhao-pin}
- 1. [通知公告](http://www.sme.buaa.edu.cn/tzgg.htm) 页面的 URL 为 `http://www.sme.buaa.edu.cn/tzgg.htm`,对应的路径参数为 `tzgg`,完整路由为 `/buaa/sme/tzgg`;
- 2. [就业信息](http://www.sme.buaa.edu.cn/zsjy/jyxx.htm) 页面的 URL 为 `http://www.sme.buaa.edu.cn/zsjy/jyxx.htm`,对应的路径参数为 `zsjy/jyxx`,完整路由为 `/buaa/sme/zsjy/jyxx`。
- :::
+<Route data={{"path":"/rczp","categories":["university"],"example":"/bupt/rczp","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bupt.edu.cn/"]},"name":"人才招聘","maintainers":["nczitzk"],"url":"bupt.edu.cn/","location":"rczp.ts"}} />
- :::warning
- 部分页面(如[学院介绍](http://www.sme.buaa.edu.cn/xygk/xyjs.htm)、[微纳中心](http://www.sme.buaa.edu.cn/wnzx.htm)、[院学生会](http://www.sme.buaa.edu.cn/xsgz/yxsh.htm))存在无内容、内容跳转至外站等情况,因此可能出现解析失败的现象。
- :::
-</Route>
+## 重庆文理学院 {#chong-qing-wen-li-xue-yuan}
-## 北京科技大学 {#bei-jing-ke-ji-da-xue}
+### 通知公告 {#chong-qing-wen-li-xue-yuan-tong-zhi-gong-gao}
-### 研究生院 {#bei-jing-ke-ji-da-xue-yan-jiu-sheng-yuan}
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/cqwu/news/academiceve","parameters":{"type":"可选,默认为 academiceve "},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通知公告","maintainers":["Fatpandac"],"description":"| 通知公告 | 学术活动公告 |\n | -------- | ------------ |\n | notify | academiceve |","location":"index.ts"}} />
-<Route author="DA1Y1" example="/ustb/yjsy/news/all" path="/ustb/yjsy/news/:type" paramsDesc={['文章类别']}>
- | 北京科技大学研究生院 | 土木与资源工程学院 | 能源与环境工程学院 | 冶金与生态工程学院 | 材料科学与工程学院 | 机械工程学院 | 自动化学院 | 计算机与通信工程学院 | 数理学院 | 化学与生物工程学院 | 经济管理学院 | 文法学院 | 马克思主义学院 | 外国语学院 | 国家材料服役安全科学中心 | 新金属材料国家重点实验室 | 工程技术研究院 | 钢铁共性技术协同创新中心 | 钢铁冶金新技术国家重点实验室 | 新材料技术研究院 | 科技史与文化遗产研究院 | 顺德研究生院 |
- | -------------------- | ------------------ | ------------------ | ------------------ | ------------------ | ------------ | ---------- | -------------------- | -------- | ------------------ | ------------ | -------- | -------------- | ---------- | ------------------------ | ------------------------ | -------------- | ------------------------ | ---------------------------- | ---------------- | ---------------------- | ------------ |
- | all | cres | seee | metall | mse | me | saee | scce | shuli | huasheng | sem | wenfa | marx | sfs | ncms | skl | iet | cicst | slam | adma | ihmm | sd |
-</Route>
+| 通知公告 | 学术活动公告 |
+| -------- | ------------ |
+| notify | academiceve |
-### 研究生招生信息网 {#bei-jing-ke-ji-da-xue-yan-jiu-sheng-zhao-sheng-xin-xi-wang}
+## 电子科技大学 {#dian-zi-ke-ji-da-xue}
-<Route author="yanbot-team" example="/ustb/yzxc/tzgg" path="/ustb/yzxc/tzgg" />
+### 计算机科学与工程学院 {#dian-zi-ke-ji-da-xue-ji-suan-ji-ke-xue-yu-gong-cheng-xue-yuan}
-### 天津学院 {#bei-jing-ke-ji-da-xue-tian-jin-xue-yuan}
+<Route data={{"path":"/scse","categories":["university"],"example":"/uestc/scse","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scse.uestc.edu.cn/"]},"name":"计算机科学与工程学院","maintainers":["talengu","mobyw"],"url":"scse.uestc.edu.cn/","location":"scse.ts"}} />
-<Route author="henbf" example="/ustb/tj/news/all" path="/ustb/tj/news/:type?" paramsDesc={['默认为 `all`']}>
- | 全部 | 学院新闻 | 学术活动 | 城市建设学院 | 信息工程学院 | 经济学院 | 管理学院 | 材料系 | 机械工程系 | 护理系 | 法律系 | 外语系 | 艺术系 |
- | ---- | -------- | -------- | ------------ | ------------ | -------- | -------- | ------ | ---------- | ------ | ------ | ------ | ------ |
- | all | xyxw | xshhd | csjsxy | xxgcxy | jjx | glxy | clx | jxgcx | hlx | flx | wyx | ysx |
-</Route>
+### 教务处 {#dian-zi-ke-ji-da-xue-jiao-wu-chu}
-## 北京理工大学 {#bei-jing-li-gong-da-xue}
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/uestc/jwc/student","parameters":{"type":"默认为 `important`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.uestc.edu.cn/"],"target":"/jwc"},"name":"教务处","maintainers":["achjqz","mobyw"],"url":"jwc.uestc.edu.cn/","description":"| 重要公告 | 学生事务公告 | 教师事务公告 | 教学新闻 | 办公室 |\n | --------- | ------------ | ------------ | -------- | ------ |\n | important | student | teacher | teach | office |","location":"jwc.ts"}} />
-### 教务处通知 {#bei-jing-li-gong-da-xue-jiao-wu-chu-tong-zhi}
+| 重要公告 | 学生事务公告 | 教师事务公告 | 教学新闻 | 办公室 |
+| --------- | ------------ | ------------ | -------- | ------ |
+| important | student | teacher | teach | office |
-<Route author="sinofp" example="/bit/jwc" path="/bit/jwc" radar="1" notOperational="1" />
+### 文化素质教育中心 {#dian-zi-ke-ji-da-xue-wen-hua-su-zhi-jiao-yu-zhong-xin}
-### 计院通知 {#bei-jing-li-gong-da-xue-ji-yuan-tong-zhi}
+<Route data={{"path":"/cqe/:type?","categories":["university"],"example":"/uestc/cqe/tzgg","parameters":{"type":"默认为 `tzgg`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cqe.uestc.edu.cn/"],"target":"/cqe"},"name":"文化素质教育中心","maintainers":["truobel","mobyw"],"url":"cqe.uestc.edu.cn/","description":"| 活动预告 | 通知公告 |\n | -------- | -------- |\n | hdyg | tzgg |","location":"cqe.ts"}} />
-<Route author="sinofp" example="/bit/cs" path="/bit/cs" radar="1" notOperational="1" />
+| 活动预告 | 通知公告 |
+| -------- | -------- |
+| hdyg | tzgg |
-### 人才招聘 {#bei-jing-li-gong-da-xue-ren-cai-zhao-pin}
+### 新闻中心 {#dian-zi-ke-ji-da-xue-xin-wen-zhong-xin}
-<Route author="nczitzk" example="/bit/rszhaopin" path="/bit/rszhaopin" radar="1" />
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/uestc/news/culture","parameters":{"type":"默认为 `announcement`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.uestc.edu.cn/"],"target":"/news"},"name":"新闻中心","maintainers":["achjqz","mobyw"],"url":"news.uestc.edu.cn/","description":"| 学术 | 文化 | 公告 | 校内通知 |\n | ------- | ------- | ------------ | ------------ |\n | academy | culture | announcement | notification |","location":"news.ts"}} />
-### 研究生院招生信息 {#bei-jing-li-gong-da-xue-yan-jiu-sheng-yuan-zhao-sheng-xin-xi}
+| 学术 | 文化 | 公告 | 校内通知 |
+| ------- | ------- | ------------ | ------------ |
+| academy | culture | announcement | notification |
-<Route author="shengmaosu" example="/bit/yjs" path="/bit/yjs" radar="1" />
+### 信息与软件工程学院 {#dian-zi-ke-ji-da-xue-xin-xi-yu-ruan-jian-gong-cheng-xue-yuan}
-## 北京林业大学 {#bei-jing-lin-ye-da-xue}
+<Route data={{"path":"/sise/:type?","categories":["university"],"example":"/uestc/sise/1","parameters":{"type":"默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sise.uestc.edu.cn/"],"target":"/sise"},"name":"信息与软件工程学院","maintainers":["Yadomin","mobyw"],"url":"sise.uestc.edu.cn/","description":"| 最新 | 院办 | 学生科 | 教务科 | 研管科 | 组织 | 人事 | 实践教育中心 | Int'I |\n | ---- | ---- | ------ | ------ | ------ | ---- | ---- | ------------ | ----- |\n | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |","location":"sise.ts"}} />
-### 绿色新闻网 {#bei-jing-lin-ye-da-xue-lv-se-xin-wen-wang}
+| 最新 | 院办 | 学生科 | 教务科 | 研管科 | 组织 | 人事 | 实践教育中心 | Int'I |
+| ---- | ---- | ------ | ------ | ------ | ---- | ---- | ------------ | ----- |
+| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
-<Route author="markmingjie" example="/bjfu/news/lsyw" path="/bjfu/news/:type" paramsDesc={['新闻栏目']}>
- | 绿色要闻 | 校园动态 | 教学科研 | 党建思政 | 一周排行 |
- | -------- | -------- | -------- | -------- | -------- |
- | lsyw | xydt | jxky | djsz | yzph |
-</Route>
+### 信息与通信工程学院 {#dian-zi-ke-ji-da-xue-xin-xi-yu-tong-xin-gong-cheng-xue-yuan}
-### 研究生院培养动态 {#bei-jing-lin-ye-da-xue-yan-jiu-sheng-yuan-pei-yang-dong-tai}
+<Route data={{"path":"/sice","categories":["university"],"example":"/uestc/sice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sice.uestc.edu.cn/"]},"name":"信息与通信工程学院","maintainers":["huyyi","mobyw"],"url":"sice.uestc.edu.cn/","location":"sice.ts"}} />
-<Route author="markmingjie" example="/bjfu/grs" path="/bjfu/grs" />
+### 研究生院 {#dian-zi-ke-ji-da-xue-yan-jiu-sheng-yuan}
-### 科技处通知公告 {#bei-jing-lin-ye-da-xue-ke-ji-chu-tong-zhi-gong-gao}
+<Route data={{"path":"/gr","categories":["university"],"example":"/uestc/gr","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gr.uestc.edu.cn/"]},"name":"研究生院","maintainers":["huyyi","mobyw"],"url":"gr.uestc.edu.cn/","location":"gr.ts"}} />
-<Route author="markmingjie" example="/bjfu/kjc" path="/bjfu/kjc" />
+### 自动化工程学院 {#dian-zi-ke-ji-da-xue-zi-dong-hua-gong-cheng-xue-yuan}
-### 信息学院通知 {#bei-jing-lin-ye-da-xue-xin-xi-xue-yuan-tong-zhi}
+<Route data={{"path":"/auto","categories":["university"],"example":"/uestc/auto","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["auto.uestc.edu.cn/"]},"name":"自动化工程学院","maintainers":["talengu","mobyw"],"url":"auto.uestc.edu.cn/","location":"auto.ts"}} />
-<Route author="wzc-blog" example="/bjfu/it/xyxw" path="/bjfu/it/:type" paramsDesc={['通知类别']}>
- | 学院新闻 | 科研动态 | 本科生培养 | 研究生培养 |
- | -------- | -------- | ---------- | ---------- |
- | xyxw | kydt | pydt | pydt2 |
-</Route>
+## 东北大学 {#dong-bei-da-xue}
-### 教务处通知公告 {#bei-jing-lin-ye-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
+### 新闻网 {#dong-bei-da-xue-xin-wen-wang}
-<Route author="markmingjie" example="/bjfu/jwc/jwkx" path="/bjfu/jwc/:type" paramsDesc={['通知类别']}>
- | 教务快讯 | 考试信息 | 课程信息 | 教改动态 | 图片新闻 |
- | -------- | -------- | -------- | -------- | -------- |
- | jwkx | ksxx | kcxx | jgdt | tpxw |
-</Route>
+<Route data={{"path":"/news/:type","categories":["university"],"example":"/neu/news/ddyw","parameters":{"type":"种类名,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["neunews.neu.edu.cn/:type/list.htm"]},"name":"新闻网","maintainers":["JeasonLau"],"description":"| 种类名 | 参数 |\n | -------- | ---- |\n | 东大要闻 | ddyw |\n | 媒体东大 | mtdd |\n | 通知公告 | tzgg |\n | 新闻纵横 | xwzh |\n | 人才培养 | rcpy |\n | 学术科研 | xsky |\n | 英文新闻 | 217 |\n | 招生就业 | zsjy |\n | 考研出国 | kycg |\n | 校园文学 | xywx |\n | 校友风采 | xyfc |\n | 时事热点 | ssrd |\n | 教育前沿 | jyqy |\n | 文化体育 | whty |\n | 最新科技 | zxkj |","location":"news.ts"}} />
+
+| 种类名 | 参数 |
+| -------- | ---- |
+| 东大要闻 | ddyw |
+| 媒体东大 | mtdd |
+| 通知公告 | tzgg |
+| 新闻纵横 | xwzh |
+| 人才培养 | rcpy |
+| 学术科研 | xsky |
+| 英文新闻 | 217 |
+| 招生就业 | zsjy |
+| 考研出国 | kycg |
+| 校园文学 | xywx |
+| 校友风采 | xyfc |
+| 时事热点 | ssrd |
+| 教育前沿 | jyqy |
+| 文化体育 | whty |
+| 最新科技 | zxkj |
-## 北京师范大学 {#bei-jing-shi-fan-da-xue}
+### 医学与生物信息工程学院 {#dong-bei-da-xue-yi-xue-yu-sheng-wu-xin-xi-gong-cheng-xue-yuan}
-### 经济与工商管理学院 {#bei-jing-shi-fan-da-xue-jing-ji-yu-gong-shang-guan-li-xue-yuan}
+<Route data={{"path":"/bmie/:type","categories":["university"],"example":"/neu/bmie/news","parameters":{"type":"分类 id 见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"医学与生物信息工程学院","maintainers":["tennousuathena"],"description":"| Id | 名称 |\n | ----------------------- | ---------- |\n | news | 学院新闻 |\n | academic | 学术科研 |\n | talent_development | 人才培养 |\n | international_exchange | 国际交流 |\n | announcement | 通知公告 |\n | undergraduate_dev | 本科生培养 |\n | postgraduate_dev | 研究生培养 |\n | undergraduate_recruit | 本科生招募 |\n | postgraduate_recruit | 研究生招募 |\n | CPC_build | 党的建设 |\n | CPC_work | 党委工作 |\n | union_work | 工会工作 |\n | CYL_work | 共青团工作 |\n | security_management | 安全管理 |\n | alumni_style | 校友风采 |","location":"bmie.ts"}} />
+
+| Id | 名称 |
+| ----------------------- | ---------- |
+| news | 学院新闻 |
+| academic | 学术科研 |
+| talent\_development | 人才培养 |
+| international\_exchange | 国际交流 |
+| announcement | 通知公告 |
+| undergraduate\_dev | 本科生培养 |
+| postgraduate\_dev | 研究生培养 |
+| undergraduate\_recruit | 本科生招募 |
+| postgraduate\_recruit | 研究生招募 |
+| CPC\_build | 党的建设 |
+| CPC\_work | 党委工作 |
+| union\_work | 工会工作 |
+| CYL\_work | 共青团工作 |
+| security\_management | 安全管理 |
+| alumni\_style | 校友风采 |
-<Route author="nczitzk" example="/bnu/bs" path="/bnu/bs/:category?" paramsDesc={['分类,见下表,默认为学院新闻']}>
- | 学院新闻 | 通知公告 | 学术成果 | 学术讲座 | 教师观点 | 人才招聘 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | xw | zytzyyg | xzcg | xzjz | xz | bshzs |
-</Route>
+## 东华大学 {#dong-hua-da-xue}
-### 党委学生工作部 {#bei-jing-shi-fan-da-xue-dang-wei-xue-sheng-gong-zuo-bu}
+### 教务处通知 {#dong-hua-da-xue-jiao-wu-chu-tong-zhi}
-<Route author="Fatpandac" example="/bnu/dwxgb/xwzx/tzgg" path="/bnu/dwxgb/:category/:type" paramsDesc={['大分类', '子分类,例子如下']}>
- `https://dwxgb.bnu.edu.cn/xwzx/tzgg/index.html` 则对应为 \`/bnu/dwxgb/xwzx/tzgg
-</Route>
+<Route data={{"path":"/jiaowu/news/:type?","categories":["university"],"example":"/dhu/jiaowu/news/student","parameters":{"type":"默认为 `student`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处通知","maintainers":["KiraKiseki"],"description":"| 学生专栏 | 教师专栏 |\n | -------- | -------- |\n | student | teacher |","location":"jiaowu/news.ts"}} />
-### 图书馆通知 {#bei-jing-shi-fan-da-xue-tu-shu-guan-tong-zhi}
+| 学生专栏 | 教师专栏 |
+| -------- | -------- |
+| student | teacher |
-<Route author="TonyRL" example="/bnu/lib/zydt" path="/bjfu/lib/:category?" paramsDesc={['分类,见下表,默认为 `zydt`']} radar="1" anticrawler="1">
- | 资源动态 | 新闻动态 | 系列讲座 |
- | -------- | -------- | -------- |
- | zydt | xwdt | xljz1 |
-</Route>
+### 学术信息 {#dong-hua-da-xue-xue-shu-xin-xi}
-### 党委学生工作部辅导员发展中心 {#bei-jing-shi-fan-da-xue-dang-wei-xue-sheng-gong-zuo-bu-fu-dao-yuan-fa-zhan-zhong-xin}
+<Route data={{"path":"/news/xsxx","categories":["university"],"example":"/dhu/news/xsxx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.dhu.edu.cn/6410"]},"name":"学术信息","maintainers":["fox2049"],"url":"news.dhu.edu.cn/6410","location":"news/xsxx.ts"}} />
-<Route author="TonyRL" example="/bnu/fdy/tzgg/dwjs" path="/bnu/fdy/:path*" paramsDesc={['路径,默认为 `tzgg`']} radar="1">
- :::tip
- 路径处填写对应页面 URL 中 `https://fdy.bnu.edu.cn/` 和 `/index.htm` 之间的字段。下面是一个例子。
+### 研究生院通知 {#dong-hua-da-xue-yan-jiu-sheng-yuan-tong-zhi}
- 若订阅 [通知公告 > 队伍建设](https://fdy.bnu.edu.cn/tzgg/dwjs/index.htm) 则将对应页面 URL `https://fdy.bnu.edu.cn/tzgg/dwjs/index.htm` 中 `https://fdy.bnu.edu.cn/` 和 `/index.htm` 之间的字段 `tzgg/dwjs` 作为路径填入。此时路由为 [`/bnu/fdy/tzgg/dwjs`](https://rsshub.app/bnu/fdy/tzgg/dwjs)
- :::
-</Route>
+<Route data={{"path":"/yjs/news/:type?","categories":["university"],"example":"/dhu/yjs/news/class","parameters":{"type":"默认为 `class`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生院通知","maintainers":["fox2049"],"description":"| 新闻动态 | 通知公告 | 选课考试 |\n | -------- | -------- | -------- |\n | trend | notice | class |","location":"yjs/news.ts"}} />
-## 北京物资学院 {#bei-jing-wu-zi-xue-yuan}
+| 新闻动态 | 通知公告 | 选课考试 |
+| -------- | -------- | -------- |
+| trend | notice | class |
-### 通知公告 {#bei-jing-wu-zi-xue-yuan-tong-zhi-gong-gao}
+### 研究生招生信息 {#dong-hua-da-xue-yan-jiu-sheng-zhao-sheng-xin-xi}
-<Route author="Muxq99" example="/bwu/news" path="/bwu/news" notOperational="1" />
+<Route data={{"path":"/yjs/zs/:type?","categories":["university"],"example":"/dhu/yjs/zs/master","parameters":{"type":"默认为 `master`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生招生信息","maintainers":["fox2049"],"description":"| 博士招生 | 硕士招生 |\n | -------- | -------- |\n | doctor | master |","location":"yjs/zs.ts"}} />
-:::warning
-由于学校官网对非大陆 IP 的访问存在限制,需自行部署。
-:::
+| 博士招生 | 硕士招生 |
+| -------- | -------- |
+| doctor | master |
-## 北京协和医学院 {#bei-jing-xie-he-yi-xue-yuan}
+### 最新信息公开 {#dong-hua-da-xue-zui-xin-xin-xi-gong-kai}
-### “4+4” 试点班招生网通知公告 {#bei-jing-xie-he-yi-xue-yuan-4-4-shi-dian-ban-zhao-sheng-wang-tong-zhi-gong-gao}
+<Route data={{"path":"/xxgk/news","categories":["university"],"example":"/dhu/xxgk/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"最新信息公开","maintainers":["KiraKiseki"],"location":"xxgk/news.ts"}} />
-<Route author="nczitzk" example="/pumc/mdadmission" path="/pumc/mdadmission" />
+## 东南大学 {#dong-nan-da-xue}
-## 北京邮电大学 {#bei-jing-you-dian-da-xue}
+### 计算机技术与工程学院 {#dong-nan-da-xue-ji-suan-ji-ji-shu-yu-gong-cheng-xue-yuan}
-### 硕士研究生招生通知 {#bei-jing-you-dian-da-xue-shuo-shi-yan-jiu-sheng-zhao-sheng-tong-zhi}
+<Route data={{"path":"/cse/:type?","categories":["university"],"example":"/seu/cse/xyxw","parameters":{"type":"分类名,默认为 `xyxw`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cse.seu.edu.cn/:type/list.htm","cse.seu.edu.cn/"]},"name":"计算机技术与工程学院","maintainers":["LogicJake"],"description":"| 学院新闻 | 通知公告 | 教务信息 | 就业信息 | 学工事务 |\n | -------- | -------- | -------- | -------- | -------- |\n | xyxw | tzgg | jwxx | jyxx | xgsw |","location":"cse/index.ts"}} />
-<Route author="ihewro" example="/bupt/yz/int" path="/bupt/yz/:type" paramsDesc={['学院英文缩写']} notOperational="1">
- | 综合 | 信息与通信工程学院 | 电子工程学院 | 计算机学院 | 自动化学院 | 软件学院 | 数字媒体与设计艺术学院 | 网络空间安全学院 | 理学院 | 经济管理学院 | 人文学院 | 马克思主义学院 | 网络技术研究院 | 信息光子学与光通信研究院 |
- | ---- | ------------------ | ------------ | ---------- | ---------- | -------- | ---------------------- | ---------------- | ------ | ------------ | -------- | -------------- | -------------- | ------------------------ |
- | all | sice | see | scs | sa | sse | sdmda | scss | sci | sem | sh | mtri | int | ipoc |
-</Route>
+| 学院新闻 | 通知公告 | 教务信息 | 就业信息 | 学工事务 |
+| -------- | -------- | -------- | -------- | -------- |
+| xyxw | tzgg | jwxx | jyxx | xgsw |
-### 研究生院通知 {#bei-jing-you-dian-da-xue-yan-jiu-sheng-yuan-tong-zhi}
+### 信息科学与工程学院学术活动 {#dong-nan-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-xue-shu-huo-dong}
-<Route author="RicardoMing" example="/bupt/grs" path="/bupt/grs" notOperational="1" />
+<Route data={{"path":"/radio/academic","categories":["university"],"example":"/seu/radio/academic","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["radio.seu.edu.cn/_s29/15986/list.psp","radio.seu.edu.cn/"]},"name":"信息科学与工程学院学术活动","maintainers":["HenryQW"],"url":"radio.seu.edu.cn/_s29/15986/list.psp","location":"radio/academic.ts"}} />
-### 信息门户 {#bei-jing-you-dian-da-xue-xin-xi-men-hu}
+### 研究生院全部公告 {#dong-nan-da-xue-yan-jiu-sheng-yuan-quan-bu-gong-gao}
-<Route author="RicardoMing wzekin" example="/bupt/portal" path="/bupt/portal" notOperational="1" />
+<Route data={{"path":"/yjs","categories":["university"],"example":"/seu/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["seugs.seu.edu.cn/26671/list.htm","seugs.seu.edu.cn/"]},"name":"研究生院全部公告","maintainers":["Denkiyohou"],"url":"seugs.seu.edu.cn/26671/list.htm","location":"yjs.ts"}} />
-:::warning
-由于需要登陆 `https://webapp.bupt.edu.cn/wap/login.html?redirect=http://` 后的 Cookie 值,所以只能自建,详情见部署页面的配置模块
-:::
+### 研究生招生网通知公告 {#dong-nan-da-xue-yan-jiu-sheng-zhao-sheng-wang-tong-zhi-gong-gao}
-### 校园新闻 {#bei-jing-you-dian-da-xue-xiao-yuan-xin-wen}
+<Route data={{"path":"/yzb/:type","categories":["university"],"example":"/seu/yzb/6676","parameters":{"type":"分类名,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yzb.seu.edu.cn/:type/list.htm"]},"name":"研究生招生网通知公告","maintainers":["fuzy112"],"description":"| 硕士招生 | 博士招生 | 港澳台及中外合作办学 |\n | -------- | -------- | -------------------- |\n | 6676 | 6677 | 6679 |","location":"yzb/index.ts"}} />
-<Route author="wzekin" example="/bupt/news" path="/bupt/news" notOperational="1" />
+| 硕士招生 | 博士招生 | 港澳台及中外合作办学 |
+| -------- | -------- | -------------------- |
+| 6676 | 6677 | 6679 |
-:::warning
-由于需要登陆 `https://webapp.bupt.edu.cn/wap/login.html?redirect=http://` 后的 Cookie 值,所以只能自建,详情见部署页面的配置模块
-:::
+## 对外经济贸易大学 {#dui-wai-jing-ji-mao-yi-da-xue}
-### BTBYR 趣味盒 {#bei-jing-you-dian-da-xue-btbyr-qu-wei-he}
+### 人力资源处 {#dui-wai-jing-ji-mao-yi-da-xue-ren-li-zi-yuan-chu}
-<Route author="prnake" example="/bupt/funbox" path="/bupt/funbox" configRequired="1" />
+<Route data={{"path":"/hr/:category?/:type?","categories":["university"],"example":"/uibe/hr","parameters":{"category":"分类,可在对应页 URL 中找到,默认为通知公告","type":"类型,可在对应页 URL 中找到,默认为空"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hr.uibe.edu.cn/:category/:type","hr.uibe.edu.cn/:category","hr.uibe.edu.cn/"]},"name":"人力资源处","maintainers":["nczitzk"],"description":":::tip\n 如 [通知公告](http://hr.uibe.edu.cn/tzgg) 的 URL 为 `http://hr.uibe.edu.cn/tzgg`,其路由为 [`/uibe/hr/tzgg`](https://rsshub.app/uibe/hr/tzgg)\n\n 如 [教师招聘](http://hr.uibe.edu.cn/jszp) 中的 [招聘信息](http://hr.uibe.edu.cn/jszp/zpxx) 的 URL 为 `http://hr.uibe.edu.cn/jszp/zpxx`,其路由为 [`/uibe/hr/jszp/zpxx`](https://rsshub.app/uibe/jszp/zpxx)\n :::","location":"hr.ts"}} />
-:::warning
-由于需要登陆 BTBYR 后的 Cookie 值,所以只能自建,并且部署和订阅端均需支持 IPV6 网络或使用镜像站点。
+:::tip
+如 [通知公告](http://hr.uibe.edu.cn/tzgg) 的 URL 为 `http://hr.uibe.edu.cn/tzgg`,其路由为 [`/uibe/hr/tzgg`](https://rsshub.app/uibe/hr/tzgg)
+
+如 [教师招聘](http://hr.uibe.edu.cn/jszp) 中的 [招聘信息](http://hr.uibe.edu.cn/jszp/zpxx) 的 URL 为 `http://hr.uibe.edu.cn/jszp/zpxx`,其路由为 [`/uibe/hr/jszp/zpxx`](https://rsshub.app/uibe/jszp/zpxx)
:::
-### 人才招聘 {#bei-jing-you-dian-da-xue-ren-cai-zhao-pin}
+## 广西民族大学 {#guang-xi-min-zu-da-xue}
-<Route author="nczitzk" example="/bupt/rczp" path="/bupt/rczp" />
+### 人工智能学院通知公告 {#guang-xi-min-zu-da-xue-ren-gong-zhi-neng-xue-yuan-tong-zhi-gong-gao}
-## 常州大学 {#chang-zhou-da-xue}
+<Route data={{"path":"/aitzgg","categories":["university"],"example":"/gxmzu/aitzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ai.gxmzu.edu.cn/index/tzgg.htm","ai.gxmzu.edu.cn/"]},"name":"人工智能学院通知公告","maintainers":["real-jiakai"],"url":"ai.gxmzu.edu.cn/index/tzgg.htm","location":"ai.ts"}} />
-### 教务处 {#chang-zhou-da-xue-jiao-wu-chu}
+### 图书馆最新消息 {#guang-xi-min-zu-da-xue-tu-shu-guan-zui-xin-xiao-xi}
-<Route author="richardchien" example="/cczu/jwc/1425" path="/cczu/jwc/:category?" paramsDesc={['可选,默认为 `all`']} anticrawler="1">
- | 全部 | 通知公告 | 教务新闻 | 各类活动与系列讲座 | 本科教学工程 | 他山之石 | 信息快递 |
- | ---- | -------- | -------- | ------------------ | ------------ | -------- | -------- |
- | all | 1425 | 1437 | 1485 | 1487 | 1442 | 1445 |
-</Route>
+<Route data={{"path":"/libzxxx","categories":["university"],"example":"/gxmzu/libzxxx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["library.gxmzu.edu.cn/news/news_list.jsp","library.gxmzu.edu.cn/"]},"name":"图书馆最新消息","maintainers":["real-jiakai"],"url":"library.gxmzu.edu.cn/news/news_list.jsp","location":"lib.ts"}} />
-### 新闻网 {#chang-zhou-da-xue-xin-wen-wang}
+### 研究生院招生公告 {#guang-xi-min-zu-da-xue-yan-jiu-sheng-yuan-zhao-sheng-gong-gao}
-<Route author="richardchien" example="/cczu/news/6620" path="/cczu/news/:category?" paramsDesc={['可选,默认为 `all`']} notOperational="1">
- | 全部 | 常大要闻 | 校园快讯 | 媒体常大 | 时事热点 | 高教动态 | 网上橱窗 | 新媒常大 |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | all | 6620 | 6621 | 6687 | 6628 | 6629 | 6640 | 6645 |
-</Route>
+<Route data={{"path":"/yjszsgg","categories":["university"],"example":"/gxmzu/yjszsgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yjs.gxmzu.edu.cn/tzgg/zsgg.htm","yjs.gxmzu.edu.cn/"]},"name":"研究生院招生公告","maintainers":["real-jiakai"],"url":"yjs.gxmzu.edu.cn/tzgg/zsgg.htm","location":"yjs.ts"}} />
-## 成都信息工程大学 {#cheng-du-xin-xi-gong-cheng-da-xue}
+## 广州大学 {#guang-zhou-da-xue}
-### 成信新闻网 {#cheng-du-xin-xi-gong-cheng-da-xue-cheng-xin-xin-wen-wang}
+### 研究生院招生动态 {#guang-zhou-da-xue-yan-jiu-sheng-yuan-zhao-sheng-dong-tai}
-<Route author="kimika" example="/cuit/cxxww/1" path="/cuit/cxxww/:type?" paramsDesc={['默认为 `1`']} notOperational="1">
- | 综合新闻 | 信息公告 | 焦点新闻 | 学术动态 | 工作交流 | 媒体成信 | 更名专题 | 文化活动 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 4 | 5 | 7 | 9 | 10 |
-</Route>
+<Route data={{"path":"/yjs","categories":["university"],"example":"/gzhu/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yjsy.gzhu.edu.cn/zsxx/zsdt/zsdt.htm","yjsy.gzhu.edu.cn/"]},"name":"研究生院招生动态","maintainers":["shengmaosu"],"url":"yjsy.gzhu.edu.cn/zsxx/zsdt/zsdt.htm","location":"yjs.ts"}} />
-## 重庆大学 {#chong-qing-da-xue}
+## 哈尔滨工程大学 {#ha-er-bin-gong-cheng-da-xue}
-### 本科教学信息网通知公告 {#chong-qing-da-xue-ben-ke-jiao-xue-xin-xi-wang-tong-zhi-gong-gao}
+### Unknown {#ha-er-bin-gong-cheng-da-xue-unknown}
-<Route author="El-Chiang Hagb" example="/cqu/jwc/" path="/cqu/jwc/:path*" paramsDesc={['路径']} anticrawler="1">
- | 分类 | 路径 |
- | ----------------------------------------------------------------- | ------------------- |
- | [通知公告](http://jwc.cqu.edu.cn/index/tzgg.htm) | `index/tzgg` 或留空 |
- | [通知公告 / 学籍管理](http://jwc.cqu.edu.cn/index/tzgg/xjgl.htm) | `index/tzgg/xjgl` |
- | [通知公告 / 交流交换](http://jwc.cqu.edu.cn/index/tzgg/jljh1.htm) | `index/tzgg/jljh1` |
- | [通知公告 / 教学运行](http://jwc.cqu.edu.cn/index/tzgg/jxyx.htm) | `index/tzgg/jxyx` |
- | [通知公告 / 教学质量](http://jwc.cqu.edu.cn/index/tzgg/jxzl.htm) | `index/tzgg/jxzl` |
- | [通知公告 / 教研教改](http://jwc.cqu.edu.cn/index/tzgg/jyjg.htm) | `index/tzgg/jyjg` |
- | [通知公告 / 创新实践](http://jwc.cqu.edu.cn/index/tzgg/cxsj.htm) | `index/tzgg/cxsj` |
- | [学籍管理 / 学籍处理](http://jwc.cqu.edu.cn/xjgl/xjcl.htm) | `xjgl/xjcl` |
- | [学籍管理 / 交流交换](http://jwc.cqu.edu.cn/xjgl/jljh.htm) | `xjgl/jljh` |
- | [学籍管理 / 学生推免](http://jwc.cqu.edu.cn/xjgl/xstm.htm) | `xjgl/xstm` |
- | [学籍管理 / 转专业](http://jwc.cqu.edu.cn/xjgl/zzy.htm) | `xjgl/zzy` |
- | [教学运行 / 学生选课](http://jwc.cqu.edu.cn/jxyx/xsxk.htm) | `jxyx/xsxk` |
- | [教学运行 / 考试安排](http://jwc.cqu.edu.cn/jxyx/ksap.htm) | `jxyx/ksap` |
- | [教学运行 / 助教管理](http://jwc.cqu.edu.cn/jxyx/zjgl.htm) | `jxyx/zjgl` |
-</Route>
+<Route data={{"path":"/job/bigemploy","categories":["university"],"example":"/hrbeu/job/bigemploy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["job.hrbeu.edu.cn/*"]},"name":"Unknown","maintainers":["Derekmini"],"url":"job.hrbeu.edu.cn/*","location":"job/bigemploy.ts"}} />
-:::tip
-路径参数的值为相应通知列表页面的地址去除后缀名和域名后的路径。
+### Unknown {#ha-er-bin-gong-cheng-da-xue-unknown}
-例如 “通知公告” 列表页面地址为 `http://jwc.cqu.edu.cn/index/tzgg.htm`,相应参数为 `index/tgzz`。
-:::
+<Route data={{"path":"/job/list/:id","categories":["university"],"example":"/hrbeu/job/list/tzgg","parameters":{"id":"栏目,如下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["Derekmini"],"location":"job/list.ts"}} />
-:::warning
-原重庆大学教务网网站变更为重庆大学本科教学信息网。该路由编写时(2021-07-29)它[正处于试运行阶段](http://jwc.cqu.edu.cn/info/1080/3482.htm)。
+### 本科生院工作通知 {#ha-er-bin-gong-cheng-da-xue-ben-ke-sheng-yuan-gong-zuo-tong-zhi}
-通知的分类比较迷,请小心甄别、使用(以免漏掉需要的通知)。
-:::
+<Route data={{"path":"/ugs/news/:author?/:category?","categories":["university"],"example":"/hrbeu/ugs/news/jwc/jxap","parameters":{"author":"发布部门,默认为 `gztz`","category":"分类,默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ugs.hrbeu.edu.cn/:author/list.htm"],"target":"/ugs/news/:author"},"name":"本科生院工作通知","maintainers":["XYenon"],"description":"author 列表:\n\n | 教务处 | 实践教学与交流处 | 教育评估处 | 专业建设处 | 国家大学生文化素质基地 | 教师教学发展中心 | 综合办公室 | 工作通知 |\n | ------ | ---------------- | ---------- | ---------- | ---------------------- | ---------------- | ---------- | -------- |\n | jwc | sjjxyjlzx | jypgc | zyjsc | gjdxswhszjd | jsjxfzzx | zhbgs | gztz |\n\n category 列表:\n\n `all` 为全部\n\n 教务处:\n\n | 教学安排 | 考试管理 | 学籍管理 | 外语统考 | 成绩管理 |\n | -------- | -------- | -------- | -------- | -------- |\n | jxap | ksgl | xjgl | wytk | cjgl |\n\n 实践教学与交流处:\n\n | 实验教学 | 实验室建设 | 校外实习 | 学位论文 | 课程设计 | 创新创业 | 校际交流 |\n | -------- | ---------- | -------- | -------- | -------- | -------- | -------- |\n | syjx | sysjs | xwsx | xwlw | kcsj | cxcy | xjjl |\n\n 教育评估处:\n\n | 教学研究与教学成果 | 质量监控 |\n | ------------------ | -------- |\n | jxyjyjxcg | zljk |\n\n 专业建设处:\n\n | 专业与教材建设 | 陈赓实验班 | 教学名师与优秀主讲教师 | 课程建设 | 双语教学 |\n | -------------- | ---------- | ---------------------- | -------- | -------- |\n | zyyjcjs | cgsyb | jxmsyyxzjjs | kcjs | syjx |\n\n 国家大学生文化素质基地:无\n\n 教师教学发展中心:\n\n | 教师培训 |\n | -------- |\n | jspx |\n\n 综合办公室:\n\n | 联系课程 |\n | -------- |\n | lxkc |\n\n 工作通知:无","location":"ugs/news.ts"}} />
-### 新闻网讲座预告 {#chong-qing-da-xue-xin-wen-wang-jiang-zuo-yu-gao}
+author 列表:
-<Route author="nicolaszf" example="/cqu/news/jzyg" path="/cqu/news/jzyg" notOperational="1" />
+| 教务处 | 实践教学与交流处 | 教育评估处 | 专业建设处 | 国家大学生文化素质基地 | 教师教学发展中心 | 综合办公室 | 工作通知 |
+| ------ | ---------------- | ---------- | ---------- | ---------------------- | ---------------- | ---------- | -------- |
+| jwc | sjjxyjlzx | jypgc | zyjsc | gjdxswhszjd | jsjxfzzx | zhbgs | gztz |
-### 新闻网通知公告简报 {#chong-qing-da-xue-xin-wen-wang-tong-zhi-gong-gao-jian-bao}
+category 列表:
-<Route author="Hagb" example="/cqu/news/tz" path="/cqu/news/tz" notOperational="1" />
+`all` 为全部
-### 校团委 {#chong-qing-da-xue-xiao-tuan-wei}
+教务处:
-<Route author="Hagb" example="/cqu/youth/gzdt" path="/cqu/youth/:category" paramsDesc={['分类名']} anticrawler="1">
- | 工作动态 | 院系风采 | 通知公告(可能需内网) | 文件转载 |
- | -------- | -------- | ---------------------- | -------- |
- | gzdt | yxfc | tzgg | wjzz |
-</Route>
+| 教学安排 | 考试管理 | 学籍管理 | 外语统考 | 成绩管理 |
+| -------- | -------- | -------- | -------- | -------- |
+| jxap | ksgl | xjgl | wytk | cjgl |
-### 数学与统计学院 {#chong-qing-da-xue-shu-xue-yu-tong-ji-xue-yuan}
+实践教学与交流处:
-<Route author="Hagb" example="/cqu/sci/1053" path="/cqu/sci/:category" paramsDesc={['分类名']} anticrawler="1">
- | 学院新闻 | 学院公告 | 学院活动 | 学术活动 |
- | -------- | -------- | -------- | -------- |
- | 1053 | 1054 | 1055 | 1056 |
-</Route>
+| 实验教学 | 实验室建设 | 校外实习 | 学位论文 | 课程设计 | 创新创业 | 校际交流 |
+| -------- | ---------- | -------- | -------- | -------- | -------- | -------- |
+| syjx | sysjs | xwsx | xwlw | kcsj | cxcy | xjjl |
-### 信息化办公室 {#chong-qing-da-xue-xin-xi-hua-ban-gong-shi}
+教育评估处:
-<Route author="Hagb" example="/cqu/net/tzgg" path="/cqu/net/:category" paramsDesc={['分类名']} anticrawler="1">
- | 通知公告 | 单位动态 | 语言文字 |
- | -------- | -------- | -------- |
- | tzgg | dwdt | yywz |
-</Route>
+| 教学研究与教学成果 | 质量监控 |
+| ------------------ | -------- |
+| jxyjyjxcg | zljk |
-## 重庆科技学院 {#chong-qing-ke-ji-xue-yuan}
+专业建设处:
-### 教务处公告 {#chong-qing-ke-ji-xue-yuan-jiao-wu-chu-gong-gao}
+| 专业与教材建设 | 陈赓实验班 | 教学名师与优秀主讲教师 | 课程建设 | 双语教学 |
+| -------------- | ---------- | ---------------------- | -------- | -------- |
+| zyyjcjs | cgsyb | jxmsyyxzjjs | kcjs | syjx |
-<Route author="binarization" example="/cqust/jw/notify" path="/cqust/jw/:type?" paramsDesc={['可选,默认为 `notify`']} notOperational="1">
- | 通知公告 | 教务快讯 |
- | -------- | -------- |
- | notify | news |
-</Route>
+国家大学生文化素质基地:无
-### 图书馆公告 {#chong-qing-ke-ji-xue-yuan-tu-shu-guan-gong-gao}
+教师教学发展中心:
-<Route author="binarization" example="/cqust/lib/news" path="/cqust/lib/:type?" paramsDesc={['可选,默认为 `news`']} notOperational="1">
- | 本馆公告 |
- | -------- |
- | news |
-</Route>
+| 教师培训 |
+| -------- |
+| jspx |
-## 重庆理工大学 {#chong-qing-li-gong-da-xue}
+综合办公室:
-### 学校通知 {#chong-qing-li-gong-da-xue-xue-xiao-tong-zhi}
+| 联系课程 |
+| -------- |
+| lxkc |
-<Route author="Colin-XKL" example="/cqut/news" path="/cqut/news" radar="1" notOperational="1" />
+工作通知:无
-### 图书馆通知 {#chong-qing-li-gong-da-xue-tu-shu-guan-tong-zhi}
+### 就业服务平台 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai}
-<Route author="Colin-XKL" example="/cqut/libnews" path="/cqut/libnews" radar="1" notOperational="1" />
+<Route data={{"path":"/job/calendar","categories":["university"],"example":"/hrbeu/job/calendar","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["job.hrbeu.edu.cn/*"]},"name":"就业服务平台","maintainers":["Derekmini"],"url":"job.hrbeu.edu.cn/*","description":"| 通知公告 | 热点新闻 |\n | :------: | :------: |\n | tzgg | rdxw |\n\n#### 大型招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-da-xing-zhao-pin-hui}\n\n\n#### 今日招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-jin-ri-zhao-pin-hui}","location":"job/calendar.ts"}} />
-## 重庆文理学院 {#chong-qing-wen-li-xue-yuan}
+| 通知公告 | 热点新闻 |
+| :------: | :------: |
+| tzgg | rdxw |
-### 通知公告 {#chong-qing-wen-li-xue-yuan-tong-zhi-gong-gao}
+#### 大型招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-da-xing-zhao-pin-hui}
-<Route author="Fatpandac" example="/cqwu/news/academiceve" path="/cqwu/news/:type?" paramsDesc={['可选,默认为 academiceve ']} radar="1">
- | 通知公告 | 学术活动公告 |
- | -------- | ------------ |
- | notify | academiceve |
-</Route>
+#### 今日招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-jin-ri-zhao-pin-hui}
-## 大连大学 {#da-lian-da-xue}
+### 水声工程学院 {#ha-er-bin-gong-cheng-da-xue-shui-sheng-gong-cheng-xue-yuan}
-### 教务处信息 {#da-lian-da-xue-jiao-wu-chu-xin-xi}
+<Route data={{"path":"/uae/:id","categories":["university"],"example":"/hrbeu/uae/xwdt","parameters":{"id":"栏目编号,在 `URL` 中获取,如果有多级编号,将 `/` 替换为 `-`。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["uae.hrbeu.edu.cn/:id.htm"]},"name":"水声工程学院","maintainers":[],"description":"| 新闻动态 | 通知公告 | 科学研究 / 科研动态 |\n | :------: | :------: | :-----------------: |\n | xwdt | tzgg | kxyj-kydt |","location":"uae/news.ts"}} />
-<Route author="SettingDust" example="/dlu/jiaowu/news" path="/dlu/jiaowu/news" />
+| 新闻动态 | 通知公告 | 科学研究 / 科研动态 |
+| :------: | :------: | :-----------------: |
+| xwdt | tzgg | kxyj-kydt |
-## 大连工业大学 {#da-lian-gong-ye-da-xue}
+### 研究生院 {#ha-er-bin-gong-cheng-da-xue-yan-jiu-sheng-yuan}
-### 教务处新闻 {#da-lian-gong-ye-da-xue-jiao-wu-chu-xin-wen}
+<Route data={{"path":"/yjsy/list/:id","categories":["university"],"example":"/hrbeu/yjsy/list/2981","parameters":{"id":"栏目编号,由 `URL` 中获取。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yjsy.hrbeu.edu.cn/:id/list.htm"]},"name":"研究生院","maintainers":["Derekmini"],"description":"| 通知公告 | 新闻动态 | 学籍注册 | 奖助学金 | 其他 |\n | :------: | :------: | :------: | :------: | :--: |\n | 2981 | 2980 | 3009 | 3011 | ... |","location":"yjsy/list.ts"}} />
-<Route author="xu42" example="/dpu/jiaowu/news/2" path="/dpu/jiaowu/news/:type?" paramsDesc={['默认为 `2`']} notOperational="1">
- | 新闻动态 | 通知公告 | 教务文件 |
- | -------- | -------- | -------- |
- | 2 | 3 | 4 |
-</Route>
+| 通知公告 | 新闻动态 | 学籍注册 | 奖助学金 | 其他 |
+| :------: | :------: | :------: | :------: | :--: |
+| 2981 | 2980 | 3009 | 3011 | ... |
-### 网络服务新闻 {#da-lian-gong-ye-da-xue-wang-luo-fu-wu-xin-wen}
+## 哈尔滨工业大学 {#ha-er-bin-gong-ye-da-xue}
-<Route author="xu42" example="/dpu/wlfw/news/2" path="/dpu/wlfw/news/:type?" paramsDesc={['默认为 `1`']} notOperational="1">
- | 新闻动态 | 通知公告 |
- | -------- | -------- |
- | 1 | 2 |
-</Route>
+:::warning
+哈工大网站疑似禁止了`rsshub.app`的访问,使用路由需要自行 [部署](https://docs.rsshub.app/install)。
+:::
-## 大连海事大学 {#da-lian-hai-shi-da-xue}
+### 教务处通知公告 {#ha-er-bin-gong-ye-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
-### 新闻网 {#da-lian-hai-shi-da-xue-xin-wen-wang}
+<Route data={{"path":"/jwc","categories":["university"],"example":"/hit/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.hit.edu.cn/*"]},"name":"教务处通知公告","maintainers":["lty96117"],"url":"jwc.hit.edu.cn/*","location":"jwc.ts"}} />
-<Route author="arjenzhou" example="/dlmu/news/hdyw" path="/dlmu/news/:type" paramsDesc={['默认为 `hdyw`']} notOperational="1">
- | 海大要闻 | 媒体海大 | 综合新闻 | 院系风采 | 海大校报 | 理论园地 | 海大讲坛 | 艺文荟萃 |
- | :------: | :------: | :------: | :------: | :------: | :------: | :------: | :------: |
- | hdyw | mthd | zhxw | yxfc | hdxb | llyd | hdjt | ywhc |
-</Route>
+### 今日哈工大 {#ha-er-bin-gong-ye-da-xue-jin-ri-ha-gong-da}
-### 研究生院 {#da-lian-hai-shi-da-xue-yan-jiu-sheng-yuan}
+<Route data={{"path":"/today/:category","categories":["university"],"example":"/hit/today/10","parameters":{"category":"分类编号,`10`为公告公示,`11`为新闻快讯,同时支持详细分类,使用方法见下"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["today.hit.edu.cn/category/:category"]},"name":"今日哈工大","maintainers":["ranpox"],"description":":::tip\n 今日哈工大的文章分为公告公示和新闻快讯,每个页面右侧列出了更详细的分类,其编号为每个 URL 路径的最后一个数字。\n 例如会议讲座的路径为`/taxonomy/term/10/25`,则可以通过 [`/hit/today/25`](https://rsshub.app/hit/today/25) 订阅该详细类别。\n :::\n\n :::warning\n 部分文章需要经过统一身份认证后才能阅读全文。\n :::","location":"today.ts"}} />
-#### 招生工作 {#da-lian-hai-shi-da-xue-yan-jiu-sheng-yuan-zhao-sheng-gong-zuo}
+:::tip
+今日哈工大的文章分为公告公示和新闻快讯,每个页面右侧列出了更详细的分类,其编号为每个 URL 路径的最后一个数字。
+例如会议讲座的路径为`/taxonomy/term/10/25`,则可以通过 [`/hit/today/25`](https://rsshub.app/hit/today/25) 订阅该详细类别。
+:::
-<Route author="nczitzk" example="/dlmu/grs/zsgz/ssyjs" path="/dlmu/grs/zsgz/:type" paramsDesc={['招生类别']} notOperational="1">
- | 博士研究生 | 硕士研究生 | 同等学力攻读硕士学位 | 港澳台地区招生 |
- | :--------: | :--------: | :------------------: | :------------: |
- | bsyjs | ssyjs | tdxlgdssxw | gatdqzs |
-</Route>
+:::warning
+部分文章需要经过统一身份认证后才能阅读全文。
+:::
-## 大连理工大学 {#da-lian-li-gong-da-xue}
+### 研究生院通知公告 {#ha-er-bin-gong-ye-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-### 通用 {#da-lian-li-gong-da-xue-tong-yong}
+<Route data={{"path":"/hitgs","categories":["university"],"example":"/hit/hitgs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hitgs.hit.edu.cn/*"]},"name":"研究生院通知公告","maintainers":["hlmu"],"url":"hitgs.hit.edu.cn/*","location":"hitgs.ts"}} />
-<Route author="nczitzk" example="/dut" path="/dut/:site?/:category?" paramsDesc={['站点,可在 URL 中找到,默认为 **新闻网**', '分类,可在 URL 中找到,默认为各站点默认分类栏目,如 **新闻网** 即为 **头条关注**']} notOperational="1">
- 订阅 **单级** 栏目如 [大连理工大学新闻网](https://news.dlut.edu.cn) 的 [头条关注](https://news.dlut.edu.cn/ttgz.htm) 分类栏目,分为 3 步:
+## 哈尔滨工业大学(深圳) {#ha-er-bin-gong-ye-da-xue-shen-zhen}
- 1. 将 URL `https://news.dlut.edu.cn/ttgz.htm` 中 `https://` 与 `.dlut.edu.cn/` 中间的 `news` 作为 `site` 参数填入;
- 2. 将 `https://news.dlut.edu.cn/` 与 `.htm` 间的 `ttgz` 作为 `category` 参数填入;
- 3. 最终可获得 [`/dut/news/ttgz`](https://rsshub.app/dut/news/tzgg)。
+### 新闻中心 {#ha-er-bin-gong-ye-da-xue-shen-zhen-xin-wen-zhong-xin}
- 订阅 **多级** 栏目如 [大连理工大学新闻网](https://news.dlut.edu.cn) 的 [人才培养](https://news.dlut.edu.cn/xwjj01/rcpy.htm) 分类栏目,同样分为 3 步:
+<Route data={{"path":"/article/:category?","categories":["university"],"example":"/hitsz/article/id-74","parameters":{"category":"分类名,默认为校园动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻中心","maintainers":["xandery-geek"],"description":"| 校区要闻 | 媒体报道 | 综合新闻 | 校园动态 | 讲座论坛 | 热点专题 | 招标信息 | 重要关注 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | id-116 | id-80 | id-75 | id-77 | id-78 | id-79 | id-81 | id-124 |","location":"article.ts"}} />
- 1. 将 URL `https://news.dlut.edu.cn/xwjj01/rcpy.htm` 中 `https://` 与 `.dlut.edu.cn/` 中间的 `news` 作为 `site` 参数填入;
- 2. 把 `https://news.dlut.edu.cn/` 与 `.htm` 间 `xwjj01/rcpy` 作为 `category` 参数填入;
- 3. 最终可获得 [`/dut/news/xwjj01/rcpy`](https://rsshub.app/dut/news/xwjj01/rcpy)。
+| 校区要闻 | 媒体报道 | 综合新闻 | 校园动态 | 讲座论坛 | 热点专题 | 招标信息 | 重要关注 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| id-116 | id-80 | id-75 | id-77 | id-78 | id-79 | id-81 | id-124 |
- :::tip[小提示]
- 大连理工大学大部分站点支持上述通用规则进行订阅。下方的大连理工大学相关路由基本适用于该规则,在其对应的表格中没有提及的分类栏目,可以使用上方的方法自行扩展。
- :::
+## 哈尔滨工业大学(威海) {#ha-er-bin-gong-ye-da-xue-wei-hai}
- :::tip[小小提示]
- 你会发现 [大连理工大学新闻网](https://news.dlut.edu.cn) 的 [人才培养](https://news.dlut.edu.cn/xwjj01/rcpy.htm) 分类栏目在下方 [**新闻网**](#da-lian-li-gong-da-xue-xin-wen-wang) 参数表格中 `category` 参数为 `rcpy`,并非上面例子中给出的 `xwjj01/rcpy`。这意味着开发者对路由 `/dut/news/xwjj01/rcpy` 指定了快捷方式 `/dut/news/rcpy`。两者的效果是一致的。
- :::
-</Route>
+### 今日工大 - 通知公告 {#ha-er-bin-gong-ye-da-xue-wei-hai-jin-ri-gong-da-tong-zhi-gong-gao}
-### 新闻网 {#da-lian-li-gong-da-xue-xin-wen-wang}
+<Route data={{"path":"/today","categories":["university"],"example":"/hitwh/today","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hitwh.edu.cn/1024/list.htm","hitwh.edu.cn/"]},"name":"今日工大 - 通知公告","maintainers":["raptazure"],"url":"hitwh.edu.cn/1024/list.htm","location":"today.ts"}} />
-<Route author="nczitzk" example="/dut/news" path="/dut/news/:category?" paramsDesc={['分类,见下表,默认为 [**头条关注**](https://news.dlut.edu.cn/ttgz.htm)']} notOperational="1">
- | 头条关注 | 新闻聚焦 | 人才培养 | 科学研究 | 交流合作 |
- | -------- | -------- | -------- | -------- | -------- |
- | ttgz | xwjj | rcpy | kxyj | jlhz |
+## 哈尔滨理工大学 {#ha-er-bin-li-gong-da-xue}
- | 一线风采 | 大工人物 | 图说大工 | 影像大工 | 媒体大工 |
- | -------- | -------- | -------- | -------- | -------- |
- | yxfc | dgrw | tsdg | yxdg | mtdg |
-</Route>
+### 教务处 {#ha-er-bin-li-gong-da-xue-jiao-wu-chu}
-### 人事处 {#da-lian-li-gong-da-xue-ren-shi-chu}
+<Route data={{"path":"/jwzx/:type?/:page?","categories":["university"],"example":"/hrbust/jwzx","parameters":{"type":"分类名,默认为教务公告","page":"文章数,默认为12"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["LenaNouzen"],"description":"| 名师风采 | 热点新闻 | 教务公告 | 教学新闻 |\n | -------- | -------- | -------- | -------- |\n | 351 | 353 | 354 | 355 |","location":"jwzx.ts"}} />
-<Route author="nczitzk" example="/dut/perdep" path="/dut/perdep/:category?" paramsDesc={['分类,见下表,默认为 [**通知公告**](http://perdep.dlut.edu.cn/tzgg/tzgg.htm)']}>
- | 通知公告 | 工作动态 | 政策法规 |
- | -------- | -------- | -------- |
- | tzgg | gzdt | zcfg |
+| 名师风采 | 热点新闻 | 教务公告 | 教学新闻 |
+| -------- | -------- | -------- | -------- |
+| 351 | 353 | 354 | 355 |
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学人事处](http://perdep.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+## 杭州电子科技大学 {#hang-zhou-dian-zi-ke-ji-da-xue}
-### 教务处 {#da-lian-li-gong-da-xue-jiao-wu-chu}
+### 计算机学院 - 通知公告 {#hang-zhou-dian-zi-ke-ji-da-xue-ji-suan-ji-xue-yuan-tong-zhi-gong-gao}
-<Route author="beautyyuyanli nczitzk" example="/dut/teach" path="/dut/teach/:category?" paramsDesc={['分类,见下表,默认为 [**新闻快递**](http://teach.dlut.edu.cn/xwkd/xwkd.htm)']}>
- | 新闻快递 | 重要通告 | 办会公示 |
- | -------- | -------- | -------- |
- | xwkd | zytg | bhgs |
+<Route data={{"path":"/cs","categories":["university"],"example":"/hdu/cs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["computer.hdu.edu.cn/6738/list.htm"]},"name":"计算机学院 - 通知公告","maintainers":["legr4ndk"],"url":"computer.hdu.edu.cn/6738/list.htm","location":"cs/notice.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学教务处](http://teach.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+### 计算机学院 - 研究生通知 {#hang-zhou-dian-zi-ke-ji-da-xue-ji-suan-ji-xue-yuan-yan-jiu-sheng-tong-zhi}
-### 研究生院 {#da-lian-li-gong-da-xue-yan-jiu-sheng-yuan}
+<Route data={{"path":"/cs/pg","categories":["university"],"example":"/hdu/cs/pg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["computer.hdu.edu.cn/6769/list.htm"]},"name":"计算机学院 - 研究生通知","maintainers":["legr4ndk"],"url":"computer.hdu.edu.cn/6769/list.htm","location":"cs/pg.ts"}} />
-<Route author="nczitzk" example="/dut/gs" path="/dut/gs/:category?" paramsDesc={['分类,见下表,默认为 [**重要通知**](http://gs.dlut.edu.cn/zytz.htm)']}>
- | 重要通知 | 工作动态 | 政策法规 |
- | -------- | -------- | -------- |
- | zytz | gzdt | zcfg |
+## 河南财政金融学院 {#he-nan-cai-zheng-jin-rong-xue-yuan}
- | 研究生招生 - 政策文件 | 研究生招生 - 工作动态 | 研究生招生 - 资料下载 |
- | --------------------- | --------------------- | --------------------- |
- | yjszs/zcwj1 | yjszs/gzdt/gzdt | yjszs/zlxz/zlxz |
+### 河南财政金融学院 {#he-nan-cai-zheng-jin-rong-xue-yuan-he-nan-cai-zheng-jin-rong-xue-yuan}
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学研究生院](http://gs.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/hafu/news/ggtz","parameters":{"type":"分类,见下表(默认为 `ggtz`)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"河南财政金融学院","maintainers":[],"description":"| 校内公告通知 | 教务处公告通知 | 招生就业处公告通知 |\n | ------------ | -------------- | ------------------ |\n | ggtz | jwc | zsjyc |","location":"news.ts"}} />
-### 软件学院 {#da-lian-li-gong-da-xue-ruan-jian-xue-yuan}
+| 校内公告通知 | 教务处公告通知 | 招生就业处公告通知 |
+| ------------ | -------------- | ------------------ |
+| ggtz | jwc | zsjyc |
-<Route author="nczitzk" example="/dut/ssdut" path="/dut/ssdut/:category?" paramsDesc={['分类,见下表,默认为 [**焦点新闻**](http://ssdut.dlut.edu.cn/ywgg/xueyuanxinwen/jdxw.htm)']} notOperational="1">
- | 焦点新闻 | 综合新闻 | 学院通知 | 学术动态 | 本科生通知 | 研究生通知 |
- | -------- | -------- | -------- | -------- | ---------- | ---------- |
- | jdxw | zhxw | xytz | xsdt | bkstz | yjstz |
+## 黑龙江中医药大学 {#hei-long-jiang-zhong-yi-yao-da-xue}
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学软件学院](http://ssdut.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+### 研究生院 {#hei-long-jiang-zhong-yi-yao-da-xue-yan-jiu-sheng-yuan}
-### 开发区校区 {#da-lian-li-gong-da-xue-kai-fa-qu-xiao-qu}
+<Route data={{"path":"/yjsy/:category?","categories":["university"],"example":"/hljucm/yjsy","parameters":{"category":"分类, 见下表,默认为新闻动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生院","maintainers":["nczitzk"],"description":"| 新闻动态 | 通知公告 |\n | -------- | -------- |\n | xwdt | tzgg |","location":"yjsy.ts"}} />
-<Route author="nczitzk" example="/dut/eda" path="/dut/eda/:category?" paramsDesc={['分类,见下表,默认为 [**通知公告**](http://eda.dlut.edu.cn/tzgg/tzgg.htm)']}>
- | 通知公告 | 校区新闻 |
- | -------- | -------- |
- | tzgg | xqxw |
+| 新闻动态 | 通知公告 |
+| -------- | -------- |
+| xwdt | tzgg |
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学开发区校区](http://eda.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+## 湖南大学 {#hu-nan-da-xue}
-### 盘锦校区 {#da-lian-li-gong-da-xue-pan-jin-xiao-qu}
+### 校园招聘 {#hu-nan-da-xue-xiao-yuan-zhao-pin}
-<Route author="nczitzk" example="/dut/panjin" path="/dut/panjin/:category?" paramsDesc={['分类,见下表,默认为 [**公告**](https://panjin.dlut.edu.cn/index/gg.htm)']} notOperational="1">
- | 校区新闻 | 校园文化 | 学员风采 | 学术动态 | 媒体报道 | 公告 |
- | -------- | -------- | -------- | -------- | -------- | ---- |
- | xqxw | xywh | xyfc | xsdt | mtbd | gg |
+<Route data={{"path":"/careers","categories":["university"],"example":"/hnu/careers","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scc.hnu.edu.cnundefined"]},"name":"校园招聘","maintainers":["ningyougan"],"url":"scc.hnu.edu.cnundefined","location":"careers.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学盘锦校区](https://panjin.dlut.edu.cn/index.htm),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+## 湖南农业大学 {#hu-nan-nong-ye-da-xue}
-### 盘锦校区学生事务办公室 {#da-lian-li-gong-da-xue-pan-jin-xiao-qu-xue-sheng-shi-wu-ban-gong-shi}
+### 公共管理与法学学院 {#hu-nan-nong-ye-da-xue-gong-gong-guan-li-yu-fa-xue-xue-yuan}
-<Route author="nczitzk" example="/dut/xsgzb" path="/dut/xsgzb/:category?" paramsDesc={['分类,见下表,默认为 [**通知公告**](http://xsgzb.dlut.edu.cn/index/zytz.htm)']}>
- | 通知公告 | 学工动态 | 公示公告 |
- | -------- | -------- | --------- |
- | zytz | xgdt | gsgonggao |
+<Route data={{"path":"/gfxy/:category?/:page?","categories":["university"],"example":"/hunau/gfxy","parameters":{"category":"页面分类,默认为 `tzgg`","page":"页码,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xky.hunau.edu.cn/","xky.hunau.edu.cntzgg_8472","xky.hunau.edu.cn/:category"],"target":"/:category"},"name":"公共管理与法学学院","maintainers":[],"url":"xky.hunau.edu.cn/","description":"| 分类 | 通知公告 | 学院新闻 | 其他分类通知... |\n | ---- | -------- | -------- | --------------- |\n | 参数 | tzgg | xyxw | 对应 URL |","location":"gfxy/index.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学盘锦校区学生事务办公室](http://xsgzb.dlut.edu.cn/index.htm),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+| 分类 | 通知公告 | 学院新闻 | 其他分类通知... |
+| ---- | -------- | -------- | --------------- |
+| 参数 | tzgg | xyxw | 对应 URL |
-### 盘锦校区教务教学事务办公室 {#da-lian-li-gong-da-xue-pan-jin-xiao-qu-jiao-wu-jiao-xue-shi-wu-ban-gong-shi}
+### 国际交流与合作处、国际教育学院、港澳台事务办公室 {#hu-nan-nong-ye-da-xue-guo-ji-jiao-liu-yu-he-zuo-chu-guo-ji-jiao-yu-xue-yuan-gang-ao-tai-shi-wu-ban-gong-shi}
-<Route author="nczitzk" example="/dut/pjteach" path="/dut/pjteach/:category?" paramsDesc={['分类,见下表,默认为 [**新闻快递**](http://pjteach.dlut.edu.cn/index/xwkd.htm)']}>
- | 新闻快递 | 重要通知 | 教学文件 | 常见问题 | 选课与考试 |
- | -------- | -------- | -------- | -------- | ---------- |
- | xwkd | zytz | jxwj | cjwt | xkyks |
+<Route data={{"path":"/ied/:type?/:category?/:page?","categories":["university"],"example":"/hunau/ied","parameters":{"type":"页面归属,默认为 `xwzx`","category":"页面分类,默认为 `ggtz`","page":"页码,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xky.hunau.edu.cn/","xky.hunau.edu.cntzgg_8472","xky.hunau.edu.cn/:category"],"target":"/:category"},"name":"国际交流与合作处、国际教育学院、港澳台事务办公室","maintainers":["lcandy2"],"url":"xky.hunau.edu.cn/","description":"| 分类 | 公告通知 | 新闻快讯 | 其他分类... |\n | -------- | -------- | -------- | ----------- |\n | type | xwzx | xwzx | 对应 URL |\n | category | tzgg | xwkx | 对应 URL |","location":"ied.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学盘锦校区教务教学事务办公室](http://pjteach.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+| 分类 | 公告通知 | 新闻快讯 | 其他分类... |
+| -------- | -------- | -------- | ----------- |
+| type | xwzx | xwzx | 对应 URL |
+| category | tzgg | xwkx | 对应 URL |
-### 盘锦校区总务部 {#da-lian-li-gong-da-xue-pan-jin-xiao-qu-zong-wu-bu}
+### 教务处 {#hu-nan-nong-ye-da-xue-jiao-wu-chu}
-<Route author="nczitzk" example="/dut/pjxqzwb" path="/dut/pjxqzwb/:category?" paramsDesc={['分类,见下表,默认为 [**通知公告**](http://pjxqzwb.dlut.edu.cn/index/tzgg.htm)']}>
- | 通知公告 | 党政园地 | 总务快讯 | 法规制度 |
- | -------- | -------- | -------- | -------- |
- | tzgg | dzyd | zwkx | fgzd |
+<Route data={{"path":"/jwc/:category?/:page?","categories":["university"],"example":"/hunau/jwc","parameters":{"category":"页面分类,默认为 `tzgg`","page":"页码,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xky.hunau.edu.cn/","xky.hunau.edu.cntzgg_8472","xky.hunau.edu.cn/:category"],"target":"/:category"},"name":"教务处","maintainers":[],"url":"xky.hunau.edu.cn/","description":"| 分类 | 通知公告 | 教务动态 | 其他教务通知... |\n | ---- | -------- | -------- | --------------- |\n | 参数 | tzgg | jwds | 对应 URL |","location":"jwc.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学盘锦校区总务部](http://pjxqzwb.dlut.edu.cn/index.htm),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+| 分类 | 通知公告 | 教务动态 | 其他教务通知... |
+| ---- | -------- | -------- | --------------- |
+| 参数 | tzgg | jwds | 对应 URL |
-### 体育与健康学院盘锦分院 {#da-lian-li-gong-da-xue-ti-yu-yu-jian-kang-xue-yuan-pan-jin-fen-yuan}
+### 信息与智能科学学院 {#hu-nan-nong-ye-da-xue-xin-xi-yu-zhi-neng-ke-xue-xue-yuan}
-<Route author="nczitzk" example="/dut/tjpj" path="/dut/tjpj/:category?" paramsDesc={['分类,见下表,默认为 [**学院新闻**](http://tjpj.dlut.edu.cn/index/xyxw.htm)']}>
- | 学院新闻 | 通知公告 |
- | -------- | -------- |
- | xyxw | zxgg |
+<Route data={{"path":"/xky/:category?/:page?","categories":["university"],"example":"/hunau/xky","parameters":{"category":"页面分类,默认为 `tzgg_8472`","page":"页码,默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xky.hunau.edu.cn/","xky.hunau.edu.cntzgg_8472","xky.hunau.edu.cn/:category"],"target":"/:category"},"name":"信息与智能科学学院","maintainers":[],"url":"xky.hunau.edu.cn/","description":"| 分类 | 通知公告 | 学院新闻 | 其他分类通知... |\n | ---- | ---------- | -------- | --------------- |\n | 参数 | tzgg_8472 | xyxw | 对应 URL |","location":"xky/index.ts"}} />
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学体育与健康学院盘锦分院](http://tjpj.dlut.edu.cn/index.htm),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+| 分类 | 通知公告 | 学院新闻 | 其他分类通知... |
+| ---- | ---------- | -------- | --------------- |
+| 参数 | tzgg\_8472 | xyxw | 对应 URL |
-### 国际合作与交流处(港澳台办) {#da-lian-li-gong-da-xue-guo-ji-he-zuo-yu-jiao-liu-chu-gang-ao-tai-ban}
+## 华北电力大学 {#hua-bei-dian-li-da-xue}
-<Route author="beautyyuyanli nczitzk" example="/dut/dutdice" path="/dut/dutdice/:category?" paramsDesc={['分类,见下表,默认为 [**新闻速递**](http://dutdice.dlut.edu.cn/xwsd/xxxw.htm)']} anticrawler="1">
- | 教师通知 | 学生通知 | 新闻速递 |
- | -------- | ----------- | -------- |
- | jstz | xstong\_zhi | xwsd |
+### 北京校区研究生院 {#hua-bei-dian-li-da-xue-bei-jing-xiao-qu-yan-jiu-sheng-yuan}
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学国际合作与交流处(港澳台办)](http://dutdice.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+<Route data={{"path":"/master/:type","categories":["university"],"example":"/ncepu/master/tzgg","parameters":{"type":"类型参数"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"北京校区研究生院","maintainers":["nilleo"],"description":"| 类型 | 硕士招生信息 | 通知公告 | 研究生培养信息 |\n | ---- | ------------ | -------- | -------------- |\n | 参数 | zsxx | tzgg | pyxx |","location":"master/masterinfo.ts"}} />
-### 体育场馆中心 {#da-lian-li-gong-da-xue-ti-yu-chang-guan-zhong-xin}
+| 类型 | 硕士招生信息 | 通知公告 | 研究生培养信息 |
+| ---- | ------------ | -------- | -------------- |
+| 参数 | zsxx | tzgg | pyxx |
-<Route author="beautyyuyanli nczitzk" example="/dut/tycgzx" path="/dut/tycgzx/:category?" paramsDesc={['分类,见下表,默认为 [**通知公告**](http://tycgzx.dlut.edu.cn/tzgg/tzgg.htm)']}>
- | 通知公告 | 活动日程 | 新闻动态 | 健康知识 |
- | -------- | -------- | -------- | -------- |
- | tzgg | hdrc | xwdt | jkzs |
+## 华北水利水电大学 {#hua-bei-shui-li-shui-dian-da-xue}
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学体育场馆中心](http://tycgzx.dlut.edu.cn),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+### 学校通知 {#hua-bei-shui-li-shui-dian-da-xue-xue-xiao-tong-zhi}
-### 公共基础学院 {#da-lian-li-gong-da-xue-gong-gong-ji-chu-xue-yuan}
+<Route data={{"path":"/notice","categories":["university"],"example":"/ncwu/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ncwu.edu.cn/xxtz.htm"]},"name":"学校通知","maintainers":[],"url":"ncwu.edu.cn/xxtz.htm","location":"notice.ts"}} />
-<Route author="ueiu" example="/fldpj" path="/dut/fldpj/:category?" paramsDesc={['分类,见下表,默认为 [**重要通知**](http://fldpj.dlut.edu.cn/index/zytz.htm)']}>
- | 重要通知 | 学术动态 | 院务公开 |
- | -------- | -------- | -------- |
- | zytz | xsdt | ywgk |
+## 华东理工大学 {#hua-dong-li-gong-da-xue}
- :::tip
- 表格仅呈现了部分分类栏目,更多分类栏目参见 [大连理工大学公共基础学院](http://fldpj.dlut.edu.cn/index.htm),并按照上方 [**通用**](#da-lian-li-gong-da-xue-tong-yong) 规则订阅。
- :::
-</Route>
+### 本科教务处信息网 {#hua-dong-li-gong-da-xue-ben-ke-jiao-wu-chu-xin-xi-wang}
-## 电子科技大学 {#dian-zi-ke-ji-da-xue}
+<Route data={{"path":"/jwc/:category?","categories":["university"],"example":"/ecust/jwc/mto","parameters":{"category":"订阅板块,默认为全部订阅"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"本科教务处信息网","maintainers":["lxl66566"],"description":"| 其他任意值 | mto | mttb | gi | mpt | fai |\n | ---------- | ------------ | ------------------ | -------- | ------------ | ------------ |\n | 全部订阅 | 教学运行管理 | 培养与教学建设管理 | 综合信息 | 实践教学管理 | 学院教务信息 |","location":"jwc/notice.ts"}} />
-### 研究生院 {#dian-zi-ke-ji-da-xue-yan-jiu-sheng-yuan}
+| 其他任意值 | mto | mttb | gi | mpt | fai |
+| ---------- | ------------ | ------------------ | -------- | ------------ | ------------ |
+| 全部订阅 | 教学运行管理 | 培养与教学建设管理 | 综合信息 | 实践教学管理 | 学院教务信息 |
-<Route author="huyyi mobyw" example="/uestc/gr" path="/uestc/gr" anticrawler="1" />
+### 继续教育学院 - 学院公告 {#hua-dong-li-gong-da-xue-ji-xu-jiao-yu-xue-yuan-xue-yuan-gong-gao}
-### 文化素质教育中心 {#dian-zi-ke-ji-da-xue-wen-hua-su-zhi-jiao-yu-zhong-xin}
+<Route data={{"path":"/jxjy/news","categories":["university"],"example":"/ecust/jxjy/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["e.ecust.edu.cn/engine2/m/38F638B77773ADD3","e.ecust.edu.cn/"]},"name":"继续教育学院 - 学院公告","maintainers":["jialinghui"],"url":"e.ecust.edu.cn/engine2/m/38F638B77773ADD3","location":"e/news.ts"}} />
-<Route author="truobel mobyw" example="/uestc/cqe/tzgg" path="/uestc/cqe/:type?" paramsDesc={['默认为 `tzgg`']} puppeteer="1" notOperational="1">
- | 活动预告 | 通知公告 |
- | -------- | -------- |
- | hdyg | tzgg |
-</Route>
+### 研究生院通知公告 {#hua-dong-li-gong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-### 教务处 {#dian-zi-ke-ji-da-xue-jiao-wu-chu}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/ecust/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gschool.ecust.edu.cn/12753/list.htm","gschool.ecust.edu.cn/"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"gschool.ecust.edu.cn/12753/list.htm","location":"gschool/yjs.ts"}} />
-<Route author="achjqz mobyw" example="/uestc/jwc/student" path="/uestc/jwc/:type?" paramsDesc={['默认为 `important`']} anticrawler="1">
- | 重要公告 | 学生事务公告 | 教师事务公告 | 教学新闻 | 办公室 |
- | --------- | ------------ | ------------ | -------- | ------ |
- | important | student | teacher | teach | office |
-</Route>
+## 华南理工大学 {#hua-nan-li-gong-da-xue}
-### 新闻中心 {#dian-zi-ke-ji-da-xue-xin-wen-zhong-xin}
+### 电子与信息学院 - 新闻速递 {#hua-nan-li-gong-da-xue-dian-zi-yu-xin-xi-xue-yuan-xin-wen-su-di}
-<Route author="achjqz mobyw" example="/uestc/news/culture" path="/uestc/news/:type?" paramsDesc={['默认为 `announcement`']} anticrawler="1">
- | 学术 | 文化 | 公告 | 校内通知 |
- | ------- | ------- | ------------ | ------------ |
- | academy | culture | announcement | notification |
-</Route>
+<Route data={{"path":"/seie/news_center","categories":["university"],"example":"/scut/seie/news_center","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www2.scut.edu.cn/ee/16285/list.htm"]},"name":"电子与信息学院 - 新闻速递","maintainers":["auto-bot-ty"],"url":"www2.scut.edu.cn/ee/16285/list.htm","description":":::warning\n由于学院官网对非大陆 IP 的访问存在限制,需自行部署。\n:::","location":"seie/news-ccenter.ts"}} />
-### 自动化工程学院 {#dian-zi-ke-ji-da-xue-zi-dong-hua-gong-cheng-xue-yuan}
+:::warning
+由于学院官网对非大陆 IP 的访问存在限制,需自行部署。
+:::
-<Route author="talengu mobyw" example="/uestc/auto" path="/uestc/auto" puppeteer="1" notOperational="1" />
+### 机械与汽车工程学院 - 通知公告 {#hua-nan-li-gong-da-xue-ji-xie-yu-qi-che-gong-cheng-xue-yuan-tong-zhi-gong-gao}
-### 计算机科学与工程学院 {#dian-zi-ke-ji-da-xue-ji-suan-ji-ke-xue-yu-gong-cheng-xue-yuan}
+<Route data={{"path":"/smae/:category?","categories":["university"],"example":"/scut/smae/yjsjw","parameters":{"category":"通知分类,默认为 `yjsjw`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"机械与汽车工程学院 - 通知公告","maintainers":["Ermaotie"],"description":"| 公务信息 | 党建工作 | 人事工作 | 学生工作 | 科研实验室 | 本科生教务 | 研究生教务 |\n | -------- | -------- | -------- | -------- | ---------- | ---------- | ---------- |\n | gwxx | djgz | rsgz | xsgz | kysys | bksjw | yjsjw |","location":"smae/notice.ts"}} />
-<Route author="talengu mobyw" example="/uestc/scse" path="/uestc/scse" puppeteer="1" notOperational="1" />
+| 公务信息 | 党建工作 | 人事工作 | 学生工作 | 科研实验室 | 本科生教务 | 研究生教务 |
+| -------- | -------- | -------- | -------- | ---------- | ---------- | ---------- |
+| gwxx | djgz | rsgz | xsgz | kysys | bksjw | yjsjw |
-### 信息与通信工程学院 {#dian-zi-ke-ji-da-xue-xin-xi-yu-tong-xin-gong-cheng-xue-yuan}
+### 教务处通知公告 {#hua-nan-li-gong-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
-<Route author="huyyi mobyw" example="/uestc/sice" path="/uestc/sice" puppeteer="1" notOperational="1" />
+<Route data={{"path":"/jwc/notice/:category?","categories":["university"],"example":"/scut/jwc/notice/all","parameters":{"category":"通知分类,默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处通知公告","maintainers":["imkero"],"description":"| 全部 | 选课 | 考试 | 实践 | 交流 | 教师 | 信息 |\n | ---- | ------ | ---- | -------- | ------------- | ------- | ---- |\n | all | course | exam | practice | communication | teacher | info |","location":"jwc/notice.ts"}} />
-### 信息与软件工程学院 {#dian-zi-ke-ji-da-xue-xin-xi-yu-ruan-jian-gong-cheng-xue-yuan}
+| 全部 | 选课 | 考试 | 实践 | 交流 | 教师 | 信息 |
+| ---- | ------ | ---- | -------- | ------------- | ------- | ---- |
+| all | course | exam | practice | communication | teacher | info |
-<Route author="Yadomin" example="/uestc/sise/1" path="/uestc/sise/:type?" paramsDesc={['默认为 `1`']} puppeteer="1">
- | 最新 | 院办 | 学生科 | 教务科 | 研管科 | 组织 | 人事 | 实践教育中心 | Int'I |
- | ---- | ---- | ------ | ------ | ------ | ---- | ---- | ------------ | ----- |
- | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
-</Route>
+### 教务处新闻动态 {#hua-nan-li-gong-da-xue-jiao-wu-chu-xin-wen-dong-tai}
-## 东北大学 {#dong-bei-da-xue}
+<Route data={{"path":"/jwc/news","categories":["university"],"example":"/scut/jwc/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处新闻动态","maintainers":["imkero"],"location":"jwc/news.ts"}} />
-### 新闻网 {#dong-bei-da-xue-xin-wen-wang}
+### 教务处学院通知 {#hua-nan-li-gong-da-xue-jiao-wu-chu-xue-yuan-tong-zhi}
-<Route author="JeasonLau" example="/neu/news/ddyw" path="/neu/news/:type" paramsDesc={['种类名,见下表']} notOperational="1">
- | 种类名 | 参数 |
- | -------- | ---- |
- | 东大要闻 | ddyw |
- | 媒体东大 | mtdd |
- | 通知公告 | tzgg |
- | 新闻纵横 | xwzh |
- | 人才培养 | rcpy |
- | 学术科研 | xsky |
- | 英文新闻 | 217 |
- | 招生就业 | zsjy |
- | 考研出国 | kycg |
- | 校园文学 | xywx |
- | 校友风采 | xyfc |
- | 时事热点 | ssrd |
- | 教育前沿 | jyqy |
- | 文化体育 | whty |
- | 最新科技 | zxkj |
-</Route>
+<Route data={{"path":"/jwc/school/:category?","categories":["university"],"example":"/scut/jwc/school/all","parameters":{"category":"通知分类,默认为 `all`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处学院通知","maintainers":["imkero","Rongronggg9"],"description":"| 全部 | 选课 | 考试 | 信息 |\n | ---- | ------ | ---- | ---- |\n | all | course | exam | info |","location":"jwc/school.ts"}} />
-### 医学与生物信息工程学院 {#dong-bei-da-xue-yi-xue-yu-sheng-wu-xin-xi-gong-cheng-xue-yuan}
+| 全部 | 选课 | 考试 | 信息 |
+| ---- | ------ | ---- | ---- |
+| all | course | exam | info |
-<Route author="TennousuAthena" example="/neu/bmie/news" path="/neu/bmie/:type" paramsDesc={['分类 id 见下表']}>
- | Id | 名称 |
- | ----------------------- | ---------- |
- | news | 学院新闻 |
- | academic | 学术科研 |
- | talent\_development | 人才培养 |
- | international\_exchange | 国际交流 |
- | announcement | 通知公告 |
- | undergraduate\_dev | 本科生培养 |
- | postgraduate\_dev | 研究生培养 |
- | undergraduate\_recruit | 本科生招募 |
- | postgraduate\_recruit | 研究生招募 |
- | CPC\_build | 党的建设 |
- | CPC\_work | 党委工作 |
- | union\_work | 工会工作 |
- | CYL\_work | 共青团工作 |
- | security\_management | 安全管理 |
- | alumni\_style | 校友风采 |
-</Route>
-
-## 东北师范大学 {#dong-bei-shi-fan-da-xue}
-
-### 历史文化学院 {#dong-bei-shi-fan-da-xue-li-shi-wen-hua-xue-yuan}
-
-<Route author="nczitzk" example="/nenu/sohac" path="/nenu/sohac/:path+" paramsDesc={['路径,默认为通知公告']}>
- :::tip
- 若订阅 [通知公告](https://sohac.nenu.edu.cn/index/tzgg.htm),网址为 `https://sohac.nenu.edu.cn/index/tzgg.htm`。截取 `https://sohac.nenu.edu.cn/` 到末尾 `.htm` 的部分 `index/tzgg` 作为参数,此时路由为 [`/nenu/sohac/index/tzgg`](https://rsshub.app/nenu/sohac/index/tzgg)。
-
- 若订阅 [学院信息](https://sohac.nenu.edu.cn/index/xyxx.htm),网址为 `https://sohac.nenu.edu.cn/index/xyxx.htm`。截取 `https://sohac.nenu.edu.cn/` 到末尾 `.htm` 的部分 `index/xyxx` 作为参数,此时路由为 [`/nenu/sohac/index/xyxx`](https://rsshub.app/nenu/sohac/index/xyxx)。
- :::
-</Route>
-
-### 研究生院 {#dong-bei-shi-fan-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="nczitzk" example="/nenu/yjsy" path="/nenu/yjsy/:path+" paramsDesc={['路径,默认为通知公告']}>
- :::tip
- 若订阅 [通知公告](https://yjsy.nenu.edu.cn/tzgg.htm),网址为 `https://yjsy.nenu.edu.cn/tzgg.htm`。截取 `https://yjsy.nenu.edu.cn/` 到末尾 `.htm` 的部分 `tzgg` 作为参数,此时路由为 [`/nenu/yjsy/tzgg`](https://rsshub.app/nenu/yjsy/tzgg)。
-
- 若订阅 [校内新闻](https://yjsy.nenu.edu.cn/xwdt/xnxw.htm),网址为 `https://yjsy.nenu.edu.cn/xwdt/xnxw.htm`。截取 `https://yjsy.nenu.edu.cn/` 到末尾 `.htm` 的部分 `xwdt/xnxw` 作为参数,此时路由为 [`/nenu/yjsy/xwdt/xnxw`](https://rsshub.app/nenu/yjsy/xwdt/xnxw)。
- :::
-</Route>
-
-## 东莞理工学院 {#dong-guan-li-gong-xue-yuan}
-
-### 教务处通知 {#dong-guan-li-gong-xue-yuan-jiao-wu-chu-tong-zhi}
-
-<Route author="AnyMoe" example="/dgut/jwc/" path="/dgut/jwc/:type?" paramsDesc={['默认为 `2`']} notOperational="1">
- | 教务公告 | 教学信息 |
- | -------- | -------- |
- | 1 | 2 |
-</Route>
-
-### 学工部动态 {#dong-guan-li-gong-xue-yuan-xue-gong-bu-dong-tai}
-
-<Route author="AnyMoe" example="/dgut/xsc/" path="/dgut/xsc/:type?" paramsDesc={['默认为 `2`']}>
- | 学工动态 | 通知公告 | 网上公示 |
- | -------- | -------- | -------- |
- | 1 | 2 | 4 |
-</Route>
+### 土木与交通学院 - 学工通知 {#hua-nan-li-gong-da-xue-tu-mu-yu-jiao-tong-xue-yuan-xue-gong-tong-zhi}
-## 东华大学 {#dong-hua-da-xue}
+<Route data={{"path":"/scet/notice","categories":["university"],"example":"/scut/scet/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"土木与交通学院 - 学工通知","maintainers":["railzy"],"location":"scet/notice.ts"}} />
-### 教务处通知 {#dong-hua-da-xue-jiao-wu-chu-tong-zhi}
+### 研究生院通知公告 {#hua-nan-li-gong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-<Route author="KiraKiseki" example="/dhu/jiaowu/news/student" path="/dhu/jiaowu/news/:type?" paramsDesc={['默认为 `student`']} notOperational="1">
- | 学生专栏 | 教师专栏 |
- | -------- | -------- |
- | student | teacher |
-</Route>
+<Route data={{"path":"/yjs","categories":["university"],"example":"/scut/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www2.scut.edu.cn/graduate/14562/list.htm"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"www2.scut.edu.cn/graduate/14562/list.htm","location":"yjs.ts"}} />
-### 最新信息公开 {#dong-hua-da-xue-zui-xin-xin-xi-gong-kai}
+## 华南农业大学 {#hua-nan-nong-ye-da-xue}
-<Route author="KiraKiseki" example="/dhu/xxgk/news" path="/dhu/xxgk/news" />
+### 华农研讯 {#hua-nan-nong-ye-da-xue-hua-nong-yan-xun}
-### 研究生院通知 {#dong-hua-da-xue-yan-jiu-sheng-yuan-tong-zhi}
+<Route data={{"path":"/yzb","categories":["university"],"example":"/scau/yzb","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yzb.scau.edu.cn/2136/list1.htm","yzb.scau.edu.cn/"]},"name":"华农研讯","maintainers":["shengmaosu"],"url":"yzb.scau.edu.cn/2136/list1.htm","location":"yjs.ts"}} />
-<Route author="fox2049" example="/dhu/yjs/news/class" path="/dhu/yjs/news/:type?" paramsDesc={['默认为 `class`']}>
- | 新闻动态 | 通知公告 | 选课考试 |
- | -------- | -------- | -------- |
- | trend | notice | class |
-</Route>
+### 研究生院通知 {#hua-nan-nong-ye-da-xue-yan-jiu-sheng-yuan-tong-zhi}
-### 研究生招生信息 {#dong-hua-da-xue-yan-jiu-sheng-zhao-sheng-xin-xi}
+<Route data={{"path":"/yjsy","categories":["university"],"example":"/scau/yjsy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yjsy.scau.edu.cn/208/list.htm","yjsy.scau.edu.cn/"]},"name":"研究生院通知","maintainers":["Chunssu"],"url":"yjsy.scau.edu.cn/208/list.htm","location":"yjsy.ts"}} />
-<Route author="fox2049" example="/dhu/yjs/zs/master" path="/dhu/yjs/zs/:type?" paramsDesc={['默认为 `master`']} anticrawler="1">
- | 博士招生 | 硕士招生 |
- | -------- | -------- |
- | doctor | master |
-</Route>
+## 华南师范大学 {#hua-nan-shi-fan-da-xue}
-### 学术信息 {#dong-hua-da-xue-xue-shu-xin-xi}
+### 计算机学院竞赛通知 {#hua-nan-shi-fan-da-xue-ji-suan-ji-xue-yuan-jing-sai-tong-zhi}
-<Route author="fox2049" example="/dhu/news/xsxx" path="/dhu/news/xsxx" />
+<Route data={{"path":"/cs/match","categories":["university"],"example":"/scnu/cs/match","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cs.scnu.edu.cn/xueshenggongzuo/chengchangfazhan/kejichuangxin/","cs.scnu.edu.cn/"]},"name":"计算机学院竞赛通知","maintainers":["fengkx"],"url":"cs.scnu.edu.cn/xueshenggongzuo/chengchangfazhan/kejichuangxin/","location":"cs/match.ts"}} />
-## 东南大学 {#dong-nan-da-xue}
+### 教务处通知 {#hua-nan-shi-fan-da-xue-jiao-wu-chu-tong-zhi}
-### 信息科学与工程学院学术活动 {#dong-nan-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-xue-shu-huo-dong}
+<Route data={{"path":"/jw","categories":["university"],"example":"/scnu/jw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jw.scnu.edu.cn/ann/index.html","jw.scnu.edu.cn/"]},"name":"教务处通知","maintainers":["fengkx"],"url":"jw.scnu.edu.cn/ann/index.html","location":"jw.ts"}} />
-<Route author="HenryQW" example="/seu/radio/academic" path="/seu/radio/academic" radar="1" anticrawler="1" />
+### 软件学院通知公告 {#hua-nan-shi-fan-da-xue-ruan-jian-xue-yuan-tong-zhi-gong-gao}
-### 研究生招生网通知公告 {#dong-nan-da-xue-yan-jiu-sheng-zhao-sheng-wang-tong-zhi-gong-gao}
+<Route data={{"path":"/ss","categories":["university"],"example":"/scnu/ss","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ss.scnu.edu.cn/tongzhigonggao","ss.scnu.edu.cn/"]},"name":"软件学院通知公告","maintainers":["shengmaosu"],"url":"ss.scnu.edu.cn/tongzhigonggao","location":"ss.ts"}} />
-<Route author="fuzy112" example="/seu/yzb/6676" path="/seu/yzb/:type" paramsDesc={['分类名,见下表']} radar="1" anticrawler="1">
- | 硕士招生 | 博士招生 | 港澳台及中外合作办学 |
- | -------- | -------- | -------------------- |
- | 6676 | 6677 | 6679 |
-</Route>
+### 图书馆通知 {#hua-nan-shi-fan-da-xue-tu-shu-guan-tong-zhi}
-### 计算机技术与工程学院 {#dong-nan-da-xue-ji-suan-ji-ji-shu-yu-gong-cheng-xue-yuan}
+<Route data={{"path":"/library","categories":["university"],"example":"/scnu/library","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lib.scnu.edu.cn/news/zuixingonggao","lib.scnu.edu.cn/"]},"name":"图书馆通知","maintainers":["fengkx"],"url":"lib.scnu.edu.cn/news/zuixingonggao","location":"library.ts"}} />
-<Route author="LogicJake" example="/seu/cse/xyxw" path="/seu/cse/:type?" paramsDesc={['分类名,默认为 `xyxw`']} radar="1" anticrawler="1">
- | 学院新闻 | 通知公告 | 教务信息 | 就业信息 | 学工事务 |
- | -------- | -------- | -------- | -------- | -------- |
- | xyxw | tzgg | jwxx | jyxx | xgsw |
-</Route>
+### 研究生院通知公告 {#hua-nan-shi-fan-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-### 研究生院全部公告 {#dong-nan-da-xue-yan-jiu-sheng-yuan-quan-bu-gong-gao}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/scnu/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.scnu.edu.cn/tongzhigonggao/ssgg","yz.scnu.edu.cn/"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"yz.scnu.edu.cn/tongzhigonggao/ssgg","location":"yjs.ts"}} />
-<Route author="Denkiyohou" example="/seu/yjs" path="/seu/yjs" anticrawler="1" />
+## 华中科技大学 {#hua-zhong-ke-ji-da-xue}
-## 对外经济贸易大学 {#dui-wai-jing-ji-mao-yi-da-xue}
+### 人工智能和自动化学院通知 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-tong-zhi}
-### 人力资源处 {#dui-wai-jing-ji-mao-yi-da-xue-ren-li-zi-yuan-chu}
+<Route data={{"path":["/aia/notice/:type?","/auto/notice/:type?"],"categories":["university"],"example":"/hust/aia/notice","parameters":{"type":"分区,默认为最新通知,可在网页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"人工智能和自动化学院通知","maintainers":["budui"],"description":"| 最新 | 党政 | 科研 | 本科生 | 研究生 | 学工思政 | 离退休 |\n | ---- | ---- | ---- | ------ | ------ | -------- | ------ |\n | | dz | ky | bk | yjs | xgsz | litui |","location":"aia/notice.ts"}} />
-<Route author="nczitzk" example="/uibe/hr" path="/uibe/hr/:category?/:type?" paramsDesc={['分类,可在对应页 URL 中找到,默认为通知公告', '类型,可在对应页 URL 中找到,默认为空']}>
- :::tip
- 如 [通知公告](http://hr.uibe.edu.cn/tzgg) 的 URL 为 `http://hr.uibe.edu.cn/tzgg`,其路由为 [`/uibe/hr/tzgg`](https://rsshub.app/uibe/hr/tzgg)
+| 最新 | 党政 | 科研 | 本科生 | 研究生 | 学工思政 | 离退休 |
+| ---- | ---- | ---- | ------ | ------ | -------- | ------ |
+| | dz | ky | bk | yjs | xgsz | litui |
- 如 [教师招聘](http://hr.uibe.edu.cn/jszp) 中的 [招聘信息](http://hr.uibe.edu.cn/jszp/zpxx) 的 URL 为 `http://hr.uibe.edu.cn/jszp/zpxx`,其路由为 [`/uibe/hr/jszp/zpxx`](https://rsshub.app/uibe/jszp/zpxx)
- :::
-</Route>
+### 人工智能和自动化学院通知 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-tong-zhi}
-## 福州大学 {#fu-zhou-da-xue}
+<Route data={{"path":["/aia/notice/:type?","/auto/notice/:type?"],"categories":["university"],"example":"/hust/aia/notice","parameters":{"type":"分区,默认为最新通知,可在网页 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"人工智能和自动化学院通知","maintainers":["budui"],"description":"| 最新 | 党政 | 科研 | 本科生 | 研究生 | 学工思政 | 离退休 |\n | ---- | ---- | ---- | ------ | ------ | -------- | ------ |\n | | dz | ky | bk | yjs | xgsz | litui |","location":"aia/notice.ts"}} />
-### 教务处通知 {#fu-zhou-da-xue-jiao-wu-chu-tong-zhi}
+| 最新 | 党政 | 科研 | 本科生 | 研究生 | 学工思政 | 离退休 |
+| ---- | ---- | ---- | ------ | ------ | -------- | ------ |
+| | dz | ky | bk | yjs | xgsz | litui |
-<Route author="Lao-Liu233" example="/fzu/jxtz" path="/fzu/:type" paramsDesc={['分类见下表']} anticrawler="1" />
+### 人工智能和自动化学院新闻 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-xin-wen}
-| 教学通知 | 专家讲座 |
-| -------- | -------- |
-| jxtz | zjjz |
+<Route data={{"path":["/aia/news","/auto/news"],"categories":["university"],"example":"/hust/aia/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aia.hust.edu.cn/xyxw.htm","aia.hust.edu.cn/"]},"name":"人工智能和自动化学院新闻","maintainers":["budui"],"url":"aia.hust.edu.cn/xyxw.htm","location":"aia/news.ts"}} />
-### 教务处通知(无文章内容) {#fu-zhou-da-xue-jiao-wu-chu-tong-zhi-wu-wen-zhang-nei-rong}
+### 人工智能和自动化学院新闻 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-xin-wen}
-<Route author="Lao-Liu233" example="/fzu_min/jxtz" path="/fzu_min/:type" paramsDesc={['分类见下表']} anticrawler="1" />
+<Route data={{"path":["/aia/news","/auto/news"],"categories":["university"],"example":"/hust/aia/news","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["aia.hust.edu.cn/xyxw.htm","aia.hust.edu.cn/"]},"name":"人工智能和自动化学院新闻","maintainers":["budui"],"url":"aia.hust.edu.cn/xyxw.htm","location":"aia/news.ts"}} />
-| 教学通知 | 专家讲座 |
-| -------- | -------- |
-| jxtz | zjjz |
+### 研究生院通知公告 {#hua-zhong-ke-ji-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-## 复旦大学继续教育学院 {#fu-dan-da-xue-ji-xu-jiao-yu-xue-yuan}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/hust/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gszs.hust.edu.cn/zsxx/ggtz.htm","gszs.hust.edu.cn/"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"gszs.hust.edu.cn/zsxx/ggtz.htm","location":"yjs.ts"}} />
-### 成人夜大通知公告 {#fu-dan-da-xue-ji-xu-jiao-yu-xue-yuan-cheng-ren-ye-da-tong-zhi-gong-gao}
+## 华中师范大学 {#hua-zhong-shi-fan-da-xue}
-<Route author="mrbruce516" example="/fudan/cce" path="/fudan/cce" anticrawler="1" />
+### 计算机学院 {#hua-zhong-shi-fan-da-xue-ji-suan-ji-xue-yuan}
-## 广东工业大学 {#guang-dong-gong-ye-da-xue}
+<Route data={{"path":"/cs","categories":["university"],"example":"/ccnu/cs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cs.ccnu.edu.cn/xwzx/tzgg.htm","cs.ccnu.edu.cn/"]},"name":"计算机学院","maintainers":["shengmaosu"],"url":"cs.ccnu.edu.cn/xwzx/tzgg.htm","location":"cs.ts"}} />
-### 通知公文网 {#guang-dong-gong-ye-da-xue-tong-zhi-gong-wen-wang}
+### 就业信息 {#hua-zhong-shi-fan-da-xue-jiu-ye-xin-xi}
-<Route author="Jim Kirisame" example="/gdut/oa_news" path="/gdut/oa_news/:category" paramsDesc={['分类名']}>
- | 校内简讯 | 校内通知 | 公示公告 | 招标公告 | 招标结果 |
- | -------- | -------- | ------------ | -------------- | -------------- |
- | news | notice | announcement | tender\_invite | tender\_result |
-</Route>
+<Route data={{"path":"/career","categories":["university"],"example":"/ccnu/career","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ccnu.91wllm.com/news/index/tag/tzgg","ccnu.91wllm.com/"]},"name":"就业信息","maintainers":["jackyu1996"],"url":"ccnu.91wllm.com/news/index/tag/tzgg","location":"career.ts"}} />
-## 广东海洋大学 {#guang-dong-hai-yang-da-xue}
+### 伍论贡学院 {#hua-zhong-shi-fan-da-xue-wu-lun-gong-xue-yuan}
-### 广东海洋大学 {#guang-dong-hai-yang-da-xue-guang-dong-hai-yang-da-xue}
+<Route data={{"path":"/wu","categories":["university"],"example":"/ccnu/wu","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["uowji.ccnu.edu.cn/xwzx/tzgg.htm","uowji.ccnu.edu.cn/"]},"name":"伍论贡学院","maintainers":["shengmaosu"],"url":"uowji.ccnu.edu.cn/xwzx/tzgg.htm","location":"wu.ts"}} />
-<Route author="Xiaotouming" example="/gdoujwc" path="/gdoujwc" notOperational="1" />
+### 研究生通知公告 {#hua-zhong-shi-fan-da-xue-yan-jiu-sheng-tong-zhi-gong-gao}
-## 广西民族大学 {#guang-xi-min-zu-da-xue}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/ccnu/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.ccnu.edu.cn/zsgz/ssyjs.htm","gs.ccnu.edu.cn/"]},"name":"研究生通知公告","maintainers":["shengmaosu"],"url":"gs.ccnu.edu.cn/zsgz/ssyjs.htm","location":"yjs.ts"}} />
-### 研究生院招生公告 {#guang-xi-min-zu-da-xue-yan-jiu-sheng-yuan-zhao-sheng-gong-gao}
+## 吉首大学 {#ji-shou-da-xue}
-<Route author="real-jiakai" example="/gxmzu/yjszsgg" path="/gxmzu/yjszsgg" radar="1" anticrawler="1" />
+### 计算机科学与工程学院 - 通知公告 {#ji-shou-da-xue-ji-suan-ji-ke-xue-yu-gong-cheng-xue-yuan-tong-zhi-gong-gao}
-### 人工智能学院通知公告 {#guang-xi-min-zu-da-xue-ren-gong-zhi-neng-xue-yuan-tong-zhi-gong-gao}
+<Route data={{"path":"/rjxy","categories":["university"],"example":"/jsu/rjxy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机科学与工程学院 - 通知公告","maintainers":["wenjia03"],"location":"rjxy.ts"}} />
-<Route author="real-jiakai" example="/gxmzu/aitzgg" path="/gxmzu/aitzgg" radar="1" anticrawler="1" />
-
-### 图书馆最新消息 {#guang-xi-min-zu-da-xue-tu-shu-guan-zui-xin-xiao-xi}
-
-<Route author="real-jiakai" example="/gxmzu/libzxxx" path="/gxmzu/libzxxx" radar="1" anticrawler="1" />
-
-## 广州大学 {#guang-zhou-da-xue}
-
-### 研究生院招生动态 {#guang-zhou-da-xue-yan-jiu-sheng-yuan-zhao-sheng-dong-tai}
-
-<Route author="shengmaosu" example="/gzhu/yjs" path="/gzhu/yjs" radar="1" notOperational="1" />
-
-## 广州航海学院 {#guang-zhou-hang-hai-xue-yuan}
-
-### 教务处通知公告 {#guang-zhou-hang-hai-xue-yuan-jiao-wu-chu-tong-zhi-gong-gao}
-
-<Route author="skyedai910" example="/gzmtu/jwc" path="/gzmtu/jwc" />
-
-### 图书馆通知公告 {#guang-zhou-hang-hai-xue-yuan-tu-shu-guan-tong-zhi-gong-gao}
-
-<Route author="skyedai910" example="/gzmtu/tsg" path="/gzmtu/tsg" />
-
-## 桂林电子科技大学 {#gui-lin-dian-zi-ke-ji-da-xue}
-
-### 新闻资讯 {#gui-lin-dian-zi-ke-ji-da-xue-xin-wen-zi-xun}
-
-<Route author="cssxsh" example="/guet/xwzx/xykx" path="/guet/xwzx/:type" paramsDesc={['资讯类型,如下表']} notOperational="1">
- | 桂电要闻 | 文明校园建设 | 桂电新闻 | 校园快讯 | 学院动态 | 媒体桂电 | 通知公告 | 招标公示 | 学术活动 |
- | -------- | ------------ | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | gdyw | wmxyjs | gdxw | xykx | xydt | mtgd | tzgg | zbgs | xshd |
-
- 注 1: 不要吐槽拼音缩写,缩写原本的 URL 构成就这样。
-</Route>
-
-## 桂林航天工业学院 {#gui-lin-hang-tian-gong-ye-xue-yuan}
-
-### 新闻资讯 {#gui-lin-hang-tian-gong-ye-xue-yuan-xin-wen-zi-xun}
-
-<Route author="wyml" example="/guat/news/ghyw" path="/guat/news/:type?" paramsDesc={['资讯类型,如下表']} notOperational="1">
- | 桂航要闻 | 院部动态 | 通知公告 | 信息公开 | 桂航大讲堂 |
- | -------- | -------- | -------- | -------- | ---------- |
- | gdyw | ybdt | tzgg | xxgk | ghdjt |
-
- 注 1: 不要吐槽拼音缩写,缩写原本的 URL 构成就这样。
-</Route>
-
-## 国防科技大学 {#guo-fang-ke-ji-da-xue}
-
-### 研究生招生信息网 {#guo-fang-ke-ji-da-xue-yan-jiu-sheng-zhao-sheng-xin-xi-wang}
-
-<Route author="nczitzk" example="/nudt/yjszs/16" path="/nudt/yjszs/:id?" paramsDesc={['分类 id,默认为 `0` 即通知公告']}>
- | 通知公告 | 招生简章 | 学校政策 | 硕士招生 | 博士招生 | 院所发文 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 8 | 12 | 16 | 17 | 23 |
-</Route>
-
-## 哈尔滨工程大学 {#ha-er-bin-gong-cheng-da-xue}
-
-### 本科生院工作通知 {#ha-er-bin-gong-cheng-da-xue-ben-ke-sheng-yuan-gong-zuo-tong-zhi}
-
-<Route author="XYenon" example="/hrbeu/ugs/news/jwc/jxap" path="/hrbeu/ugs/news/:author?/:category?" paramsDesc={['发布部门,默认为 `gztz`', '分类,默认为 `all`']}>
- author 列表:
-
- | 教务处 | 实践教学与交流处 | 教育评估处 | 专业建设处 | 国家大学生文化素质基地 | 教师教学发展中心 | 综合办公室 | 工作通知 |
- | ------ | ---------------- | ---------- | ---------- | ---------------------- | ---------------- | ---------- | -------- |
- | jwc | sjjxyjlzx | jypgc | zyjsc | gjdxswhszjd | jsjxfzzx | zhbgs | gztz |
-
- category 列表:
-
- `all` 为全部
-
- 教务处:
-
- | 教学安排 | 考试管理 | 学籍管理 | 外语统考 | 成绩管理 |
- | -------- | -------- | -------- | -------- | -------- |
- | jxap | ksgl | xjgl | wytk | cjgl |
-
- 实践教学与交流处:
-
- | 实验教学 | 实验室建设 | 校外实习 | 学位论文 | 课程设计 | 创新创业 | 校际交流 |
- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- |
- | syjx | sysjs | xwsx | xwlw | kcsj | cxcy | xjjl |
-
- 教育评估处:
-
- | 教学研究与教学成果 | 质量监控 |
- | ------------------ | -------- |
- | jxyjyjxcg | zljk |
-
- 专业建设处:
-
- | 专业与教材建设 | 陈赓实验班 | 教学名师与优秀主讲教师 | 课程建设 | 双语教学 |
- | -------------- | ---------- | ---------------------- | -------- | -------- |
- | zyyjcjs | cgsyb | jxmsyyxzjjs | kcjs | syjx |
-
- 国家大学生文化素质基地:无
-
- 教师教学发展中心:
-
- | 教师培训 |
- | -------- |
- | jspx |
-
- 综合办公室:
-
- | 联系课程 |
- | -------- |
- | lxkc |
-
- 工作通知:无
-</Route>
-
-### 研究生院 {#ha-er-bin-gong-cheng-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="Derekmini XYenon" example="/hrbeu/yjsy/list/2981" path="/hrbeu/yjsy/list/:id" paramsDesc={['栏目编号,由 `URL` 中获取。']} radar="1">
- | 通知公告 | 新闻动态 | 学籍注册 | 奖助学金 | 其他 |
- | :------: | :------: | :------: | :------: | :--: |
- | 2981 | 2980 | 3009 | 3011 | ... |
-</Route>
-
-### 就业服务平台 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai}
-
-<Route author="Derekmini" example="/hrbeu/job/list/tzgg" path="/hrbeu/job/list/:id" paramsDesc={['栏目,如下表']} radar="1">
- | 通知公告 | 热点新闻 |
- | :------: | :------: |
- | tzgg | rdxw |
-</Route>
-
-#### 大型招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-da-xing-zhao-pin-hui}
-
-<Route author="Derekmini" example="/hrbeu/job/bigemploy" path="/hrbeu/job/bigemploy" radar="1" />
-
-#### 今日招聘会 {#ha-er-bin-gong-cheng-da-xue-jiu-ye-fu-wu-ping-tai-jin-ri-zhao-pin-hui}
-
-<Route author="Derekmini" example="/hrbeu/job/calendar" path="/hrbeu/job/calendar" radar="1" />
-
-### 工学新闻 {#ha-er-bin-gong-cheng-da-xue-gong-xue-xin-wen}
-
-<Route author="Derekmini XYenon" example="/hrbeu/gx/list/xw/yw" path="/hrbeu/gx/:type/:column/:id?" paramsDesc={['页面类型,如 `新闻 - 要闻` 页面为 `list` 类型,`新闻 - 专题策划` 页面为 `card` 类型,通过直接观察页面来判断;','主栏,如 `新闻:xw`,由 `URL` 中获取;','次栏,如 `要闻:yw`,如果次栏存在,则为必选,由 `URL` 中获取。']} radar="1" anticrawler="1">
- | 新闻 | 新闻 - 要闻 | 新闻 - 专题策划 | 其他 |
- | :------: | :---------: | :-------------: | :--: |
- | /card/xw | /list/xw/yw | /card/xw/ztch | ... |
-</Route>
-
-### 水声工程学院 {#ha-er-bin-gong-cheng-da-xue-shui-sheng-gong-cheng-xue-yuan}
-
-<Route author="Derekmini" example="/hrbeu/uae/xwdt" path="/hrbeu/uae/:id" paramsDesc={['栏目编号,在 `URL` 中获取,如果有多级编号,将 `/` 替换为 `-`。']} radar="1" anticrawler="1">
- | 新闻动态 | 通知公告 | 科学研究 / 科研动态 |
- | :------: | :------: | :-----------------: |
- | xwdt | tzgg | kxyj-kydt |
-</Route>
-
-## 哈尔滨工业大学 {#ha-er-bin-gong-ye-da-xue}
-
-:::warning
-哈工大网站疑似禁止了`rsshub.app`的访问,使用路由需要自行 [部署](https://docs.rsshub.app/install)。
-:::
-
-### 教务处通知公告 {#ha-er-bin-gong-ye-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
-
-<Route author="lty96117" example="/hit/jwc" path="/hit/jwc" radar="1" notOperational="1" />
-
-### 今日哈工大 {#ha-er-bin-gong-ye-da-xue-jin-ri-ha-gong-da}
-
-<Route author="ranpox" example="/hit/today/10" path="/hit/today/:category" paramsDesc={['分类编号,`10`为公告公示,`11`为新闻快讯,同时支持详细分类,使用方法见下']} radar="1">
- :::tip
- 今日哈工大的文章分为公告公示和新闻快讯,每个页面右侧列出了更详细的分类,其编号为每个 URL 路径的最后一个数字。
- 例如会议讲座的路径为`/taxonomy/term/10/25`,则可以通过 [`/hit/today/25`](https://rsshub.app/hit/today/25) 订阅该详细类别。
- :::
-
- :::warning
- 部分文章需要经过统一身份认证后才能阅读全文。
- :::
-</Route>
-
-### 研究生院通知公告 {#ha-er-bin-gong-ye-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-
-<Route author="hlmu" example="/hit/hitgs" path="/hit/hitgs" radar="1" notOperational="1" />
-
-## 哈尔滨工业大学(深圳) {#ha-er-bin-gong-ye-da-xue-shen-zhen}
-
-### 新闻中心 {#ha-er-bin-gong-ye-da-xue-shen-zhen-xin-wen-zhong-xin}
-
-<Route author="xandery-geek" example="/hitsz/article/id-74" path="/hitsz/article/:category?" paramsDesc={['分类名,默认为校园动态']} radar="1" notOperational="1">
- | 校区要闻 | 媒体报道 | 综合新闻 | 校园动态 | 讲座论坛 | 热点专题 | 招标信息 | 重要关注 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | id-116 | id-80 | id-75 | id-77 | id-78 | id-79 | id-81 | id-124 |
-</Route>
-
-## 哈尔滨工业大学(威海) {#ha-er-bin-gong-ye-da-xue-wei-hai}
-
-### 今日工大 - 通知公告 {#ha-er-bin-gong-ye-da-xue-wei-hai-jin-ri-gong-da-tong-zhi-gong-gao}
-
-<Route author="raptazure" example="/hitwh/today" path="/hitwh/today" radar="1" anticrawler="1" />
-
-## 哈尔滨理工大学 {#ha-er-bin-li-gong-da-xue}
-
-### 教务处 {#ha-er-bin-li-gong-da-xue-jiao-wu-chu}
-
-<Route author="LenaNouzen" example="/hrbust/jwzx" path="/hrbust/jwzx/:type?/:page?" paramsDesc={['分类名,默认为教务公告', '文章数,默认为12']}>
- | 名师风采 | 热点新闻 | 教务公告 | 教学新闻 |
- | -------- | -------- | -------- | -------- |
- | 351 | 353 | 354 | 355 |
-</Route>
-
-## 海南大学 {#hai-nan-da-xue}
-
-### 硕士研究生招生动态 {#hai-nan-da-xue-shuo-shi-yan-jiu-sheng-zhao-sheng-dong-tai}
-
-<Route author="OdinZhang" example="/hainanu/ssszs" path="/hainanu/ssszs" />
-
-## 杭州电子科技大学 {#hang-zhou-dian-zi-ke-ji-da-xue}
-
-### 计算机学院 - 通知公告 {#hang-zhou-dian-zi-ke-ji-da-xue-ji-suan-ji-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="legr4ndk" example="/hdu/cs" path="/hdu/cs" radar="1" />
-
-### 计算机学院 - 研究生通知 {#hang-zhou-dian-zi-ke-ji-da-xue-ji-suan-ji-xue-yuan-yan-jiu-sheng-tong-zhi}
-
-<Route author="legr4ndk" example="/hdu/cs/pg" path="/hdu/cs/pg" radar="1" />
-
-## 合肥工业大学 {#he-fei-gong-ye-da-xue}
-
-### 通知公告 {#he-fei-gong-ye-da-xue-tong-zhi-gong-gao}
-
-<Route author="log-e" example="/hfut/tzgg" path="/hfut/tzgg" notOperational="1" />
-
-## 河海大学 {#he-hai-da-xue}
-
-### 河海大学图书馆 - 新闻动态 {#he-hai-da-xue-he-hai-da-xue-tu-shu-guan-xin-wen-dong-tai}
-
-<Route author="plusmultiply0" example="/hhu/libNews" path="/hhu/libNews" notOperational="1" />
-
-### 常州校区图书馆 - 新闻动态 {#he-hai-da-xue-chang-zhou-xiao-qu-tu-shu-guan-xin-wen-dong-tai}
-
-<Route author="plusmultiply0" example="/hhu/libNewsc" path="/hhu/libNewsc" notOperational="1" />
-
-## 河南财政金融学院 {#he-nan-cai-zheng-jin-rong-xue-yuan}
-
-### 河南财政金融学院 {#he-nan-cai-zheng-jin-rong-xue-yuan-he-nan-cai-zheng-jin-rong-xue-yuan}
-
-<Route author="WenPeiTung" example="/hafu/news/ggtz" path="/hafu/news/:type?" radar="1" paramsDesc={['分类,见下表(默认为 `ggtz`)']} anticrawler="1">
- | 校内公告通知 | 教务处公告通知 | 招生就业处公告通知 |
- | ------------ | -------------- | ------------------ |
- | ggtz | jwc | zsjyc |
-</Route>
-
-## 河南大学 {#he-nan-da-xue}
-
-### 河南大学 {#he-nan-da-xue-he-nan-da-xue}
-
-<Route author="CasterWx" example="/henu/xszl" path="/henu/:type" paramsDesc={['分类,见下表']} notOperational="1">
- | 学生专栏 | 教师专栏 | 新闻公告 | 院部动态 | 高教前沿 |
- | -------- | -------- | -------- | -------- | -------- |
- | xszl | jszl | xwgg | ybdt | gjqy |
-</Route>
-
-## 黑龙江中医药大学 {#hei-long-jiang-zhong-yi-yao-da-xue}
-
-### 研究生院 {#hei-long-jiang-zhong-yi-yao-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="nczitzk" example="/hljucm/yjsy" path="/hljucm/yjsy/:category?" paramsDesc={['分类, 见下表,默认为新闻动态']} radar="1" notOperational="1">
- | 新闻动态 | 通知公告 |
- | -------- | -------- |
- | xwdt | tzgg |
-</Route>
-
-## 湖北大学 {#hu-bei-da-xue}
-
-### 新闻通知 {#hu-bei-da-xue-xin-wen-tong-zhi}
-
-<Route author="cijiugechu" example="/hubu/news/zhxw" path="/universities/hubu/news/:type?" paramsDesc={['默认为 `zhxw`']} notOperational="1">
- | 综合新闻 | 湖大要闻 | 通知公告 | 学术学者学生 | 媒体湖大 |
- | -------- | -------- | -------- | ------------ | -------- |
- | zhxw | hdyw | tzgg | xsxzxs | mthd |
-</Route>
-
-## 湖北工业大学 {#hu-bei-gong-ye-da-xue}
-
-### 新闻中心 {#hu-bei-gong-ye-da-xue-xin-wen-zhong-xin}
-
-<Route author="Lava-Swimmer" example="/hbut/news/tzgg" path="/hbut/news/:type" radar="1" paramsDesc={['分类']} anticrawler="1">
- | 通知公告 | 湖工要闻 | 学术活动 | 媒体湖工大 | 综合新闻 | 湖工故事 |
- | -------- | -------- | -------- | ---------- | -------- | -------- |
- | tzgg | hgyw | xshd | mthgd | zhxw | hggs |
-</Route>
-
-### 计算机学院 {#hu-bei-gong-ye-da-xue-ji-suan-ji-xue-yuan}
-
-<Route author="Lava-Swimmer" example="/hbut/cs/xwdt" path="/hbut/cs/:type" radar="1" paramsDesc={['分类']} anticrawler="1">
- | 新闻动态 | 通知公告 | 教学信息 | 科研动态 | 党建活动 |
- | -------- | -------- | -------- | -------- | -------- |
- | xwdt | tzgg | jxxx | kydt | djhd |
-</Route>
-
-:::warning
-jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE\_TLS\_REJECT\_UNAUTHORIZED = 0
-:::
-
-## 湖南大学 {#hu-nan-da-xue}
-
-### 校园招聘 {#hu-nan-da-xue-xiao-yuan-zhao-pin}
-
-<Route author="ningyougan" example="/hnu/careers" path="/hnu/careers" />
-
-## 湖南科技大学 {#hu-nan-ke-ji-da-xue}
-
-### 教务处通知 {#hu-nan-ke-ji-da-xue-jiao-wu-chu-tong-zhi}
-
-<Route author="Pretty9" example="/hnust/jwc" path="/hnust/jwc" />
-
-### 计算机科学与工程学院通知 {#hu-nan-ke-ji-da-xue-ji-suan-ji-ke-xue-yu-gong-cheng-xue-yuan-tong-zhi}
-
-<Route author="Pretty9" example="/hnust/computer" path="/hnust/computer" anticrawler="1" />
-
-### 化学化工学院通知 {#hu-nan-ke-ji-da-xue-hua-xue-hua-gong-xue-yuan-tong-zhi}
-
-<Route author="OrbitZore" example="/hnust/chem" path="/hnust/chem" />
-
-### 艺术学院通知 {#hu-nan-ke-ji-da-xue-yi-shu-xue-yuan-tong-zhi}
-
-<Route author="Pretty9" example="/hnust/art" path="/hnust/art" />
-
-### 研究生院招生工作 {#hu-nan-ke-ji-da-xue-yan-jiu-sheng-yuan-zhao-sheng-gong-zuo}
-
-<Route author="Pretty9" example="/hnust/graduate/sszs" path="/hnust/graduate/:type?" paramsDesc={['默认为 `sszs`']} notOperational="1">
- | 硕士招生 | 博士招生 |
- | -------- | -------- |
- | sszs | bszs |
-</Route>
-
-## 湖南农业大学 {#hu-nan-nong-ye-da-xue}
-
-### 教务处 {#hu-nan-nong-ye-da-xue-jiao-wu-chu}
-
-<Route author="lcandy2" example="/hunau/jwc" path="/hunau/jwc/:category?/:page?" paramsDesc={['页面分类,默认为 `tzgg`', '页码,默认为 `1`']}>
- | 分类 | 通知公告 | 教务动态 | 其他教务通知... |
- | ---- | -------- | -------- | --------------- |
- | 参数 | tzgg | jwds | 对应 URL |
-</Route>
-
-### 国际交流与合作处、国际教育学院、港澳台事务办公室 {#hu-nan-nong-ye-da-xue-guo-ji-jiao-liu-yu-he-zuo-chu-guo-ji-jiao-yu-xue-yuan-gang-ao-tai-shi-wu-ban-gong-shi}
-
-<Route author="lcandy2" example="/hunau/ied" path="/hunau/ied/:type?/:category?/:page?" paramsDesc={['页面归属,默认为 `xwzx`','页面分类,默认为 `ggtz`', '页码,默认为 `1`']}>
- | 分类 | 公告通知 | 新闻快讯 | 其他分类... |
- | -------- | -------- | -------- | ----------- |
- | type | xwzx | xwzx | 对应 URL |
- | category | tzgg | xwkx | 对应 URL |
-</Route>
-
-### 公共管理与法学学院 {#hu-nan-nong-ye-da-xue-gong-gong-guan-li-yu-fa-xue-xue-yuan}
-
-<Route author="lcandy2" example="/hunau/gfxy" path="/hunau/gfxy/:category?/:page?" paramsDesc={['页面分类,默认为 `tzgg`', '页码,默认为 `1`']}>
- | 分类 | 通知公告 | 学院新闻 | 其他分类通知... |
- | ---- | -------- | -------- | --------------- |
- | 参数 | tzgg | xyxw | 对应 URL |
-</Route>
-
-### 信息与智能科学学院 {#hu-nan-nong-ye-da-xue-xin-xi-yu-zhi-neng-ke-xue-xue-yuan}
-
-<Route author="lcandy2" example="/hunau/xky" path="/hunau/xky/:category?/:page?" paramsDesc={['页面分类,默认为 `tzgg_8472`', '页码,默认为 `1`']}>
- | 分类 | 通知公告 | 学院新闻 | 其他分类通知... |
- | ---- | ---------- | -------- | --------------- |
- | 参数 | tzgg\_8472 | xyxw | 对应 URL |
-</Route>
-
-## 华北电力大学 {#hua-bei-dian-li-da-xue}
-
-### 北京校区研究生院 {#hua-bei-dian-li-da-xue-bei-jing-xiao-qu-yan-jiu-sheng-yuan}
-
-<Route author="nilleo" example="/ncepu/master/tzgg" path="/ncepu/master/:type" paramsDesc={['类型参数']}>
- | 类型 | 硕士招生信息 | 通知公告 | 研究生培养信息 |
- | ---- | ------------ | -------- | -------------- |
- | 参数 | zsxx | tzgg | pyxx |
-</Route>
-
-## 华北水利水电大学 {#hua-bei-shui-li-shui-dian-da-xue}
-
-### 学校通知 {#hua-bei-shui-li-shui-dian-da-xue-xue-xiao-tong-zhi}
-
-<Route author="vuhe" example="/ncwu/notice" path="/ncwu/notice" radar="1" />
-
-## 华东理工大学 {#hua-dong-li-gong-da-xue}
-
-### 研究生院通知公告 {#hua-dong-li-gong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/ecust/yjs" path="/ecust/yjs" radar="1" />
-
-### 继续教育学院 - 学院公告 {#hua-dong-li-gong-da-xue-ji-xu-jiao-yu-xue-yuan-xue-yuan-gong-gao}
-
-<Route author="jialinghui" example="/ecust/jxjy/news" path="/ecust/jxjy/news" radar="1" notOperational="1" />
-
-### 本科教务处信息网 {#hua-dong-li-gong-da-xue-ben-ke-jiao-wu-chu-xin-xi-wang}
-
-<Route author="lxl66566" example="/ecust/jwc/mto" path="/ecust/jwc/:category?" paramsDesc={['订阅板块,默认为全部订阅']}>
- | 其他任意值 | mto | mttb | gi | mpt | fai |
- | ---------- | ------------ | ------------------ | -------- | ------------ | ------------ |
- | 全部订阅 | 教学运行管理 | 培养与教学建设管理 | 综合信息 | 实践教学管理 | 学院教务信息 |
-</Route>
-
-## 华南理工大学 {#hua-nan-li-gong-da-xue}
-
-### 研究生院通知公告 {#hua-nan-li-gong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/scut/yjs" path="/scut/yjs" radar="1" anticrawler="1" />
-
-### 教务处通知公告 {#hua-nan-li-gong-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
-
-<Route author="imkero" example="/scut/jwc/notice/all" path="/scut/jwc/notice/:category?" paramsDesc={['通知分类,默认为 `all`']} notOperational="1">
- | 全部 | 选课 | 考试 | 实践 | 交流 | 教师 | 信息 |
- | ---- | ------ | ---- | -------- | ------------- | ------- | ---- |
- | all | course | exam | practice | communication | teacher | info |
-</Route>
-
-### 教务处学院通知 {#hua-nan-li-gong-da-xue-jiao-wu-chu-xue-yuan-tong-zhi}
-
-<Route author="imkero Rongronggg9" example="/scut/jwc/school/all" path="/scut/jwc/school/:category?" paramsDesc={['通知分类,默认为 `all`']} notOperational="1">
- | 全部 | 选课 | 考试 | 信息 |
- | ---- | ------ | ---- | ---- |
- | all | course | exam | info |
-</Route>
-
-### 教务处新闻动态 {#hua-nan-li-gong-da-xue-jiao-wu-chu-xin-wen-dong-tai}
-
-<Route author="imkero" example="/scut/jwc/news" path="/scut/jwc/news" anticrawler="1" />
-
-### 土木与交通学院 - 学工通知 {#hua-nan-li-gong-da-xue-tu-mu-yu-jiao-tong-xue-yuan-xue-gong-tong-zhi}
-
-<Route author="railzy" example="/scut/scet/notice" path="/scut/scet/notice" radar="1" notOperational="1" />
-
-### 电子与信息学院 - 新闻速递 {#hua-nan-li-gong-da-xue-dian-zi-yu-xin-xi-xue-yuan-xin-wen-su-di}
-
-<Route author="auto-bot-ty" example="/scut/seie/news_center" path="/scut/seie/news_center" radar="1" anticrawler="1" />
-
-:::warning
-由于学院官网对非大陆 IP 的访问存在限制,需自行部署。
-:::
-
-### 机械与汽车工程学院 - 通知公告 {#hua-nan-li-gong-da-xue-ji-xie-yu-qi-che-gong-cheng-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="Ermaotie" example="/scut/smae/yjsjw" path="/scut/smae/:category?" radar="1" paramsDesc={['通知分类,默认为 `yjsjw`']} anticrawler="1">
- | 公务信息 | 党建工作 | 人事工作 | 学生工作 | 科研实验室 | 本科生教务 | 研究生教务 |
- | -------- | -------- | -------- | -------- | ---------- | ---------- | ---------- |
- | gwxx | djgz | rsgz | xsgz | kysys | bksjw | yjsjw |
-</Route>
-
-## 华南农业大学 {#hua-nan-nong-ye-da-xue}
-
-### 华农研讯 {#hua-nan-nong-ye-da-xue-hua-nong-yan-xun}
-
-<Route author="shengmaosu" example="/scau/yzb" path="/scau/yzb" radar="1" />
-
-### 研究生院通知 {#hua-nan-nong-ye-da-xue-yan-jiu-sheng-yuan-tong-zhi}
-
-<Route author="Chunssu" example="/scau/yjsy" path="/scau/yjsy" radar="1" />
-
-## 华南师范大学 {#hua-nan-shi-fan-da-xue}
-
-### 软件学院通知公告 {#hua-nan-shi-fan-da-xue-ruan-jian-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/scnu/ss" path="/scnu/ss" radar="1" />
-
-### 研究生院通知公告 {#hua-nan-shi-fan-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/scnu/yjs" path="/scnu/yjs" radar="1" />
-
-### 教务处通知 {#hua-nan-shi-fan-da-xue-jiao-wu-chu-tong-zhi}
-
-<Route author="fengkx" example="/scnu/jw" path="/scnu/jw" radar="1" />
-
-### 图书馆通知 {#hua-nan-shi-fan-da-xue-tu-shu-guan-tong-zhi}
-
-<Route author="fengkx" example="/scnu/library" path="/scnu/library" radar="1" />
-
-### 计算机学院竞赛通知 {#hua-nan-shi-fan-da-xue-ji-suan-ji-xue-yuan-jing-sai-tong-zhi}
-
-<Route author="fengkx" example="/scnu/cs/match" path="/scnu/cs/match" radar="1" anticrawler="1" />
-
-### 物理与电信工程学院通知 {#hua-nan-shi-fan-da-xue-wu-li-yu-dian-xin-gong-cheng-xue-yuan-tong-zhi}
-
-<Route author="Shinonome28" example="/scnu/physics-school-announcements" path="/scnu/physics-school-announcements" anticrawler="1" />
-
-### 物理与电信工程学院新闻 {#hua-nan-shi-fan-da-xue-wu-li-yu-dian-xin-gong-cheng-xue-yuan-xin-wen}
-
-<Route author="Shinonome28" example="/scnu/physics-school-news" path="/scnu/physics-school-news" />
-
-### 物理与电信工程学院研究动态 {#hua-nan-shi-fan-da-xue-wu-li-yu-dian-xin-gong-cheng-xue-yuan-yan-jiu-dong-tai}
-
-<Route author="Shinonome28" example="/scnu/physics-school-research-news" path="/scnu/physics-school-research-news" />
-
-## 华中科技大学 {#hua-zhong-ke-ji-da-xue}
-
-### 研究生院通知公告 {#hua-zhong-ke-ji-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/hust/yjs" path="/hust/yjs" radar="1" anticrawler="1" />
-
-### 人工智能和自动化学院通知 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-tong-zhi}
-
-<Route author="budui" example="/hust/aia/notice" path="/hust/aia/notice/:type?" paramsDesc={['分区,默认为最新通知,可在网页 URL 中找到']} radar="1" anticrawler="1">
- | 最新 | 党政 | 科研 | 本科生 | 研究生 | 学工思政 | 离退休 |
- | ---- | ---- | ---- | ------ | ------ | -------- | ------ |
- | | dz | ky | bk | yjs | xgsz | litui |
-</Route>
-
-### 人工智能和自动化学院新闻 {#hua-zhong-ke-ji-da-xue-ren-gong-zhi-neng-he-zi-dong-hua-xue-yuan-xin-wen}
-
-<Route author="budui" example="/hust/aia/news" path="/hust/aia/news" radar="1" anticrawler="1" />
-
-## 华中师范大学 {#hua-zhong-shi-fan-da-xue}
-
-### 研究生通知公告 {#hua-zhong-shi-fan-da-xue-yan-jiu-sheng-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/ccnu/yjs" path="/ccnu/yjs" radar="1" notOperational="1" />
-
-### 计算机学院 {#hua-zhong-shi-fan-da-xue-ji-suan-ji-xue-yuan}
-
-<Route author="shengmaosu" example="/ccnu/cs" path="/ccnu/cs" radar="1" anticrawler="1" />
-
-### 伍论贡学院 {#hua-zhong-shi-fan-da-xue-wu-lun-gong-xue-yuan}
-
-<Route author="shengmaosu" example="/ccnu/wu" path="/ccnu/wu" radar="1" />
-
-### 就业信息 {#hua-zhong-shi-fan-da-xue-jiu-ye-xin-xi}
-
-<Route author="jackyu1996" example="/ccnu/career" path="/ccnu/career" radar="1" />
-
-## 吉林大学 {#ji-lin-da-xue}
-
-### 校内通知 {#ji-lin-da-xue-xiao-nei-tong-zhi}
-
-<Route author="276562578" example="/jlu/oa" path="/jlu" notOperational="1" />
-
-## 吉林工商学院 {#ji-lin-gong-shang-xue-yuan}
-
-### 主页 {#ji-lin-gong-shang-xue-yuan-zhu-ye}
-
-<Route author="nczitzk" example="/jlbtc" path="/jlbtc/:category?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 学院新闻 | 通知公告 | 媒体工商 | 博学讲堂 | 师生风采 |
- | -------- | -------- | -------- | -------- | -------- |
- | xyxw | tzgg | mtgs | bxjt | ssfc |
-</Route>
-
-### 科研处 {#ji-lin-gong-shang-xue-yuan-ke-yan-chu}
-
-<Route author="nczitzk" example="/jlbtc/kyc" path="/jlbtc/kyc/:category?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 通知公告 | 新闻动态 |
- | -------- | -------- |
- | tzgg | xwdt |
-</Route>
-
-### 教务处 {#ji-lin-gong-shang-xue-yuan-jiao-wu-chu}
-
-<Route author="nczitzk" example="/jlbtc/jwc" path="/jlbtc/jwc/:id?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 教务新闻 | 通知公告 | 教务工作 | 教师发展工作 | 学籍考务工作 | 教学基本建设 |
- | -------- | -------- | -------- | ------------ | ------------ | ------------ |
- | 1888 | 1887 | 1947 | 1949 | 2011 | 1948 |
-</Route>
-
-## 吉首大学 {#ji-shou-da-xue}
-
-### 通知公告 {#ji-shou-da-xue-tong-zhi-gong-gao}
-
-<Route author="wenjia03" example="/jsu/notice" path="/jsu/notice" />
-
-### 计算机科学与工程学院 - 通知公告 {#ji-shou-da-xue-ji-suan-ji-ke-xue-yu-gong-cheng-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="wenjia03" example="/jsu/rjxy" path="/jsu/rjxy" />
-
-### 教务处 {#ji-shou-da-xue-jiao-wu-chu}
-
-<Route author="wenjia03" example="/jsu/jwc/jwdt" path="/jsu/jwc/:types?" paramsDesc={['通知分类 默认为`jwtz`']}>
- | 教务通知 | 教务动态 |
- | -------- | -------- |
- | jwtz | jwdt |
-</Route>
-
-### 数学与统计学院 - 通知公告 {#ji-shou-da-xue-shu-xue-yu-tong-ji-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="wenjia03" example="/jsu/stxy" path="/jsu/stxy" />
-
-### 创新中心 {#ji-shou-da-xue-chuang-xin-zhong-xin}
-
-<Route author="wenjia03" example="/cxzx/xkjs" path="/cxzx/:types?" paramsDesc={['通知分类 默认为`xkjs`']}>
- | 通知公告 | 学科竞赛公告 | 创新项目公告 | 竞赛新闻 | 竞赛通知 |
- | -------- | ------------ | ------------ | -------- | -------- |
- | tzgg | xkjs | cxtz | jsxw | jstz |
-</Route>
-
-## 暨南大学 {#ji-nan-da-xue}
-
-### 暨南要闻 {#ji-nan-da-xue-ji-nan-yao-wen}
-
-<Route author="hang333" example="/jnu/yw/tt" path="/jnu/yw/:type?" paramsDesc={['暨南要闻类型,默认为 `yw`']}>
- | 暨大头条 | 暨南要闻 |
- | -------- | -------- |
- | tt | yw |
-</Route>
-
-### 校园时讯 {#ji-nan-da-xue-xiao-yuan-shi-xun}
-
-<Route author="hang333" example="/jnu/xysx/yxsd" path="/jnu/xysx/:type" paramsDesc={['校园时讯类型']}>
- | 院系速递 | 部门快讯 |
- | -------- | -------- |
- | yxsd | bmkx |
-</Route>
-
-## 江南大学 {#jiang-nan-da-xue}
-
-### 教务处通知 {#jiang-nan-da-xue-jiao-wu-chu-tong-zhi}
-
-<Route author="fuzy112" example="/ju/jwc/all" path="/ju/jwc/:type?" paramsDesc={['默认为 `all`']} anticrawler="1">
- | all | tzgg | ksap | wjgg | tmgz | djks | xjgl | bysj | syjs |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 全部 | 通知公告 | 考试安排 | 违纪公告 | 推免工作 | 等级考试 | 学籍管理 | 毕业设计 | 实验教学 |
-
- | sjcx | xkjs | yjszj | jxgg | zyjs | kcjs | jcjs | jxcg | xsbg |
- | -------- | -------- | ---------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 实践创新 | 学科竞赛 | 研究生助教 | 教学改革 | 专业建设 | 课程建设 | 教材建设 | 教学成果 | 学术报告 |
-</Route>
-
-## 江苏海洋大学 {#jiang-su-hai-yang-da-xue}
-
-### 官网通知公告 {#jiang-su-hai-yang-da-xue-guan-wang-tong-zhi-gong-gao}
-
-<Route author="real-jiakai" example="/jou/tzgg" path="/jou/tzgg" radar="1" />
-
-### 研招网通知公告 {#jiang-su-hai-yang-da-xue-yan-zhao-wang-tong-zhi-gong-gao}
-
-<Route author="real-jiakai" example="/jou/yztzgg" path="/jou/yztzgg" radar="1" />
-
-## 井冈山大学 {#jing-gang-shan-da-xue}
-
-### 教务处通知 {#jing-gang-shan-da-xue-jiao-wu-chu-tong-zhi}
-
-<Route author="butten42" example="/jgsu/jwc" path="/jgsu/jwc" notOperational="1" />
-
-## 昆明理工大学 {#kun-ming-li-gong-da-xue}
-
-### 教务处 {#kun-ming-li-gong-da-xue-jiao-wu-chu}
-
-<Route author="geekrainy" example="/kmust/jwc/notify" path="/kmust/jwc/:type?" paramsDesc={['默认为 `notify`']} notOperational="1">
- | 教务通知 | 教务新闻 |
- | -------- | -------- |
- | notify | news |
-</Route>
-
-### 宣讲会 {#kun-ming-li-gong-da-xue-xuan-jiang-hui}
-
-<Route author="geekrainy" example="/kmust/job/careers/inner" path="/kmust/job/careers/:type?" paramsDesc={['默认为 `inner`']}>
- | 校内宣讲会 | 校外宣讲会 |
- | ---------- | ---------- |
- | inner | outer |
-</Route>
-
-### 双选会 {#kun-ming-li-gong-da-xue-shuang-xuan-hui}
-
-<Route author="geekrainy" example="/kmust/job/jobfairs" path="/kmust/job/jobfairs" />
-
-## 乐山师范学院 {#le-shan-shi-fan-xue-yuan}
-
-### 教学部通知公告 {#le-shan-shi-fan-xue-yuan-jiao-xue-bu-tong-zhi-gong-gao}
-
-<Route author="nyaShine" example="/lsnu/jiaowc/tzgg" path="/lsnu/jiaowc/tzgg/:category?" paramsDesc={['分类名']} radar="1" notOperational="1">
- | 实践教学科 | 教育运行科 | 教研教改科 | 学籍管理科 | 考试科 | 教材建设管理科 |
- | ---------- | ---------- | ---------- | ---------- | ------ | -------------- |
- | sjjxk | jxyxk | jyjgk | xjglk | ksk | jcjsglk |
-</Route>
-
-## 辽宁工程技术大学 {#liao-ning-gong-cheng-ji-shu-da-xue}
-
-### 教务公告 {#liao-ning-gong-cheng-ji-shu-da-xue-jiao-wu-gong-gao}
-
-<Route author="ikvarxt" example="/lntu/jwnews" path="/lntu/jwnews" notOperational="1" />
-
-## 临沂大学 {#lin-yi-da-xue}
-
-### 新闻 {#lin-yi-da-xue-xin-wen}
-
-<Route author="ueiu" example="/lyu/news/ldyw" path="/lyu/news/:type" paramsDesc={['分类名']} notOperational="1">
- | 临大要闻 | 信息公告 |
- | -------- | -------- |
- | ldyw | xxgg |
-</Route>
-
-## 洛阳理工学院 {#luo-yang-li-gong-xue-yuan}
-
-### 教务处 {#luo-yang-li-gong-xue-yuan-jiao-wu-chu}
-
-<Route author="vhxubo" example="/lit/jwc" path="/lit/jwc" notOperational="1" />
-
-### 新闻中心 {#luo-yang-li-gong-xue-yuan-xin-wen-zhong-xin}
-
-<Route author="vhxubo" example="/lit/xwzx" path="/lit/xwzx/:name?" paramsDesc={['默认为 `all`']} notOperational="1">
- | 全部 | 公告通知 | 新闻快讯 | 学术信息 | 媒体新闻 |
- | ---- | -------- | -------- | -------- | -------- |
- | all | ggtz | xwkx | xsxx | mtxw |
-</Route>
-
-### 团委 {#luo-yang-li-gong-xue-yuan-tuan-wei}
-
-<Route author="vhxubo" example="/lit/tw" path="/lit/tw/:name?" paramsDesc={['默认为 `all`']}>
- | 全部 | 团内通知 | 青年快讯 |
- | ---- | -------- | -------- |
- | all | tntz | qnkx |
-</Route>
-
-## 南昌大学 {#nan-chang-da-xue}
-
-### 教务通知 {#nan-chang-da-xue-jiao-wu-tong-zhi}
-
-<Route author="ywh555hhh" example="/ncu/jwc" path="/ncu/jwc" radar="1" />
-
-## 南昌航空大学 {#nan-chang-hang-kong-da-xue}
-
-### 教务处公告与新闻 {#nan-chang-hang-kong-da-xue-jiao-wu-chu-gong-gao-yu-xin-wen}
-
-<Route author="Sg4Dylan" example="/nchu/jwc/notice" path="/nchu/jwc/:type?" paramsDesc={['默认为 `notice`']} notOperational="1">
- | 教务公告 | 教务新闻 |
- | -------- | -------- |
- | notice | news |
-</Route>
-
-## 南方科技大学 {#nan-fang-ke-ji-da-xue}
-
-### 研究生网通知公告 {#nan-fang-ke-ji-da-xue-yan-jiu-sheng-wang-tong-zhi-gong-gao}
-
-<Route author="shengmaosu" example="/sustech/yjs" path="/sustech/yjs" radar="1" />
-
-### 新闻网(中文) {#nan-fang-ke-ji-da-xue-xin-wen-wang-zhong-wen}
-
-<Route author="sparkcyf" example="/sustech/newshub-zh" path="/sustech/newshub-zh" radar="1" />
-
-### 采购与招标管理部 {#nan-fang-ke-ji-da-xue-cai-gou-yu-zhao-biao-guan-li-bu}
-
-<Route author="sparkcyf" example="/sustech/bidding" path="/sustech/bidding" radar="1" />
-
-## 南京大学 {#nan-jing-da-xue}
-
-### 本科生院 {#nan-jing-da-xue-ben-ke-sheng-yuan}
-
-<Route author="ret-1" example="/nju/jw/ggtz" path="/nju/jw/:type" paramsDesc={['分类名']}>
- | 公告通知 | 教学动态 |
- | -------- | -------- |
- | ggtz | jxdt |
-</Route>
-
-### 研究生院 {#nan-jing-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="ret-1" example="/nju/gra" path="/nju/gra" />
-
-### 人才招聘网 {#nan-jing-da-xue-ren-cai-zhao-pin-wang}
-
-<Route author="ret-1" example="/nju/rczp/xxfb" path="/nju/rczp/:type" paramsDesc={['分类名']}>
- | 信息发布 | 教研类岗位 | 管理岗位及其他 |
- | -------- | ---------- | -------------- |
- | xxfb | jylgw | gllgw |
-</Route>
-
-### 科学技术处 {#nan-jing-da-xue-ke-xue-ji-shu-chu}
-
-<Route author="ret-1" example="/nju/scit/tzgg" path="/nju/scit/:type" paramsDesc={['分类名']}>
- | 通知公告 | 科研动态 |
- | -------- | -------- |
- | tzgg | kydt |
-</Route>
-
-### 资产管理处 {#nan-jing-da-xue-zi-chan-guan-li-chu}
-
-<Route author="ret-1" example="/nju/zcc" path="/nju/zcc" />
-
-### 招标办公室 {#nan-jing-da-xue-zhao-biao-ban-gong-shi}
-
-<Route author="ret-1" example="/nju/zbb/cgxx" path="/nju/zbb/:type" paramsDesc={['分类名']}>
- | 采购信息 | 成交公示 | 政府采购意向公开 |
- | -------- | -------- | ---------------- |
- | cgxx | cjgs | zfcgyxgk |
-</Route>
-
-### 基建处 {#nan-jing-da-xue-ji-jian-chu}
-
-<Route author="ret-1" example="/nju/jjc" path="/nju/jjc" />
-
-### 本科迎新 {#nan-jing-da-xue-ben-ke-ying-xin}
-
-<Route author="ret-1" example="/nju/admission" path="/nju/admission" />
-
-### 后勤集团 {#nan-jing-da-xue-hou-qin-ji-tuan}
-
-<Route author="ret-1" example="/nju/hqjt" path="/nju/hqjt" notOperational="1" />
-
-### 大学外语部 {#nan-jing-da-xue-da-xue-wai-yu-bu}
-
-<Route author="ret-1" example="/nju/dafls" path="/nju/dafls" />
-
-### 本科生交换生系统 {#nan-jing-da-xue-ben-ke-sheng-jiao-huan-sheng-xi-tong}
-
-<Route author="cqjjjzr" example="/nju/exchangesys/proj" path="/nju/exchangesys/:type" paramsDesc={['分类名']} notOperational="1">
- | 新闻通知 | 交换生项目 |
- | -------- | ---------- |
- | news | proj |
-</Route>
-
-### 校医院 {#nan-jing-da-xue-xiao-yi-yuan}
-
-<Route author="ret-1" example="/nju/hospital" path="/nju/hospital" />
-
-### ITSC 信息中心 {#nan-jing-da-xue-itsc-xin-xi-zhong-xin}
-
-<Route author="ret-1" example="/nju/itsc" path="/nju/itsc" />
-
-## 南京工程学院 {#nan-jing-gong-cheng-xue-yuan}
-
-### 南京工程学院通知公告 {#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-tong-zhi-gong-gao}
-
-<Route author="zefengdaguo" example="/njit/tzgg" path="/njit/tzgg" />
-
-### 南京工程学院教务处 {#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-jiao-wu-chu}
-
-<Route author="zefengdaguo" example="/njit/jwc/jx" path="/njit/jwc/:type?" paramsDesc={['默认为 `jx`']} notOperational="1" />
-
-| 教学 | 考试 | 信息 | 实践 |
-| ---- | ---- | ---- | ---- |
-| jx | ks | xx | sj |
-
-## 南京工业大学 {#nan-jing-gong-ye-da-xue}
-
-### 南京工业大学教务处 {#nan-jing-gong-ye-da-xue-nan-jing-gong-ye-da-xue-jiao-wu-chu}
-
-<Route author="TrumanGu" example="/njtech/jwc" path="/njtech/jwc" notOperational="1" />
-
-## 南京航空航天大学 {#nan-jing-hang-kong-hang-tian-da-xue}
-
-### 教务处 {#nan-jing-hang-kong-hang-tian-da-xue-jiao-wu-chu}
-
-<Route author="arcosx Seiry qrzbing Xm798" example="/nuaa/jwc/tzgg/getDescription" path="/nuaa/jwc/:type/:getDescription?" paramsDesc={['分类名,见下表', '是否获取全文']} puppeteer="1" radar="1">
- | 通知公告 | 教学服务 | 教学建设 | 学生培养 | 教学资源 |
- | -------- | -------- | -------- | -------- | -------- |
- | tzgg | jxfw | jxjs | xspy | jxzy |
-</Route>
-
-### 研究生院 {#nan-jing-hang-kong-hang-tian-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="junfengP Seiry Xm798" example="/nuaa/yjsy/tzgg/getDescription" path="/nuaa/yjsy/:type/:getDescription?" paramsDesc={['分类名,见下表', '是否获取全文']} puppeteer="1" radar="1">
- | 通知公告 | 新闻动态 | 学术信息 | 师生风采 |
- | -------- | -------- | -------- | -------- |
- | tzgg | xwdt | xsxx | ssfc |
-</Route>
-
-### 自动化学院 {#nan-jing-hang-kong-hang-tian-da-xue-zi-dong-hua-xue-yuan}
-
-<Route author="Xm798" example="/nuaa/cae/zhxw" path="/nuaa/cs/:type/:getDescription?" paramsDesc={['分类名,见下表', '是否获取全文']} puppeteer="1" radar="1" notOperational="1">
- | 综合新闻 | 党委行政 | 人事 / 合作 | 研究生培养 | 本科生培养 | 学生工作 | 通知公告 | 学术信息 | 答辩公告 |
- | -------- | -------- | ----------- | ---------- | ---------- | -------- | -------- | -------- | -------- |
- | zhxw | dwxz | rshz | yjs | bks | xsgz | tzgg | xsxx | dbgg |
-</Route>
-
-### 计算机科学与技术学院 {#nan-jing-hang-kong-hang-tian-da-xue-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan}
-
-<Route author="LogicJake Seiry qrzbing Xm798" example="/nuaa/cs/jxdt" path="/nuaa/cs/:type/:getDescription?" paramsDesc={['分类名,见下表', '是否获取全文']} puppeteer="1" radar="1">
- | 通知公告 | 热点新闻 | 学科科研 | 教学动态 | 本科生培养 | 研究生培养 | 学生工作 |
- | -------- | -------- | -------- | -------- | ---------- | ---------- | -------- |
- | tzgg | rdxw | xkky | jxdt | be | me | xsgz |
-</Route>
-
-## 南京理工大学 {#nan-jing-li-gong-da-xue}
-
-### 教务处 {#nan-jing-li-gong-da-xue-jiao-wu-chu}
-
-<Route author="MilkShakeYoung jasongzy" example="/njust/jwc/xstz" path="/njust/jwc/:type?" paramsDesc={['分类名,见下表,默认为学生通知']} radar="1" puppeteer="1">
- | 教师通知 | 学生通知 | 新闻 | 学院动态 |
- | -------- | -------- | ---- | -------- |
- | jstz | xstz | xw | xydt |
-</Route>
-
-### 财务处 {#nan-jing-li-gong-da-xue-cai-wu-chu}
-
-<Route author="MilkShakeYoung jasongzy" example="/njust/cwc/tzgg" path="/njust/cwc/:type?" paramsDesc={['分类名,见下表,默认为通知公告']} radar="1" puppeteer="1" notOperational="1">
- | 通知公告 | 办事流程 |
- | -------- | -------- |
- | tzgg | bslc |
-</Route>
-
-### 研究生院 {#nan-jing-li-gong-da-xue-yan-jiu-sheng-yuan}
-
-<Route author="MilkShakeYoung jasongzy" example="/njust/gs/sytzgg_4568" path="/njust/gs/:type?" paramsDesc={['分类 ID,部分示例参数见下表,默认为首页通知公告,其他分类 ID 可以从网站 URL Path 中找到,如国际交流为 `gjjl`']} radar="1" puppeteer="1">
- | 首页通知公告 | 首页新闻动态 | 最新通知 | 招生信息 | 培养信息 | 学术活动 |
- | ------------ | ------------ | -------- | -------- | -------- | -------- |
- | sytzgg\_4568 | sytzgg | 14686 | 14687 | 14688 | xshdggl |
-</Route>
-
-### 电光学院 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan}
-
-<Route author="jasongzy" example="/njust/eoe/tzgg" path="/njust/eoe/:type?" paramsDesc={['分类名,见下表,默认为通知公告']} radar="1" puppeteer="1">
- | 通知公告 | 新闻动态 |
- | -------- | -------- |
- | tzgg | xwdt |
-</Route>
-
-### 电光学院研学网 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan-yan-xue-wang}
-
-<Route author="jasongzy" example="/njust/dgxg/gstz" path="/njust/dgxg/:type?" paramsDesc={['分类名,见下表,默认为公示通知']} radar="1" puppeteer="1">
- | 公示通知 | 学术文化 | 就业指导 |
- | -------- | -------- | -------- |
- | gstz | xswh | jyzd |
-</Route>
-
-### 电光学院年级网站 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan-nian-ji-wang-zhan}
-
-<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" puppeteer="1" notOperational="1">
- `grade` 列表:
-
- | 本科 2016 级 | 本科 2017 级 | 本科 2018 级 | 本科 2019 级 |
- | ------------ | ------------ | ------------ | ------------ |
- | 16 | 17 | 18 | 19 |
-
- `type` 列表:
-
- | 年级通知(通知公告) | 每日动态(主任寄语) |
- | -------------------- | -------------------- |
- | tz | dt |
-</Route>
-
-## 南京林业大学 {#nan-jing-lin-ye-da-xue}
-
-### 教务处 {#nan-jing-lin-ye-da-xue-jiao-wu-chu}
-
-<Route author="kiusiudeng" example="/njfu/jwc/1798" path="/njfu/jwc/:category?" paramsDesc={['省略则默认为tzgg']} notOperational="1">
- | 校级发文 | 通知公告 | 上级发文 | 下载专区 |
- | -------- | -------- | -------- | -------- |
- | xjfw | tzgg | sjfw | xzzq |
-</Route>
-
-## 南京师范大学 {#nan-jing-shi-fan-da-xue}
-
-### 教务通知 {#nan-jing-shi-fan-da-xue-jiao-wu-tong-zhi}
-
-<Route author="Shujakuinkuraudo" example="/njnu/jwc/xstz" path="/njnu/jwc/:type" paramsDesc={['分类名']} notOperational="1">
- | 教师通知 | 新闻动态 | 学生通知 |
- | -------- | -------- | -------- |
- | jstz | xwdt | xstz |
-</Route>
-
-### 计算机与电子信息学院 - 人工智能学院 {#nan-jing-shi-fan-da-xue-ji-suan-ji-yu-dian-zi-xin-xi-xue-yuan-ren-gong-zhi-neng-xue-yuan}
-
-<Route author="Shujakuinkuraudo" example="/njnu/ceai/xszx" path="/njnu/ceai/:type" paramsDesc={['分类名']} notOperational="1">
- | 学院公告 | 学院新闻 | 学生资讯 |
- | -------- | -------- | -------- |
- | xygg | xyxw | xszx |
-</Route>
-
-## 南京晓庄学院 {#nan-jing-xiao-zhuang-xue-yuan}
-
-### 官网通知公告 {#nan-jing-xiao-zhuang-xue-yuan-guan-wang-tong-zhi-gong-gao}
-
-<Route author="real-jiakai" example="/njxzc/tzgg" path="/njxzc/tzgg" radar="1" anticrawler="1" />
-
-### 图书馆通知公告 {#nan-jing-xiao-zhuang-xue-yuan-tu-shu-guan-tong-zhi-gong-gao}
-
-<Route author="real-jiakai" example="/njxzc/libtzgg" path="/njxzc/libtzgg" radar="1" anticrawler="1" />
-
-## 南京信息工程大学 {#nan-jing-xin-xi-gong-cheng-da-xue}
-
-:::tip
-路由地址全部按照 **学校官网域名和栏目编号** 设计
-
-使用方法:
-
-以[南信大信息公告栏](https://bulletin.nuist.edu.cn)为例,点开任意一个栏目
-
-获得 URL 中的**分域名**和**栏目编号(可选)**:https\://`bulletin`.nuist.edu.cn/`791`/list.htm
-
-将其替换到 RSS 路由地址中即可:
-
-[https://rsshub.app/**nuist**/`bulletin`](https://rsshub.app/nuist/bulletin) 或 [https://rsshub.app/**nuist**/`bulletin`/`791`](https://rsshub.app/nuist/bulletin)
-:::
-
-### 南信大信息公告栏 {#nan-jing-xin-xi-gong-cheng-da-xue-nan-xin-da-xin-xi-gong-gao-lan}
-
-<Route author="gylidian" example="/nuist/bulletin/791" path="/nuist/bulletin/:category?" paramsDesc={['默认为 `791`']} radar="1" anticrawler="1">
- | 全部 | 文件公告 | 学术报告 | 招标信息 | 会议通知 | 党政事务 | 组织人事 |
- | ---- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 791 | 792 | xsbgw | 779 | 780 | 781 | 782 |
-
- | 科研信息 | 招生就业 | 教学考试 | 专题讲座 | 校园活动 | 学院动态 | 其他 |
- | -------- | -------- | -------- | -------- | -------- | -------- | ---- |
- | 783 | 784 | 785 | 786 | 788 | 789 | qt |
-
- :::warning
- 全文内容需使用 校园网或[VPN](http://vpn.nuist.edu.cn) 获取
- :::
-</Route>
-
-### NUIST CS(南信大计软院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-cs-nan-xin-da-ji-ruan-yuan}
-
-<Route author="gylidian" example="/nuist/scs/xwkx" path="/nuist/scs/:category?" paramsDesc={['默认为新闻快讯']} radar="1">
- | 新闻快讯 | 通知公告 | 教务信息 | 科研动态 | 学子风采 |
- | -------- | -------- | -------- | -------- | -------- |
- | xwkx | tzgg | jwxx | kydt | xzfc |
-</Route>
-
-### 教务处 {#nan-jing-xin-xi-gong-cheng-da-xue-jiao-wu-chu}
-
-<Route author="gylidian" example="/nuist/jwc/jxyw" path="/nuist/jwc/:category?" paramsDesc={['默认为教学要闻']} radar="1" anticrawler="1">
- | 教学要闻 | 学院教学 | 教务管理 | 教学研究 | 教务管理 | 教材建设 | 考试中心 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | jxyw | xyjx | jwgl | jxyj | sjjx | jcjs | kszx |
-</Route>
-
-### 研究生院学科建设处 {#nan-jing-xin-xi-gong-cheng-da-xue-yan-jiu-sheng-yuan-xue-ke-jian-she-chu}
-
-<Route author="gylidian nczitzk" example="/nuist/yjs/index/tzgg" path="/nuist/yjs/:path+" paramsDesc={['默认为通知公告']} notOperational="1">
- :::tip
- 路径字段处填写的是对应南京信息工程大学研究生院学科建设处分类页网址中介于 **`https://yjs.nuist.edu.cn/`** 和 **.htm** 中间的一段。
-
- 如 [南京信息工程大学研究生院学科建设处工作动态](https://yjs.nuist.edu.cn/index/gzdt.htm) 的网址为 `https://yjs.nuist.edu.cn/index/gzdt.htm` 其中介于 **`https://yjs.nuist.edu.cn/`** 和 **.htm** 中间的一段为 `index/gzdt`。可以得到路由为 [`/nuist/yjs/index/gzdt`](https://rsshub.app/nuist/yjs/index/gzdt)
- :::
-
- 以下为部分分类:
-
- | 工作动态 | 通知公告 | 招生工作 | 培养与学位 | 学生工作 |
- | ---------- | ---------- | --------- | ---------- | ---------- |
- | index/gzdt | index/tzgg | zsgz/sszs | xwgz/xwtz | xsgz1/xzfc |
-</Route>
-
-### 南信大学生工作处 {#nan-jing-xin-xi-gong-cheng-da-xue-nan-xin-da-xue-sheng-gong-zuo-chu}
-
-<Route author="gylidian" example="/nuist/xgc" path="/nuist/xgc" />
-
-### NUIST ESE(南信大环科院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-ese-nan-xin-da-huan-ke-yuan}
-
-<Route author="gylidian" example="/nuist/sese/tzgg1" path="/nuist/sese/:category?" paramsDesc={['默认为通知公告']} radar="1" anticrawler="1">
- | 通知公告 | 新闻快讯 | 学术动态 | 学生工作 | 研究生教育 | 本科教育 |
- | -------- | -------- | -------- | -------- | ---------- | -------- |
- | tzgg1 | xwkx | xsdt1 | xsgz1 | yjsjy1 | bkjy1 |
-</Route>
-
-### NUIST AS(南信大大气科学学院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-as-nan-xin-da-da-qi-ke-xue-xue-yuan}
-
-<Route author="gylidian" example="/nuist/cas/xxgg" path="/nuist/cas/:category?" paramsDesc={['默认为信息公告']} radar="1" anticrawler="1">
- | 信息公告 | 新闻快讯 | 科学研究 | 网上公示 | 本科教育 | 研究生教育 |
- | -------- | -------- | -------- | -------- | -------- | ---------- |
- | xxgg | xwkx | kxyj | wsgs | bkjy | yjsjy |
-</Route>
-
-### 南京信息工程大学图书馆 {#nan-jing-xin-xi-gong-cheng-da-xue-nan-jing-xin-xi-gong-cheng-da-xue-tu-shu-guan}
-
-<Route author="gylidian" example="/nuist/lib" path="/nuist/library/lib" notOperational="1" />
-
-## 南京邮电大学 {#nan-jing-you-dian-da-xue}
-
-### 教务处通知与新闻 {#nan-jing-you-dian-da-xue-jiao-wu-chu-tong-zhi-yu-xin-wen}
-
-<Route author="shaoye" example="/njupt/jwc/notice" path="/njupt/jwc/:type?" paramsDesc={['默认为 `notice`']}>
- | 通知公告 | 教务快讯 |
- | -------- | -------- |
- | notice | news |
-</Route>
-
-## 南京中医药大学 {#nan-jing-zhong-yi-yao-da-xue}
-
-### 研究生院博士招生 {#nan-jing-zhong-yi-yao-da-xue-yan-jiu-sheng-yuan-bo-shi-zhao-sheng}
-
-<Route author="real-jiakai" example="/njucm/grabszs" path="/njucm/grabszs" radar="1" anticrawler="1" />
-
-## 南开大学 {#nan-kai-da-xue}
-
-### 南开大学教务处 {#nan-kai-da-xue-nan-kai-da-xue-jiao-wu-chu}
+### 教务处 {#ji-shou-da-xue-jiao-wu-chu}
-<Route author="zhongweili" example="/nku/jwc/1" path="/nku/jwc/:type" paramsDesc={['分区 type,可在网页 URL 中找到']}>
- | 通知公告 | 新闻动态 |
- | -------- | -------- |
- | 1 | 2 |
-</Route>
+<Route data={{"path":"/jwc/:types?","categories":["university"],"example":"/jsu/jwc/jwdt","parameters":{"types":"通知分类 默认为`jwtz`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["wenjia03"],"description":"| 教务通知 | 教务动态 |\n | -------- | -------- |\n | jwtz | jwdt |","location":"jwc.ts"}} />
-## 齐鲁工业大学 {#qi-lu-gong-ye-da-xue}
+| 教务通知 | 教务动态 |
+| -------- | -------- |
+| jwtz | jwdt |
-### 通知公告 {#qi-lu-gong-ye-da-xue-tong-zhi-gong-gao}
+### 数学与统计学院 - 通知公告 {#ji-shou-da-xue-shu-xue-yu-tong-ji-xue-yuan-tong-zhi-gong-gao}
-<Route author="SunBK201" example="/qlu/notice" path="/qlu/notice" radar="1" />
+<Route data={{"path":"/stxy","categories":["university"],"example":"/jsu/stxy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"数学与统计学院 - 通知公告","maintainers":["wenjia03"],"location":"math.ts"}} />
-## 青岛大学 {#qing-dao-da-xue}
+### 通知公告 {#ji-shou-da-xue-tong-zhi-gong-gao}
-### 教务处通知 {#qing-dao-da-xue-jiao-wu-chu-tong-zhi}
+<Route data={{"path":"/notice","categories":["university"],"example":"/jsu/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"通知公告","maintainers":["wenjia03"],"location":"universityindex.ts"}} />
-<Route author="abc1763613206" example="/qdu/jwc" path="/qdu/jwc" radar="1" anticrawler="1" />
+## 江苏海洋大学 {#jiang-su-hai-yang-da-xue}
-### 后勤管理处通知 {#qing-dao-da-xue-hou-qin-guan-li-chu-tong-zhi}
+### 官网通知公告 {#jiang-su-hai-yang-da-xue-guan-wang-tong-zhi-gong-gao}
-<Route author="abc1763613206" example="/qdu/houqin" path="/qdu/houqin" radar="1" />
+<Route data={{"path":"/tzgg","categories":["university"],"example":"/jou/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.jou.edu.cn/index/tzgg.htm","www.jou.edu.cn/"]},"name":"官网通知公告","maintainers":["real-jiakai"],"url":"www.jou.edu.cn/index/tzgg.htm","location":"home.ts"}} />
-## 青岛科技大学 {#qing-dao-ke-ji-da-xue}
+### 研招网通知公告 {#jiang-su-hai-yang-da-xue-yan-zhao-wang-tong-zhi-gong-gao}
-### 教务通知 {#qing-dao-ke-ji-da-xue-jiao-wu-tong-zhi}
+<Route data={{"path":"/yztzgg","categories":["university"],"example":"/jou/yztzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.jou.edu.cn/index/zxgg.htm","yz.jou.edu.cn/"]},"name":"研招网通知公告","maintainers":["real-jiakai"],"url":"yz.jou.edu.cn/index/zxgg.htm","location":"yz.ts"}} />
-<Route author="Silent-wqh" example="/qust/jw" path="/qust/jw" radar="1" />
+## 乐山师范学院 {#le-shan-shi-fan-xue-yuan}
-## 清华大学 {#qing-hua-da-xue}
+### 教学部通知公告 {#le-shan-shi-fan-xue-yuan-jiao-xue-bu-tong-zhi-gong-gao}
-### 清华大学校内信息发布平台 {#qing-hua-da-xue-qing-hua-da-xue-xiao-nei-xin-xi-fa-bu-ping-tai}
+<Route data={{"path":"/jiaowc/tzgg/:category?","categories":["university"],"example":"/lsnu/jiaowc/tzgg","parameters":{"category":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lsnu.edu.cn/"],"target":"/jiaowc/tzgg"},"name":"教学部通知公告","maintainers":["nyaShine"],"url":"lsnu.edu.cn/","description":"| 实践教学科 | 教育运行科 | 教研教改科 | 学籍管理科 | 考试科 | 教材建设管理科 |\n | ---------- | ---------- | ---------- | ---------- | ------ | -------------- |\n | sjjxk | jxyxk | jyjgk | xjglk | ksk | jcjsglk |","location":"jiaowc/tzgg.ts"}} />
-<Route author="prnake" example="/thu/zhongyao" path="/thu/:type" paramsDesc={['默认为重要公告']} notOperational="1">
- | 重要公告 | 教务公告 | 科研通知 | 办公通知 | 海报列表 | 疫情防控 |
- | -------- | -------- | -------- | -------- | -------- | :------: |
- | zhongyao | jiaowu | keyan | bangong | haibao | yiqing |
-</Route>
+| 实践教学科 | 教育运行科 | 教研教改科 | 学籍管理科 | 考试科 | 教材建设管理科 |
+| ---------- | ---------- | ---------- | ---------- | ------ | -------------- |
+| sjjxk | jxyxk | jyjgk | xjglk | ksk | jcjsglk |
-:::warning
-由于学校通知仅允许校园网访问,需自行部署。
-:::
+## 南昌大学 {#nan-chang-da-xue}
-### 清华大学招聘信息 {#qing-hua-da-xue-qing-hua-da-xue-zhao-pin-xin-xi}
+### 教务通知 {#nan-chang-da-xue-jiao-wu-tong-zhi}
-<Route author="Halcao DylanXie123" example="/thu/career" path="/thu/career" notOperational="1" />
+<Route data={{"path":"/jwc","categories":["university"],"example":"/ncu/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.ncu.edu.cn/","jwc.ncu.edu.cn/jwtz/index.htm"]},"name":"教务通知","maintainers":["ywh555hhh"],"url":"jwc.ncu.edu.cn/","location":"jwc.ts"}} />
-## 厦门大学 {#xia-men-da-xue}
+## 南方科技大学 {#nan-fang-ke-ji-da-xue}
-### 航空航天学院 {#xia-men-da-xue-hang-kong-hang-tian-xue-yuan}
+### 采购与招标管理部 {#nan-fang-ke-ji-da-xue-cai-gou-yu-zhao-biao-guan-li-bu}
-<Route author="jch12138" example="/xmu/aero/yjsjw" path="/xmu/aero/:type" paramsDesc={['分类见下表']} anticrawler="1">
- | 通知公告 | 本科生教务 | 研究生教务 |
- | :------: | :--------: | :--------: |
- | tzgg | bksjw | yjsjw |
-</Route>
+<Route data={{"path":"/bidding","categories":["university"],"example":"/sustech/bidding","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["biddingoffice.sustech.edu.cn/"]},"name":"采购与招标管理部","maintainers":["sparkcyf"],"url":"biddingoffice.sustech.edu.cn/","location":"bidding.ts"}} />
-## 厦门理工大学 {#xia-men-li-gong-da-xue}
+### 新闻网(中文) {#nan-fang-ke-ji-da-xue-xin-wen-wang-zhong-wen}
-### 教务处 {#xia-men-li-gong-da-xue-jiao-wu-chu}
+<Route data={{"path":"/newshub-zh","categories":["university"],"example":"/sustech/newshub-zh","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["newshub.sustech.edu.cn/news"]},"name":"新闻网(中文)","maintainers":["sparkcyf"],"url":"newshub.sustech.edu.cn/news","location":"newshub-zh.ts"}} />
-<Route author="icecliffs" example="/xmut/jwc/bkjw/jxyx" path="/xmut/jwc/:type/:method" paramsDesc={['系统类型,分为 `bkjw` 本科生教务处, `yjjw` 研究生处', '分类如下表']} anticrawler="1">
- | 本科生教务处 | 系统说明 | 研究生处 | 系统说明 |
- | :----------: | :------: | :------: | :------: |
- | jxyx | 教学运行 | tzgg | 通知公告 |
- | zhsw | 综合事务 | xwdt | 新闻动态 |
- | xwgl | 学务管理 | xstj | 学术研究 |
- | sjjx | 实践教学 | yjsjw | 工作简讯 |
- | jyjg | 教研教改 | | |
-</Route>
+### 研究生网通知公告 {#nan-fang-ke-ji-da-xue-yan-jiu-sheng-wang-tong-zhi-gong-gao}
-## 山东大学 {#shan-dong-da-xue}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/sustech/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.sustech.edu.cn/"]},"name":"研究生网通知公告","maintainers":["shengmaosu"],"url":"gs.sustech.edu.cn/","location":"yjs.ts"}} />
-### 软件学院通知 {#shan-dong-da-xue-ruan-jian-xue-yuan-tong-zhi}
+## 南京大学 {#nan-jing-da-xue}
-<Route author="Ji4n1ng" example="/sdu/sc/0" path="/sdu/sc/:type?" paramsDesc={['默认为 `0`']} radar="1">
- | 通知公告 | 学术动态 | 本科教育 | 研究生教育 |
- | -------- | -------- | -------- | ---------- |
- | 0 | 1 | 2 | 3 |
-</Route>
+### 本科生交换生系统 {#nan-jing-da-xue-ben-ke-sheng-jiao-huan-sheng-xi-tong}
-### 材料科学与工程学院通知 {#shan-dong-da-xue-cai-liao-ke-xue-yu-gong-cheng-xue-yuan-tong-zhi}
+<Route data={{"path":"/exchangesys/:type","categories":["university"],"example":"/nju/exchangesys/proj","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"本科生交换生系统","maintainers":[],"description":"| 新闻通知 | 交换生项目 |\n | -------- | ---------- |\n | news | proj |","location":"exchangesys.ts"}} />
-<Route author="Ji4n1ng" example="/sdu/cmse/0" path="/sdu/cmse/:type?" paramsDesc={['默认为 `0`']} radar="1">
- | 通知公告 | 学院新闻 | 本科生教育 | 研究生教育 | 学术动态 |
- | -------- | -------- | ---------- | ---------- | -------- |
- | 0 | 1 | 2 | 3 | 4 |
-</Route>
+| 新闻通知 | 交换生项目 |
+| -------- | ---------- |
+| news | proj |
-### 机械工程学院通知 {#shan-dong-da-xue-ji-xie-gong-cheng-xue-yuan-tong-zhi}
+### 本科生院 {#nan-jing-da-xue-ben-ke-sheng-yuan}
-<Route author="Ji4n1ng" example="/sdu/mech/0" path="/sdu/mech/:type?" paramsDesc={['默认为 `0`']} radar="1">
- | 通知公告 | 院所新闻 | 教学信息 | 学术动态 | 学院简报 |
- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 1 | 2 | 3 | 4 |
-</Route>
+<Route data={{"path":"/jw/:type","categories":["university"],"example":"/nju/jw/ggtz","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jw.nju.edu.cn/:type/list.htm"]},"name":"本科生院","maintainers":["cqjjjzr"],"description":"| 公告通知 | 教学动态 |\n | -------- | -------- |\n | ggtz | jxdt |","location":"jw.ts"}} />
-### 能源与动力工程学院通知 {#shan-dong-da-xue-neng-yuan-yu-dong-li-gong-cheng-xue-yuan-tong-zhi}
+| 公告通知 | 教学动态 |
+| -------- | -------- |
+| ggtz | jxdt |
-<Route author="Ji4n1ng" example="/sdu/epe/0" path="/sdu/epe/:type?" paramsDesc={['默认为 `0`']} radar="1" notOperational="1">
- | 学院动态 | 通知公告 | 学术论坛 |
- | -------- | -------- | -------- |
- | 0 | 1 | 2 |
-</Route>
+### 本科迎新 {#nan-jing-da-xue-ben-ke-ying-xin}
-### 计算机科学与技术学院通知 {#shan-dong-da-xue-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan-tong-zhi}
+<Route data={{"path":"/admission","categories":["university"],"example":"/nju/admission","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["admission.nju.edu.cn/tzgg/index.html","admission.nju.edu.cn/tzgg","admission.nju.edu.cn/"]},"name":"本科迎新","maintainers":["ret-1"],"url":"admission.nju.edu.cn/tzgg/index.html","location":"admission.ts"}} />
-<Route author="suxb201" example="/sdu/cs/0" path="/sdu/cs/:type?" paramsDesc={['默认为 `0`']} radar="1">
- | 学院公告 | 学术报告 | 科技简讯 |
- | -------- | -------- | -------- |
- | 0 | 1 | 2 |
-</Route>
+### 大学外语部 {#nan-jing-da-xue-da-xue-wai-yu-bu}
-## 山东大学(威海) {#shan-dong-da-xue-wei-hai}
+<Route data={{"path":"/dafls","categories":["university"],"example":"/nju/dafls","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dafls.nju.edu.cn/13167/list.html","dafls.nju.edu.cn/"]},"name":"大学外语部","maintainers":["ret-1"],"url":"dafls.nju.edu.cn/13167/list.html","location":"dafls.ts"}} />
-### 新闻网 {#shan-dong-da-xue-wei-hai-xin-wen-wang}
+### 后勤集团 {#nan-jing-da-xue-hou-qin-ji-tuan}
-<Route author="kxxt" example="/sdu/wh/news/xyyw" path="/sdu/wh/news/:column?" paramsDesc={['专栏名称,默认为校园要闻(`xyyw`)']} radar="1" notOperational="1">
- | 校园要闻 | 学生动态 | 综合新闻 | 山大视点 | 菁菁校园 | 校园简讯 | 玛珈之窗 | 热点专题 | 媒体视角 | 高教视野 | 理论学习 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | xyyw | xsdt | zhxw | sdsd | jjxy | xyjx | mjzc | rdzt | mtsj | gjsy | llxx |
-</Route>
+<Route data={{"path":"/hqjt","categories":["university"],"example":"/nju/hqjt","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["webplus.nju.edu.cn/_s25/main.psp"]},"name":"后勤集团","maintainers":["ret-1"],"url":"webplus.nju.edu.cn/_s25/main.psp","location":"hqjt.ts"}} />
-### 教务处 {#shan-dong-da-xue-wei-hai-jiao-wu-chu}
+### 基建处 {#nan-jing-da-xue-ji-jian-chu}
-<Route author="kxxt" example="/sdu/wh/jwc/gztz" path="/sdu/wh/jwc/:column?" paramsDesc={['专栏名称,默认为工作通知(`gztz`)']} radar="1" notOperational="1">
- | 规章制度 | 专业建设 | 实践教学 | 支部风采 | 服务指南 | 教务要闻 | 工作通知 | 教务简报 | 常用下载 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | gzzd | zyjs | sjjx | zbfc | fwzn | jwyw | gztz | jwjb | cyxz |
-</Route>
+<Route data={{"path":"/jjc","categories":["university"],"example":"/nju/jjc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jjc.nju.edu.cn/main.htm","jjc.nju.edu.cn/"]},"name":"基建处","maintainers":["ret-1"],"url":"jjc.nju.edu.cn/main.htm","location":"jjc.ts"}} />
-## 山东科技大学 {#shan-dong-ke-ji-da-xue}
+### 科学技术处 {#nan-jing-da-xue-ke-xue-ji-shu-chu}
-### 研究生招生网 {#shan-dong-ke-ji-da-xue-yan-jiu-sheng-zhao-sheng-wang}
+<Route data={{"path":"/scit/:type","categories":["university"],"example":"/nju/scit/tzgg","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"科学技术处","maintainers":["ret-1"],"description":"| 通知公告 | 科研动态 |\n | -------- | -------- |\n | tzgg | kydt |","location":"scit.ts"}} />
-<Route author="nczitzk" example="/sdust/yjsy/zhaosheng" path="/sdust/yjsy/zhaosheng/:id?" paramsDesc={['栏目 id,见下表,默认为通知公告']} notOperational="1">
- 栏目
+| 通知公告 | 科研动态 |
+| -------- | -------- |
+| tzgg | kydt |
- | 招生简章 | 专业目录 | 往届录取 | 管理规定 | 资料下载 |
- | -------- | -------- | -------- | -------- | -------- |
- | zsjz | zyml | wjlq | glgd | zlxz |
+### 人才招聘网 {#nan-jing-da-xue-ren-cai-zhao-pin-wang}
- | 通知公告 | 博士招生 | 硕士招生 | 推免生招生 | 招生宣传 |
- | -------- | -------- | -------- | ---------- | -------- |
- | tzgg | bszs | sszs | tms | zsxc |
-</Route>
+<Route data={{"path":"/rczp/:type","categories":["university"],"example":"/nju/rczp/xxfb","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["rczp.nju.edu.cn/sylm/:type/index.html"]},"name":"人才招聘网","maintainers":["ret-1"],"description":"| 信息发布 | 教研类岗位 | 管理岗位及其他 |\n | -------- | ---------- | -------------- |\n | xxfb | jylgw | gllgw |","location":"rczp.ts"}} />
-## 上海大学 {#shang-hai-da-xue}
+| 信息发布 | 教研类岗位 | 管理岗位及其他 |
+| -------- | ---------- | -------------- |
+| xxfb | jylgw | gllgw |
-### 官网信息 {#shang-hai-da-xue-guan-wang-xin-xi}
+### 校医院 {#nan-jing-da-xue-xiao-yi-yuan}
-<Route author="lonelyion" example="/shu/news" path="/shu/:type?" paramsDesc={['消息类型,默认为`news`']}>
- | 综合新闻 | 科研动态 | 通知公告 | 重要新闻 |
- | -------- | -------- | -------- | --------- |
- | news | research | notice | important |
-</Route>
+<Route data={{"path":"/hospital","categories":["university"],"example":"/nju/hospital","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hospital.nju.edu.cn/ggtz/index.html"]},"name":"校医院","maintainers":["ret-1"],"url":"hospital.nju.edu.cn/ggtz/index.html","location":"hosptial.ts"}} />
-### 教务处通知公告 {#shang-hai-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
+### 研究生院 {#nan-jing-da-xue-yan-jiu-sheng-yuan}
-<Route author="tuxinghuan" example="/shu/jwb/notice" path="/shu/jwb/:type?" paramsDesc={['消息类型,默认为`notice`']}>
- | 通知通告 | 新闻 | 政策文件 |
- | -------- | ---- | -------- |
- | notice | news | policy |
-</Route>
+<Route data={{"path":"/gra","categories":["university"],"example":"/nju/gra","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["grawww.nju.edu.cn/main.htm","grawww.nju.edu.cn/"]},"name":"研究生院","maintainers":["ret-1"],"url":"grawww.nju.edu.cn/main.htm","location":"gra.ts"}} />
-## 上海第二工业大学 {#shang-hai-di-er-gong-ye-da-xue}
+### 招标办公室 {#nan-jing-da-xue-zhao-biao-ban-gong-shi}
-### 教务处 {#shang-hai-di-er-gong-ye-da-xue-jiao-wu-chu}
+<Route data={{"path":"/zbb/:type","categories":["university"],"example":"/nju/zbb/cgxx","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"招标办公室","maintainers":["ret-1"],"description":"| 采购信息 | 成交公示 | 政府采购意向公开 |\n | -------- | -------- | ---------------- |\n | cgxx | cjgs | zfcgyxgk |","location":"zbb.ts"}} />
-<Route author="TonyRL" example="/sspu/jwc/:listId" path="/sspu/jwc/897" paramsDesc={['专栏 ID,见下表']} radar="1">
- | 学生专栏 | 教师专栏 |
- | -------- | -------- |
- | 897 | 898 |
-</Route>
+| 采购信息 | 成交公示 | 政府采购意向公开 |
+| -------- | -------- | ---------------- |
+| cgxx | cjgs | zfcgyxgk |
-### 体育部 {#shang-hai-di-er-gong-ye-da-xue-ti-yu-bu}
+### 资产管理处 {#nan-jing-da-xue-zi-chan-guan-li-chu}
-<Route author="nczitzk" example="/sspu/pe" path="/sspu/pe/id?" paramsDesc={['栏目 id,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 体育新闻 | 场馆管理 | 相关下载 |
- | -------- | -------- | -------- | -------- |
- | 342 | 343 | 324 | 325 |
+<Route data={{"path":"/zcc","categories":["university"],"example":"/nju/zcc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zcc.nju.edu.cn/tzgg/gyfytdglk/index.html","zcc.nju.edu.cn/tzgg/index.html","zcc.nju.edu.cn/"]},"name":"资产管理处","maintainers":["ret-1"],"url":"zcc.nju.edu.cn/tzgg/gyfytdglk/index.html","location":"zcc.ts"}} />
- <details>
- <summary>更多栏目</summary>
+### ITSC 信息中心 {#nan-jing-da-xue-itsc-xin-xi-zhong-xin}
- #### [部门概况](https://pe2016.sspu.edu.cn/318/list.htm)
+<Route data={{"path":"/itsc","categories":["university"],"example":"/nju/itsc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["itsc.nju.edu.cn/tzgg/list.htm"]},"name":"ITSC 信息中心","maintainers":["ret-1"],"url":"itsc.nju.edu.cn/tzgg/list.htm","location":"itsc.ts"}} />
- | [部门简介](https://pe2016.sspu.edu.cn/327/list.htm) | [师资介绍](https://pe2016.sspu.edu.cn/328/list.htm) | [机构设置](https://pe2016.sspu.edu.cn/329/list.htm) | [团队建设](https://pe2016.sspu.edu.cn/330/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- |
- | 327 | 328 | 329 | 330 |
+## 南京工程学院 {#nan-jing-gong-cheng-xue-yuan}
- #### [教育教学](https://pe2016.sspu.edu.cn/319/list.htm)
+### 南京工程学院教务处 {#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-jiao-wu-chu}
- | [课程介绍](https://pe2016.sspu.edu.cn/331/list.htm) | [教学管理](https://pe2016.sspu.edu.cn/332/list.htm) | [教学成果](https://pe2016.sspu.edu.cn/333/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- |
- | 331 | 332 | 333 |
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/njit/jwc/jx","parameters":{"type":"默认为 `jx`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"南京工程学院教务处","maintainers":["zefengdaguo"],"description":"| 教学 | 考试 | 信息 | 实践 |\n| ---- | ---- | ---- | ---- |\n| jx | ks | xx | sj |","location":"jwc.ts"}} />
- #### [学科研究](https://pe2016.sspu.edu.cn/320/list.htm)
+| 教学 | 考试 | 信息 | 实践 |
+| ---- | ---- | ---- | ---- |
+| jx | ks | xx | sj |
- | [学术交流](https://pe2016.sspu.edu.cn/334/list.htm) | [科研工作](https://pe2016.sspu.edu.cn/335/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- |
- | 334 | 335 |
+### 南京工程学院通知公告 {#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-tong-zhi-gong-gao}
- #### [运动竞赛](https://pe2016.sspu.edu.cn/321/list.htm)
+<Route data={{"path":"/tzgg","categories":["university"],"example":"/njit/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.njit.edu.cn/"]},"name":"南京工程学院通知公告","maintainers":["zefengdaguo"],"url":"www.njit.edu.cn/","location":"tzgg.ts"}} />
- | [竞赛管理](https://pe2016.sspu.edu.cn/336/list.htm) | [竞赛成绩](https://pe2016.sspu.edu.cn/337/list.htm) | [特色项目](https://pe2016.sspu.edu.cn/338/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- |
- | 336 | 337 | 338 |
+## 南京航空航天大学 {#nan-jing-hang-kong-hang-tian-da-xue}
- #### [群体活动](https://pe2016.sspu.edu.cn/322/list.htm)
+### 计算机科学与技术学院 {#nan-jing-hang-kong-hang-tian-da-xue-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan}
- | [阳光体育](https://pe2016.sspu.edu.cn/345/list.htm) | [体育社团](https://pe2016.sspu.edu.cn/346/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- |
- | 345 | 346 |
+<Route data={{"path":"/cs/:type/:getDescription?","categories":["university"],"example":"/nuaa/cs/jxdt","parameters":{"type":"分类名,见下表","getDescription":"是否获取全文"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机科学与技术学院","maintainers":["LogicJake","Seiry","qrzbing","Xm798"],"description":"| 通知公告 | 热点新闻 | 学科科研 | 教学动态 | 本科生培养 | 研究生培养 | 学生工作 |\n | -------- | -------- | -------- | -------- | ---------- | ---------- | -------- |\n | tzgg | rdxw | xkky | jxdt | be | me | xsgz |","location":"college/cs.ts"}} />
- #### [党群工作](https://pe2016.sspu.edu.cn/323/list.htm)
+| 通知公告 | 热点新闻 | 学科科研 | 教学动态 | 本科生培养 | 研究生培养 | 学生工作 |
+| -------- | -------- | -------- | -------- | ---------- | ---------- | -------- |
+| tzgg | rdxw | xkky | jxdt | be | me | xsgz |
- | [党务公开](https://pe2016.sspu.edu.cn/339/list.htm) | [精神文明](https://pe2016.sspu.edu.cn/340/list.htm) | [教工之家](https://pe2016.sspu.edu.cn/341/list.htm) |
- | --------------------------------------------------- | --------------------------------------------------- | --------------------------------------------------- |
- | 339 | 340 | 341 |
- </details>
-</Route>
+### 教务处 {#nan-jing-hang-kong-hang-tian-da-xue-jiao-wu-chu}
-## 上海电力大学 {#shang-hai-dian-li-da-xue}
+<Route data={{"path":"/jwc/:type/:getDescription?","categories":["university"],"example":"/nuaa/jwc/tzgg/getDescription","parameters":{"type":"分类名,见下表","getDescription":"是否获取全文"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["arcosx","Seiry","qrzbing","Xm798"],"description":"| 通知公告 | 教学服务 | 教学建设 | 学生培养 | 教学资源 |\n | -------- | -------- | -------- | -------- | -------- |\n | tzgg | jxfw | jxjs | xspy | jxzy |","location":"jwc/jwc.ts"}} />
-### 新闻网与学院通知 {#shang-hai-dian-li-da-xue-xin-wen-wang-yu-xue-yuan-tong-zhi}
+| 通知公告 | 教学服务 | 教学建设 | 学生培养 | 教学资源 |
+| -------- | -------- | -------- | -------- | -------- |
+| tzgg | jxfw | jxjs | xspy | jxzy |
-<Route author="gumibea TeamSUEP" example="/shiep/news/notice" path="/shiep/:type/:id?" paramsDesc={['类型名称,见下表', '页面 ID,默认为通知公告或学院公告所对应的 ID']} radar="1">
- 类型名称与默认 ID:
+### 研究生院 {#nan-jing-hang-kong-hang-tian-da-xue-yan-jiu-sheng-yuan}
- 学院一览:
+<Route data={{"path":"/yjsy/:type/:getDescription?","categories":["university"],"example":"/nuaa/yjsy/tzgg/getDescription","parameters":{"type":"分类名,见下表","getDescription":"是否获取全文"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生院","maintainers":["junfengP","Seiry","Xm798"],"description":"| 通知公告 | 新闻动态 | 学术信息 | 师生风采 |\n | -------- | -------- | -------- | -------- |\n | tzgg | xwdt | xsxx | ssfc |","location":"yjsy/yjsy.ts"}} />
- | 能源与机械工程学院 | 环境与化学工程学院 | 电气工程学院 | 自动化工程学院 | 计算机科学与技术学院 | 电子与信息工程学院 | 经济与管理学院 | 数理学院 | 外国语学院 | 体育学院 | 马克思主义学院 | 人文艺术学院 | 继续教育学院(国际教育学院) |
- | ------------------ | ------------------ | ------------ | -------------- | -------------------- | ------------------ | -------------- | -------- | ---------- | -------- | -------------- | ------------ | ---------------------------- |
- | energy | hhxy | dqxy | zdhxy | jsjxy | dxxy | jgxy | slxy | wgyxy | tyb | skb | rwysxy | jjxy |
- | 892 | 1231 | 2462 | 2002 | xygg | tzgg | 3633 | 2063 | tzgg | 2891 | 1736 | 3089 | 2582 |
+| 通知公告 | 新闻动态 | 学术信息 | 师生风采 |
+| -------- | -------- | -------- | -------- |
+| tzgg | xwdt | xsxx | ssfc |
- 党群部门:
+## 南京理工大学 {#nan-jing-li-gong-da-xue}
- | 党委办公室 | 组织部(老干部处、党校) | 党建服务中心 / 党建督查室 | 宣传部(文明办、融媒体中心) | 统战部 | 机关党委 | 纪委(监察专员办公室) | 巡查办 | 武装部 | 学生工作部 | 团委 | 工会(妇工委) | 教师工作部 | 离退休党委 | 研究生工作部 |
- | ---------- | ------------------------ | ------------------------- | ---------------------------- | ------ | -------- | ---------------------- | --------- | ------ | ---------- | ---- | -------------- | ---------- | ---------- | ------------ |
- | dangban | zzb | djfwzxdcs | xcb | tzb | jgdw | jijian | xunchaban | bwc | xsc | tw | gonghui | rsc | tgb | yjsc |
- | 4014 | 1534 | tzgg | 2925 | 3858 | 3205 | 59 | 5044 | tzgg | 3482 | 2092 | 1806 | 1695 | notice | 1161 |
+### 财务处 {#nan-jing-li-gong-da-xue-cai-wu-chu}
- 行政部门:
+<Route data={{"path":"/cwc/:type?","categories":["university"],"example":"/njust/cwc/tzgg","parameters":{"type":"分类名,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"财务处","maintainers":["MilkShakeYoung","jasongzy"],"description":"| 通知公告 | 办事流程 |\n | -------- | -------- |\n | tzgg | bslc |","location":"cwc.ts"}} />
- | 校长办公室(档案馆) | 对外联络处 | 发展规划处 | 审计处 | 保卫处 | 学生处 | 人事处 | 退管办 | 国际交流与合作处(港澳台办公室) | 科研处 / 融合办 | 教务处 | 研究生院 | 后勤管理处(后勤服务中心) | 实验室与资产管理处 | 基建处 | 临港新校区建设综合办公室 | 图书馆 | 现代教育技术中心 / 信息办 | 创新创业工程训练中心 | 资产经营公司 / 产业办 | 能源电力科创中心 | 技术转移中心 |
- | -------------------- | ---------- | ---------- | ------ | ------ | ------ | ------ | ------ | -------------------------------- | --------------- | ------ | -------- | -------------------------- | ------------------ | ------ | ------------------------ | ------- | ------------------------- | -------------------- | --------------------- | ---------------- | ------------ |
- | office | dwllc | fzghc | sjc | bwc | xsc | rsc | tgb | fao | kyc | jwc | yjsc | hqglc | sysyzcglc | jjc | lgxq | library | metc | ieetc | cyb | kczx | jszyzx |
- | 389 | 2649 | 291 | 199 | tzgg | 3482 | 1695 | notice | tzgg | 834 | 227 | 1161 | 1616 | 312 | 327 | 377 | 4866 | tzgg | cxcy | 367 | 3946 | 4247 |
+| 通知公告 | 办事流程 |
+| -------- | -------- |
+| tzgg | bslc |
- 其它:
+### 电光学院 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan}
- | 新闻网 | Shanghai University of Electric Power | 信息公开网 | 本科招生网 | 本科就业信息网 | 妇工委 | 文明办 | 学习路上 | 上海热交换系统节能工程技术研究中心 | 上海新能源人才技术教育交流中心 | 上海绿色能源并网技术研究中心 | 能源化学实验教学中心 | 教师教学发展中心 | 电力装备设计与制造虚拟仿真中心 | 上海市电力材料防护与新材料重点实验室 | 能源电力智库 | 国家新能源电力系统实验教学示范中心 | 智能发电实验教学中心 |
- | ------ | ------------------------------------- | ---------- | ---------- | -------------- | ------ | ------- | -------- | ---------------------------------- | ------------------------------ | ---------------------------- | -------------------- | ---------------- | ------------------------------ | ------------------------------------ | ------------ | ---------------------------------- | -------------------- |
- | news | english | xxgk | zs | career | fgw | wenming | ztjy | energy-saving | gec | green-energy | hhsyzx | jsjxfzzx | jxfz | mpep | nydlzk | restec | spgc |
- | notice | events | zxgkxx | zxxx | tzgg | 1411 | 2202 | 5575 | tzgg | 1959 | 118 | 3709 | 3909 | 3330 | 1134 | tzgg | 1366 | 4449 |
+<Route data={{"path":"/eoe/:type?","categories":["university"],"example":"/njust/eoe/tzgg","parameters":{"type":"分类名,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"电光学院","maintainers":["jasongzy"],"description":"| 通知公告 | 新闻动态 |\n | -------- | -------- |\n | tzgg | xwdt |","location":"eoe.ts"}} />
- 参数与来源页面对应规则为:`https://${type}.shiep.edu.cn/${id}/list.htm`
-</Route>
+| 通知公告 | 新闻动态 |
+| -------- | -------- |
+| tzgg | xwdt |
-## 上海海事大学 {#shang-hai-hai-shi-da-xue}
+### 电光学院年级网站 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan-nian-ji-wang-zhan}
-### 官网信息 {#shang-hai-hai-shi-da-xue-guan-wang-xin-xi}
+<Route data={{"path":"/eo/:grade?/:type?","categories":["university"],"example":"/njust/eo/17/tz","parameters":{"grade":"年级,见下表,默认为本科 2017 级,未列出的年级所对应的参数可以从级网二级页面的 URL Path 中找到,例如:本科 2020 级为 `_t1316`","type":"类别,见下表,默认为年级通知(通知公告),未列出的类别所对应的参数可以从级网二级页面的 URL Path 中找到,例如:电光 20 的通知公告为 `tzgg_12969`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"电光学院年级网站","maintainers":["jasongzy"],"description":"`grade` 列表:\n\n | 本科 2016 级 | 本科 2017 级 | 本科 2018 级 | 本科 2019 级 |\n | ------------ | ------------ | ------------ | ------------ |\n | 16 | 17 | 18 | 19 |\n\n `type` 列表:\n\n | 年级通知(通知公告) | 每日动态(主任寄语) |\n | -------------------- | -------------------- |\n | tz | dt |","location":"eo.ts"}} />
-<Route author="imbytecat simonsmh" example="/shmtu/www/events" path="/shmtu/www/:type" paramsDesc={['类型名称']} />
+`grade` 列表:
-| 学术讲座 | 通知公告 |
-| -------- | -------- |
-| events | notes |
+| 本科 2016 级 | 本科 2017 级 | 本科 2018 级 | 本科 2019 级 |
+| ------------ | ------------ | ------------ | ------------ |
+| 16 | 17 | 18 | 19 |
-### 教务信息 {#shang-hai-hai-shi-da-xue-jiao-wu-xin-xi}
+`type` 列表:
-<Route author="imbytecat simonsmh" example="/shmtu/jwc/jwgg" path="/shmtu/jwc/:type" paramsDesc={['类型名称']} />
+| 年级通知(通知公告) | 每日动态(主任寄语) |
+| -------------------- | -------------------- |
+| tz | dt |
-| 教务公告 | 教务新闻 |
-| -------- | -------- |
-| jwgg | jwxw |
+### 电光学院研学网 {#nan-jing-li-gong-da-xue-dian-guang-xue-yuan-yan-xue-wang}
-### 数字平台 {#shang-hai-hai-shi-da-xue-shu-zi-ping-tai}
+<Route data={{"path":"/dgxg/:type?","categories":["university"],"example":"/njust/dgxg/gstz","parameters":{"type":"分类名,见下表,默认为公示通知"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"电光学院研学网","maintainers":["jasongzy"],"description":"| 公示通知 | 学术文化 | 就业指导 |\n | -------- | -------- | -------- |\n | gstz | xswh | jyzd |","location":"dgxg.ts"}} />
-<Route author="imbytecat" example="/shmtu/portal/bmtzgg" path="/shmtu/portal/:type" paramsDesc={['类型名称']} />
+| 公示通知 | 学术文化 | 就业指导 |
+| -------- | -------- | -------- |
+| gstz | xswh | jyzd |
-| 部门通知公告 | 学术与大型活动公告 | 部门动态 |
-| ------------ | ------------------ | -------- |
-| bmtzgg | xsydxhdgg | bmdt |
+### 教务处 {#nan-jing-li-gong-da-xue-jiao-wu-chu}
-## 上海海洋大学 {#shang-hai-hai-yang-da-xue}
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/njust/jwc/xstz","parameters":{"type":"分类名,见下表,默认为学生通知"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["MilkShakeYoung","jasongzy"],"description":"| 教师通知 | 学生通知 | 新闻 | 学院动态 |\n | -------- | -------- | ---- | -------- |\n | jstz | xstz | xw | xydt |","location":"jwc.ts"}} />
-### 官网信息 {#shang-hai-hai-yang-da-xue-guan-wang-xin-xi}
+| 教师通知 | 学生通知 | 新闻 | 学院动态 |
+| -------- | -------- | ---- | -------- |
+| jstz | xstz | xw | xydt |
-<Route author="Swung0x48" example="/shou/www/tzgg" path="/shou/www/:type" paramsDesc={['消息类型']} notOperational="1">
- | 通知公告 | 招标信息 | 要闻 | 媒体聚焦 | 学术讲座 | 科技前沿 |
- | -------- | -------- | ---- | -------- | -------- | -------- |
- | tzgg | zbxx | yw | mtjj | xsjz | xsqy |
-</Route>
+### 研究生院 {#nan-jing-li-gong-da-xue-yan-jiu-sheng-yuan}
-## 上海交通大学 {#shang-hai-jiao-tong-da-xue}
+<Route data={{"path":"/gs/:type?","categories":["university"],"example":"/njust/gs/sytzgg_4568","parameters":{"type":"分类 ID,部分示例参数见下表,默认为首页通知公告,其他分类 ID 可以从网站 URL Path 中找到,如国际交流为 `gjjl`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.njust.edu.cn/:type/list.htm"],"target":"/gs/:type"},"name":"研究生院","maintainers":["MilkShakeYoung","jasongzy"],"description":"| 首页通知公告 | 首页新闻动态 | 最新通知 | 招生信息 | 培养信息 | 学术活动 |\n | ------------ | ------------ | -------- | -------- | -------- | -------- |\n | sytzgg_4568 | sytzgg | 14686 | 14687 | 14688 | xshdggl |","location":"gs.ts"}} />
-### 电子信息与电气工程学院学术动态 {#shang-hai-jiao-tong-da-xue-dian-zi-xin-xi-yu-dian-qi-gong-cheng-xue-yuan-xue-shu-dong-tai}
+| 首页通知公告 | 首页新闻动态 | 最新通知 | 招生信息 | 培养信息 | 学术活动 |
+| ------------ | ------------ | -------- | -------- | -------- | -------- |
+| sytzgg\_4568 | sytzgg | 14686 | 14687 | 14688 | xshdggl |
-<Route author="HenryQW" example="/sjtu/seiee/academic" path="/sjtu/seiee/academic" radar="1" />
+## 南京师范大学 {#nan-jing-shi-fan-da-xue}
-### 电子信息与电气工程学院本科教务办 {#shang-hai-jiao-tong-da-xue-dian-zi-xin-xi-yu-dian-qi-gong-cheng-xue-yuan-ben-ke-jiao-wu-ban}
+### 计算机与电子信息学院 - 人工智能学院 {#nan-jing-shi-fan-da-xue-ji-suan-ji-yu-dian-zi-xin-xi-xue-yuan-ren-gong-zhi-neng-xue-yuan}
-<Route author="Polynomia" example="/sjtu/seiee/bjwb/major_select" path="/sjtu/seiee/bjwb/:type" paramsDesc={['无默认选项']} radar="1" anticrawler="1">
- | 分专业 | 转专业 | 直升研究生 | 交换交流 | 国际办学 |
- | ------------- | --------------- | ------------ | -------- | ------------- |
- | major\_select | major\_transfer | postgraduate | abroad | international |
-</Route>
+<Route data={{"path":"/ceai/:type","categories":["university"],"example":"/njnu/ceai/xszx","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机与电子信息学院 - 人工智能学院","maintainers":["Shujakuinkuraudo"],"description":"| 学院公告 | 学院新闻 | 学生资讯 |\n | -------- | -------- | -------- |\n | xygg | xyxw | xszx |","location":"ceai/ceai.ts"}} />
-### 电子信息与电气工程学院学生工作办公室 {#shang-hai-jiao-tong-da-xue-dian-zi-xin-xi-yu-dian-qi-gong-cheng-xue-yuan-xue-sheng-gong-zuo-ban-gong-shi}
+| 学院公告 | 学院新闻 | 学生资讯 |
+| -------- | -------- | -------- |
+| xygg | xyxw | xszx |
-<Route author="Polynomia xxchan" example="/sjtu/seiee/xsb/news" path="/sjtu/seiee/xsb/:type?" paramsDesc={['默认列举所有通知公告']} radar="1">
- | 信息通告 | 奖学金 | 助学金 | 讲座活动 | 党团活动 | 新闻发布 | 本科生综合测评 |
- | -------- | ----------- | ------------ | -------- | -------- | -------- | -------------- |
- | 空 | scholarship | financialAid | lecture | activity | news | zhcp |
-</Route>
+### 教务通知 {#nan-jing-shi-fan-da-xue-jiao-wu-tong-zhi}
-### 研究生通知公告 {#shang-hai-jiao-tong-da-xue-yan-jiu-sheng-tong-zhi-gong-gao}
+<Route data={{"path":"/jwc/:type","categories":["university"],"example":"/njnu/jwc/xstz","parameters":{"type":"分类名"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务通知","maintainers":["Shujakuinkuraudo"],"description":"| 教师通知 | 新闻动态 | 学生通知 |\n | -------- | -------- | -------- |\n | jstz | xwdt | xstz |","location":"jwc/jwc.ts"}} />
-<Route author="mzr1996 dzx-dzx" example="/sjtu/gs/enroll/59" path="/sjtu/gs/:type/:num?" paramsDesc={['类别', '细分类别, 仅对`type`为`enroll`或`exchange`有效']} radar="1" anticrawler="1">
- | 工作信息 | 招生信息 | 培养信息 | 学位学科 | 国际交流 | 创新工程 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | work | enroll | train | degree | exchange | xsjy |
+| 教师通知 | 新闻动态 | 学生通知 |
+| -------- | -------- | -------- |
+| jstz | xwdt | xstz |
- 当`type`为`enroll`, `num`可选字段:
+## 南京晓庄学院 {#nan-jing-xiao-zhuang-xue-yuan}
- | 58 | 59 | 60 | 61 | 62 |
- | -------- | -------- | ---------- | -------- | -------- |
- | 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |
+### 官网通知公告 {#nan-jing-xiao-zhuang-xue-yuan-guan-wang-tong-zhi-gong-gao}
- 当`type`为`exchange`, `num`可选字段:
+<Route data={{"path":"/tzgg","categories":["university"],"example":"/njxzc/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.njxzc.edu.cn/89/list.htm","www.njxzc.edu.cn/"]},"name":"官网通知公告","maintainers":["real-jiakai"],"url":"www.njxzc.edu.cn/89/list.htm","location":"home.ts"}} />
- | 67 | 68 | 69 | 70 | 71 |
- | -------------- | -------------- | -------------- | -------------- | -------------- |
- | 国家公派研究生 | 国际化培养资助 | 校际交换与联培 | 交流与合作项目 | 项目招募与宣讲 |
-</Route>
+### 图书馆通知公告 {#nan-jing-xiao-zhuang-xue-yuan-tu-shu-guan-tong-zhi-gong-gao}
-### 教务处通知公告 {#shang-hai-jiao-tong-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
+<Route data={{"path":"/libtzgg","categories":["university"],"example":"/njxzc/libtzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lib.njxzc.edu.cn/pxyhd/list.htm","lib.njxzc.edu.cn/"]},"name":"图书馆通知公告","maintainers":["real-jiakai"],"url":"lib.njxzc.edu.cn/pxyhd/list.htm","location":"lib.ts"}} />
-<Route author="SeanChao" example="/sjtu/jwc" path="/sjtu/jwc/:type?" paramsDesc={['默认为 notice']} radar="1">
- | 新闻中心 | 通知通告 | 教学运行 | 注册学务 | 研究办 | 教改办 | 综合办 | 语言文字 | 工会与支部 | 通识教育 |
- | -------- | -------- | --------- | -------- | ------ | ------ | ------ | -------- | ---------- | -------- |
- | news | notice | operation | affairs | yjb | jgb | zhb | language | party | ge |
-</Route>
+## 南京信息工程大学 {#nan-jing-xin-xi-gong-cheng-da-xue}
-### 同去网最新活动 {#shang-hai-jiao-tong-da-xue-tong-qu-wang-zui-xin-huo-dong}
+:::tip
+路由地址全部按照 **学校官网域名和栏目编号** 设计
-<Route author="SeanChao" example="/sjtu/tongqu/lecture" path="/sjtu/tongqu/:type?" paramsDesc={['类型,默认为全部']} notOperational="1">
- | 全部 | 最新 | 招新 | 讲座 | 户外 | 招聘 | 游学 | 比赛 | 公益 | 主题党日 | 学生事务 | 广告 | 其他 |
- | ---- | ------ | ----------- | ------- | --------- | ---- | ---------- | ------------ | -------------- | -------- | -------------- | ---- | ------ |
- | all | newest | recruitment | lecture | outdoords | jobs | studyTours | competitions | publicWarefare | partyDay | studentAffairs | ads | others |
-</Route>
+使用方法:
-### 研究生招生网招考信息 {#shang-hai-jiao-tong-da-xue-yan-jiu-sheng-zhao-sheng-wang-zhao-kao-xin-xi}
+以[南信大信息公告栏](https://bulletin.nuist.edu.cn)为例,点开任意一个栏目
-<Route author="stdrc" example="/sjtu/yzb/zkxx/sszs" path="/sjtu/yzb/zkxx/:type" paramsDesc={['无默认选项']} radar="1">
- | 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |
- | -------- | -------- | ---------- | -------- | -------- |
- | bszs | sszs | gatzs | kdxx | yxdt |
-</Route>
+获得 URL 中的**分域名**和**栏目编号(可选)**:https\://`bulletin`.nuist.edu.cn/`791`/list.htm
-## 上海科技大学 {#shang-hai-ke-ji-da-xue}
+将其替换到 RSS 路由地址中即可:
-### 活动通知 {#shang-hai-ke-ji-da-xue-huo-dong-tong-zhi}
+[https://rsshub.app/**nuist**/`bulletin`](https://rsshub.app/nuist/bulletin) 或 [https://rsshub.app/**nuist**/`bulletin`/`791`](https://rsshub.app/nuist/bulletin)
+:::
-<Route author="nczitzk" example="/shanghaitech/activity" path="/shanghaitech/activity" anticrawler="1" />
+### 教务处 {#nan-jing-xin-xi-gong-cheng-da-xue-jiao-wu-chu}
-### 信息科技与技术学院活动 {#shang-hai-ke-ji-da-xue-xin-xi-ke-ji-yu-ji-shu-xue-yuan-huo-dong}
+<Route data={{"path":"/jwc/:category?","categories":["university"],"example":"/nuist/jwc/jxyw","parameters":{"category":"默认为教学要闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["gylidian"],"description":"| 教学要闻 | 学院教学 | 教务管理 | 教学研究 | 教务管理 | 教材建设 | 考试中心 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | jxyw | xyjx | jwgl | jxyj | sjjx | jcjs | kszx |","location":"jwc.ts"}} />
-<Route author="HenryQW" example="/shanghaitech/sist/activity" path="/shanghaitech/sist/activity" notOperational="1" />
+| 教学要闻 | 学院教学 | 教务管理 | 教学研究 | 教务管理 | 教材建设 | 考试中心 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| jxyw | xyjx | jwgl | jxyj | sjjx | jcjs | kszx |
-## 上海理工大学 {#shang-hai-li-gong-da-xue}
+### 南信大信息公告栏 {#nan-jing-xin-xi-gong-cheng-da-xue-nan-xin-da-xin-xi-gong-gao-lan}
-### 教务处 {#shang-hai-li-gong-da-xue-jiao-wu-chu}
+<Route data={{"path":"/bulletin/:category?","categories":["university"],"example":"/nuist/bulletin/791","parameters":{"category":"默认为 `791`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bulletin.nuist.edu.cn/:category/list.htm"],"target":"/bulletin/:category"},"name":"南信大信息公告栏","maintainers":["gylidian"],"description":"| 全部 | 文件公告 | 学术报告 | 招标信息 | 会议通知 | 党政事务 | 组织人事 |\n | ---- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 791 | 792 | xsbgw | 779 | 780 | 781 | 782 |\n\n | 科研信息 | 招生就业 | 教学考试 | 专题讲座 | 校园活动 | 学院动态 | 其他 |\n | -------- | -------- | -------- | -------- | -------- | -------- | ---- |\n | 783 | 784 | 785 | 786 | 788 | 789 | qt |\n\n :::warning\n 全文内容需使用 校园网或[VPN](http://vpn.nuist.edu.cn) 获取\n :::","location":"bulletin.ts"}} />
-<Route author="Diffumist" example="/usst/jwc" path="/usst/jwc" notOperational="1" />
+| 全部 | 文件公告 | 学术报告 | 招标信息 | 会议通知 | 党政事务 | 组织人事 |
+| ---- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 791 | 792 | xsbgw | 779 | 780 | 781 | 782 |
-## 上海立信会计金融学院 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan}
+| 科研信息 | 招生就业 | 教学考试 | 专题讲座 | 校园活动 | 学院动态 | 其他 |
+| -------- | -------- | -------- | -------- | -------- | -------- | ---- |
+| 783 | 784 | 785 | 786 | 788 | 789 | qt |
:::warning
-分区 ID 是`info/iList.jsp?cat_id=`后方数字
-
-目前仅支持文章分区的识别
+全文内容需使用 校园网或[VPN](http://vpn.nuist.edu.cn) 获取
:::
-### 官网 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-guan-wang}
-
-<Route author="NeverBehave" example="/slu/tzgg/12707" path="/slu/tzgg/:id" paramsDesc={['类别ID']} notOperational="1" />
+### 南信大学生工作处 {#nan-jing-xin-xi-gong-cheng-da-xue-nan-xin-da-xue-sheng-gong-zuo-chu}
-### 教务处 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-jiao-wu-chu}
+<Route data={{"path":"/xgc","categories":["university"],"example":"/nuist/xgc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xgc.nuist.edu.cn/","xgc.nuist.edu.cn/419/list.htm"]},"name":"南信大学生工作处","maintainers":["gylidian"],"url":"xgc.nuist.edu.cn/","location":"xgc.ts"}} />
-<Route author="NeverBehave" example="/slu/jwc/13424" path="/slu/jwc/:id" paramsDesc={['类别ID']} notOperational="1" />
+### NUIST AS(南信大大气科学学院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-as-nan-xin-da-da-qi-ke-xue-xue-yuan}
-### 学生处 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-xue-sheng-chu}
+<Route data={{"path":"/cas/:category?","categories":["university"],"example":"/nuist/cas/xxgg","parameters":{"category":"默认为信息公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"NUIST AS(南信大大气科学学院)","maintainers":["gylidian"],"description":"| 信息公告 | 新闻快讯 | 科学研究 | 网上公示 | 本科教育 | 研究生教育 |\n | -------- | -------- | -------- | -------- | -------- | ---------- |\n | xxgg | xwkx | kxyj | wsgs | bkjy | yjsjy |","location":"cas.ts"}} />
-<Route author="NeverBehave" example="/slu/xsc/14751" path="/slu/xsc/:id" paramsDesc={['类别ID']} notOperational="1" />
+| 信息公告 | 新闻快讯 | 科学研究 | 网上公示 | 本科教育 | 研究生教育 |
+| -------- | -------- | -------- | -------- | -------- | ---------- |
+| xxgg | xwkx | kxyj | wsgs | bkjy | yjsjy |
-### 会计学院 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-kuai-ji-xue-yuan}
+### NUIST CS(南信大计软院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-cs-nan-xin-da-ji-ruan-yuan}
-<Route author="NeverBehave" example="/slu/kjxy/13496" path="/slu/kjxy/:id" paramsDesc={['类别ID']} notOperational="1" />
+<Route data={{"path":"/scs/:category?","categories":["university"],"example":"/nuist/scs/xwkx","parameters":{"category":"默认为新闻快讯"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scs.nuist.edu.cn/:category/list.htm"],"target":"/scs/:category"},"name":"NUIST CS(南信大计软院)","maintainers":["gylidian"],"description":"| 新闻快讯 | 通知公告 | 教务信息 | 科研动态 | 学子风采 |\n | -------- | -------- | -------- | -------- | -------- |\n | xwkx | tzgg | jwxx | kydt | xzfc |","location":"scs.ts"}} />
-### 财税与公共管理学院 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-cai-shui-yu-gong-gong-guan-li-xue-yuan}
+| 新闻快讯 | 通知公告 | 教务信息 | 科研动态 | 学子风采 |
+| -------- | -------- | -------- | -------- | -------- |
+| xwkx | tzgg | jwxx | kydt | xzfc |
-<Route author="NeverBehave" example="/slu/csggxy/14751" path="/slu/csggxy/:id" paramsDesc={['类别ID']} notOperational="1" />
+### NUIST ESE(南信大环科院) {#nan-jing-xin-xi-gong-cheng-da-xue-nuist-ese-nan-xin-da-huan-ke-yuan}
-### 体育与健康学院 {#shang-hai-li-xin-kuai-ji-jin-rong-xue-yuan-ti-yu-yu-jian-kang-xue-yuan}
+<Route data={{"path":"/sese/:category?","categories":["university"],"example":"/nuist/sese/tzgg1","parameters":{"category":"默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"NUIST ESE(南信大环科院)","maintainers":["gylidian"],"description":"| 通知公告 | 新闻快讯 | 学术动态 | 学生工作 | 研究生教育 | 本科教育 |\n | -------- | -------- | -------- | -------- | ---------- | -------- |\n | tzgg1 | xwkx | xsdt1 | xsgz1 | yjsjy1 | bkjy1 |","location":"sese.ts"}} />
-<Route author="NeverBehave" example="/slu/tyyjkxy/14754" path="/slu/tyyjkxy/:id" paramsDesc={['类别ID']} notOperational="1" />
+| 通知公告 | 新闻快讯 | 学术动态 | 学生工作 | 研究生教育 | 本科教育 |
+| -------- | -------- | -------- | -------- | ---------- | -------- |
+| tzgg1 | xwkx | xsdt1 | xsgz1 | yjsjy1 | bkjy1 |
-## 上海社会科学院 {#shang-hai-she-hui-ke-xue-yuan}
+## 南京邮电大学 {#nan-jing-you-dian-da-xue}
-### 研究生院 {#shang-hai-she-hui-ke-xue-yuan-yan-jiu-sheng-yuan}
+### 教务处通知与新闻 {#nan-jing-you-dian-da-xue-jiao-wu-chu-tong-zhi-yu-xin-wen}
-<Route author="yanbot-team" example="/sass/gs/1793" path="/sass/gs/:type" paramsDesc={['类别 ID,见下表,其他未列出的栏目参数可以从页面的 URL Path 中找到,例如:硕士统考招生的网址为 `https://gs.sass.org.cn/1793/list.htm`,则类别 ID 为`1793`']} radar="1">
- | 硕士统考招生 | 硕士推免招生 |
- | ------------ | ------------ |
- | 1793 | sstmzs |
-</Route>
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/njupt/jwc/notice","parameters":{"type":"默认为 `notice`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处通知与新闻","maintainers":["shaoye"],"description":"| 通知公告 | 教务快讯 |\n | -------- | -------- |\n | notice | news |","location":"jwc.ts"}} />
-## 上海外国语大学 {#shang-hai-wai-guo-yu-da-xue}
+| 通知公告 | 教务快讯 |
+| -------- | -------- |
+| notice | news |
-### 上外新闻 {#shang-hai-wai-guo-yu-da-xue-shang-wai-xin-wen}
+## 南京中医药大学 {#nan-jing-zhong-yi-yao-da-xue}
-<Route author="Duuckjing" example="/shisu/news/notice" path="/shisu/news/:category" paramsDesc={['新闻的分类可根据自己的需要选择,首页为全部新闻']} radar="1">
- | 首页 | 特稿 | 学术 | 教学 | 国际 | 校园 | 人物 | 视讯 | 公告 |
- | ---- | ------- | --------- | ---------- | ------------- | ------ | ------ | ---------- | ------ |
- | news | gazette | research- | academics- | international | campus | people | multimedia | notice |
-</Route>
+### 研究生院博士招生 {#nan-jing-zhong-yi-yao-da-xue-yan-jiu-sheng-yuan-bo-shi-zhao-sheng}
-## 深圳大学 {#shen-zhen-da-xue}
+<Route data={{"path":"/grabszs","categories":["university"],"example":"/njucm/grabszs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["lib.njucm.edu.cn/2899/list.htm","lib.njucm.edu.cn/"]},"name":"研究生院博士招生","maintainers":["real-jiakai"],"url":"lib.njucm.edu.cn/2899/list.htm","location":"grabs.ts"}} />
-### 研究生招生网 {#shen-zhen-da-xue-yan-jiu-sheng-zhao-sheng-wang}
+## 齐鲁工业大学 {#qi-lu-gong-ye-da-xue}
-<Route author="NagaruZ" example="/szu/yz/1" path="/szu/yz/:type?" paramsDesc={['默认为 `1`']} radar="1" notOperational="1">
- | 研究生 | 博士生 |
- | ------ | ------ |
- | 1 | 2 |
-</Route>
+### 通知公告 {#qi-lu-gong-ye-da-xue-tong-zhi-gong-gao}
-## 四川大学 {#si-chuan-da-xue}
+<Route data={{"path":"/notice","categories":["university"],"example":"/qlu/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["qlu.edu.cn/tzggsh/list1.htm"]},"name":"通知公告","maintainers":["SunBK201"],"url":"qlu.edu.cn/tzggsh/list1.htm","location":"notice.ts"}} />
-### 教务处通知公告 {#si-chuan-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
+## 青岛大学 {#qing-dao-da-xue}
-<Route author="KXXH" example="/scu/jwc/notice" path="/scu/jwc/notice" notOperational="1" />
+### 后勤管理处通知 {#qing-dao-da-xue-hou-qin-guan-li-chu-tong-zhi}
-### 学工部通知公告 {#si-chuan-da-xue-xue-gong-bu-tong-zhi-gong-gao}
+<Route data={{"path":"/houqin","categories":["university"],"example":"/qdu/houqin","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["houqin.qdu.edu.cn/tzgg.htm","houqin.qdu.edu.cn/"]},"name":"后勤管理处通知","maintainers":["abc1763613206"],"url":"houqin.qdu.edu.cn/tzgg.htm","location":"houqin.ts"}} />
-<Route author="stevelee477" example="/scu/xg/notice" path="/scu/xg/notice" anticrawler="1" />
+### 教务处通知 {#qing-dao-da-xue-jiao-wu-chu-tong-zhi}
-## 四川工商学院 {#si-chuan-gong-shang-xue-yuan}
+<Route data={{"path":"/jwc","categories":["university"],"example":"/qdu/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.qdu.edu.cn/jwtz.htm","jwc.qdu.edu.cn/"]},"name":"教务处通知","maintainers":["abc1763613206"],"url":"jwc.qdu.edu.cn/jwtz.htm","location":"jwc.ts"}} />
-### 学院新闻 {#si-chuan-gong-shang-xue-yuan-xue-yuan-xin-wen}
+## 青岛科技大学 {#qing-dao-ke-ji-da-xue}
-<Route author="HyperCherry" example="/stbu/xyxw" path="/stbu/syxw" notOperational="1" />
+### 教务通知 {#qing-dao-ke-ji-da-xue-jiao-wu-tong-zhi}
-### 计算机学院通知公告 {#si-chuan-gong-shang-xue-yuan-ji-suan-ji-xue-yuan-tong-zhi-gong-gao}
+<Route data={{"path":"/jw","categories":["university"],"example":"/qust/jw","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jw.qust.edu.cn/jwtz.htm","jw.qust.edu.cn/"]},"name":"教务通知","maintainers":["Silent-wqh"],"url":"jw.qust.edu.cn/jwtz.htm","location":"jw.ts"}} />
-<Route author="HyperCherry" example="/stbu/jsjxy" path="/stbu/jsjxy" notOperational="1" />
+## 山东大学(威海) {#shan-dong-da-xue-wei-hai}
-:::warning
-计算机学院通知公告疑似禁止了非大陆 IP 访问,使用路由需要自行 [部署](https://docs.rsshub.app/install)。
-:::
+### 材料科学与工程学院通知 {#shan-dong-da-xue-wei-hai-cai-liao-ke-xue-yu-gong-cheng-xue-yuan-tong-zhi}
-## 四川旅游学院 {#si-chuan-lv-you-xue-yuan}
+<Route data={{"path":"/cmse/:type?","categories":["university"],"example":"/sdu/cmse/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"材料科学与工程学院通知","maintainers":["Ji4n1ng"],"description":"| 通知公告 | 学院新闻 | 本科生教育 | 研究生教育 | 学术动态 |\n | -------- | -------- | ---------- | ---------- | -------- |\n | 0 | 1 | 2 | 3 | 4 |","location":"cmse.ts"}} />
-### 信息与工程学院动态公告列表 {#si-chuan-lv-you-xue-yuan-xin-xi-yu-gong-cheng-xue-yuan-dong-tai-gong-gao-lie-biao}
+| 通知公告 | 学院新闻 | 本科生教育 | 研究生教育 | 学术动态 |
+| -------- | -------- | ---------- | ---------- | -------- |
+| 0 | 1 | 2 | 3 | 4 |
-<Route author="talenHuang" example="/sctu/xgxy" path="/sctu/information-engineer-faculty/index" notOperational="1" />
+### 机械工程学院通知 {#shan-dong-da-xue-wei-hai-ji-xie-gong-cheng-xue-yuan-tong-zhi}
-### 信息与工程学院公告详情 {#si-chuan-lv-you-xue-yuan-xin-xi-yu-gong-cheng-xue-yuan-gong-gao-xiang-qing}
+<Route data={{"path":"/mech/:type?","categories":["university"],"example":"/sdu/mech/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"机械工程学院通知","maintainers":["Ji4n1ng"],"description":"| 通知公告 | 院所新闻 | 教学信息 | 学术动态 | 学院简报 |\n | -------- | -------- | -------- | -------- | -------- |\n | 0 | 1 | 2 | 3 | 4 |","location":"mech.ts"}} />
-<Route author="talenHuang" example="/sctu/xgxy/652" path="/sctu/information-engineer-faculty/context/:id" paramsDesc={['文章id']} notOperational="1" />
+| 通知公告 | 院所新闻 | 教学信息 | 学术动态 | 学院简报 |
+| -------- | -------- | -------- | -------- | -------- |
+| 0 | 1 | 2 | 3 | 4 |
-### 教务处 {#si-chuan-lv-you-xue-yuan-jiao-wu-chu}
+### 计算机科学与技术学院通知 {#shan-dong-da-xue-wei-hai-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan-tong-zhi}
-<Route author="talenHuang" example="/sctu/jwc/13" path="/sctu/jwc/index:type?" paramsDesc={['可选参数,默认为 `13`']} notOperational="1">
- | 教务通知 | 信息公告 |
- | -------- | -------- |
- | 13 | 14 |
-</Route>
+<Route data={{"path":"/cs/:type?","categories":["university"],"example":"/sdu/cs/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机科学与技术学院通知","maintainers":["Ji4n1ng"],"description":"| 学院公告 | 学术报告 | 科技简讯 |\n | -------- | -------- | -------- |\n | 0 | 1 | 2 |","location":"cs.ts"}} />
-### 教务处通告详情 {#si-chuan-lv-you-xue-yuan-jiao-wu-chu-tong-gao-xiang-qing}
+| 学院公告 | 学术报告 | 科技简讯 |
+| -------- | -------- | -------- |
+| 0 | 1 | 2 |
-<Route author="talenHuang" example="/sctu/jwc/13/645" path="/sctu/jwc/context/:type/:id" paramsDesc={['通知类型','文章id']} notOperational="1" />
+### 教务处 {#shan-dong-da-xue-wei-hai-jiao-wu-chu}
-## 四川农业大学 {#si-chuan-nong-ye-da-xue}
+<Route data={{"path":"/wh/jwc/:column?","categories":["university"],"example":"/sdu/wh/jwc/gztz","parameters":{"column":"专栏名称,默认为工作通知(`gztz`)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["kxxt"],"description":"| 规章制度 | 专业建设 | 实践教学 | 支部风采 | 服务指南 | 教务要闻 | 工作通知 | 教务简报 | 常用下载 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | gzzd | zyjs | sjjx | zbfc | fwzn | jwyw | gztz | jwjb | cyxz |","location":"wh/jwc.ts"}} />
-### 动物科技学院 {#si-chuan-nong-ye-da-xue-dong-wu-ke-ji-xue-yuan}
+| 规章制度 | 专业建设 | 实践教学 | 支部风采 | 服务指南 | 教务要闻 | 工作通知 | 教务简报 | 常用下载 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| gzzd | zyjs | sjjx | zbfc | fwzn | jwyw | gztz | jwjb | cyxz |
-<Route author="nczitzk" example="/sicau/dky/tzgg" path="/sicau/dky/:category?" paramsDesc={['分类,见下表,默认为通知公告']} anticrawler="1">
- | 通知公告 | 学院动态 | 教学管理 | 动科大讲堂 | 就业信息 |
- | -------- | -------- | -------- | ---------- | -------- |
- | tzgg | xydt | jxgl | dkdjt | zpxx |
-</Route>
+### 能源与动力工程学院通知 {#shan-dong-da-xue-wei-hai-neng-yuan-yu-dong-li-gong-cheng-xue-yuan-tong-zhi}
-### 研究生院 {#si-chuan-nong-ye-da-xue-yan-jiu-sheng-yuan}
+<Route data={{"path":"/epe/:type?","categories":["university"],"example":"/sdu/epe/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"能源与动力工程学院通知","maintainers":["Ji4n1ng"],"description":"| 学院动态 | 通知公告 | 学术论坛 |\n | -------- | -------- | -------- |\n | 0 | 1 | 2 |","location":"epe.ts"}} />
-<Route author="nczitzk" example="/sicau/yan/xwgg" path="/sicau/yan/:category?" paramsDesc={['分类,见下表,默认为新闻公告']} notOperational="1">
- | 新闻公告 | 学术报告 |
- | -------- | -------- |
- | xwgg | xsbg |
-</Route>
+| 学院动态 | 通知公告 | 学术论坛 |
+| -------- | -------- | -------- |
+| 0 | 1 | 2 |
-### 招生就业 {#si-chuan-nong-ye-da-xue-zhao-sheng-jiu-ye}
+### 软件学院通知 {#shan-dong-da-xue-wei-hai-ruan-jian-xue-yuan-tong-zhi}
-<Route author="nczitzk" example="/sicau/zsjy/bkszs" path="/sicau/zsjy/:category?" paramsDesc={['分类,见下表,默认为本科生招生']} anticrawler="1">
- | 本科生招生 | 研究生招生 | 毕业生选录指南 |
- | ---------- | ---------- | -------------- |
- | bkszs | yjszs | bysxlzn |
-</Route>
+<Route data={{"path":"/sc/:type?","categories":["university"],"example":"/sdu/sc/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"软件学院通知","maintainers":["Ji4n1ng"],"description":"| 通知公告 | 学术动态 | 本科教育 | 研究生教育 |\n | -------- | -------- | -------- | ---------- |\n | 0 | 1 | 2 | 3 |","location":"sc.ts"}} />
-## 四川职业技术学院 {#si-chuan-zhi-ye-ji-shu-xue-yuan}
+| 通知公告 | 学术动态 | 本科教育 | 研究生教育 |
+| -------- | -------- | -------- | ---------- |
+| 0 | 1 | 2 | 3 |
-### 学院公告 {#si-chuan-zhi-ye-ji-shu-xue-yuan-xue-yuan-gong-gao}
+### 新闻网 {#shan-dong-da-xue-wei-hai-xin-wen-wang}
-<Route author="nczitzk" example="/scvtc/xygg" path="/scvtc/xygg" notOperational="1" />
+<Route data={{"path":"/wh/news/:column?","categories":["university"],"example":"/sdu/wh/news/xyyw","parameters":{"column":"专栏名称,默认为校园要闻(`xyyw`)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻网","maintainers":["kxxt"],"description":"| 校园要闻 | 学生动态 | 综合新闻 | 山大视点 | 菁菁校园 | 校园简讯 | 玛珈之窗 | 热点专题 | 媒体视角 | 高教视野 | 理论学习 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | xyyw | xsdt | zhxw | sdsd | jjxy | xyjx | mjzc | rdzt | mtsj | gjsy | llxx |","location":"wh/news.ts"}} />
-## 苏州科技大学 {#su-zhou-ke-ji-da-xue}
+| 校园要闻 | 学生动态 | 综合新闻 | 山大视点 | 菁菁校园 | 校园简讯 | 玛珈之窗 | 热点专题 | 媒体视角 | 高教视野 | 理论学习 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| xyyw | xsdt | zhxw | sdsd | jjxy | xyjx | mjzc | rdzt | mtsj | gjsy | llxx |
-### 教务处 {#su-zhou-ke-ji-da-xue-jiao-wu-chu}
+## 山东科技大学 {#shan-dong-ke-ji-da-xue}
-<Route author="Fatpandac" example="/usts/jwch" path="/usts/jwch/:type?" paramsDesc={['类型,默认为教务动态']} radar="1">
- | 类型 | 教务动态 | 公告在线 | 选课通知 |
- | ---- | -------- | -------- | -------- |
- | | jwdt | ggzx | xktz |
-</Route>
+### 研究生招生网 {#shan-dong-ke-ji-da-xue-yan-jiu-sheng-zhao-sheng-wang}
-## 太原师范学院 {#tai-yuan-shi-fan-xue-yuan}
+<Route data={{"path":"/yjsy/zhaosheng/:id?","categories":["university"],"example":"/sdust/yjsy/zhaosheng","parameters":{"id":"栏目 id,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生招生网","maintainers":["nczitzk"],"description":"栏目\n\n | 招生简章 | 专业目录 | 往届录取 | 管理规定 | 资料下载 |\n | -------- | -------- | -------- | -------- | -------- |\n | zsjz | zyml | wjlq | glgd | zlxz |\n\n | 通知公告 | 博士招生 | 硕士招生 | 推免生招生 | 招生宣传 |\n | -------- | -------- | -------- | ---------- | -------- |\n | tzgg | bszs | sszs | tms | zsxc |","location":"yjsy/zhaosheng.ts"}} />
-### 通知公告 {#tai-yuan-shi-fan-xue-yuan-tong-zhi-gong-gao}
+栏目
-<Route author="2PoL" example="/tynu" path="/tynu" radar="1" notOperational="1" />
+| 招生简章 | 专业目录 | 往届录取 | 管理规定 | 资料下载 |
+| -------- | -------- | -------- | -------- | -------- |
+| zsjz | zyml | wjlq | glgd | zlxz |
-## 同济大学 {#tong-ji-da-xue}
+| 通知公告 | 博士招生 | 硕士招生 | 推免生招生 | 招生宣传 |
+| -------- | -------- | -------- | ---------- | -------- |
+| tzgg | bszs | sszs | tms | zsxc |
-### 研究生院通知公告 {#tong-ji-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
+## 上海大学 {#shang-hai-da-xue}
-<Route author="shengmaosu" example="/tongji/yjs" path="/tongji/yjs" radar="1" />
+### 官网信息 {#shang-hai-da-xue-guan-wang-xin-xi}
-### 软件学院通知 {#tong-ji-da-xue-ruan-jian-xue-yuan-tong-zhi}
+<Route data={{"path":"/:type?","categories":["university"],"example":"/shu/news","parameters":{"type":"消息类型,默认为`news`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.shu.edu.cn/:type"],"target":"/:type"},"name":"官网信息","maintainers":["lonelyion"],"description":"| 综合新闻 | 科研动态 | 通知公告 | 重要新闻 |\n | -------- | -------- | -------- | --------- |\n | news | research | notice | important |","location":"index.ts"}} />
-<Route author="sgqy" example="/tongji/sse/xytz" path="/tongji/sse/:type?" paramsDesc={['通知类型,默认为 `xytz`']} radar="1">
- | 本科生通知 | 研究生通知 | 教工通知 | 全体通知 | 学院通知 | 学院新闻 | 学院活动 |
- | ---------- | ---------- | -------- | -------- | -------- | -------- | -------- |
- | bkstz | yjstz | jgtz | qttz | xytz | xyxw | xyhd |
+| 综合新闻 | 科研动态 | 通知公告 | 重要新闻 |
+| -------- | -------- | -------- | --------- |
+| news | research | notice | important |
- 注意: `qttz` 与 `xytz` 在原网站等价.
-</Route>
+## 上海电力大学 {#shang-hai-dian-li-da-xue}
-### 本科生院通知公告 {#tong-ji-da-xue-ben-ke-sheng-yuan-tong-zhi-gong-gao}
+### 新闻网与学院通知 {#shang-hai-dian-li-da-xue-xin-wen-wang-yu-xue-yuan-tong-zhi}
-<Route author="shiquda" example="/tongji/bks" path="/tongji/bks" radar="1" />
+<Route data={{"path":"/:type/:id?","categories":["university"],"example":"/shiep/news/notice","parameters":{"type":"类型名称,见下表","id":"页面 ID,默认为通知公告或学院公告所对应的 ID"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻网与学院通知","maintainers":["gumibea","TeamSUEP"],"description":"类型名称与默认 ID:\n\n 学院一览:\n\n | 能源与机械工程学院 | 环境与化学工程学院 | 电气工程学院 | 自动化工程学院 | 计算机科学与技术学院 | 电子与信息工程学院 | 经济与管理学院 | 数理学院 | 外国语学院 | 体育学院 | 马克思主义学院 | 人文艺术学院 | 继续教育学院(国际教育学院) |\n | ------------------ | ------------------ | ------------ | -------------- | -------------------- | ------------------ | -------------- | -------- | ---------- | -------- | -------------- | ------------ | ---------------------------- |\n | energy | hhxy | dqxy | zdhxy | jsjxy | dxxy | jgxy | slxy | wgyxy | tyb | skb | rwysxy | jjxy |\n | 892 | 1231 | 2462 | 2002 | xygg | tzgg | 3633 | 2063 | tzgg | 2891 | 1736 | 3089 | 2582 |\n\n 党群部门:\n\n | 党委办公室 | 组织部(老干部处、党校) | 党建服务中心 / 党建督查室 | 宣传部(文明办、融媒体中心) | 统战部 | 机关党委 | 纪委(监察专员办公室) | 巡查办 | 武装部 | 学生工作部 | 团委 | 工会(妇工委) | 教师工作部 | 离退休党委 | 研究生工作部 |\n | ---------- | ------------------------ | ------------------------- | ---------------------------- | ------ | -------- | ---------------------- | --------- | ------ | ---------- | ---- | -------------- | ---------- | ---------- | ------------ |\n | dangban | zzb | djfwzxdcs | xcb | tzb | jgdw | jijian | xunchaban | bwc | xsc | tw | gonghui | rsc | tgb | yjsc |\n | 4014 | 1534 | tzgg | 2925 | 3858 | 3205 | 59 | 5044 | tzgg | 3482 | 2092 | 1806 | 1695 | notice | 1161 |\n\n 行政部门:\n\n | 校长办公室(档案馆) | 对外联络处 | 发展规划处 | 审计处 | 保卫处 | 学生处 | 人事处 | 退管办 | 国际交流与合作处(港澳台办公室) | 科研处 / 融合办 | 教务处 | 研究生院 | 后勤管理处(后勤服务中心) | 实验室与资产管理处 | 基建处 | 临港新校区建设综合办公室 | 图书馆 | 现代教育技术中心 / 信息办 | 创新创业工程训练中心 | 资产经营公司 / 产业办 | 能源电力科创中心 | 技术转移中心 |\n | -------------------- | ---------- | ---------- | ------ | ------ | ------ | ------ | ------ | -------------------------------- | --------------- | ------ | -------- | -------------------------- | ------------------ | ------ | ------------------------ | ------- | ------------------------- | -------------------- | --------------------- | ---------------- | ------------ |\n | office | dwllc | fzghc | sjc | bwc | xsc | rsc | tgb | fao | kyc | jwc | yjsc | hqglc | sysyzcglc | jjc | lgxq | library | metc | ieetc | cyb | kczx | jszyzx |\n | 389 | 2649 | 291 | 199 | tzgg | 3482 | 1695 | notice | tzgg | 834 | 227 | 1161 | 1616 | 312 | 327 | 377 | 4866 | tzgg | cxcy | 367 | 3946 | 4247 |\n\n 其它:\n\n | 新闻网 | Shanghai University of Electric Power | 信息公开网 | 本科招生网 | 本科就业信息网 | 妇工委 | 文明办 | 学习路上 | 上海热交换系统节能工程技术研究中心 | 上海新能源人才技术教育交流中心 | 上海绿色能源并网技术研究中心 | 能源化学实验教学中心 | 教师教学发展中心 | 电力装备设计与制造虚拟仿真中心 | 上海市电力材料防护与新材料重点实验室 | 能源电力智库 | 国家新能源电力系统实验教学示范中心 | 智能发电实验教学中心 |\n | ------ | ------------------------------------- | ---------- | ---------- | -------------- | ------ | ------- | -------- | ---------------------------------- | ------------------------------ | ---------------------------- | -------------------- | ---------------- | ------------------------------ | ------------------------------------ | ------------ | ---------------------------------- | -------------------- |\n | news | english | xxgk | zs | career | fgw | wenming | ztjy | energy-saving | gec | green-energy | hhsyzx | jsjxfzzx | jxfz | mpep | nydlzk | restec | spgc |\n | notice | events | zxgkxx | zxxx | tzgg | 1411 | 2202 | 5575 | tzgg | 1959 | 118 | 3709 | 3909 | 3330 | 1134 | tzgg | 1366 | 4449 |\n\n 参数与来源页面对应规则为:`https://${type}.shiep.edu.cn/${id}/list.htm`","location":"index.ts"}} />
-## 潍坊学院 {#wei-fang-xue-yuan}
+类型名称与默认 ID:
-### 新闻 {#wei-fang-xue-yuan-xin-wen}
+学院一览:
-<Route author="cccht" example="/wfu/news/wyyw" path="/wfu/news/:type?" paramsDesc={['分类,默认为 `wyyw`,具体参数见下表']} notOperational="1">
- | **内容** | **参数** |
- | :------: | :------: |
- | 潍院要闻 | wyyw |
- | 综合新闻 | zhxw |
- | 学术纵横 | xszh |
-</Route>
+| 能源与机械工程学院 | 环境与化学工程学院 | 电气工程学院 | 自动化工程学院 | 计算机科学与技术学院 | 电子与信息工程学院 | 经济与管理学院 | 数理学院 | 外国语学院 | 体育学院 | 马克思主义学院 | 人文艺术学院 | 继续教育学院(国际教育学院) |
+| ------------------ | ------------------ | ------------ | -------------- | -------------------- | ------------------ | -------------- | -------- | ---------- | -------- | -------------- | ------------ | ---------------------------- |
+| energy | hhxy | dqxy | zdhxy | jsjxy | dxxy | jgxy | slxy | wgyxy | tyb | skb | rwysxy | jjxy |
+| 892 | 1231 | 2462 | 2002 | xygg | tzgg | 3633 | 2063 | tzgg | 2891 | 1736 | 3089 | 2582 |
-### 教务处通知 {#wei-fang-xue-yuan-jiao-wu-chu-tong-zhi}
+党群部门:
-<Route author="cccht" example="/wfu/jwc" path="/wfu/jwc" notOperational="1" />
+| 党委办公室 | 组织部(老干部处、党校) | 党建服务中心 / 党建督查室 | 宣传部(文明办、融媒体中心) | 统战部 | 机关党委 | 纪委(监察专员办公室) | 巡查办 | 武装部 | 学生工作部 | 团委 | 工会(妇工委) | 教师工作部 | 离退休党委 | 研究生工作部 |
+| ---------- | ------------------------ | ------------------------- | ---------------------------- | ------ | -------- | ---------------------- | --------- | ------ | ---------- | ---- | -------------- | ---------- | ---------- | ------------ |
+| dangban | zzb | djfwzxdcs | xcb | tzb | jgdw | jijian | xunchaban | bwc | xsc | tw | gonghui | rsc | tgb | yjsc |
+| 4014 | 1534 | tzgg | 2925 | 3858 | 3205 | 59 | 5044 | tzgg | 3482 | 2092 | 1806 | 1695 | notice | 1161 |
-## 温州大学 {#wen-zhou-da-xue}
+行政部门:
-### 新闻 {#wen-zhou-da-xue-xin-wen}
+| 校长办公室(档案馆) | 对外联络处 | 发展规划处 | 审计处 | 保卫处 | 学生处 | 人事处 | 退管办 | 国际交流与合作处(港澳台办公室) | 科研处 / 融合办 | 教务处 | 研究生院 | 后勤管理处(后勤服务中心) | 实验室与资产管理处 | 基建处 | 临港新校区建设综合办公室 | 图书馆 | 现代教育技术中心 / 信息办 | 创新创业工程训练中心 | 资产经营公司 / 产业办 | 能源电力科创中心 | 技术转移中心 |
+| -------------------- | ---------- | ---------- | ------ | ------ | ------ | ------ | ------ | -------------------------------- | --------------- | ------ | -------- | -------------------------- | ------------------ | ------ | ------------------------ | ------- | ------------------------- | -------------------- | --------------------- | ---------------- | ------------ |
+| office | dwllc | fzghc | sjc | bwc | xsc | rsc | tgb | fao | kyc | jwc | yjsc | hqglc | sysyzcglc | jjc | lgxq | library | metc | ieetc | cyb | kczx | jszyzx |
+| 389 | 2649 | 291 | 199 | tzgg | 3482 | 1695 | notice | tzgg | 834 | 227 | 1161 | 1616 | 312 | 327 | 377 | 4866 | tzgg | cxcy | 367 | 3946 | 4247 |
-<Route author="Chandler-Lu" example="/wzu/news/0" path="/wzu/news/:type" paramsDesc={['分类,见下表 默认为`0`']} anticrawler="1">
- | 温大新闻 | 媒体温大 | 学术温大 | 通知公告 | 招标信息 | 学术公告 |
- | :------: | :------: | :------: | :------: | :------: | :------: |
- | 0 | 1 | 2 | 3 | 4 | 5 |
-</Route>
+其它:
-## 温州商学院 {#wen-zhou-shang-xue-yuan}
+| 新闻网 | Shanghai University of Electric Power | 信息公开网 | 本科招生网 | 本科就业信息网 | 妇工委 | 文明办 | 学习路上 | 上海热交换系统节能工程技术研究中心 | 上海新能源人才技术教育交流中心 | 上海绿色能源并网技术研究中心 | 能源化学实验教学中心 | 教师教学发展中心 | 电力装备设计与制造虚拟仿真中心 | 上海市电力材料防护与新材料重点实验室 | 能源电力智库 | 国家新能源电力系统实验教学示范中心 | 智能发电实验教学中心 |
+| ------ | ------------------------------------- | ---------- | ---------- | -------------- | ------ | ------- | -------- | ---------------------------------- | ------------------------------ | ---------------------------- | -------------------- | ---------------- | ------------------------------ | ------------------------------------ | ------------ | ---------------------------------- | -------------------- |
+| news | english | xxgk | zs | career | fgw | wenming | ztjy | energy-saving | gec | green-energy | hhsyzx | jsjxfzzx | jxfz | mpep | nydlzk | restec | spgc |
+| notice | events | zxgkxx | zxxx | tzgg | 1411 | 2202 | 5575 | tzgg | 1959 | 118 | 3709 | 3909 | 3330 | 1134 | tzgg | 1366 | 4449 |
-### 温州商学院 {#wen-zhou-shang-xue-yuan-wen-zhou-shang-xue-yuan}
+参数与来源页面对应规则为:`https://${type}.shiep.edu.cn/${id}/list.htm`
-<Route author="howel52" example="/wzbc/notice" path="/wzbc/:type" paramsDesc={['分类,见下表']} notOperational="1">
- | 校园新闻 | 媒体商院 | 通知公告 | 人才招聘 | 行事历 | 招标公告 | 学术动态 |
- | -------- | -------- | -------- | -------- | ------- | -------- | -------- |
- | news | media | notice | jobs | workday | tender | activity |
-</Route>
+## 上海海事大学 {#shang-hai-hai-shi-da-xue}
-## 武昌首义学院 {#wu-chang-shou-yi-xue-yuan}
+### 官网信息 {#shang-hai-hai-shi-da-xue-guan-wang-xin-xi}
-### 新闻中心 {#wu-chang-shou-yi-xue-yuan-xin-wen-zhong-xin}
+<Route data={{"path":"/www/:type","categories":["university"],"example":"/shmtu/www/events","parameters":{"type":"类型名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.shmtu.edu.cn/:type"]},"name":"官网信息","maintainers":["imbytecat","simonsmh"],"description":"| 学术讲座 | 通知公告 |\n| -------- | -------- |\n| events | notes |","location":"www.ts"}} />
-<Route author="Derekmini" example="/wsyu/news/xxyw" path="/wsyu/news/:type?" paramsDesc={['分类,默认为 `xxyw`']}>
- | 学校要闻 | 综合新闻 | 媒体聚焦 |
- | -------- | -------- | -------- |
- | xxyw | zhxw | mtjj |
-</Route>
+| 学术讲座 | 通知公告 |
+| -------- | -------- |
+| events | notes |
-## 武汉大学 {#wu-han-da-xue}
+### 教务信息 {#shang-hai-hai-shi-da-xue-jiao-wu-xin-xi}
-### 计算机学院公告 {#wu-han-da-xue-ji-suan-ji-xue-yuan-gong-gao}
+<Route data={{"path":"/jwc/:type","categories":["university"],"example":"/shmtu/jwc/jwgg","parameters":{"type":"类型名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.shmtu.edu.cn/:type"]},"name":"教务信息","maintainers":["imbytecat","simonsmh"],"description":"| 教务公告 | 教务新闻 |\n| -------- | -------- |\n| jwgg | jwxw |","location":"jwc.ts"}} />
-<Route author="ttyfly" example="/whu/cs/2" path="/whu/cs/:type" paramsDesc={['公告类型,详见表格']}>
- | 公告类型 | 学院新闻 | 学术交流 | 通知公告 | 科研进展 |
- | -------- | -------- | -------- | -------- | -------- |
- | 参数 | 0 | 1 | 2 | 3 |
-</Route>
+| 教务公告 | 教务新闻 |
+| -------- | -------- |
+| jwgg | jwxw |
-### 新闻网 {#wu-han-da-xue-xin-wen-wang}
+### 数字平台 {#shang-hai-hai-shi-da-xue-shu-zi-ping-tai}
-<Route author="SChen1024 nczitzk" example="/whu/news" path="/whu/news/:category?" paramsDesc={['分类,见下表,默认为 `wdzx/wdyw`, 即 **武大要闻**']} radar="1" anticrawler="1">
- | 武大资讯 | 武大要闻 | 综合新闻 | 合作交流 | 一线传真 |
- | --------- | --------- | --------- | --------- | --------- |
- | wdzx/wdyw | wdzx/wdyw | wdzx/zhxw | wdzx/hzjl | wdzx/yxcz |
+<Route data={{"path":"/portal/:type","categories":["university"],"example":"/shmtu/portal/bmtzgg","parameters":{"type":"类型名称"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["portal.shmtu.edu.cn/:type"]},"name":"数字平台","maintainers":["imbytecat"],"description":"| 部门通知公告 | 学术与大型活动公告 | 部门动态 |\n| ------------ | ------------------ | -------- |\n| bmtzgg | xsydxhdgg | bmdt |","location":"portal.ts"}} />
- <details>
- <summary>更多分类</summary>
+| 部门通知公告 | 学术与大型活动公告 | 部门动态 |
+| ------------ | ------------------ | -------- |
+| bmtzgg | xsydxhdgg | bmdt |
- #### 学术动态
+## 上海交通大学 {#shang-hai-jiao-tong-da-xue}
- | 学术动态 |
- | -------- |
- | kydt |
+### 教务处通知公告 {#shang-hai-jiao-tong-da-xue-jiao-wu-chu-tong-zhi-gong-gao}
- #### 校园文化
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/sjtu/jwc","parameters":{"type":"默认为 notice"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处通知公告","maintainers":["SeanChao"],"description":"| 新闻中心 | 通知通告 | 教学运行 | 注册学务 | 研究办 | 教改办 | 综合办 | 语言文字 | 工会与支部 | 通识教育 |\n | -------- | -------- | --------- | -------- | ------ | ------ | ------ | -------- | ---------- | -------- |\n | news | notice | operation | affairs | yjb | jgb | zhb | language | party | ge |","location":"jwc.ts"}} />
- | 缤纷校园 | 校友之声 | 珞珈副刊 | 校史钩沉 |
- | --------- | --------- | --------- | --------- |
- | xywh/bfxy | xywh/xyzs | xywh/ljfk | xywh/xsgc |
+| 新闻中心 | 通知通告 | 教学运行 | 注册学务 | 研究办 | 教改办 | 综合办 | 语言文字 | 工会与支部 | 通识教育 |
+| -------- | -------- | --------- | -------- | ------ | ------ | ------ | -------- | ---------- | -------- |
+| news | notice | operation | affairs | yjb | jgb | zhb | language | party | ge |
- #### 专题报道
+### 同去网最新活动 {#shang-hai-jiao-tong-da-xue-tong-qu-wang-zui-xin-huo-dong}
- | 专题报道 | 主题教育 | 顶天立地建学科 | 学习在线 | 记者调查 | 校庆征文 我与武大 |
- | -------- | --------- | -------------- | --------- | --------- | ----------------- |
- | ztbd | ztbd/ztjy | ztbd/dtldjxk | ztbd/xxzx | ztbd/jzdc | ztbd/xqzw\_wywd |
+<Route data={{"path":"/tongqu/:type?","categories":["university"],"example":"/sjtu/tongqu/lecture","parameters":{"type":"类型,默认为全部"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"同去网最新活动","maintainers":["SeanChao"],"description":"| 全部 | 最新 | 招新 | 讲座 | 户外 | 招聘 | 游学 | 比赛 | 公益 | 主题党日 | 学生事务 | 广告 | 其他 |\n | ---- | ------ | ----------- | ------- | --------- | ---- | ---------- | ------------ | -------------- | -------- | -------------- | ---- | ------ |\n | all | newest | recruitment | lecture | outdoords | jobs | studyTours | competitions | publicWarefare | partyDay | studentAffairs | ads | others |","location":"tongqu/activity.ts"}} />
- #### 媒体武大
+| 全部 | 最新 | 招新 | 讲座 | 户外 | 招聘 | 游学 | 比赛 | 公益 | 主题党日 | 学生事务 | 广告 | 其他 |
+| ---- | ------ | ----------- | ------- | --------- | ---- | ---------- | ------------ | -------------- | -------- | -------------- | ---- | ------ |
+| all | newest | recruitment | lecture | outdoords | jobs | studyTours | competitions | publicWarefare | partyDay | studentAffairs | ads | others |
- | 媒体武大 |
- | -------- |
- | mtwd |
+### 研究生通知公告 {#shang-hai-jiao-tong-da-xue-yan-jiu-sheng-tong-zhi-gong-gao}
- #### 珞珈人物
+<Route data={{"path":"/gs/:type/:num?","categories":["university"],"example":"/sjtu/gs/enroll/59","parameters":{"type":"类别","num":"细分类别, 仅对`type`为`enroll`或`exchange`有效"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.sjtu.edu.cn/announcement/:type"],"target":"/gs/:type"},"name":"研究生通知公告","maintainers":["dzx-dzx"],"description":"| 工作信息 | 招生信息 | 培养信息 | 学位学科 | 国际交流 | 创新工程 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | work | enroll | train | degree | exchange | xsjy |\n\n 当`type`为`enroll`, `num`可选字段:\n\n | 58 | 59 | 60 | 61 | 62 |\n | -------- | -------- | ---------- | -------- | -------- |\n | 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |\n\n 当`type`为`exchange`, `num`可选字段:\n\n | 67 | 68 | 69 | 70 | 71 |\n | -------------- | -------------- | -------------- | -------------- | -------------- |\n | 国家公派研究生 | 国际化培养资助 | 校际交换与联培 | 交流与合作项目 | 项目招募与宣讲 |","location":"gs.ts"}} />
- | 珞珈人物 |
- | -------- |
- | ljrw |
+| 工作信息 | 招生信息 | 培养信息 | 学位学科 | 国际交流 | 创新工程 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| work | enroll | train | degree | exchange | xsjy |
- #### 视听空间
+当`type`为`enroll`, `num`可选字段:
- | 视听空间 | 珞珈影像 | 武大视频 |
- | --------- | --------- | --------- |
- | stkj/ljyx | stkj/ljyx | stkj/wdsp |
- </details>
-</Route>
+| 58 | 59 | 60 | 61 | 62 |
+| -------- | -------- | ---------- | -------- | -------- |
+| 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |
-### 研究生院 {#wu-han-da-xue-yan-jiu-sheng-yuan}
+当`type`为`exchange`, `num`可选字段:
-<Route author="Delreyaa" example="/whu/gs/0" path="/whu/gs/:type?" paramsDesc={['分类,默认为 `0`,具体参数见下表']}>
- | 公告类型 | 新闻动态 | 学术探索 | 院系风采 | 通知 (全部) | 通知 (招生) | 通知 (培养) | 通知 (学位) | 通知 (质量与专业学位) | 通知 (综合) |
- | -------- | -------- | -------- | -------- | ----------- | ----------- | ----------- | ----------- | --------------------- | ----------- |
- | 参数 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
-</Route>
+| 67 | 68 | 69 | 70 | 71 |
+| -------------- | -------------- | -------------- | -------------- | -------------- |
+| 国家公派研究生 | 国际化培养资助 | 校际交换与联培 | 交流与合作项目 | 项目招募与宣讲 |
-### 弘毅学堂 {#wu-han-da-xue-hong-yi-xue-tang}
+### 研究生招生网招考信息 {#shang-hai-jiao-tong-da-xue-yan-jiu-sheng-zhao-sheng-wang-zhao-kao-xin-xi}
-<Route author="nczitzk" example="/whu/hyxt" path="/whu/hyxt/:category?" paramsDesc={['分类,见下表,默认为 `xwdt`, 即 **新闻动态**']} radar="1" anticrawler="1">
- | 新闻动态 | 通知公告 | 学子风采 | 学术论坛 |
- | -------- | -------- | -------- | -------- |
- | xwdt | tzgg | xzfc | xslt |
+<Route data={{"path":"/yzb/zkxx/:type","categories":["university"],"example":"/sjtu/yzb/zkxx/sszs","parameters":{"type":"无默认选项"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生招生网招考信息","maintainers":["stdrc"],"description":"| 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |\n | -------- | -------- | ---------- | -------- | -------- |\n | bszs | sszs | gatzs | kdxx | yxdt |","location":"yzb/zkxx.ts"}} />
- <details>
- <summary>更多分类</summary>
+| 博士招生 | 硕士招生 | 港澳台招生 | 考点信息 | 院系动态 |
+| -------- | -------- | ---------- | -------- | -------- |
+| bszs | sszs | gatzs | kdxx | yxdt |
- #### 学堂简报
+## 上海社会科学院 {#shang-hai-she-hui-ke-xue-yuan}
- | 学堂简报 |
- | -------- |
- | xtjb |
+### 研究生院 {#shang-hai-she-hui-ke-xue-yuan-yan-jiu-sheng-yuan}
- #### 人才培养
+<Route data={{"path":"/gs/:type","categories":["university"],"example":"/sass/gs/1793","parameters":{"type":"类别 ID,见下表,其他未列出的栏目参数可以从页面的 URL Path 中找到,例如:硕士统考招生的网址为 `https://gs.sass.org.cn/1793/list.htm`,则类别 ID 为`1793`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.sass.org.cn/:type/list.htm"]},"name":"研究生院","maintainers":["yanbot-team"],"description":"| 硕士统考招生 | 硕士推免招生 |\n | ------------ | ------------ |\n | 1793 | sstmzs |","location":"gs/index.ts"}} />
- | 人才培养 | 招生工作 | 培养方案 | 科研训练 | 毕业去向 | 学习资源 |
- | -------- | --------- | --------- | --------- | --------- | --------- |
- | rcpy | rcpy/zsgz | rcpy/pyfa | rcpy/kyxl | rcpy/byqx | rcpy/xxzy |
+| 硕士统考招生 | 硕士推免招生 |
+| ------------ | ------------ |
+| 1793 | sstmzs |
- #### 学生工作
+## 上海外国语大学 {#shang-hai-wai-guo-yu-da-xue}
- | 学生工作 | 党团建设 | 学术交流 | 书院生活 | 奖助体系 | 事务服务 |
- | -------- | --------- | --------- | --------- | --------- | --------- |
- | xsgz | xsgz/dtjs | xsgz/xsjl | xsgz/sysh | xsgz/jztx | xsgz/swfw |
+### 上外新闻 {#shang-hai-wai-guo-yu-da-xue-shang-wai-xin-wen}
- #### 国际合作
+<Route data={{"path":"/news/:category","categories":["university"],"example":"/shisu/news/notice","parameters":{"category":"新闻的分类可根据自己的需要选择,首页为全部新闻"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.shisu.edu.cn/:category/index.html"]},"name":"上外新闻","maintainers":["Duuckjing"],"description":"| 首页 | 特稿 | 学术 | 教学 | 国际 | 校园 | 人物 | 视讯 | 公告 |\n | ---- | ------- | --------- | ---------- | ------------- | ------ | ------ | ---------- | ------ |\n | news | gazette | research- | academics- | international | campus | people | multimedia | notice |","location":"news.ts"}} />
- | 国际合作 | 国际交流 | 交流分享 |
- | -------- | --------- | --------- |
- | gjhz | gjhz/gjjl | gjhz/jlfx |
+| 首页 | 特稿 | 学术 | 教学 | 国际 | 校园 | 人物 | 视讯 | 公告 |
+| ---- | ------- | --------- | ---------- | ------------- | ------ | ------ | ---------- | ------ |
+| news | gazette | research- | academics- | international | campus | people | multimedia | notice |
- #### 校友风采
+## 深圳大学 {#shen-zhen-da-xue}
- | 校友风采 |
- | -------- |
- | xyfc |
- </details>
-</Route>
+### 研究生招生网 {#shen-zhen-da-xue-yan-jiu-sheng-zhao-sheng-wang}
-## 武汉纺织大学 {#wu-han-fang-zhi-da-xue}
+<Route data={{"path":"/yz/:type?","categories":["university"],"example":"/szu/yz/1","parameters":{"type":"默认为 `1`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生招生网","maintainers":["NagaruZ"],"description":"| 研究生 | 博士生 |\n | ------ | ------ |\n | 1 | 2 |","location":"yz/index.ts"}} />
-### 信息门户公告 {#wu-han-fang-zhi-da-xue-xin-xi-men-hu-gong-gao}
+| 研究生 | 博士生 |
+| ------ | ------ |
+| 1 | 2 |
-<Route author="loyio" example="/wtu/2" path="/wtu/:type" paramsDesc={['公告类型,详见表格']} anticrawler="1">
- | 公告类型 | 通知公告 | 教务信息 | 科研动态 |
- | -------- | -------- | -------- | -------- |
- | 参数 | 1 | 2 | 3 |
-</Route>
+## 四川工商学院 {#si-chuan-gong-shang-xue-yuan}
-### 就业信息 {#wu-han-fang-zhi-da-xue-jiu-ye-xin-xi}
+### 计算机学院通知公告 {#si-chuan-gong-shang-xue-yuan-ji-suan-ji-xue-yuan-tong-zhi-gong-gao}
-<Route author="ticks-tan" example="/wtu/job/xxtz" path="/wtu/job/:type" paramsDesc={['信息类型']}>
- | 信息类型 | 消息通知 | 通知公告 | 新闻快递 |
- | -------- | -------- | -------- | -------- |
- | 参数 | xxtz | tzgg | xwkd |
-</Route>
+<Route data={{"path":"/jsjxy","categories":["university"],"example":"/stbu/jsjxy","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jsjxy.stbu.edu.cn/news","jsjxy.stbu.edu.cn/"]},"name":"计算机学院通知公告","maintainers":["HyperCherry"],"url":"jsjxy.stbu.edu.cn/news","description":":::warning\n计算机学院通知公告疑似禁止了非大陆 IP 访问,使用路由需要自行 [部署](https://docs.rsshub.app/install)。\n:::","location":"jsjxy.ts"}} />
-## 西安财经大学 {#xi-an-cai-jing-da-xue}
+:::warning
+计算机学院通知公告疑似禁止了非大陆 IP 访问,使用路由需要自行 [部署](https://docs.rsshub.app/install)。
+:::
-### 教务处 {#xi-an-cai-jing-da-xue-jiao-wu-chu}
+## 四川农业大学 {#si-chuan-nong-ye-da-xue}
-<Route author="shaokeyibb" example="/xaufe/jiaowu/tzgg" path="/xaufe/jiaowu/:category?" paramsDesc={['分类,默认为通知公告']} radar="1" notOperational="1">
- | 通知公告 |
- | :------: |
- | tzgg |
-</Route>
+### 动物科技学院 {#si-chuan-nong-ye-da-xue-dong-wu-ke-ji-xue-yuan}
-## 西安电子科技大学 {#xi-an-dian-zi-ke-ji-da-xue}
+<Route data={{"path":"/dky/:category?","categories":["university"],"example":"/sicau/dky/tzgg","parameters":{"category":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dky.sicau.edu.cn/"]},"name":"动物科技学院","maintainers":["nczitzk"],"url":"dky.sicau.edu.cn/","description":"| 通知公告 | 学院动态 | 教学管理 | 动科大讲堂 | 就业信息 |\n | -------- | -------- | -------- | ---------- | -------- |\n | tzgg | xydt | jxgl | dkdjt | zpxx |","location":"dky.ts"}} />
-### 教务处 {#xi-an-dian-zi-ke-ji-da-xue-jiao-wu-chu}
+| 通知公告 | 学院动态 | 教学管理 | 动科大讲堂 | 就业信息 |
+| -------- | -------- | -------- | ---------- | -------- |
+| tzgg | xydt | jxgl | dkdjt | zpxx |
-<Route author="ShadowySpirits" example="/xidian/jwc/tzgg" path="/xidian/jwc/:category?" paramsDesc={['通知类别,默认为通知公告']} radar="1">
- | 教学信息 | 教学研究 | 实践教学 | 质量监控 | 通知公告 |
- | :------: | :------: | :------: | :------: | :------: |
- | jxxx | jxyj | sjjx | zljk | tzgg |
-</Route>
+### 研究生院 {#si-chuan-nong-ye-da-xue-yan-jiu-sheng-yuan}
-## 西安交通大学 {#xi-an-jiao-tong-da-xue}
+<Route data={{"path":"/yan/:category?","categories":["university"],"example":"/sicau/yan/xwgg","parameters":{"category":"分类,见下表,默认为新闻公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yan.sicau.edu.cn/"]},"name":"研究生院","maintainers":["nczitzk"],"url":"yan.sicau.edu.cn/","description":"| 新闻公告 | 学术报告 |\n | -------- | -------- |\n | xwgg | xsbg |","location":"yan.ts"}} />
-### 教务处 {#xi-an-jiao-tong-da-xue-jiao-wu-chu}
+| 新闻公告 | 学术报告 |
+| -------- | -------- |
+| xwgg | xsbg |
-<Route author="hoilc" example="/xjtu/dean/jxxx/xytz/ksap" path="/xjtu/dean/:subpath+" paramsDesc={['栏目路径,支持多级,不包括末尾的`.htm`']}>
- :::tip
- 支持`http://dean.xjtu.edu.cn/`下所有**有文章列表**的栏目,
+### 招生就业 {#si-chuan-nong-ye-da-xue-zhao-sheng-jiu-ye}
- 例如`http://dean.xjtu.edu.cn/gzlc.htm`,则`subpath`为`gzlc`
+<Route data={{"path":"/zsjy/:category?","categories":["university"],"example":"/sicau/zsjy/bkszs","parameters":{"category":"分类,见下表,默认为本科生招生"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["dky.sicau.edu.cn/"]},"name":"招生就业","maintainers":["nczitzk"],"url":"dky.sicau.edu.cn/","description":"| 本科生招生 | 研究生招生 | 毕业生选录指南 |\n | ---------- | ---------- | -------------- |\n | bkszs | yjszs | bysxlzn |","location":"zsjy.ts"}} />
- 又例`http://dean.xjtu.edu.cn/jxxx/xytz.htm`,则`subpath`为`jxxx/xytz`
- :::
-</Route>
+| 本科生招生 | 研究生招生 | 毕业生选录指南 |
+| ---------- | ---------- | -------------- |
+| bkszs | yjszs | bysxlzn |
-### 国际处通知 {#xi-an-jiao-tong-da-xue-guo-ji-chu-tong-zhi}
+## 四川职业技术学院 {#si-chuan-zhi-ye-ji-shu-xue-yuan}
-<Route author="guitaoliu" example="/xjtu/international/hzjl" path="/xjtu/international/:subpath+" paramsDesc={['栏目路径,支持多级,不包括末尾的`.htm`']} />
+### 学院公告 {#si-chuan-zhi-ye-ji-shu-xue-yuan-xue-yuan-gong-gao}
-### 研究生院通知公告 {#xi-an-jiao-tong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
+<Route data={{"path":"/xygg","categories":["university"],"example":"/scvtc/xygg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["scvtc.edu.cn/ggfw1/xygg.htm","scvtc.edu.cn/"]},"name":"学院公告","maintainers":["nczitzk"],"url":"scvtc.edu.cn/ggfw1/xygg.htm","location":"xygg.ts"}} />
-<Route author="nczitzk" example="/xjtu/gs/tzgg" path="/xjtu/gs/tzgg" />
+## 苏州科技大学 {#su-zhou-ke-ji-da-xue}
-### 就业创业中心 {#xi-an-jiao-tong-da-xue-jiu-ye-chuang-ye-zhong-xin}
+### 教务处 {#su-zhou-ke-ji-da-xue-jiao-wu-chu}
-<Route author="DylanXie123" example="/xjtu/job/zxgg" path="/xjtu/job/:subpath?" paramsDesc={['栏目类型,默认请求`zxgg`,详见下方表格']}>
- 栏目类型
+<Route data={{"path":"/jwch/:type?","categories":["university"],"example":"/usts/jwch","parameters":{"type":"类型,默认为教务动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":[],"description":"| 类型 | 教务动态 | 公告在线 | 选课通知 |\n | ---- | -------- | -------- | -------- |\n | | jwdt | ggzx | xktz |","location":"jwch.ts"}} />
- | 中心公告 | 选调生 | 重点单位 | 国际组织 | 创新创业 | 就业实习 |
- | -------- | ------ | -------- | -------- | -------- | -------- |
- | zxgg | xds | zddw | gjzz | cxcy | jysx |
-</Route>
+| 类型 | 教务动态 | 公告在线 | 选课通知 |
+| ---- | -------- | -------- | -------- |
+| | jwdt | ggzx | xktz |
-### 电气学院 {#xi-an-jiao-tong-da-xue-dian-qi-xue-yuan}
+## 同济大学 {#tong-ji-da-xue}
-<Route author="DylanXie123" example="/xjtu/ee/1114" path="/xjtu/ee/:id?" paramsDesc={['栏目id,默认请求`1124`,可在 URL 中找到']} />
+### 本科生院通知公告 {#tong-ji-da-xue-ben-ke-sheng-yuan-tong-zhi-gong-gao}
-### 科技在线 {#xi-an-jiao-tong-da-xue-ke-ji-zai-xian}
+<Route data={{"path":"/bks","categories":["university"],"example":"/tongji/bks","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["bksy.tongji.edu.cn/"]},"name":"本科生院通知公告","maintainers":["shiquda"],"url":"bksy.tongji.edu.cn/","location":"bks.ts"}} />
-<Route author="nczitzk" example="/xjtu/std/zytz" path="/xjtu/std/:category?" paramsDesc={['分类,见下表,默认为通知公告']} notOperational="1">
- | 通知公告 | 重要通知 | 项目申报 | 成果申报 | 信息快讯 |
- | -------- | -------- | -------- | -------- | -------- |
- | | zytz | xmsb | cgsb | xxkx |
-</Route>
+### 软件学院通知 {#tong-ji-da-xue-ruan-jian-xue-yuan-tong-zhi}
-### 第一附属医院新闻 {#xi-an-jiao-tong-da-xue-di-yi-fu-shu-yi-yuan-xin-wen}
+<Route data={{"path":"/sse/:type?","categories":["university"],"example":"/tongji/sse/xytz","parameters":{"type":"通知类型,默认为 `xytz`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"软件学院通知","maintainers":["sgqy"],"description":"| 本科生通知 | 研究生通知 | 教工通知 | 全体通知 | 学院通知 | 学院新闻 | 学院活动 |\n | ---------- | ---------- | -------- | -------- | -------- | -------- | -------- |\n | bkstz | yjstz | jgtz | qttz | xytz | xyxw | xyhd |\n\n 注意: `qttz` 与 `xytz` 在原网站等价.","location":"sse/notice.ts"}} />
-<Route author="TonyRL" example="/xjtu/dyyy/index/xsxx" path="/xjtu/dyyy/:path+" paramsDesc={['栏目路径,支持多级,不包括末尾的`.htm`']} radar="1" notOperational="1" />
+| 本科生通知 | 研究生通知 | 教工通知 | 全体通知 | 学院通知 | 学院新闻 | 学院活动 |
+| ---------- | ---------- | -------- | -------- | -------- | -------- | -------- |
+| bkstz | yjstz | jgtz | qttz | xytz | xyxw | xyhd |
-### 第二附属医院新闻 {#xi-an-jiao-tong-da-xue-di-er-fu-shu-yi-yuan-xin-wen}
+注意: `qttz` 与 `xytz` 在原网站等价.
-<Route author="nczitzk" example="/xjtu/2yuan/news" path="/xjtu/2yuan/news/:id?" paramsDesc={['编号,见下表,默认为通知公告']} notOperational="1">
- | 分类 | 编号 |
- | -------- | ---- |
- | 通知公告 | 110 |
- | 综合新闻 | 6 |
- | 科室动态 | 8 |
- | 教学动态 | 45 |
- | 科研动态 | 51 |
- | 护理动态 | 57 |
- | 党群活动 | 63 |
- | 外事活动 | 13 |
- | 媒体二院 | 14 |
- | 理论政策 | 16 |
-</Route>
+### 研究生院通知公告 {#tong-ji-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-## 西安理工大学 {#xi-an-li-gong-da-xue}
+<Route data={{"path":"/yjs","categories":["university"],"example":"/tongji/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.tongji.edu.cn/zsxw/ggtz.htm","yz.tongji.edu.cn/"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"yz.tongji.edu.cn/zsxw/ggtz.htm","location":"yjs.ts"}} />
-### 学校主页 {#xi-an-li-gong-da-xue-xue-xiao-zhu-ye}
+## 潍坊学院 {#wei-fang-xue-yuan}
-<Route author="mocusez" example="/xaut/index/tzgg" path="/xaut/index/:category?" paramsDesc={['通知类别,默认为通知公告']} radar="1">
- | 通知公告 | 校园要闻 | 媒体播报 | 学术活动 |
- | :------: | :------: | :------: | :------: |
- | tzgg | xyyw | mtbd | xshd |
-</Route>
+### 教务处通知 {#wei-fang-xue-yuan-jiao-wu-chu-tong-zhi}
-### 教务处 {#xi-an-li-gong-da-xue-jiao-wu-chu}
+<Route data={{"path":"/jwc","categories":["university"],"example":"/wfu/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.wfu.edu.cn/"]},"name":"教务处通知","maintainers":["cccht"],"url":"jwc.wfu.edu.cn/","location":"jwc.ts"}} />
-<Route author="mocusez" example="/xaut/jwc/tzgg" path="/xaut/jwc/:category?" paramsDesc={['通知类别,默认为通知公告']} radar="1">
- :::warning
- 有些内容需使用校园网或 VPN 访问知行网获取
- :::
+### 新闻 {#wei-fang-xue-yuan-xin-wen}
- | 通知公告 | 新闻动态 | 规章制度 | 竞赛结果公示 | 竞赛获奖通知 | 竞赛信息 | 公开公示 |
- | :------: | :------: | :------: | :----------: | :----------: | :------: | :------: |
- | tzgg | xwdt | gzzd | jggs | jsjg | jsxx | gkgs |
-</Route>
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/wfu/news/wyyw","parameters":{"type":"分类,默认为 `wyyw`,具体参数见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["news.wfu.edu.cn/"],"target":"/news"},"name":"新闻","maintainers":["cccht"],"url":"news.wfu.edu.cn/","description":"| **内容** | **参数** |\n | :------: | :------: |\n | 潍院要闻 | wyyw |\n | 综合新闻 | zhxw |\n | 学术纵横 | xszh |","location":"news.ts"}} />
-### 人事处 {#xi-an-li-gong-da-xue-ren-shi-chu}
+| **内容** | **参数** |
+| :------: | :------: |
+| 潍院要闻 | wyyw |
+| 综合新闻 | zhxw |
+| 学术纵横 | xszh |
-<Route author="light0926 mocusez" example="/xaut/rsc/tzgg" path="/xaut/rsc/:category?" paramsDesc={['通知类别,默认为通知公告']} radar="1">
- :::warning
- 有些内容指向外部链接,目前只提供这些链接,不提供具体内容,去除 jwc 和 index 的修改
- :::
+## 武昌首义学院 {#wu-chang-shou-yi-xue-yuan}
- | 通知公告 | 工作动态 |
- | :------: | :------: |
- | tzgg | gzdt |
-</Route>
+### 新闻中心 {#wu-chang-shou-yi-xue-yuan-xin-wen-zhong-xin}
-## 西北工业大学 {#xi-bei-gong-ye-da-xue}
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/wsyu/news/xxyw","parameters":{"type":"分类,默认为 `xxyw`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"新闻中心","maintainers":["Derekmini"],"description":"| 学校要闻 | 综合新闻 | 媒体聚焦 |\n | -------- | -------- | -------- |\n | xxyw | zhxw | mtjj |","location":"news.ts"}} />
-### 翱翔门户 {#xi-bei-gong-ye-da-xue-ao-xiang-men-hu}
+| 学校要闻 | 综合新闻 | 媒体聚焦 |
+| -------- | -------- | -------- |
+| xxyw | zhxw | mtjj |
-<Route author="WhoIsSure" example="/nwpu/10000" path="/nwpu/:column" paramsDesc={['栏目ID']} notOperational="1">
- 栏目 ID
+## 武汉大学 {#wu-han-da-xue}
- | 咨询中心 | 通知公告 | 校内新闻 | 校务公开 | 历史文件查询 | 教育教学 | 学术交流 | 学院动态 | 部门动态 |
- | -------- | -------- | -------- | -------- | ------------ | -------- | -------- | -------- | -------- |
- | 10000 | 10001 | 10002 | 10003 | 10004 | 10005 | 10006 | 10007 | 10008 |
-</Route>
+### 计算机学院公告 {#wu-han-da-xue-ji-suan-ji-xue-yuan-gong-gao}
-## 西北农林科技大学 {#xi-bei-nong-lin-ke-ji-da-xue}
+<Route data={{"path":"/cs/:type","categories":["university"],"example":"/whu/cs/2","parameters":{"type":"公告类型,详见表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机学院公告","maintainers":["ttyfly"],"description":"| 公告类型 | 学院新闻 | 学术交流 | 通知公告 | 科研进展 |\n | -------- | -------- | -------- | -------- | -------- |\n | 参数 | 0 | 1 | 2 | 3 |","location":"cs.ts"}} />
-### 校园要闻 {#xi-bei-nong-lin-ke-ji-da-xue-xiao-yuan-yao-wen}
+| 公告类型 | 学院新闻 | 学术交流 | 通知公告 | 科研进展 |
+| -------- | -------- | -------- | -------- | -------- |
+| 参数 | 0 | 1 | 2 | 3 |
-<Route author="dingyx99 karinido" example="/nwafu/lib" path="/nwafu/:type?" paramsDesc={['默认为 `jiaowu`']} notOperational="1">
- 通知类别
+### 研究生院 {#wu-han-da-xue-yan-jiu-sheng-yuan}
- | 图书馆 | 共青团团委 | 信工学院 | 后勤管理处 | 计划财务处 | 教务处 | 新闻网 | 信息化管理处 | 研究生院 | 农业科学院 | 机械与电子工程学院 | 学术活动 | 生命科学学院 |
- | ------ | ---------- | -------- | ---------- | ---------- | ------ | ------ | ------------ | -------- | ---------- | ------------------ | -------- | ------------ |
- | lib | youth | cie | gs | jcc | jiaowu | news | nic | yjshy | nxy | cmee | xshd | sm |
-</Route>
+<Route data={{"path":"/gs/:type?","categories":["university"],"example":"/whu/gs/0","parameters":{"type":"分类,默认为 `0`,具体参数见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.whu.edu.cn/index.htm","gs.whu.edu.cn/"],"target":"/gs"},"name":"研究生院","maintainers":["Delreyaa"],"url":"gs.whu.edu.cn/index.htm","description":"| 公告类型 | 新闻动态 | 学术探索 | 院系风采 | 通知 (全部) | 通知 (招生) | 通知 (培养) | 通知 (学位) | 通知 (质量与专业学位) | 通知 (综合) |\n | -------- | -------- | -------- | -------- | ----------- | ----------- | ----------- | ----------- | --------------------- | ----------- |\n | 参数 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |","location":"gs/index.ts"}} />
-## 西南财经大学 {#xi-nan-cai-jing-da-xue}
+| 公告类型 | 新闻动态 | 学术探索 | 院系风采 | 通知 (全部) | 通知 (招生) | 通知 (培养) | 通知 (学位) | 通知 (质量与专业学位) | 通知 (综合) |
+| -------- | -------- | -------- | -------- | ----------- | ----------- | ----------- | ----------- | --------------------- | ----------- |
+| 参数 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
-### 经济信息工程学院 {#xi-nan-cai-jing-da-xue-jing-ji-xin-xi-gong-cheng-xue-yuan}
+## 武汉纺织大学 {#wu-han-fang-zhi-da-xue}
-<Route author="Hivol" example="/swufe/seie/tzgg" path="/swufe/seie/:type?" paramsDesc={['分类名(默认为tzgg)']} notOperational="1">
- | 学院新闻 | 通知公告 |
- | -------- | -------- |
- | xyxw | tzgg |
-</Route>
+### 就业信息 {#wu-han-fang-zhi-da-xue-jiu-ye-xin-xi}
-## 西南交通大学 {#xi-nan-jiao-tong-da-xue}
+<Route data={{"path":"/job/:type","categories":["university"],"example":"/wtu/job/xxtz","parameters":{"type":"信息类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wtu.91wllm.com/news/index/tag/:type"]},"name":"就业信息","maintainers":["ticks-tan"],"description":"| 信息类型 | 消息通知 | 通知公告 | 新闻快递 |\n | -------- | -------- | -------- | -------- |\n | 参数 | xxtz | tzgg | xwkd |","location":"job.ts"}} />
-### 教务网 {#xi-nan-jiao-tong-da-xue-jiao-wu-wang}
+| 信息类型 | 消息通知 | 通知公告 | 新闻快递 |
+| -------- | -------- | -------- | -------- |
+| 参数 | xxtz | tzgg | xwkd |
-<Route author="mobyw" example="/swjtu/jwc" path="/swjtu/jwc" anticrawler="1" />
+### 信息门户公告 {#wu-han-fang-zhi-da-xue-xin-xi-men-hu-gong-gao}
-### 扬华素质网 {#xi-nan-jiao-tong-da-xue-yang-hua-su-zhi-wang}
+<Route data={{"path":"/:type","categories":["university"],"example":"/wtu/2","parameters":{"type":"公告类型,详见表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"信息门户公告","maintainers":["loyio"],"description":"| 公告类型 | 通知公告 | 教务信息 | 科研动态 |\n | -------- | -------- | -------- | -------- |\n | 参数 | 1 | 2 | 3 |","location":"index.ts"}} />
-<Route author="mobyw" example="/swjtu/xg/tzgg" path="/swjtu/xg/:code?" paramsDesc={['栏目(默认为tzgg)']} anticrawler="1">
- 栏目列表:
+| 公告类型 | 通知公告 | 教务信息 | 科研动态 |
+| -------- | -------- | -------- | -------- |
+| 参数 | 1 | 2 | 3 |
- | 通知公告 | 扬华新闻 | 多彩学院 | 学工之家 |
- | -------- | -------- | -------- | -------- |
- | tzgg | yhxw | dcxy | xgzj |
-</Route>
+## 西安财经大学 {#xi-an-cai-jing-da-xue}
-### 就业招聘信息 {#xi-nan-jiao-tong-da-xue-jiu-ye-zhao-pin-xin-xi}
+### 教务处 {#xi-an-cai-jing-da-xue-jiao-wu-chu}
-<Route author="qizidog" example="/swjtu/jyzpxx" path="/swjtu/jyzpxx" anticrawler="1" />
+<Route data={{"path":"/jiaowu/:category?","categories":["university"],"example":"/xaufe/jiaowu/tzgg","parameters":{"category":"分类,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["shaokeyibb"],"description":"| 通知公告 |\n | :------: |\n | tzgg |","location":"jiaowu.ts"}} />
-### 交通运输与物流学院 {#xi-nan-jiao-tong-da-xue-jiao-tong-yun-shu-yu-wu-liu-xue-yuan}
+| 通知公告 |
+| :------: |
+| tzgg |
-#### 研究生通知 {#xi-nan-jiao-tong-da-xue-jiao-tong-yun-shu-yu-wu-liu-xue-yuan-yan-jiu-sheng-tong-zhi}
+## 西安电子科技大学 {#xi-an-dian-zi-ke-ji-da-xue}
-<Route author="zoenglinghou qizidog" example="/swjtu/jtys/yjs" path="/swjtu/jtys/yjs" anticrawler="1" />
+### 教务处 {#xi-an-dian-zi-ke-ji-da-xue-jiao-wu-chu}
-## 西南科技大学 {#xi-nan-ke-ji-da-xue}
+<Route data={{"path":"/jwc/:category?","categories":["university"],"example":"/xidian/jwc/tzgg","parameters":{"category":"通知类别,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["ShadowySpirits"],"description":"| 教学信息 | 教学研究 | 实践教学 | 质量监控 | 通知公告 |\n | :------: | :------: | :------: | :------: | :------: |\n | jxxx | jxyj | sjjx | zljk | tzgg |","location":"jwc.ts"}} />
-### 教务处新闻 {#xi-nan-ke-ji-da-xue-jiao-wu-chu-xin-wen}
+| 教学信息 | 教学研究 | 实践教学 | 质量监控 | 通知公告 |
+| :------: | :------: | :------: | :------: | :------: |
+| jxxx | jxyj | sjjx | zljk | tzgg |
-<Route author="lengthmin" example="/swust/jwc/news" path="/swust/jwc/news" />
+## 西安交通大学 {#xi-an-jiao-tong-da-xue}
-### 教务处通知 {#xi-nan-ke-ji-da-xue-jiao-wu-chu-tong-zhi}
+### 第二附属医院新闻 {#xi-an-jiao-tong-da-xue-di-er-fu-shu-yi-yuan-xin-wen}
-<Route author="lengthmin" example="/swust/jwc/notice/1" path="/swust/jwc/notice/:type?" paramsDesc={['分区 type,缺省为 1,详见下方表格']}>
- | 创新创业教育 | 学生学业 | 建设与改革 | 教学质量保障 | 教学运行 | 教师教学 |
- | ------------ | -------- | ---------- | ------------ | -------- | -------- |
- | 1 | 2 | 3 | 4 | 5 | 6 |
-</Route>
+<Route data={{"path":"/2yuan/news/:id?","categories":["university"],"example":"/xjtu/2yuan/news","parameters":{"id":"编号,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"第二附属医院新闻","maintainers":["nczitzk"],"description":"| 分类 | 编号 |\n | -------- | ---- |\n | 通知公告 | 110 |\n | 综合新闻 | 6 |\n | 科室动态 | 8 |\n | 教学动态 | 45 |\n | 科研动态 | 51 |\n | 护理动态 | 57 |\n | 党群活动 | 63 |\n | 外事活动 | 13 |\n | 媒体二院 | 14 |\n | 理论政策 | 16 |","location":"2yuan/news.ts"}} />
+
+| 分类 | 编号 |
+| -------- | ---- |
+| 通知公告 | 110 |
+| 综合新闻 | 6 |
+| 科室动态 | 8 |
+| 教学动态 | 45 |
+| 科研动态 | 51 |
+| 护理动态 | 57 |
+| 党群活动 | 63 |
+| 外事活动 | 13 |
+| 媒体二院 | 14 |
+| 理论政策 | 16 |
-### 计科学院通知 {#xi-nan-ke-ji-da-xue-ji-ke-xue-yuan-tong-zhi}
+### 电气学院 {#xi-an-jiao-tong-da-xue-dian-qi-xue-yuan}
-<Route author="lengthmin" example="/swust/cs/1" path="/swust/cs/:type?" paramsDesc={['分区 type,缺省为 1,详见下方表格']} notOperational="1">
- | 新闻动态 | 学术动态 | 通知公告 | 教研动态 |
- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 4 |
-</Route>
+<Route data={{"path":"/ee/:id?","categories":["university"],"example":"/xjtu/ee/1114","parameters":{"id":"栏目id,默认请求`1124`,可在 URL 中找到"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ee.xjtu.edu.cn/"]},"name":"电气学院","maintainers":["DylanXie123"],"url":"ee.xjtu.edu.cn/","location":"ee.ts"}} />
-## 西南石油大学 {#xi-nan-shi-you-da-xue}
+### 就业创业中心 {#xi-an-jiao-tong-da-xue-jiu-ye-chuang-ye-zhong-xin}
-### 办公网 {#xi-nan-shi-you-da-xue-ban-gong-wang}
+<Route data={{"path":"/job/:subpath?","categories":["university"],"example":"/xjtu/job/zxgg","parameters":{"subpath":"栏目类型,默认请求`zxgg`,详见下方表格"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"就业创业中心","maintainers":["DylanXie123"],"description":"栏目类型\n\n | 中心公告 | 选调生 | 重点单位 | 国际组织 | 创新创业 | 就业实习 |\n | -------- | ------ | -------- | -------- | -------- | -------- |\n | zxgg | xds | zddw | gjzz | cxcy | jysx |","location":"job.ts"}} />
-<Route author="CYTMWIA" example="/swpu/bgw/zytzgg" path="/swpu/bgw/:code" paramsDesc={['栏目代码']} anticrawler="1">
- | 栏目 | 重要通知公告 | 部门通知公告 | 本周活动 | 学术报告 |
- | ---- | ------------ | ------------ | -------- | -------- |
- | 代码 | zytzgg | bmtzgg | bzhd | xsbg |
-</Route>
+栏目类型
-### 教务处 {#xi-nan-shi-you-da-xue-jiao-wu-chu}
+| 中心公告 | 选调生 | 重点单位 | 国际组织 | 创新创业 | 就业实习 |
+| -------- | ------ | -------- | -------- | -------- | -------- |
+| zxgg | xds | zddw | gjzz | cxcy | jysx |
-<Route author="CYTMWIA" example="/swpu/dean/tzgg" path="/swpu/dean/:code" paramsDesc={['栏目代码']} anticrawler="1">
- | 栏目 | 通知公告 | 新闻报道 | 视点声音 |
- | ---- | -------- | -------- | -------- |
- | 代码 | tzgg | xwbd | sdsy |
-</Route>
+### 科技在线 {#xi-an-jiao-tong-da-xue-ke-ji-zai-xian}
-### 计算机科学学院 {#xi-nan-shi-you-da-xue-ji-suan-ji-ke-xue-xue-yuan}
+<Route data={{"path":"/std/:category?","categories":["university"],"example":"/xjtu/std/zytz","parameters":{"category":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"科技在线","maintainers":["nczitzk"],"description":"| 通知公告 | 重要通知 | 项目申报 | 成果申报 | 信息快讯 |\n | -------- | -------- | -------- | -------- | -------- |\n | | zytz | xmsb | cgsb | xxkx |","location":"std.ts"}} />
-<Route author="CYTMWIA" example="/swpu/scs/tzgg" path="/swpu/scs/:code" paramsDesc={['栏目代码']} anticrawler="1">
- | 栏目 | 通知公告 | 新闻速递 |
- | ---- | -------- | -------- |
- | 代码 | tzgg | xwsd |
-</Route>
+| 通知公告 | 重要通知 | 项目申报 | 成果申报 | 信息快讯 |
+| -------- | -------- | -------- | -------- | -------- |
+| | zytz | xmsb | cgsb | xxkx |
-### 电气信息学院 {#xi-nan-shi-you-da-xue-dian-qi-xin-xi-xue-yuan}
+### 研究生院通知公告 {#xi-an-jiao-tong-da-xue-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-<Route author="CYTMWIA" example="/swpu/dxy/1156" path="/swpu/dxy/:code" paramsDesc={['栏目代码']} anticrawler="1">
- | 栏目 | 学院新闻 | 学院通知 |
- | ---- | -------- | -------- |
- | 代码 | 1122 | 1156 |
-</Route>
+<Route data={{"path":"/gs/tzgg","categories":["university"],"example":"/xjtu/gs/tzgg","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gs.xjtu.edu.cn/"]},"name":"研究生院通知公告","maintainers":["nczitzk"],"url":"gs.xjtu.edu.cn/","location":"gs/tzgg.ts"}} />
-### 财经学院 {#xi-nan-shi-you-da-xue-cai-jing-xue-yuan}
+## 西安理工大学 {#xi-an-li-gong-da-xue}
-<Route author="RiverTwilight" example="/swpu/cjxy/xyxw" path="/swpu/cjxy/:code" paramsDesc={['栏目代码']} notOperational="1">
- | 栏目 | 学院新闻 | 学院通知 |
- | ---- | -------- | -------- |
- | 代码 | xyxw | xytz |
-</Route>
+### 教务处 {#xi-an-li-gong-da-xue-jiao-wu-chu}
-### 信息学院 {#xi-nan-shi-you-da-xue-xin-xi-xue-yuan}
+<Route data={{"path":"/jwc/:category?","categories":["university"],"example":"/xaut/jwc/tzgg","parameters":{"category":"通知类别,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["mocusez"],"description":":::warning\n 有些内容需使用校园网或 VPN 访问知行网获取\n :::\n\n | 通知公告 | 新闻动态 | 规章制度 | 竞赛结果公示 | 竞赛获奖通知 | 竞赛信息 | 公开公示 |\n | :------: | :------: | :------: | :----------: | :----------: | :------: | :------: |\n | tzgg | xwdt | gzzd | jggs | jsjg | jsxx | gkgs |","location":"jwc.ts"}} />
-<Route author="RiverTwilight" example="/swpu/is/xyxw" path="/swpu/is/:code" paramsDesc={['栏目代码']} notOperational="1">
- | 栏目 | 学院新闻 | 通知公告 | 教育教学 | 学生工作 | 招生就业 |
- | ---- | -------- | -------- | -------- | -------- | -------- |
- | 代码 | xyxw | tzgg | jyjx | xsgz | zsjy |
-</Route>
+:::warning
+有些内容需使用校园网或 VPN 访问知行网获取
+:::
-## 新乡医学院三全学院 {#xin-xiang-yi-xue-yuan-san-quan-xue-yuan}
+| 通知公告 | 新闻动态 | 规章制度 | 竞赛结果公示 | 竞赛获奖通知 | 竞赛信息 | 公开公示 |
+| :------: | :------: | :------: | :----------: | :----------: | :------: | :------: |
+| tzgg | xwdt | gzzd | jggs | jsjg | jsxx | gkgs |
-### 官网信息 {#xin-xiang-yi-xue-yuan-san-quan-xue-yuan-guan-wang-xin-xi}
+### 人事处 {#xi-an-li-gong-da-xue-ren-shi-chu}
-<Route author="nyaShine" example="/sqmc/www/3157" path="/sqmc/www/:category?" paramsDesc={['分类ID,默认为`3157`']} radar="1">
- | 学校要闻 | 通知 | 学术讲座 | 基层风采书院 | 基层风采院系 | 外媒报道 | 三全学院报 |
- | -------- | ---- | -------- | ------------ | ------------ | -------- | ---------- |
- | 3157 | 3187 | 3188 | 3185 | 3186 | 3199 | 3200 |
-</Route>
+<Route data={{"path":"/rsc/:category?","categories":["university"],"example":"/xaut/rsc/tzgg","parameters":{"category":"通知类别,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"人事处","maintainers":["mocusez","light0926"],"description":":::warning\n 有些内容指向外部链接,目前只提供这些链接,不提供具体内容,去除 jwc 和 index 的修改\n :::\n\n | 通知公告 | 工作动态 |\n | :------: | :------: |\n | tzgg | gzdt |","location":"rsc.ts"}} />
-## 信阳师范学院 {#xin-yang-shi-fan-xue-yuan}
+:::warning
+有些内容指向外部链接,目前只提供这些链接,不提供具体内容,去除 jwc 和 index 的修改
+:::
-### 高等教育自学考试办公室 {#xin-yang-shi-fan-xue-yuan-gao-deng-jiao-yu-zi-xue-kao-shi-ban-gong-shi}
+| 通知公告 | 工作动态 |
+| :------: | :------: |
+| tzgg | gzdt |
-<Route author="VxRain" example="/xynu/zkb/zkzx" path="/xynu/zkb/:category" paramsDesc={['分类ID']}>
- 分类 ID(如果请求的分类 ID 在不存在下表中,默认请求`zkzx`)
+### 学校主页 {#xi-an-li-gong-da-xue-xue-xiao-zhu-ye}
- | 主考专业 | 规章制度 | 实践课程 | 毕业论文 | 学士学位 | 自考毕业 | 自考教材 | 自考指南 | 联系我们 | 自考资讯 | 报名指南 | 日程安排 | 新生入门 | 转考免考 | 复习资料 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | zkzy | gzzd | sjkc | bylw | xsxw | zkby | zkjc | zkzn | lxwm | zkzx | bmzn | rcap | xsrm | zkmk | fxzl |
-</Route>
+<Route data={{"path":"/index/:category?","categories":["university"],"example":"/xaut/index/tzgg","parameters":{"category":"通知类别,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"学校主页","maintainers":["mocusez"],"description":"| 通知公告 | 校园要闻 | 媒体播报 | 学术活动 |\n | :------: | :------: | :------: | :------: |\n | tzgg | xyyw | mtbd | xshd |","location":"index.ts"}} />
-## 扬州大学 {#yang-zhou-da-xue}
+| 通知公告 | 校园要闻 | 媒体播报 | 学术活动 |
+| :------: | :------: | :------: | :------: |
+| tzgg | xyyw | mtbd | xshd |
-### 官网消息 {#yang-zhou-da-xue-guan-wang-xiao-xi}
+## 西北农林科技大学 {#xi-bei-nong-lin-ke-ji-da-xue}
-<Route author="LogicJake" example="/yzu/home/xxyw" path="/yzu/home/:type" paramsDesc={['分类名']} notOperational="1">
- | 学校要闻 | 校园新闻 | 信息公告 | 学术活动 | 媒体扬大 |
- | -------- | -------- | -------- | -------- | -------- |
- | xxyw | xyxw | xxgg | xshd | mtyd |
-</Route>
+### 校园要闻 {#xi-bei-nong-lin-ke-ji-da-xue-xiao-yuan-yao-wen}
-### 研究生招生 {#yang-zhou-da-xue-yan-jiu-sheng-zhao-sheng}
+<Route data={{"path":"/:type?","categories":["university"],"example":"/nwafu/lib","parameters":{"type":"默认为 `jiaowu`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"校园要闻","maintainers":["karinido"],"description":"通知类别\n\n | 图书馆 | 共青团团委 | 信工学院 | 后勤管理处 | 计划财务处 | 教务处 | 新闻网 | 信息化管理处 | 研究生院 | 农业科学院 | 机械与电子工程学院 | 学术活动 | 生命科学学院 |\n | ------ | ---------- | -------- | ---------- | ---------- | ------ | ------ | ------------ | -------- | ---------- | ------------------ | -------- | ------------ |\n | lib | youth | cie | gs | jcc | jiaowu | news | nic | yjshy | nxy | cmee | xshd | sm |","location":"all.ts"}} />
-<Route author="LogicJake" example="/yzu/yjszs/tzgg" path="/yzu/yjszs/:type" paramsDesc={['分类名']} notOperational="1">
- | 通知公告 | 博士招生 | 硕士招生 |
- | -------- | -------- | -------- |
- | tzgg | bszs | sszs |
-</Route>
+通知类别
-## 云南大学 {#yun-nan-da-xue}
+| 图书馆 | 共青团团委 | 信工学院 | 后勤管理处 | 计划财务处 | 教务处 | 新闻网 | 信息化管理处 | 研究生院 | 农业科学院 | 机械与电子工程学院 | 学术活动 | 生命科学学院 |
+| ------ | ---------- | -------- | ---------- | ---------- | ------ | ------ | ------------ | -------- | ---------- | ------------------ | -------- | ------------ |
+| lib | youth | cie | gs | jcc | jiaowu | news | nic | yjshy | nxy | cmee | xshd | sm |
-### 官网消息通告 {#yun-nan-da-xue-guan-wang-xiao-xi-tong-gao}
+## 西南交通大学 {#xi-nan-jiao-tong-da-xue}
-<Route author="hzcheney" example="/ynu/home" path="/ynu/home" notOperational="1" />
+### 交通运输与物流学院 {#xi-nan-jiao-tong-da-xue-jiao-tong-yun-shu-yu-wu-liu-xue-yuan}
-### 教务处主要通知 {#yun-nan-da-xue-jiao-wu-chu-zhu-yao-tong-zhi}
+<Route data={{"path":"/jtys/yjs","categories":["university"],"example":"/swjtu/jtys/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"交通运输与物流学院","maintainers":["qizidog"],"description":"#### 研究生通知 {#xi-nan-jiao-tong-da-xue-jiao-tong-yun-shu-yu-wu-liu-xue-yuan-yan-jiu-sheng-tong-zhi}","location":"jtys/yjs.ts"}} />
-<Route author="hzcheney" example="/ynu/jwc/1" path="/ynu/jwc/:category" paramsDesc={['教务处通知分类']} anticrawler="1">
- | 教务科 | 学籍科 | 教学研究科 | 实践科学科 |
- | ------ | ------ | ---------- | ---------- |
- | 1 | 2 | 3 | 4 |
-</Route>
+#### 研究生通知 {#xi-nan-jiao-tong-da-xue-jiao-tong-yun-shu-yu-wu-liu-xue-yuan-yan-jiu-sheng-tong-zhi}
-### 研究生院重要通知(置顶消息) {#yun-nan-da-xue-yan-jiu-sheng-yuan-zhong-yao-tong-zhi-zhi-ding-xiao-xi}
+### 教务网 {#xi-nan-jiao-tong-da-xue-jiao-wu-wang}
-<Route author="hzcheney" example="/ynu/grs/zytz" path="/ynu/grs/zytz" notOperational="1" />
+<Route data={{"path":"/jwc","categories":["university"],"example":"/swjtu/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.swjtu.edu.cn/vatuu/WebAction","jwc.swjtu.edu.cn/"]},"name":"教务网","maintainers":["mobyw"],"url":"jwc.swjtu.edu.cn/vatuu/WebAction","location":"jwc.ts"}} />
-### 研究生院其他通知 {#yun-nan-da-xue-yan-jiu-sheng-yuan-qi-ta-tong-zhi}
+### 就业招聘信息 {#xi-nan-jiao-tong-da-xue-jiu-ye-zhao-pin-xin-xi}
-<Route author="hzcheney" example="/ynu/grs/qttz/2" path="/ynu/grs/qttz/:category" paramsDesc={['研究生院通知分类']} anticrawler="1">
- | 招生工作 | 研究生培养 | 质量管理 | 学位工作 | 综合办公室 | 相关下载 |
- | -------- | ---------- | -------- | -------- | ---------- | -------- |
- | 1 | 2 | 3 | 4 | 5 | 6 |
-</Route>
+<Route data={{"path":"/jyzpxx","categories":["university"],"example":"/swjtu/jyzpxx","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jiuye.swjtu.edu.cn/career","jiuye.swjtu.edu.cn/"]},"name":"就业招聘信息","maintainers":["qizidog"],"url":"jiuye.swjtu.edu.cn/career","location":"jyzpxx.ts"}} />
-## 云南师范大学 {#yun-nan-shi-fan-da-xue}
+### 扬华素质网 {#xi-nan-jiao-tong-da-xue-yang-hua-su-zhi-wang}
-### 继续教育学院 {#yun-nan-shi-fan-da-xue-ji-xu-jiao-yu-xue-yuan}
+<Route data={{"path":"/xg/:code?","categories":["university"],"example":"/swjtu/xg/tzgg","parameters":{"code":"栏目(默认为tzgg)"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["xg.swjtu.edu.cn/web/Home/PushNewsList","xg.swjtu.edu.cn/web/Home/NewsList","xg.swjtu.edu.cn/web/Home/ColourfulCollegeNewsList","xg.swjtu.edu.cn/web/Publicity/List","xg.swjtu.edu.cn/"],"target":"/xg"},"name":"扬华素质网","maintainers":["mobyw"],"url":"xg.swjtu.edu.cn/web/Home/PushNewsList","description":"栏目列表:\n\n | 通知公告 | 扬华新闻 | 多彩学院 | 学工之家 |\n | -------- | -------- | -------- | -------- |\n | tzgg | yhxw | dcxy | xgzj |","location":"xg.ts"}} />
-#### 新闻 {#yun-nan-shi-fan-da-xue-ji-xu-jiao-yu-xue-yuan-xin-wen}
+栏目列表:
-<Route author="SettingDust" example="/ynnu/edu/news" path="/ynnu/edu/news" notOperational="1" />
+| 通知公告 | 扬华新闻 | 多彩学院 | 学工之家 |
+| -------- | -------- | -------- | -------- |
+| tzgg | yhxw | dcxy | xgzj |
-## 长江大学 {#chang-jiang-da-xue}
+## 西南石油大学 {#xi-nan-shi-you-da-xue}
-### 动物科学学院 {#chang-jiang-da-xue-dong-wu-ke-xue-xue-yuan}
+### 办公网 {#xi-nan-shi-you-da-xue-ban-gong-wang}
-<Route author="nczitzk" example="/yangtzeu/dongke" path="/yangtzeu/dongke/:path+" paramsDesc={['路径,默认为学院新闻']}>
- :::tip
- 若订阅 [院情总览 - 通知公告](https://dongke.yangtzeu.edu.cn/yqzl/tzgg.htm),网址为 `https://dongke.yangtzeu.edu.cn/yqzl/tzgg.htm`。截取 `https://dongke.yangtzeu.edu.cn` 到末尾 `.htm` 的部分 `/yqzl/tzgg` 作为参数,此时路由为 [`/yangtzeu/dongke/yqzl/tzgg`](https://rsshub.app/yangtzeu/dongke/yqzl/tzgg)。
+<Route data={{"path":"/bgw/:code","categories":["university"],"example":"/swpu/bgw/zytzgg","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"办公网","maintainers":["CYTMWIA"],"url":"swpu.edu.cn/","description":"| 栏目 | 重要通知公告 | 部门通知公告 | 本周活动 | 学术报告 |\n | ---- | ------------ | ------------ | -------- | -------- |\n | 代码 | zytzgg | bmtzgg | bzhd | xsbg |","location":"bgw.ts"}} />
- 若订阅子分类 [学生工作](https://dongke.yangtzeu.edu.cn/xsgz.htm),网址为 `https://dongke.yangtzeu.edu.cn/xsgz.htm`。截取 `https://dongke.yangtzeu.edu.cn` 到末尾 `.htm` 的部分 `/xsgz` 作为参数,此时路由为 [`/yangtzeu/dongke/xsgz`](https://rsshub.app/yangtzeu/dongke/xsgz)。
- :::
-</Route>
+| 栏目 | 重要通知公告 | 部门通知公告 | 本周活动 | 学术报告 |
+| ---- | ------------ | ------------ | -------- | -------- |
+| 代码 | zytzgg | bmtzgg | bzhd | xsbg |
-## 浙江大学 {#zhe-jiang-da-xue}
+### 财经学院 {#xi-nan-shi-you-da-xue-cai-jing-xue-yuan}
-### 普通栏目 如学术 / 图片 / 新闻等 {#zhe-jiang-da-xue-pu-tong-lan-mu-ru-xue-shu-tu-pian-xin-wen-deng}
+<Route data={{"path":"/cjxy/:code","categories":["university"],"example":"/swpu/cjxy/xyxw","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"财经学院","maintainers":["RiverTwilight"],"url":"swpu.edu.cn/","description":"| 栏目 | 学院新闻 | 学院通知 |\n | ---- | -------- | -------- |\n | 代码 | xyxw | xytz |","location":"cjxy.ts"}} />
-<Route author="Jeason0228" example="/zju/list/xs" path="/zju/list/:type" paramsDesc={['`xs`为学术,`xw`为新闻,`5461`是图片新闻,`578`是浙大报道,具体参数参考左侧的菜单']} />
+| 栏目 | 学院新闻 | 学院通知 |
+| ---- | -------- | -------- |
+| 代码 | xyxw | xytz |
-### 研究生院 {#zhe-jiang-da-xue-yan-jiu-sheng-yuan}
+### 电气信息学院 {#xi-nan-shi-you-da-xue-dian-qi-xin-xi-xue-yuan}
-<Route author="Caicailiushui" example="/zju/grs/1" path="/zju/grs/:type" paramsDesc={['分类,见下表']}>
- | 全部公告 | 教学管理 | 各类资助 | 学科建设 | 海外交流 |
- | -------- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 4 | 5 |
-</Route>
+<Route data={{"path":"/dxy/:code","categories":["university"],"example":"/swpu/dxy/1156","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"电气信息学院","maintainers":["CYTMWIA"],"url":"swpu.edu.cn/","description":"| 栏目 | 学院新闻 | 学院通知 |\n | ---- | -------- | -------- |\n | 代码 | 1122 | 1156 |","location":"dxy.ts"}} />
-### 就业服务平台 {#zhe-jiang-da-xue-jiu-ye-fu-wu-ping-tai}
+| 栏目 | 学院新闻 | 学院通知 |
+| ---- | -------- | -------- |
+| 代码 | 1122 | 1156 |
-<Route author="Caicailiushui" example="/zju/career/1" path="/zju/career/:type" paramsDesc={['分类,见下表']}>
- | 新闻动态 | 活动通知 | 学院通知 | 告示通知 |
- | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 4 |
-</Route>
+### 计算机科学学院 {#xi-nan-shi-you-da-xue-ji-suan-ji-ke-xue-xue-yuan}
-### 物理学院 {#zhe-jiang-da-xue-wu-li-xue-yuan}
+<Route data={{"path":"/scs/:code","categories":["university"],"example":"/swpu/scs/tzgg","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"计算机科学学院","maintainers":["CYTMWIA"],"url":"swpu.edu.cn/","description":"| 栏目 | 通知公告 | 新闻速递 |\n | ---- | -------- | -------- |\n | 代码 | tzgg | xwsd |","location":"scs.ts"}} />
-<Route author="Caicailiushui" example="/zju/physics/1" path="/zju/physics/:type" paramsDesc={['分类,见下表']} notOperational="1">
- | 本院动态 | 科研进展 | 研究生教育最新消息 |
- | -------- | -------- | ------------------ |
- | 1 | 2 | 3 |
-</Route>
+| 栏目 | 通知公告 | 新闻速递 |
+| ---- | -------- | -------- |
+| 代码 | tzgg | xwsd |
-### 软件学院 {#zhe-jiang-da-xue-ruan-jian-xue-yuan}
+### 教务处 {#xi-nan-shi-you-da-xue-jiao-wu-chu}
-<Route author="yonvenne zwithz" example="/zju/cst/0" path="/zju/cst/:type" paramsDesc={['分类,见下表']} radar="1">
- | 全部通知 | 招生信息 | 教务管理 | 论文管理 | 思政工作 | 评奖评优 | 实习就业 | 国际实习 | 国内合作科研 | 国际合作科研 | 校园服务 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ------------ | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
-</Route>
+<Route data={{"path":"/dean/:code","categories":["university"],"example":"/swpu/dean/tzgg","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"教务处","maintainers":["CYTMWIA"],"url":"swpu.edu.cn/","description":"| 栏目 | 通知公告 | 新闻报道 | 视点声音 |\n | ---- | -------- | -------- | -------- |\n | 代码 | tzgg | xwbd | sdsy |","location":"dean.ts"}} />
-#### 自定义聚合通知 {#zhe-jiang-da-xue-ruan-jian-xue-yuan-zi-ding-yi-ju-he-tong-zhi}
+| 栏目 | 通知公告 | 新闻报道 | 视点声音 |
+| ---- | -------- | -------- | -------- |
+| 代码 | tzgg | xwbd | sdsy |
-<Route author="zwithz" example="/zju/cst/custom/36194+36241+36246" path="/zju/cst/custom/:id" paramsDesc={['提取出通知页面中的 `ID`,如 `http://www.cst.zju.edu.cn/36246/list.htm` 中的 `36246`,可将你想获取通知的多个页面,通过 `+` 符号来聚合。']} />
+### 信息学院 {#xi-nan-shi-you-da-xue-xin-xi-xue-yuan}
-## 浙江大学城市学院 {#zhe-jiang-da-xue-cheng-shi-xue-yuan}
+<Route data={{"path":"/is/:code","categories":["university"],"example":"/swpu/is/xyxw","parameters":{"code":"栏目代码"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["swpu.edu.cn/"],"target":""},"name":"信息学院","maintainers":["RiverTwilight"],"url":"swpu.edu.cn/","description":"| 栏目 | 学院新闻 | 通知公告 | 教育教学 | 学生工作 | 招生就业 |\n | ---- | -------- | -------- | -------- | -------- | -------- |\n | 代码 | xyxw | tzgg | jyjx | xsgz | zsjy |","location":"is.ts"}} />
-### 新闻通知 {#zhe-jiang-da-xue-cheng-shi-xue-yuan-xin-wen-tong-zhi}
+| 栏目 | 学院新闻 | 通知公告 | 教育教学 | 学生工作 | 招生就业 |
+| ---- | -------- | -------- | -------- | -------- | -------- |
+| 代码 | xyxw | tzgg | jyjx | xsgz | zsjy |
-<Route author="zhang-wangz" example="/zucc/news/latest" path="/zucc/news/latest" />
+## 新乡医学院三全学院 {#xin-xiang-yi-xue-yuan-san-quan-xue-yuan}
-### 计算分院全站搜索 {#zhe-jiang-da-xue-cheng-shi-xue-yuan-ji-suan-fen-yuan-quan-zhan-sou-suo}
+### 官网信息 {#xin-xiang-yi-xue-yuan-san-quan-xue-yuan-guan-wang-xin-xi}
-<Route author="zhang-wangz" example="/zucc/cssearch/latest/0/白卡" path="/zucc/cssearch/latest/:webVpn?/:key?" paramsDesc={['见下表(默认为0)','关键词(默认为白卡)']}>
- | 0 | 1 |
- | ------------------ | -------------------- |
- | 文章地址为正常地址 | 获取的是 webvpn 地址 |
-</Route>
+<Route data={{"path":"/www/:category?","categories":["university"],"example":"/sqmc/www/3157","parameters":{"category":"分类ID,默认为`3157`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sqmc.edu.cn/:category/list.htm"]},"name":"官网信息","maintainers":["nyaShine"],"description":"| 学校要闻 | 通知 | 学术讲座 | 基层风采书院 | 基层风采院系 | 外媒报道 | 三全学院报 |\n | -------- | ---- | -------- | ------------ | ------------ | -------- | ---------- |\n | 3157 | 3187 | 3188 | 3185 | 3186 | 3199 | 3200 |","location":"www.ts"}} />
-## 浙江工商大学 {#zhe-jiang-gong-shang-da-xue}
+| 学校要闻 | 通知 | 学术讲座 | 基层风采书院 | 基层风采院系 | 外媒报道 | 三全学院报 |
+| -------- | ---- | -------- | ------------ | ------------ | -------- | ---------- |
+| 3157 | 3187 | 3188 | 3185 | 3186 | 3199 | 3200 |
-### 浙江工商大学 {#zhe-jiang-gong-shang-da-xue-zhe-jiang-gong-shang-da-xue}
+## 浙江大学 {#zhe-jiang-da-xue}
-<Route author="nicolaszf" example="/zjgsu/tzgg" path="/zjgsu/:type" paramsDesc={['分类,见下表']}>
- | 通知公告 | 学生专区 | 公示公告 |
- | -------- | -------- | -------- |
- | tzgg | xszq | gsgg |
-</Route>
+### Unknown {#zhe-jiang-da-xue-unknown}
-## 浙江工业大学 {#zhe-jiang-gong-ye-da-xue}
+<Route data={{"path":"/cst/:type","categories":["university"],"example":"/zju/cst/0","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"Unknown","maintainers":["yonvenne","zwithz"],"location":"cst/index.ts"}} />
-### 浙江工业大学 {#zhe-jiang-gong-ye-da-xue-zhe-jiang-gong-ye-da-xue}
+### 就业服务平台 {#zhe-jiang-da-xue-jiu-ye-fu-wu-ping-tai}
-<Route author="junbaor" example="/zjut/1" path="/zjut/:type" paramsDesc={['板块id']} notOperational="1">
- | 公告栏 | 每周会议 | 屏峰班车 | 新闻速递 | 学术动态 |
- | ------ | -------- | -------- | -------- | -------- |
- | 1 | 2 | 3 | 10 | 25 |
-</Route>
+<Route data={{"path":"/career/:type","categories":["university"],"example":"/zju/career/1","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"就业服务平台","maintainers":["Caicailiushui"],"description":"| 新闻动态 | 活动通知 | 学院通知 | 告示通知 |\n | -------- | -------- | -------- | -------- |\n | 1 | 2 | 3 | 4 |","location":"career/index.ts"}} />
-### 设计与建筑学院 {#zhe-jiang-gong-ye-da-xue-she-ji-yu-jian-zhu-xue-yuan}
+| 新闻动态 | 活动通知 | 学院通知 | 告示通知 |
+| -------- | -------- | -------- | -------- |
+| 1 | 2 | 3 | 4 |
-<Route author="yikZero" example="/zjut/design/16" path="/zjut/design/:type" paramsDesc={['板块id']}>
- | 学院新闻 | 公告通知 | 学术交流 |
- | -------- | -------- | -------- |
- | 16 | 18 | 20 |
-</Route>
+### 普通栏目 如学术 / 图片 / 新闻等 {#zhe-jiang-da-xue-pu-tong-lan-mu-ru-xue-shu-tu-pian-xin-wen-deng}
-## 浙江中医药大学 {#zhe-jiang-zhong-yi-yao-da-xue}
+<Route data={{"path":"/list/:type","categories":["university"],"example":"/zju/list/xs","parameters":{"type":"`xs`为学术,`xw`为新闻,`5461`是图片新闻,`578`是浙大报道,具体参数参考左侧的菜单"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"普通栏目 如学术 / 图片 / 新闻等","maintainers":["Jeason0228"],"location":"list.ts"}} />
-### 教务处 {#zhe-jiang-zhong-yi-yao-da-xue-jiao-wu-chu}
+### 软件学院 {#zhe-jiang-da-xue-ruan-jian-xue-yuan}
-<Route author="CCraftY" example="/zcmu/jwc/1" path="/zcmu/jwc/:type?" paramsDesc={['通知模块id']} anticrawler="1">
- | 教务管理 | 成绩管理 | 学籍管理 | 考试管理 | 选课管理 | 排课管理 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 |
-</Route>
+<Route data={{"path":"/cst/custom/:id","categories":["university"],"example":"/zju/cst/custom/36194+36241+36246","parameters":{"id":"提取出通知页面中的 `ID`,如 `http://www.cst.zju.edu.cn/36246/list.htm` 中的 `36246`,可将你想获取通知的多个页面,通过 `+` 符号来聚合。"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"软件学院","maintainers":["zwithz"],"description":"| 全部通知 | 招生信息 | 教务管理 | 论文管理 | 思政工作 | 评奖评优 | 实习就业 | 国际实习 | 国内合作科研 | 国际合作科研 | 校园服务 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ------------ | -------- |\n | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |\n\n#### 自定义聚合通知 {#zhe-jiang-da-xue-ruan-jian-xue-yuan-zi-ding-yi-ju-he-tong-zhi}","location":"cst/custom.ts"}} />
-### 药学院 {#zhe-jiang-zhong-yi-yao-da-xue-yao-xue-yuan}
+| 全部通知 | 招生信息 | 教务管理 | 论文管理 | 思政工作 | 评奖评优 | 实习就业 | 国际实习 | 国内合作科研 | 国际合作科研 | 校园服务 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------------ | ------------ | -------- |
+| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
-<Route author="CCraftY" example="/zcmu/yxy/0" path="/zcmu/yxy/:type?" paramsDesc={['模块id']}>
- | 通知公告 | 评优评奖 | 文明规范 | 创新创业 | 校园文化 | 心理驿站 | 日常通知 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
-</Route>
+#### 自定义聚合通知 {#zhe-jiang-da-xue-ruan-jian-xue-yuan-zi-ding-yi-ju-he-tong-zhi}
-## 郑州大学 {#zheng-zhou-da-xue}
+### 物理学院 {#zhe-jiang-da-xue-wu-li-xue-yuan}
-### 郑州大学新闻网 {#zheng-zhou-da-xue-zheng-zhou-da-xue-xin-wen-wang}
+<Route data={{"path":"/physics/:type","categories":["university"],"example":"/zju/physics/1","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"物理学院","maintainers":["Caicailiushui"],"description":"| 本院动态 | 科研进展 | 研究生教育最新消息 |\n | -------- | -------- | ------------------ |\n | 1 | 2 | 3 |","location":"physics/index.ts"}} />
-<Route author="niayyy-S" example="/zzu/news/zh" path="/zzu/news/:type?" paramsDesc={['可选,默认为 `zh`']} notOperational="1">
- | 参数名称 | 综合新闻 | 学术动态 | 媒体郑大 | 院系风采 | 教学科研 | 学生信息 | 外事信息 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 参数 | zh | xs | mt | yx | ky | stu | ws |
-</Route>
+| 本院动态 | 科研进展 | 研究生教育最新消息 |
+| -------- | -------- | ------------------ |
+| 1 | 2 | 3 |
-### 软件学院 {#zheng-zhou-da-xue-ruan-jian-xue-yuan}
+### 研究生院 {#zhe-jiang-da-xue-yan-jiu-sheng-yuan}
-<Route author="niayyy-S" example="/zzu/soft/news/xyxw" path="/zzu/soft/news/:type?" paramsDesc={['可选,默认为 `xyxw`']} notOperational="1">
- | 参数名称 | 学院新闻 | 学院公告 | 学生工作 |
- | -------- | -------- | -------- | -------- |
- | 参数 | xyxw | xygg | xsgz |
-</Route>
+<Route data={{"path":"/grs/:type","categories":["university"],"example":"/zju/grs/1","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"研究生院","maintainers":["Caicailiushui"],"description":"| 全部公告 | 教学管理 | 各类资助 | 学科建设 | 海外交流 |\n | -------- | -------- | -------- | -------- | -------- |\n | 1 | 2 | 3 | 4 | 5 |","location":"grs/index.ts"}} />
-## 郑州轻工业大学 {#zheng-zhou-qing-gong-ye-da-xue}
+| 全部公告 | 教学管理 | 各类资助 | 学科建设 | 海外交流 |
+| -------- | -------- | -------- | -------- | -------- |
+| 1 | 2 | 3 | 4 | 5 |
-### 智慧门户 {#zheng-zhou-qing-gong-ye-da-xue-zhi-hui-men-hu}
+## 浙江中医药大学 {#zhe-jiang-zhong-yi-yao-da-xue}
-<Route author="Fantasia1999" example="/zzuli/campus/0" path="/zzuli/campus/:type" paramsDesc={['分类,见下表']} radar="1">
- | 参数名称 | 公告信息 | 学工信息 | 教学信息 | 信息快递 | 学术报告 | 科研信息 | 网络公告 | 班车查询 | 周会表 |
- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | ------ |
- | 参数 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
-</Route>
+### 教务处 {#zhe-jiang-zhong-yi-yao-da-xue-jiao-wu-chu}
-### 研究生处 {#zheng-zhou-qing-gong-ye-da-xue-yan-jiu-sheng-chu}
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/zcmu/jwc/1","parameters":{"type":"通知模块id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"教务处","maintainers":["CCraftY"],"description":"| 教务管理 | 成绩管理 | 学籍管理 | 考试管理 | 选课管理 | 排课管理 |\n | -------- | -------- | -------- | -------- | -------- | -------- |\n | 0 | 1 | 2 | 3 | 4 | 5 |","location":"jwc/index.ts"}} />
-<Route author="Fantasia1999" example="/zzuli/yjsc/0" path="/zzuli/yjsc/:type" paramsDesc={['分类,见下表']} radar="1">
- | 参数名称 | 公告通知 | 招生工作 | 新闻资讯 | 培养工作 | 学位工作 |
- | -------- | -------- | -------- | -------- | -------- | -------- |
- | 参数 | 0 | 1 | 2 | 3 | 4 |
-</Route>
+| 教务管理 | 成绩管理 | 学籍管理 | 考试管理 | 选课管理 | 排课管理 |
+| -------- | -------- | -------- | -------- | -------- | -------- |
+| 0 | 1 | 2 | 3 | 4 | 5 |
-## 中北大学 {#zhong-bei-da-xue}
+### 药学院 {#zhe-jiang-zhong-yi-yao-da-xue-yao-xue-yuan}
-### 各种新闻通知 {#zhong-bei-da-xue-ge-zhong-xin-wen-tong-zhi}
+<Route data={{"path":"/yxy/:type?","categories":["university"],"example":"/zcmu/yxy/0","parameters":{"type":"模块id"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"药学院","maintainers":["CCraftY"],"description":"| 通知公告 | 评优评奖 | 文明规范 | 创新创业 | 校园文化 | 心理驿站 | 日常通知 |\n | -------- | -------- | -------- | -------- | -------- | -------- | -------- |\n | 0 | 1 | 2 | 3 | 4 | 5 | 6 |","location":"yxy/index.ts"}} />
-<Route author="Dreace" example="/nuc/zbxw" path="/nuc/:type?" paramsDesc={['默认为 zbxw']}>
- | 中北新闻 | 通知公告 | 学术活动 | 教务通知 |
- | -------- | -------- | -------- | -------- |
- | zbxw | tzgg | xshd | jwtz |
-</Route>
+| 通知公告 | 评优评奖 | 文明规范 | 创新创业 | 校园文化 | 心理驿站 | 日常通知 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| 0 | 1 | 2 | 3 | 4 | 5 | 6 |
## 中国传媒大学 {#zhong-guo-chuan-mei-da-xue}
### 研究生招生网 {#zhong-guo-chuan-mei-da-xue-yan-jiu-sheng-zhao-sheng-wang}
-<Route author="YunYouJun niuyi1017" example="/cuc/yz" path="/cuc/yz" />
-
-## 中国地质大学(武汉) {#zhong-guo-di-zhi-da-xue-wu-han}
+<Route data={{"path":"/yz","categories":["university"],"example":"/cuc/yz","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.cuc.edu.cn/8549/list.htm","yz.cuc.edu.cn/"]},"name":"研究生招生网","maintainers":["niuyi1017"],"url":"yz.cuc.edu.cn/8549/list.htm","location":"yz.ts"}} />
-### 今日文章 - 包含全校网站最新通知 {#zhong-guo-di-zhi-da-xue-wu-han-jin-ri-wen-zhang-bao-han-quan-xiao-wang-zhan-zui-xin-tong-zhi}
-
-<Route author="Dorad" example="/cug/news" path="/cug/news" notOperational="1" />
-
-### 研究生院综合通知公告 {#zhong-guo-di-zhi-da-xue-wu-han-yan-jiu-sheng-yuan-zong-he-tong-zhi-gong-gao}
+## 中国海洋大学 {#zhong-guo-hai-yang-da-xue}
-<Route author="sanmmm" example="/cug/graduate" path="/cug/graduate" anticrawler="1" />
+### 教务处 {#zhong-guo-hai-yang-da-xue-jiao-wu-chu}
-### 中国地质大学通知公告 {#zhong-guo-di-zhi-da-xue-wu-han-zhong-guo-di-zhi-da-xue-tong-zhi-gong-gao}
+<Route data={{"path":"/jwc","categories":["university"],"example":"/ouc/jwc","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwc.ouc.edu.cn/","jwc.ouc.edu.cn/6517/list.htm"]},"name":"教务处","maintainers":["3401797899"],"url":"jwc.ouc.edu.cn/","location":"jwc.ts"}} />
-<Route author="chunibyo-wly" example="/cug/undergraduate" path="/cug/undergraduate" notOperational="1" />
+### 信息科学与工程学院 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan}
-### 地理与信息工程学院综合通知公告 {#zhong-guo-di-zhi-da-xue-wu-han-di-li-yu-xin-xi-gong-cheng-xue-yuan-zong-he-tong-zhi-gong-gao}
+<Route data={{"path":"/it/:type?","categories":["university"],"example":"/ouc/it/0","parameters":{"type":"默认为 `0`"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["it.ouc.edu.cn/"],"target":"/it"},"name":"信息科学与工程学院","maintainers":["GeoffreyChen777","3401797899"],"url":"it.ouc.edu.cn/","description":"| 学院要闻 | 学院公告 | 学院活动 |\n | -------- | -------- | -------- |\n | 0 | 1 | 2 |","location":"it.ts"}} />
-<Route author="chunibyo-wly" example="/cug/xgxy" path="/cug/xgxy" anticrawler="1" />
+| 学院要闻 | 学院公告 | 学院活动 |
+| -------- | -------- | -------- |
+| 0 | 1 | 2 |
-### 工程学院 {#zhong-guo-di-zhi-da-xue-wu-han-gong-cheng-xue-yuan}
+### 信息科学与工程学院团学工作 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-tuan-xue-gong-zuo}
-<Route author="Dorad" example="/cug/gcxy/1" path="/cug/gcxy/:type" notOperational="1" />
+<Route data={{"path":"/it/tx/:id?","categories":["university"],"example":"/ouc/it/tx/xwdt","parameters":{"id":"默认为 `xwdt`,id过多,这里只举几个例"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["it.ouc.edu.cn/tx/:id/list.htm"],"target":"/it/tx/:id"},"name":"信息科学与工程学院团学工作","maintainers":["3401797899"],"url":"it.ouc.edu.cn/","description":"| 新闻动态 | 学院活动 | 奖助工作获奖情况 |\n | -------- | -------- | ---------------- |\n | xwdt | tzgg | 21758 |","location":"it-tx.ts"}} />
-| 所有 | 学院新闻 | 通知公告 | 党建工作 | 学术动态 | 本科生教育 | 研究生教育 | 教工之家 |
-| ---- | -------- | -------- | -------- | -------- | ---------- | ---------- | -------- |
-| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
+| 新闻动态 | 学院活动 | 奖助工作获奖情况 |
+| -------- | -------- | ---------------- |
+| xwdt | tzgg | 21758 |
-## 中国海洋大学 {#zhong-guo-hai-yang-da-xue}
+### 信息科学与工程学院研究生招生通知公告 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-yan-jiu-sheng-zhao-sheng-tong-zhi-gong-gao}
-### 信息科学与工程学院 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan}
+<Route data={{"path":"/it/postgraduate","categories":["university"],"example":"/ouc/it/postgraduate","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["it.ouc.edu.cn/_s381/16619/list.psp","it.ouc.edu.cn/16619/list.htm","it.ouc.edu.cn/"]},"name":"信息科学与工程学院研究生招生通知公告","maintainers":["shengmaosu"],"url":"it.ouc.edu.cn/_s381/16619/list.psp","location":"it-postgraduate.ts"}} />
-<Route author="GeoffreyChen777 3401797899" example="/ouc/it/0" path="/ouc/it/:type?" paramsDesc={['默认为 `0`']} radar="1" anticrawler="1">
- | 学院要闻 | 学院公告 | 学院活动 |
- | -------- | -------- | -------- |
- | 0 | 1 | 2 |
-</Route>
+### 选课信息教务通知 {#zhong-guo-hai-yang-da-xue-xuan-ke-xin-xi-jiao-wu-tong-zhi}
-### 信息科学与工程学院团学工作 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-tuan-xue-gong-zuo}
+<Route data={{"path":"/jwgl","categories":["university"],"example":"/ouc/jwgl","parameters":{},"features":{"requireConfig":true,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["jwgl.ouc.edu.cn/cas/login.action","jwgl.ouc.edu.cn/public/SchoolNotice.jsp"]},"name":"选课信息教务通知","maintainers":["3401797899"],"url":"jwgl.ouc.edu.cn/cas/login.action","description":":::warning\n 由于选课通知仅允许校园网访问,需自行部署。\n :::","location":"jwgl.ts"}} />
-<Route author="3401797899" example="/ouc/it/tx/xwdt" path="/ouc/it/tx/:id?" paramsDesc={['默认为 `xwdt`,id过多,这里只举几个例']} radar="1" anticrawler="1">
- | 新闻动态 | 学院活动 | 奖助工作获奖情况 |
- | -------- | -------- | ---------------- |
- | xwdt | tzgg | 21758 |
-</Route>
+:::warning
+由于选课通知仅允许校园网访问,需自行部署。
+:::
### 研究生院 {#zhong-guo-hai-yang-da-xue-yan-jiu-sheng-yuan}
-<Route author="shengmaosu" example="/ouc/yjs" path="/ouc/yjs" radar="1" anticrawler="1" />
+<Route data={{"path":"/yjs","categories":["university"],"example":"/ouc/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.ouc.edu.cn/5926/list.htm"]},"name":"研究生院","maintainers":["shengmaosu"],"url":"yz.ouc.edu.cn/5926/list.htm","location":"yjs.ts"}} />
-### 信息科学与工程学院研究生招生通知公告 {#zhong-guo-hai-yang-da-xue-xin-xi-ke-xue-yu-gong-cheng-xue-yuan-yan-jiu-sheng-zhao-sheng-tong-zhi-gong-gao}
+## 中国科学技术大学 {#zhong-guo-ke-xue-ji-shu-da-xue}
-<Route author="shengmaosu" example="/ouc/it/postgraduate" path="/ouc/it/postgraduate" radar="1" notOperational="1" />
+### 电子工程与信息科学系 {#zhong-guo-ke-xue-ji-shu-da-xue-dian-zi-gong-cheng-yu-xin-xi-ke-xue-xi}
-### 教务处 {#zhong-guo-hai-yang-da-xue-jiao-wu-chu}
+<Route data={{"path":"/eeis/:type?","categories":["university"],"example":"/ustc/eeis/tzgg","parameters":{"type":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["eeis.ustc.edu.cn/"],"target":"/eeis"},"name":"电子工程与信息科学系","maintainers":["jasongzy"],"url":"eeis.ustc.edu.cn/","description":"| 通知公告 | 新闻信息 |\n | -------- | -------- |\n | tzgg | xwxx |","location":"eeis.ts"}} />
-<Route author="3401797899" example="/ouc/jwc" path="/ouc/jwc" radar="1" anticrawler="1" />
+| 通知公告 | 新闻信息 |
+| -------- | -------- |
+| tzgg | xwxx |
-### 选课信息教务通知 {#zhong-guo-hai-yang-da-xue-xuan-ke-xin-xi-jiao-wu-tong-zhi}
+### 官网通知公告 {#zhong-guo-ke-xue-ji-shu-da-xue-guan-wang-tong-zhi-gong-gao}
-<Route author="3401797899" example="/ouc/jwgl" path="/ouc/jwgl" radar="1" configRequired="1">
- :::warning
- 由于选课通知仅允许校园网访问,需自行部署。
- :::
-</Route>
+<Route data={{"path":"/news/:type?","categories":["university"],"example":"/ustc/news/gl","parameters":{"type":"分类,默认为管理类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ustc.edu.cn/"],"target":"/news"},"name":"官网通知公告","maintainers":["hang333","jasongzy"],"url":"ustc.edu.cn/","description":"| 教学类 | 科研类 | 管理类 | 服务类 |\n | ------ | ------ | ------ | ------ |\n | jx | ky | gl | fw |","location":"index.ts"}} />
-## 中国科学技术大学 {#zhong-guo-ke-xue-ji-shu-da-xue}
+| 教学类 | 科研类 | 管理类 | 服务类 |
+| ------ | ------ | ------ | ------ |
+| jx | ky | gl | fw |
-### 官网通知公告 {#zhong-guo-ke-xue-ji-shu-da-xue-guan-wang-tong-zhi-gong-gao}
+### 教务处通知新闻 {#zhong-guo-ke-xue-ji-shu-da-xue-jiao-wu-chu-tong-zhi-xin-wen}
-<Route author="hang333 jasongzy" example="/ustc/news/gl" path="/ustc/news/:type?" paramsDesc={['分类,默认为管理类']} radar="1" anticrawler="1">
- | 教学类 | 科研类 | 管理类 | 服务类 |
- | ------ | ------ | ------ | ------ |
- | jx | ky | gl | fw |
-</Route>
+<Route data={{"path":"/jwc/:type?","categories":["university"],"example":"/ustc/jwc/info","parameters":{"type":"分类,默认显示所有种类"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.teach.ustc.edu.cn/"],"target":"/jwc"},"name":"教务处通知新闻","maintainers":["hang333"],"url":"www.teach.ustc.edu.cn/","description":"| 信息 | 教学 | 考试 | 交流 |\n | ---- | -------- | ---- | -------- |\n | info | teaching | exam | exchange |","location":"jwc.ts"}} />
-### 教务处通知新闻 {#zhong-guo-ke-xue-ji-shu-da-xue-jiao-wu-chu-tong-zhi-xin-wen}
+| 信息 | 教学 | 考试 | 交流 |
+| ---- | -------- | ---- | -------- |
+| info | teaching | exam | exchange |
-<Route author="hang333" example="/ustc/jwc/info" path="/ustc/jwc/:type?" paramsDesc={['分类,默认显示所有种类']} radar="1">
- | 信息 | 教学 | 考试 | 交流 |
- | ---- | -------- | ---- | -------- |
- | info | teaching | exam | exchange |
-</Route>
+### 就业信息网 {#zhong-guo-ke-xue-ji-shu-da-xue-jiu-ye-xin-xi-wang}
-### 研究生院 {#zhong-guo-ke-xue-ji-shu-da-xue-yan-jiu-sheng-yuan}
+<Route data={{"path":"/job/:category?","categories":["university"],"example":"/ustc/job","parameters":{"category":"分类,见下表,默认为招聘公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["job.ustc.edu.cn/"],"target":"/job"},"name":"就业信息网","maintainers":["nczitzk"],"url":"job.ustc.edu.cn/","description":"| 专场招聘会 | 校园双选会 | 空中宣讲 | 招聘公告 |\n | ----------- | ------------ | --------- | -------- |\n | RecruitList | Doublechoice | Broadcast | joblist2 |","location":"job.ts"}} />
-<Route author="jasongzy" example="/ustc/gs/tzgg" path="/ustc/gs/:type?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 新闻动态 |
- | -------- | -------- |
- | tzgg | xwdt |
-</Route>
+| 专场招聘会 | 校园双选会 | 空中宣讲 | 招聘公告 |
+| ----------- | ------------ | --------- | -------- |
+| RecruitList | Doublechoice | Broadcast | joblist2 |
### 信息科学技术学院 {#zhong-guo-ke-xue-ji-shu-da-xue-xin-xi-ke-xue-ji-shu-xue-yuan}
-<Route author="jasongzy" example="/ustc/sist/tzgg" path="/ustc/sist/:type?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 招生工作 |
- | -------- | -------- |
- | tzgg | zsgz |
-</Route>
+<Route data={{"path":"/sist/:type?","categories":["university"],"example":"/ustc/sist/tzgg","parameters":{"type":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["sist.ustc.edu.cn/"],"target":"/sist"},"name":"信息科学技术学院","maintainers":["jasongzy"],"url":"sist.ustc.edu.cn/","description":"| 通知公告 | 招生工作 |\n | -------- | -------- |\n | tzgg | zsgz |","location":"sist.ts"}} />
-### 电子工程与信息科学系 {#zhong-guo-ke-xue-ji-shu-da-xue-dian-zi-gong-cheng-yu-xin-xi-ke-xue-xi}
+| 通知公告 | 招生工作 |
+| -------- | -------- |
+| tzgg | zsgz |
-<Route author="jasongzy" example="/ustc/eeis/tzgg" path="/ustc/eeis/:type?" paramsDesc={['分类,见下表,默认为通知公告']} radar="1">
- | 通知公告 | 新闻信息 |
- | -------- | -------- |
- | tzgg | xwxx |
-</Route>
+### 研究生院 {#zhong-guo-ke-xue-ji-shu-da-xue-yan-jiu-sheng-yuan}
-### 就业信息网 {#zhong-guo-ke-xue-ji-shu-da-xue-jiu-ye-xin-xi-wang}
+<Route data={{"path":"/gs/:type?","categories":["university"],"example":"/ustc/gs/tzgg","parameters":{"type":"分类,见下表,默认为通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["gradschool.ustc.edu.cn/"],"target":"/gs"},"name":"研究生院","maintainers":["jasongzy"],"url":"gradschool.ustc.edu.cn/","description":"| 通知公告 | 新闻动态 |\n | -------- | -------- |\n | tzgg | xwdt |","location":"gs.ts"}} />
-<Route author="nczitzk" example="/ustc/job" path="/ustc/job/:category?" paramsDesc={['分类,见下表,默认为招聘公告']} radar="1" notOperational="1">
- | 专场招聘会 | 校园双选会 | 空中宣讲 | 招聘公告 |
- | ----------- | ------------ | --------- | -------- |
- | RecruitList | Doublechoice | Broadcast | joblist2 |
-</Route>
+| 通知公告 | 新闻动态 |
+| -------- | -------- |
+| tzgg | xwdt |
## 中国科学院 {#zhong-guo-ke-xue-yuan}
### 成果转化 {#zhong-guo-ke-xue-yuan-cheng-guo-zhuan-hua}
-<Route author="nczitzk" example="/cas/cg/cgzhld" path="/cas/cg/:caty?" paramsDesc={['分类,见下表,默认为工作动态']} radar="1" notOperational="1">
- | 工作动态 | 科技成果转移转化亮点工作 |
- | -------- | ------------------------ |
- | zh | cgzhld |
-</Route>
-
-### 上海微系统与信息技术研究所 科技进展 {#zhong-guo-ke-xue-yuan-shang-hai-wei-xi-tong-yu-xin-xi-ji-shu-yan-jiu-suo-ke-ji-jin-zhan}
-
-<Route author="HenryQW" example="/cas/sim/kyjz" path="/cas/sim/kyjz" radar="1" notOperational="1" />
-
-### 信息工程研究所 第二研究室 处理架构组 知识库 {#zhong-guo-ke-xue-yuan-xin-xi-gong-cheng-yan-jiu-suo-di-er-yan-jiu-shi-chu-li-jia-gou-zu-zhi-shi-ku}
+<Route data={{"path":"/cg/:caty?","categories":["university"],"example":"/cas/cg/cgzhld","parameters":{"caty":"分类,见下表,默认为工作动态"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.cas.cn/cg/:caty?"]},"name":"成果转化","maintainers":["nczitzk"],"description":"| 工作动态 | 科技成果转移转化亮点工作 |\n | -------- | ------------------------ |\n | zh | cgzhld |","location":"cg/index.ts"}} />
-<Route author="renzhexigua" example="/cas/mesalab/kb" path="/cas/mesalab/kb" radar="1" />
+| 工作动态 | 科技成果转移转化亮点工作 |
+| -------- | ------------------------ |
+| zh | cgzhld |
### 电工研究所 科研动态 {#zhong-guo-ke-xue-yuan-dian-gong-yan-jiu-suo-ke-yan-dong-tai}
-<Route author="nczitzk" example="/cas/iee/kydt" path="/cas/iee/kydt" radar="1" anticrawler="1" />
+<Route data={{"path":"/iee/kydt","categories":["university"],"example":"/cas/iee/kydt","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.iee.cas.cn/xwzx/kydt","www.iee.cas.cn/"]},"name":"电工研究所 科研动态","maintainers":["nczitzk"],"url":"www.iee.cas.cn/xwzx/kydt","location":"iee/kydt.ts"}} />
-### 自动化所 {#zhong-guo-ke-xue-yuan-zi-dong-hua-suo}
+### 上海微系统与信息技术研究所 科技进展 {#zhong-guo-ke-xue-yuan-shang-hai-wei-xi-tong-yu-xin-xi-ji-shu-yan-jiu-suo-ke-ji-jin-zhan}
-<Route author="shengmaosu" example="/cas/ia/yjs" path="/cas/ia/yjs" radar="1" />
+<Route data={{"path":"/sim/kyjz","categories":["university"],"example":"/cas/sim/kyjz","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.sim.cas.cn/xwzx2016/kyjz","www.sim.cas.cn/"]},"name":"上海微系统与信息技术研究所 科技进展","maintainers":["HenryQW"],"url":"www.sim.cas.cn/xwzx2016/kyjz","location":"sim/kyjz.ts"}} />
-### 软件研究所 {#zhong-guo-ke-xue-yuan-ruan-jian-yan-jiu-suo}
+### 信息工程研究所 第二研究室 处理架构组 知识库 {#zhong-guo-ke-xue-yuan-xin-xi-gong-cheng-yan-jiu-suo-di-er-yan-jiu-shi-chu-li-jia-gou-zu-zhi-shi-ku}
-<Route author="Misaka13514" example="/cas/isxwdt2016/tzgg2016" path="/cas/is/:path+" paramsDesc={['路径,可在 URL 找到']} radar="1" notOperational="1">
- 路径参数示例:
+<Route data={{"path":"/mesalab/kb","categories":["university"],"example":"/cas/mesalab/kb","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.mesalab.cn/f/article/articleList","www.mesalab.cn/"]},"name":"信息工程研究所 第二研究室 处理架构组 知识库","maintainers":["renzhexigua"],"url":"www.mesalab.cn/f/article/articleList","location":"mesalab/kb.ts"}} />
- | 通知公告 | 科技动态 | 科普动态 |
- | ----------------- | ----------------- | ----------------- |
- | xwdt2016/tzgg2016 | xwdt2016/kjdt2016 | kxcb2016/kpdt2016 |
-</Route>
+### 自动化所 {#zhong-guo-ke-xue-yuan-zi-dong-hua-suo}
-### 遗传与发育生物学研究所 {#zhong-guo-ke-xue-yuan-yi-chuan-yu-fa-yu-sheng-wu-xue-yan-jiu-suo}
+<Route data={{"path":"/ia/yjs","categories":["university"],"example":"/cas/ia/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["www.ia.cas.cn/yjsjy/zs/sszs","www.ia.cas.cn/"]},"name":"自动化所","maintainers":["shengmaosu"],"url":"www.ia.cas.cn/yjsjy/zs/sszs","location":"ia/yjs.ts"}} />
-<Route author="panyq357" example="/cas/genetics/jixs/yg" path="/cas/genetics/:path+" paramsDesc={['路径,可在 URL 找到']} radar="1">
- 路径参数示例:
+## 中国科学院大学 {#zhong-guo-ke-xue-yuan-da-xue}
- | 路径 | 栏目 |
- | :--------------------- | :--------- |
- | jixs/yg | 学术预告 |
- | dtxw/kyjz | 科研进展 |
- | edu/zsxx/ssszs\_187556 | 硕士生招生 |
- | edu/zsxx/bsszs\_187557 | 博士生招生 |
- | dqyd/djgz/dwyw | 党委要闻 |
-</Route>
+### 人工智能学院 {#zhong-guo-ke-xue-yuan-da-xue-ren-gong-zhi-neng-xue-yuan}
-## 中国科学院大学 {#zhong-guo-ke-xue-yuan-da-xue}
+<Route data={{"path":"/ai","categories":["university"],"example":"/ucas/ai","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ai.ucas.ac.cn/index.php/zh-cn/tzgg","ai.ucas.ac.cn/"]},"name":"人工智能学院","maintainers":["shengmaosu"],"url":"ai.ucas.ac.cn/index.php/zh-cn/tzgg","location":"ai.ts"}} />
### 招聘信息 {#zhong-guo-ke-xue-yuan-da-xue-zhao-pin-xin-xi}
-<Route author="Fatpandac" example="/ucas/job" path="/ucas/job/:type?" paramsDesc={['招聘类型,默认为博士后']} radar="1" notOperational="1">
- | 招聘类型 | 博士后 | 课题项目聘用 | 管理支撑人才 | 教学科研人才 |
- | :------: | :----: | :----------: | :----------: | :----------: |
- | 参数 | bsh | ktxmpy | glzcrc | jxkyrc |
-</Route>
-
-### 人工智能学院 {#zhong-guo-ke-xue-yuan-da-xue-ren-gong-zhi-neng-xue-yuan}
+<Route data={{"path":"/job/:type?","categories":["university"],"example":"/ucas/job","parameters":{"type":"招聘类型,默认为博士后"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"招聘信息","maintainers":["Fatpandac"],"description":"| 招聘类型 | 博士后 | 课题项目聘用 | 管理支撑人才 | 教学科研人才 |\n | :------: | :----: | :----------: | :----------: | :----------: |\n | 参数 | bsh | ktxmpy | glzcrc | jxkyrc |","location":"index.ts"}} />
-<Route author="shengmaosu" example="/ucas/ai" path="/ucas/ai" radar="1" anticrawler="1" />
+| 招聘类型 | 博士后 | 课题项目聘用 | 管理支撑人才 | 教学科研人才 |
+| :------: | :----: | :----------: | :----------: | :----------: |
+| 参数 | bsh | ktxmpy | glzcrc | jxkyrc |
## 中国农业大学 {#zhong-guo-nong-ye-da-xue}
+### Unknown {#zhong-guo-nong-ye-da-xue-unknown}
+
+<Route data={{"path":"/yjs","categories":["university"],"example":"/cau/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["yz.cau.edu.cn/col/col41740/index.html","yz.cau.edu.cn/"]},"name":"Unknown","maintainers":["shengmaosu"],"url":"yz.cau.edu.cn/col/col41740/index.html","location":"yjs.ts"}} />
+
### 研招网通知公告 {#zhong-guo-nong-ye-da-xue-yan-zhao-wang-tong-zhi-gong-gao}
-<Route author="shengmaosu" example="/cau/yjs" path="/cau/yjs" radar="1" />
+<Route data={{"path":"/ele","categories":["university"],"example":"/cau/ele","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ciee.cau.edu.cn/col/col26712/index.html","ciee.cau.edu.cn/"]},"name":"研招网通知公告","maintainers":["shengmaosu"],"url":"ciee.cau.edu.cn/col/col26712/index.html","description":"#### 信电学院 {#zhong-guo-nong-ye-da-xue-yan-zhao-wang-tong-zhi-gong-gao-xin-dian-xue-yuan}","location":"ele.ts"}} />
#### 信电学院 {#zhong-guo-nong-ye-da-xue-yan-zhao-wang-tong-zhi-gong-gao-xin-dian-xue-yuan}
-<Route author="shengmaosu" example="/cau/ele" path="/cau/ele" radar="1" />
-
## 中国人民大学 {#zhong-guo-ren-min-da-xue}
### 人事处 {#zhong-guo-ren-min-da-xue-ren-shi-chu}
-<Route author="nczitzk" example="/ruc/hr" path="/ruc/hr/:category?" paramsDesc={['分类,见下方说明,默认为首页通知公告']}>
- :::tip
- 分类字段处填写的是对应中国人民大学人事处分类页网址中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。
+<Route data={{"path":"/hr/:category?","categories":["university"],"example":"/ruc/hr","parameters":{"category":"分类,见下方说明,默认为首页通知公告"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["hr.ruc.edu.cn/"]},"name":"人事处","maintainers":["nczitzk"],"url":"hr.ruc.edu.cn/","description":":::tip\n 分类字段处填写的是对应中国人民大学人事处分类页网址中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。\n\n 如 [中国人民大学人事处 - 办事机构 - 教师事务办公室 - 教师通知公告](http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm) 的网址为 `http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm` 其中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段为 `bsjg/bsjsswbgs/jstzgg`。随后,并将其中的 `/` 修改为 `-`,可以得到 `bsjg-bsjsswbgs-jstzgg`。所以最终我们的路由为 [`/ruc/hr/bsjg-bsjsswbgs-jstzgg`](https://rsshub.app/ruc/hr/bsjg-bsjsswbgs-jstzgg)\n :::","location":"hr.ts"}} />
- 如 [中国人民大学人事处 - 办事机构 - 教师事务办公室 - 教师通知公告](http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm) 的网址为 `http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm` 其中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段为 `bsjg/bsjsswbgs/jstzgg`。随后,并将其中的 `/` 修改为 `-`,可以得到 `bsjg-bsjsswbgs-jstzgg`。所以最终我们的路由为 [`/ruc/hr/bsjg-bsjsswbgs-jstzgg`](https://rsshub.app/ruc/hr/bsjg-bsjsswbgs-jstzgg)
- :::
-</Route>
+:::tip
+分类字段处填写的是对应中国人民大学人事处分类页网址中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段,并将其中的 `/` 修改为 `-`。
-## 中国石油大学(华东) {#zhong-guo-shi-you-da-xue-hua-dong}
+如 [中国人民大学人事处 - 办事机构 - 教师事务办公室 - 教师通知公告](http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm) 的网址为 `http://hr.ruc.edu.cn/bsjg/bsjsswbgs/jstzgg/index.htm` 其中介于 **`http://hr.ruc.edu.cn/`** 和 **/index.htm** 中间的一段为 `bsjg/bsjsswbgs/jstzgg`。随后,并将其中的 `/` 修改为 `-`,可以得到 `bsjg-bsjsswbgs-jstzgg`。所以最终我们的路由为 [`/ruc/hr/bsjg-bsjsswbgs-jstzgg`](https://rsshub.app/ruc/hr/bsjg-bsjsswbgs-jstzgg)
+:::
-### 研究生院通知公告 {#zhong-guo-shi-you-da-xue-hua-dong-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
+## 中国石油大学(华东) {#zhong-guo-shi-you-da-xue-hua-dong}
-<Route author="shengmaosu" example="/upc/yjs" path="/upc/yjs" radar="1" anticrawler="1" />
+### 计算机科学与技术学院 {#zhong-guo-shi-you-da-xue-hua-dong-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan}
-### 主页 {#zhong-guo-shi-you-da-xue-hua-dong-zhu-ye}
+<Route data={{"path":"/jsj/:type","categories":["university"],"example":"/upc/jsj/news","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机科学与技术学院","maintainers":["Veagau"],"description":"| 学院新闻 | 学术关注 | 学工动态 | 通知公告 |\n | -------- | -------- | -------- | -------- |\n | news | scholar | states | notice |","location":"jsj.ts"}} />
-<Route author="Veagau" example="/upc/main/notice" path="/upc/main/:type" paramsDesc={['分类,见下表']} radar="1" anticrawler="1">
- | 通知公告 | 学术动态 |
- | -------- | -------- |
- | notice | scholar |
-</Route>
+| 学院新闻 | 学术关注 | 学工动态 | 通知公告 |
+| -------- | -------- | -------- | -------- |
+| news | scholar | states | notice |
-### 计算机科学与技术学院 {#zhong-guo-shi-you-da-xue-hua-dong-ji-suan-ji-ke-xue-yu-ji-shu-xue-yuan}
+### 研究生院通知公告 {#zhong-guo-shi-you-da-xue-hua-dong-yan-jiu-sheng-yuan-tong-zhi-gong-gao}
-<Route author="Veagau" example="/upc/jsj/news" path="/upc/jsj/:type" paramsDesc={['分类,见下表']} radar="1" anticrawler="1">
- | 学院新闻 | 学术关注 | 学工动态 | 通知公告 |
- | -------- | -------- | -------- | -------- |
- | news | scholar | states | notice |
-</Route>
+<Route data={{"path":"/yjs","categories":["university"],"example":"/upc/yjs","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["zs.gs.upc.edu.cn/sszs/list.htm","zs.gs.upc.edu.cn/"]},"name":"研究生院通知公告","maintainers":["shengmaosu"],"url":"zs.gs.upc.edu.cn/sszs/list.htm","location":"yjs.ts"}} />
-## 中国药科大学 {#zhong-guo-yao-ke-da-xue}
+### 主页 {#zhong-guo-shi-you-da-xue-hua-dong-zhu-ye}
-### 中国药科大学 {#zhong-guo-yao-ke-da-xue-zhong-guo-yao-ke-da-xue}
+<Route data={{"path":"/main/:type","categories":["university"],"example":"/upc/main/notice","parameters":{"type":"分类,见下表"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"主页","maintainers":["Veagau"],"description":"| 通知公告 | 学术动态 |\n | -------- | -------- |\n | notice | scholar |","location":"main.ts"}} />
-<Route author="kba977" example="/cpu/home" path="/cpu/:type" paramsDesc={['分类,见下表']} notOperational="1">
- | 首页 | 教务处 | 研究生院 |
- | ---- | ------ | -------- |
- | home | jwc | yjsy |
-</Route>
+| 通知公告 | 学术动态 |
+| -------- | -------- |
+| notice | scholar |
## 中南财经政法大学 {#zhong-nan-cai-jing-zheng-fa-da-xue}
### 通知公告 {#zhong-nan-cai-jing-zheng-fa-da-xue-tong-zhi-gong-gao}
-<Route author="nczitzk" example="/zuel/notice" path="/zuel/notice" notOperational="1" />
+<Route data={{"path":"/notice","categories":["university"],"example":"/zuel/notice","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["wap.zuel.edu.cn/","wap.zuel.edu.cn/notice/list.htm"]},"name":"通知公告","maintainers":["nczitzk"],"url":"wap.zuel.edu.cn/","location":"notice.ts"}} />
## 中南大学 {#zhong-nan-da-xue}
-### 就业信息网招聘信息 {#zhong-nan-da-xue-jiu-ye-xin-xi-wang-zhao-pin-xin-xi}
+### 计算机学院 {#zhong-nan-da-xue-ji-suan-ji-xue-yuan}
-<Route author="TonyRL" example="/csu/career" path="/csu/career" radar="1" />
+<Route data={{"path":"/cse/:type?","categories":["university"],"example":"/csu/cse","parameters":{"type":"类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"计算机学院","maintainers":["j1g5awi"],"description":"| 类型 | 学院新闻 | 通知公告 | 学术信息 | 学工动态 | 科研动态 |\n | ---- | -------- | -------- | -------- | -------- | -------- |\n | 参数 | xyxw | tzgg | xsxx | xgdt | kydt |","location":"cse.ts"}} />
-### 计算机学院 {#zhong-nan-da-xue-ji-suan-ji-xue-yuan}
+| 类型 | 学院新闻 | 通知公告 | 学术信息 | 学工动态 | 科研动态 |
+| ---- | -------- | -------- | -------- | -------- | -------- |
+| 参数 | xyxw | tzgg | xsxx | xgdt | kydt |
+
+### 就业信息网招聘信息 {#zhong-nan-da-xue-jiu-ye-xin-xi-wang-zhao-pin-xin-xi}
-<Route author="j1g5awi" example="/csu/cse" path="/csu/cse/:type?" paramsDesc={['类型']} radar="1" anticrawler="1">
- | 类型 | 学院新闻 | 通知公告 | 学术信息 | 学工动态 | 科研动态 |
- | ---- | -------- | -------- | -------- | -------- | -------- |
- | 参数 | xyxw | tzgg | xsxx | xgdt | kydt |
-</Route>
+<Route data={{"path":"/career","categories":["university"],"example":"/csu/career","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["career.csu.edu.cn/campus/index/category/1","career.csu.edu.cn/campus","career.csu.edu.cn/"]},"name":"就业信息网招聘信息","maintainers":["TonyRL"],"url":"career.csu.edu.cn/campus/index/category/1","location":"career.ts"}} />
### 校长信箱 {#zhong-nan-da-xue-xiao-zhang-xin-xiang}
-<Route author="j1g5awi" example="/csu/mail" path="/csu/mail/:type?" paramsDesc={['类型']} radar="1">
- | 类型 | 校长信箱 | 党委信箱 |
- | ---- | -------- | -------- |
- | 参数 | 01 | 02 |
-</Route>
+<Route data={{"path":"/mail/:type?","categories":["university"],"example":"/csu/mail","parameters":{"type":"类型"},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":false,"supportBT":false,"supportPodcast":false,"supportScihub":false},"name":"校长信箱","maintainers":["j1g5awi"],"description":"| 类型 | 校长信箱 | 党委信箱 |\n | ---- | -------- | -------- |\n | 参数 | 01 | 02 |","location":"mail.ts"}} />
-## 中山大学 {#zhong-shan-da-xue}
+| 类型 | 校长信箱 | 党委信箱 |
+| ---- | -------- | -------- |
+| 参数 | 01 | 02 |
-### 数据科学与计算机学院动态 {#zhong-shan-da-xue-shu-ju-ke-xue-yu-ji-suan-ji-xue-yuan-dong-tai}
+## 中山大学 {#zhong-shan-da-xue}
-<Route author="Neutrino3316 MegrezZhu nczitzk" example="/sysu/cse" path="/sysu/cse" anticrawler="1" />
+### Unknown {#zhong-shan-da-xue-unknown}
-### 粤港澳发展研究院 {#zhong-shan-da-xue-yue-gang-ao-fa-zhan-yan-jiu-yuan}
+<Route data={{"path":"/ygafz/:type?","categories":["university"],"example":"/sysu/ygafz","parameters":{"type":"分类,见下表,默认为 `notice`"},"features":{"requireConfig":false,"requirePuppeteer":true,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["ygafz.sysu.edu.cn/:type?"]},"name":"Unknown","maintainers":["TonyRL"],"location":"ygafz.ts"}} />
-<Route author="TonyRL" example="/sysu/ygafz" path="/sysu/ygafz/:type?" paramsDesc={['分类,见下表,默认为 `notice`']} radar="1" puppeteer="1" anticrawler="1">
- | 人才招聘 | 人才培养 | 新闻动态 | 通知公告 | 专家观点 |
- | ---------- | ------------- | -------- | -------- | -------- |
- | jobopening | personnelplan | news | notice | opinion |
+### 数据科学与计算机学院动态 {#zhong-shan-da-xue-shu-ju-ke-xue-yu-ji-suan-ji-xue-yuan-dong-tai}
- | 研究成果 | 研究论文 | 学术著作 | 形势政策 |
- | -------- | -------- | -------- | -------- |
- | results | papers | writings | policy |
-</Route>
+<Route data={{"path":"/cse","categories":["university"],"example":"/sysu/cse","parameters":{},"features":{"requireConfig":false,"requirePuppeteer":false,"antiCrawler":true,"supportBT":false,"supportPodcast":false,"supportScihub":false},"radar":{"source":["cse.sysu.edu.cn/"]},"name":"数据科学与计算机学院动态","maintainers":[],"url":"cse.sysu.edu.cn/","location":"cse.ts"}} />
|
4e31222c137aa493194cec95af8a54cd36ea41fd
|
2020-10-30 15:14:38
|
Enoch Ma
|
feat: better compatibility fo AEON & NYTimes (#6054)
| false
|
better compatibility fo AEON & NYTimes (#6054)
|
feat
|
diff --git a/lib/routes/aeon/category.js b/lib/routes/aeon/category.js
index 7bcf506d32fa29..256224affb72f8 100644
--- a/lib/routes/aeon/category.js
+++ b/lib/routes/aeon/category.js
@@ -33,7 +33,7 @@ module.exports = async (ctx) => {
let bio;
const authorInfo = '.article__body__author-details > p:nth-child(2)';
if (capture(authorInfo).html() !== null) {
- bio = `<br><br><br><br><hr><br><b>` + author.trim() + '</b> ' + capture(authorInfo).html().trim() + `<p><hr>`;
+ bio = `<br><br><hr><br><b>` + author.trim() + '</b> ' + capture(authorInfo).html().trim() + `<p></p><hr>`;
capture('.article__inline-sidebar').remove();
} else {
bio = '';
diff --git a/lib/routes/nytimes/index.js b/lib/routes/nytimes/index.js
index f42b2922f65e02..c490c262f6a824 100644
--- a/lib/routes/nytimes/index.js
+++ b/lib/routes/nytimes/index.js
@@ -86,7 +86,7 @@ module.exports = async (ctx) => {
const ending = /感(谢|謝);.*?cn\.letters@nytimes\.com。/g;
const matching = '<div class="article-paragraph">';
- const formatted = '<p></p>' + matching;
+ const formatted = '<br>' + matching;
single.description = result.description.replace(ending, '').split(matching).join(formatted);
diff --git a/lib/routes/nytimes/morning_post.js b/lib/routes/nytimes/morning_post.js
index 4c67c27c2b3daa..ea785b07132d1a 100644
--- a/lib/routes/nytimes/morning_post.js
+++ b/lib/routes/nytimes/morning_post.js
@@ -37,7 +37,7 @@ module.exports = async (ctx) => {
const ending = /感(谢|謝);.*?cn\.letters@nytimes\.com。/g;
const matching = '<div class="article-paragraph">';
- const formatted = '<p></p>' + matching;
+ const formatted = '<br>' + matching;
item.description = result.description.replace(ending, '').split(matching).join(formatted);
diff --git a/lib/routes/solidot/_article.js b/lib/routes/solidot/_article.js
index 1dd9943d4c8082..50dab2ac65331b 100644
--- a/lib/routes/solidot/_article.js
+++ b/lib/routes/solidot/_article.js
@@ -27,19 +27,28 @@ module.exports = async function get_article(url) {
let date = new Date(date_str);
date.setHours(date.getHours() - 8);
date = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), date.getHours(), date.getMinutes(), date.getSeconds()));
+ const title = $('div.block_m > div.ct_tittle > div.bg_htit > h2').text();
+ const category = $('div.icon_float > a').attr('title');
+ const author = $('div.talk_time > b')
+ .text()
+ .replace(/^来自(.*)部门$/g, '$1');
+ $('div.ct_tittle').remove();
+ $('div.talk_time').remove();
+ const description = $('div.block_m')
+ .html()
+ .replace(/(href.*?)<u>(.*?)<\/u>/g, `$1$2`)
+ .replace(/href="\//g, 'href="' + domain + '/')
+ // Preserve the not extremely disturbing donation ad
+ // to support the site.
+ .replace(/(<img.*liiLIZF8Uh6yM.*?>)/g, `<br><br>$1`);
const item = {
- title: $('div.block_m > div.ct_tittle > div.bg_htit > h2').text(),
+ title: title,
pubDate: date.toUTCString(),
- author: $('div.talk_time > b')
- .text()
- .replace(/^来自(.*)部门$/g, '$1'),
+ author: author,
link: url,
- description: $('div.p_mainnew')
- .html()
- .replace(/(href.*?)<u>(.*?)<\/u>/g, `$1$2`)
- .replace(/href="\//g, 'href="' + domain + '/'),
- category: $('div.icon_float > a').attr('title'),
+ description: description,
+ category: category,
};
return item;
};
|
331b1dd8cbe743e8786277349a310a0e08f6ae1c
|
2025-03-04 00:31:59
|
pseudoyu
|
feat(route/theblock): support theblock news category
| false
|
support theblock news category
|
feat
|
diff --git a/lib/routes/theblock/index.ts b/lib/routes/theblock/index.ts
new file mode 100644
index 00000000000000..2004d27fb09d4f
--- /dev/null
+++ b/lib/routes/theblock/index.ts
@@ -0,0 +1,152 @@
+import { Route, Data } from '@/types';
+import cache from '@/utils/cache';
+import ofetch from '@/utils/ofetch';
+import { parseDate } from '@/utils/parse-date';
+import { load } from 'cheerio';
+import logger from '@/utils/logger';
+
+export const route: Route = {
+ path: '/category/:category',
+ categories: ['finance'],
+ example: '/theblock/category/crypto-ecosystems',
+ parameters: { category: '`category` is the category of theblock' },
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ name: 'Category',
+ maintainers: ['pseudoyu'],
+ handler,
+ radar: [
+ {
+ source: ['theblock.co/category/:category'],
+ target: '/category/:category',
+ },
+ ],
+ description: `Get latest news from TheBlock by category. Note that due to website limitations, only article summaries may be available.`,
+};
+
+async function handler(ctx): Promise<Data> {
+ const category = ctx.req.param('category');
+ const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit')) : 10;
+
+ const apiUrl = `https://www.theblock.co/api/category/${category}`;
+
+ const browserHeaders = {
+ 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',
+ };
+
+ try {
+ const response = await ofetch(apiUrl, {
+ headers: browserHeaders,
+ });
+
+ // Extract articles from the nested data structure
+ const articles = response.data?.articles || [];
+
+ if (!articles.length) {
+ throw new Error(`No articles found for category: ${category}`);
+ }
+
+ const items = await Promise.all(
+ articles.slice(0, limit).map((article) =>
+ cache.tryGet(`theblock:article:${article.url}`, async () => {
+ try {
+ // Try to get the full article
+ const articleResponse = await ofetch(article.url, {
+ headers: browserHeaders,
+ retry: 1,
+ });
+
+ const $ = load(articleResponse);
+ const articleContent = $('#articleContent');
+
+ // If we successfully got the article content
+ if (articleContent.length) {
+ // Remove unwanted elements
+ articleContent.find('div.copyright').remove();
+
+ // Extract specific elements, similar to the Python implementation
+ const contentElements = articleContent.find('p, li, h2, h3');
+ let fullText = '';
+
+ contentElements.each((_, element) => {
+ fullText += $(element).html() + '<br>';
+ });
+
+ if (fullText) {
+ return {
+ title: article.title,
+ link: article.url,
+ pubDate: parseDate(article.publishedFormatted, 'MMMM D, YYYY, h:mmA [EST]'),
+ description: fullText,
+ author: article.author?.name || 'TheBlock',
+ category: article.categories?.map((cat) => cat.name) || [],
+ guid: article.url,
+ image: article.thumbnail,
+ };
+ }
+ }
+
+ // If we couldn't extract specific content, fall back to a summary-based approach
+ logger.info(`Using summary-based approach for article: ${article.url}`);
+ return createSummaryItem(article);
+ } catch (error: any) {
+ // If we got a 403 error or any other error, use summary approach
+ logger.warn(`Couldn't fetch full content for ${article.url}: ${error.message}`);
+ return createSummaryItem(article);
+ }
+ })
+ )
+ );
+
+ return {
+ title: `TheBlock - ${category.charAt(0).toUpperCase() + category.slice(1).replaceAll('-', ' ')}`,
+ link: `https://www.theblock.co/category/${category}`,
+ item: items,
+ description: `Latest articles from TheBlock in the ${category} category`,
+ language: 'en',
+ } as Data;
+ } catch (error: any) {
+ logger.error(`Error in TheBlock handler: ${error.message}`);
+ throw error;
+ }
+}
+
+// Helper function to create a summary-based item when full content isn't available
+function createSummaryItem(article: any) {
+ let description = '';
+
+ // Add thumbnail if available
+ if (article.thumbnail) {
+ description += `<p><img src="${article.thumbnail}" alt="${article.title}"></p>`;
+ }
+
+ // Add subheading if available
+ if (article.subheading) {
+ description += `<p><strong>${article.subheading}</strong></p>`;
+ }
+
+ // Add preview if available
+ if (article.preview) {
+ description += `<p>${article.preview}</p>`;
+ }
+
+ // Add link to original article
+ description += `<p><a href="${article.url}">Read the full article at TheBlock</a></p>`;
+
+ return {
+ title: article.title,
+ link: article.url,
+ pubDate: parseDate(article.publishedFormatted, 'MMMM D, YYYY, h:mmA [EST]'),
+ description,
+ author: article.author?.name || 'TheBlock',
+ category: article.categories?.map((cat) => cat.name) || [],
+ guid: article.url,
+ image: article.thumbnail,
+ };
+}
diff --git a/lib/routes/theblock/namespace.ts b/lib/routes/theblock/namespace.ts
new file mode 100644
index 00000000000000..034e10142bf684
--- /dev/null
+++ b/lib/routes/theblock/namespace.ts
@@ -0,0 +1,7 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: 'TheBlock',
+ url: 'theblock.co',
+ lang: 'en',
+};
|
0a7537af70d923a90b29567492c6704395a766bb
|
2023-11-23 18:54:27
|
github-actions[bot]
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/website/docs/routes/game.mdx b/website/docs/routes/game.mdx
index 8ef201e7c747bd..fc8b6ea20a0cb6 100644
--- a/website/docs/routes/game.mdx
+++ b/website/docs/routes/game.mdx
@@ -326,7 +326,7 @@ So the route is [`/itch/devlogs/teamterrible/the-baby-in-yellow`](https://rsshub
<Route author="wzekin" example="/liquipedia/dota2/matches/Team_Aster" path="/liquipedia/dota2/matches/:id" paramsDesc={['战队名称,可在url中找到。例如:https://liquipedia.net/dota2/Team_Aster']}/>
-### Counter Strike Match Results {#liquipedia-cs-match-results}
+### Counter Strike Match Results {#liquipedia-counter-strike-match-results}
<Route author="CookiePieWw" example="/liquipedia/counterstrike/matches/G2_Esports" path="/liquipedia/counterstrike/matches/:id" paramsDesc={['战队名称,可在url中找到。例如:https://liquipedia.net/counterstrike/G2_Esports']}/>
|
23d2824509e500cf13bf1119ff7fbd13bc6a986b
|
2020-11-12 23:15:06
|
Ethan Shen
|
feat: add 观察者网头条 (#6152)
| false
|
add 观察者网头条 (#6152)
|
feat
|
diff --git a/docs/new-media.md b/docs/new-media.md
index 3bdd24997144a4..dfa0fcbddf89f8 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -777,6 +777,10 @@ area 分区选项
## 观察者网
+### 头条
+
+<Route author="nczitzk" example="/guancha/headline" path="/guancha/headline" />
+
### 首页
<Route author="nczitzk Jeason0228" example="/guancha" path="/guancha/:caty?" :paramsDesc="['分类,见下表,默认为全部']">
diff --git a/lib/router.js b/lib/router.js
index 1cd5df7d775070..b6fead7b43dd91 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -1700,6 +1700,7 @@ router.get('/zfrontier/postlist/:type', require('./routes/zfrontier/postlist'));
router.get('/zfrontier/board/:boardId', require('./routes/zfrontier/board_postlist'));
// 观察者网
+router.get('/guancha/headline', require('./routes/guancha/headline'));
router.get('/guancha/topic/:id/:order?', require('./routes/guancha/topic'));
router.get('/guancha/member/:caty?', require('./routes/guancha/member'));
router.get('/guancha/personalpage/:uid', require('./routes/guancha/personalpage'));
diff --git a/lib/routes/guancha/headline.js b/lib/routes/guancha/headline.js
new file mode 100644
index 00000000000000..ea8e5a88e5ab7d
--- /dev/null
+++ b/lib/routes/guancha/headline.js
@@ -0,0 +1,49 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+module.exports = async (ctx) => {
+ const rootUrl = 'https://www.guancha.cn';
+ const currentUrl = `${rootUrl}/GuanChaZheTouTiao/list_1.shtml`;
+ const response = await got({
+ method: 'get',
+ url: currentUrl,
+ });
+
+ const $ = cheerio.load(response.data);
+
+ const list = $('.headline-list li .content-headline h3 a')
+ .map((_, item) => {
+ item = $(item);
+ return {
+ title: item.text(),
+ link: `${rootUrl}${item.attr('href')}`,
+ description: item.parent().next().html(),
+ pubDate: new Date(item.parents('div').eq(0).find('span').text()).toUTCString(),
+ };
+ })
+ .get();
+
+ const items = await Promise.all(
+ list.map(
+ async (item) =>
+ await ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: item.link,
+ });
+
+ const content = cheerio.load(detailResponse.data);
+
+ item.description += content('.all-txt').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: '观察者网 - 头条',
+ link: currentUrl,
+ item: items,
+ };
+};
|
9876784e8874cb83f13322712333f57bc5b97d47
|
2020-02-29 17:38:56
|
hoilc
|
fix: filter out t66y null entry (#4111)
| false
|
filter out t66y null entry (#4111)
|
fix
|
diff --git a/lib/routes/t66y/index.js b/lib/routes/t66y/index.js
index 8c4ace892d0e67..4ce852c37c9baa 100644
--- a/lib/routes/t66y/index.js
+++ b/lib/routes/t66y/index.js
@@ -107,8 +107,8 @@ module.exports = async (ctx) => {
let title = $('.tal h3 a');
const path = title.attr('href');
- // Filter duplicated entries
- if (path.match(filterReg) !== null) {
+ // Filter duplicated or null entries
+ if (!path || path.match(filterReg) !== null) {
return Promise.resolve('');
}
const link = url.resolve(base, path);
|
de34f179cd3b6a3e12462c6233c5718b0b6205f1
|
2019-06-19 09:35:16
|
DIYgod
|
fix: undefined git hash in docker
| false
|
undefined git hash in docker
|
fix
|
diff --git a/.dockerignore b/.dockerignore
index 6975847ed5aa22..7adaa0be0b728f 100644
--- a/.dockerignore
+++ b/.dockerignore
@@ -3,8 +3,7 @@ npm-debug.log
Dockerfile*
docker-compose*
.dockerignore
-.git
.gitignore
README.md
LICENSE
-.vscode
\ No newline at end of file
+.vscode
|
0da7051539124bc78f48b3aa47564a27ec56e7d9
|
2020-08-21 02:34:34
|
hoilc
|
feat: add picuki video support (#5471)
| false
|
add picuki video support (#5471)
|
feat
|
diff --git a/docs/en/social-media.md b/docs/en/social-media.md
index e7b8c6997c069a..4a1be53abe3021 100644
--- a/docs/en/social-media.md
+++ b/docs/en/social-media.md
@@ -75,7 +75,7 @@ These feed do not include boosts (a.k.a. reblogs). RSSHub provides a feed for us
### User Profile
-<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id" :paramsDesc="['Instagram id']" />
+<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id/:displayVideo?" :paramsDesc="['Instagram id','Default to disable the embedded video, set to any value to enable embedding']" />
## pixiv
diff --git a/docs/social-media.md b/docs/social-media.md
index af285a3fd05954..d54d75a2c497fa 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -363,7 +363,7 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
### 用户
-<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id" :paramsDesc="['Instagram 用户 id']" radar="1" />
+<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id/:displayVideo?" :paramsDesc="['Instagram 用户 id','是否显示视频,任意值为是,留空为否']" radar="1" />
## pixiv
diff --git a/lib/router.js b/lib/router.js
index 6792302cd8ff9c..1e61f27dbb43e9 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -3024,7 +3024,7 @@ router.get('/furstar/archive/:lang?', require('./routes/furstar/archive'));
router.get('/bwu/news', require('./routes/universities/bwu/news'));
// Picuki
-router.get('/picuki/profile/:id', require('./routes/picuki/profile'));
+router.get('/picuki/profile/:id/:displayVideo?', require('./routes/picuki/profile'));
// 新榜
router.get('/newrank/wechat/:wxid', require('./routes/newrank/wechat'));
diff --git a/lib/routes/picuki/profile.js b/lib/routes/picuki/profile.js
index 485c7f1598d159..58ec1921bd6ce0 100644
--- a/lib/routes/picuki/profile.js
+++ b/lib/routes/picuki/profile.js
@@ -4,6 +4,7 @@ const chrono = require('chrono-node');
module.exports = async (ctx) => {
const id = ctx.params.id;
+ const displayVideo = ctx.params.displayVideo ? true : false;
const url = `https://www.picuki.com/profile/${id}`;
@@ -16,13 +17,16 @@ module.exports = async (ctx) => {
const list = $('ul.box-photos [data-s="media"]').get();
- ctx.state.data = {
- title: `${profile_name} (@${id}) - Picuki`,
- link: url,
- image: profile_img,
- description: profile_description,
- item: list.map((post) => {
+ async function getVideo(url) {
+ const response = await got.get(url);
+ const $ = cheerio.load(response.data);
+ return $('.single-photo').html();
+ }
+
+ const items = await Promise.all(
+ list.map(async (post) => {
post = $(post);
+ const isVideo = post.find('.video-icon').length !== 0 && displayVideo;
const post_image = post.find('.post-image').attr('src');
const post_description = post.find('.photo-description').text().trim();
const post_link = post.find('.photo > a').attr('href');
@@ -30,10 +34,18 @@ module.exports = async (ctx) => {
return {
title: post_description || 'Untitled',
author: `@${id}`,
- description: `<img src="${post_image}">` + (post_description.length > 100 ? `<p>${post_description}</p>` : ''),
+ description: (isVideo ? await getVideo(post_link) : `<img src="${post_image}">`) + (post_description.length > 100 ? `<p>${post_description}</p>` : ''),
link: post_link,
pubDate: post_time ? chrono.parseDate(post_time.text()) : new Date(),
};
- }),
+ })
+ );
+
+ ctx.state.data = {
+ title: `${profile_name} (@${id}) - Picuki`,
+ link: url,
+ image: profile_img,
+ description: profile_description,
+ item: items,
};
};
|
fa5c037f3dcbdf446a054629b7973d45e6f04144
|
2022-02-16 17:34:07
|
GitHub Action
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/docs/government.md b/docs/government.md
index d4a17c9b094869..9ac8a4949e94f5 100644
--- a/docs/government.md
+++ b/docs/government.md
@@ -308,23 +308,23 @@ pageClass: routes
<Route author="EsuRt luyuhuang" example="/gov/suzhou/news/news" path="/gov/suzhou/news/:uid" :paramsDesc="['栏目名']">
-| 新闻栏目名 | :uid |
-| :------: | :--: |
-| 苏州要闻 | news 或 szyw |
-| 区县快讯 | district 或 qxkx |
-| 部门动态 | bmdt |
-| 新闻视频 | xwsp |
-| 政务公告 | zwgg |
-| 便民公告 | mszx |
-| 民生资讯 | bmzx |
-
-| 热点专题栏目名 | :uid |
-| :------: | :--: |
-| 热点专题 | rdzt |
-| 市本级专题 | sbjzt |
-| 最新热点专题 | zxrdzt |
-| 往期专题 | wqzt |
-| 区县专题 | qxzt |
+| 新闻栏目名 | :uid |
+| :--------: | :--------------: |
+| 苏州要闻 | news 或 szyw |
+| 区县快讯 | district 或 qxkx |
+| 部门动态 | bmdt |
+| 新闻视频 | xwsp |
+| 政务公告 | zwgg |
+| 便民公告 | mszx |
+| 民生资讯 | bmzx |
+
+| 热点专题栏目名 | :uid |
+| :------------: | :----: |
+| 热点专题 | rdzt |
+| 市本级专题 | sbjzt |
+| 最新热点专题 | zxrdzt |
+| 往期专题 | wqzt |
+| 区县专题 | qxzt |
::: tip 提示
|
41c500a6e6e6aa4c8deabfbed63e3e7d3d1625a5
|
2020-12-08 16:53:10
|
Ethan Shen
|
feat: add 无产者评论 (#6376)
| false
|
add 无产者评论 (#6376)
|
feat
|
diff --git a/docs/new-media.md b/docs/new-media.md
index 77998bea6c79c6..4647a9e061de35 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -1753,6 +1753,30 @@ column 为 third 时可选的 category:
<Route author="xyqfer" example="/wechat/miniprogram/plugins" path="/wechat/miniprogram/plugins" />
+## 无产者评论
+
+### 分类
+
+<Route author="nczitzk" example="/proletar" path="/proletar/categories/:id?" :paramsDesc="['分类,见下表,默认为全部文章']">
+
+| 全部文章 | 中流击水 | 革命文艺 | 当代中国 | 理论视野 | 国际观察 | 史海沉钩 |
+| -------- | -------- | -------- | -------- | -------- | -------- | -------- |
+| | 中流击水 | 革命文艺 | 当代中国 | 理论视野 | 国际观察 | 史海沉钩 |
+
+</Route>
+
+### 标签
+
+<Route author="nczitzk" example="/proletar" path="/proletar/tags/:id?" :paramsDesc="['标签,默认为全部文章']">
+
+::: tip 提示
+
+标签名参见 [所有标签](https://review.proletar.ink/tags)
+
+:::
+
+</Route>
+
## 西祠胡同
### 频道
diff --git a/lib/router.js b/lib/router.js
index 5249d5f7ae9293..85df4db4cfc299 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -3661,6 +3661,9 @@ router.get('/tesla', require('./routes/tesla/update'));
// 复旦大学继续教育学院
router.get('/fudan/cce', require('./routes/universities/fudan/cce'));
+// 无产者评论
+router.get('/proletar/:type?/:id?', require('./routes/proletar/index'));
+
// QTTabBar
router.get('/qttabbar/change-log', require('./routes/qttabbar/change-log'));
diff --git a/lib/routes/proletar/index.js b/lib/routes/proletar/index.js
new file mode 100644
index 00000000000000..ee7166301fb69f
--- /dev/null
+++ b/lib/routes/proletar/index.js
@@ -0,0 +1,52 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type || '';
+ const id = ctx.params.id || '';
+
+ const rootUrl = 'https://review.proletar.ink';
+ const currentUrl = `${rootUrl}/${type === '' && id === '' ? 'posts' : `${type}/${id}`}`;
+ const response = await got({
+ method: 'get',
+ url: currentUrl,
+ });
+
+ const $ = cheerio.load(response.data);
+
+ const list = $('.archive-item-link')
+ .slice(0, 15)
+ .map((_, item) => {
+ item = $(item);
+ return {
+ title: item.text(),
+ link: `${rootUrl}${item.attr('href')}`,
+ };
+ })
+ .get();
+
+ const items = await Promise.all(
+ list.map(
+ async (item) =>
+ await ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: item.link,
+ });
+ const content = cheerio.load(detailResponse.data);
+
+ item.author = content('.post-author').text();
+ item.description = content('#content').html();
+ item.pubDate = new Date(detailResponse.data.match(/"datePublished":"(.*)","dateModified"/)[1]).toUTCString();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: $('title').text(),
+ link: currentUrl,
+ item: items,
+ };
+};
|
5cef7df512b7d2f953af19afae2febb42f375e9b
|
2024-12-26 22:31:15
|
Tsuyumi
|
feat(route): add WebCatalog changelog (#17981)
| false
|
add WebCatalog changelog (#17981)
|
feat
|
diff --git a/lib/routes/webcatalog/changelog.ts b/lib/routes/webcatalog/changelog.ts
new file mode 100644
index 00000000000000..c5b9788115ab6b
--- /dev/null
+++ b/lib/routes/webcatalog/changelog.ts
@@ -0,0 +1,59 @@
+import { Route } from '@/types';
+import { load } from 'cheerio';
+import { parseDate } from '@/utils/parse-date';
+import ofetch from '@/utils/ofetch';
+
+export const route: Route = {
+ path: '/changelog',
+ categories: ['program-update'],
+ example: '/webcatalog/changelog',
+ parameters: {},
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ radar: [
+ {
+ source: ['desktop.webcatalog.io/:lang/changelog'],
+ },
+ ],
+ name: 'Changelog',
+ maintainers: ['Tsuyumi25'],
+ handler,
+ url: 'desktop.webcatalog.io/en/changelog',
+};
+
+async function handler() {
+ const url = 'https://desktop.webcatalog.io/en/changelog';
+ const response = await ofetch(url);
+ const $ = load(response);
+
+ // remove What's new
+ $('.container article div.mb-20').remove();
+ const items = $('.container article')
+ .html()
+ ?.split('<hr>')
+ ?.map((section) => {
+ const $section = load(section);
+ const month = $section('h1').remove().text();
+ const title = $section('h2').first().remove().text();
+ return {
+ title: `${month} - ${title}`,
+ description: $section.html(),
+ link: url,
+ pubDate: parseDate(month),
+ guid: `webcatalog-${month}-${title}`,
+ };
+ });
+
+ return {
+ title: 'WebCatalog Changelog',
+ link: url,
+ item: items,
+ language: 'en',
+ };
+}
diff --git a/lib/routes/webcatalog/namespace.ts b/lib/routes/webcatalog/namespace.ts
new file mode 100644
index 00000000000000..b9c4fb8bde1dcb
--- /dev/null
+++ b/lib/routes/webcatalog/namespace.ts
@@ -0,0 +1,7 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: 'WebCatalog',
+ url: 'desktop.webcatalog.io',
+ lang: 'en',
+};
|
c4cd0ab4957ec622fa2ea8145c4a586fc8b571de
|
2019-05-12 21:54:48
|
DIYgod
|
fix(chore): contentExpire not work
| false
|
contentExpire not work
|
fix
|
diff --git a/docs/en/install/README.md b/docs/en/install/README.md
index c08eabeb336d62..3facf24b85191d 100644
--- a/docs/en/install/README.md
+++ b/docs/en/install/README.md
@@ -268,7 +268,7 @@ Use environment variables is recommended to avoid conflicts during upgrade.
`CACHE_EXPIRE`: route cache expiry time in seconds, default to `5 * 60`
-`CACHE_CONTENT_EXPIRE`: content cache expiry time in seconds, default to `24 * 60 * 60`
+`CACHE_CONTENT_EXPIRE`: content cache expiry time in seconds, it will be recalculated when it is accessed, default to `1 * 60 * 60`
`LISTEN_INADDR_ANY`: open up for external access, default to `1`
diff --git a/docs/install/README.md b/docs/install/README.md
index 4a5f6b84a66f15..62e0f1545ff969 100644
--- a/docs/install/README.md
+++ b/docs/install/README.md
@@ -313,7 +313,7 @@ $ docker run -d --name rsshub -p 1200:1200 rsshub:arm32v7
`CACHE_EXPIRE`: 路由缓存过期时间, 单位为秒, 默认 `5 * 60`
-`CACHE_CONTENT_EXPIRE`: 内容缓存过期时间,单位为秒, 默认 `24 * 60 * 60`
+`CACHE_CONTENT_EXPIRE`: 内容缓存过期时间,每次访问会重新计算过期时间,单位为秒, 默认 `1 * 60 * 60`
`LISTEN_INADDR_ANY`: 是否允许公网连接, 默认 `1`
diff --git a/lib/config.js b/lib/config.js
index a6971a68446448..6d3d38ed3d3e72 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -15,7 +15,7 @@ module.exports = {
cache: {
type: process.env.CACHE_TYPE || 'memory', // 缓存类型,支持 'memory' 和 'redis',设为空可以禁止缓存
routeExpire: parseInt(process.env.CACHE_EXPIRE) || 5 * 60, // 路由缓存时间,单位为秒
- contentExpire: parseInt(process.env.CACHE_CONTENT_EXPIRE) || 24 * 60 * 60, // 不变内容缓存时间,单位为秒
+ contentExpire: parseInt(process.env.CACHE_CONTENT_EXPIRE) || 1 * 60 * 60, // 不变内容缓存时间,单位为秒
},
ua: process.env.UA || 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36',
listenInaddrAny: parseInt(process.env.LISTEN_INADDR_ANY) || 1, // 是否允许公网连接,取值 0 1
diff --git a/lib/middleware/cache.js b/lib/middleware/cache.js
index f9cc1958b77adf..9f509e10a22dc7 100644
--- a/lib/middleware/cache.js
+++ b/lib/middleware/cache.js
@@ -38,13 +38,13 @@ module.exports = function(app, options = {}) {
if (key) {
let value = await redisClient.get(key);
if (value) {
- await redisClient.expire(key, config.cache.routeExpire);
+ await redisClient.expire(key, config.cache.contentExpire);
value = value + '';
}
return value;
}
},
- set: async function(key, value, maxAge = config.cache.routeExpire) {
+ set: async function(key, value, maxAge = config.cache.contentExpire) {
if (await redisClient.exists(key)) {
logger.warn(`repeated key: ${key}, ${value}`);
return;
@@ -89,7 +89,7 @@ module.exports = function(app, options = {}) {
return value;
}
},
- set: (key, value, maxAge = config.cache.routeExpire) => {
+ set: (key, value, maxAge = config.cache.contentExpire) => {
if (!value || value === 'undefined') {
value = '';
}
@@ -125,7 +125,7 @@ module.exports = function(app, options = {}) {
};
}
- app.context.cache.tryGet = async function(key, getValueFunc, maxAge = config.cache.routeExpire) {
+ app.context.cache.tryGet = async function(key, getValueFunc, maxAge = config.cache.contentExpire) {
let v = await this.get(key);
if (!v) {
v = await getValueFunc();
diff --git a/lib/routes/bangumi/calendar/_base.js b/lib/routes/bangumi/calendar/_base.js
index 4af04917fe893b..f181db126476ed 100644
--- a/lib/routes/bangumi/calendar/_base.js
+++ b/lib/routes/bangumi/calendar/_base.js
@@ -1,19 +1,5 @@
const axios = require('../../../utils/axios');
-/** @type { (timezoneOffset: number) => Date } */
-const tomorrowMidnight = (timezoneOffset) => {
- const result = new Date(Date.now());
- const localHour = result.getHours() + timezoneOffset;
- if (localHour < 0) {
- result.setUTCHours(-timezoneOffset, 0, 0, 0);
- } else if (localHour < 24) {
- result.setUTCHours(24 - timezoneOffset, 0, 0, 0);
- } else {
- result.setUTCHours(48 - timezoneOffset, 0, 0, 0);
- }
- return result;
-};
-
module.exports = async (ctx) => {
const bgmCalendarUrl = 'https://api.bgm.tv/calendar';
const bgmDataUrl = 'https://cdn.jsdelivr.net/npm/bangumi-data/dist/data.json';
@@ -47,7 +33,7 @@ module.exports = async (ctx) => {
data.items = items;
}
- ctx.cache.set(url[i], JSON.stringify(data), tomorrowMidnight(8).getTime() - Date.now());
+ ctx.cache.set(url[i], JSON.stringify(data));
return Promise.resolve(data);
}
})
diff --git a/lib/routes/guanchazhe/topic.js b/lib/routes/guanchazhe/topic.js
index 539c3583d3bc52..e067eccedff3ee 100644
--- a/lib/routes/guanchazhe/topic.js
+++ b/lib/routes/guanchazhe/topic.js
@@ -42,7 +42,7 @@ module.exports = async (ctx) => {
// 格式化日期
pubDate: date(dateStr),
};
- ctx.cache.set(absoluteUrl, JSON.stringify(item), 24 * 60 * 60);
+ ctx.cache.set(absoluteUrl, JSON.stringify(item));
return Promise.resolve(item);
})
|
b9c2f6a6cc60ae426b206c45c781d60e5d9e6474
|
2023-09-27 05:45:02
|
dependabot[bot]
|
chore(deps-dev): bump @types/imapflow from 1.0.13 to 1.0.14 (#13413)
| false
|
bump @types/imapflow from 1.0.13 to 1.0.14 (#13413)
|
chore
|
diff --git a/package.json b/package.json
index 99e533e5290363..47849f0aae89da 100644
--- a/package.json
+++ b/package.json
@@ -157,7 +157,7 @@
"@types/etag": "1.8.1",
"@types/fs-extra": "11.0.2",
"@types/git-rev-sync": "2.0.0",
- "@types/imapflow": "1.0.13",
+ "@types/imapflow": "1.0.14",
"@types/jsdom": "21.1.3",
"@types/json-bigint": "1.0.2",
"@types/koa": "2.13.9",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 72f30cbfc73d80..7b1a5bbec50eef 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -224,8 +224,8 @@ devDependencies:
specifier: 2.0.0
version: 2.0.0
'@types/imapflow':
- specifier: 1.0.13
- version: 1.0.13
+ specifier: 1.0.14
+ version: 1.0.14
'@types/jsdom':
specifier: 21.1.3
version: 21.1.3
@@ -1497,8 +1497,8 @@ packages:
resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==}
dev: true
- /@types/[email protected]:
- resolution: {integrity: sha512-TD8h02jSTDsXTE79HL0cSkjrU/ufXmSIsZv96O2sNBDA1VluqzKkjV2LrXSPIuXE1tn7JhND7o0iyP4r7haNFw==}
+ /@types/[email protected]:
+ resolution: {integrity: sha512-ZAy/IJwppElFQUorlVd/t9ndngDI/LNZPbqlFHXoxpA2yEq/E7RtI22TOD/9v/Xufg1SjrfrQf6ieZNgEXN6DA==}
dependencies:
'@types/node': 20.5.6
dev: true
|
18c17e06551874b8b0f6aa0230440a0b49c439dd
|
2025-02-28 14:29:00
|
dependabot[bot]
|
chore(deps): bump tldts from 6.1.78 to 6.1.79 (#18474)
| false
|
bump tldts from 6.1.78 to 6.1.79 (#18474)
|
chore
|
diff --git a/package.json b/package.json
index 4b9f12596e8ad2..2746a8be37b3a3 100644
--- a/package.json
+++ b/package.json
@@ -125,7 +125,7 @@
"telegram": "2.26.22",
"tiny-async-pool": "2.1.0",
"title": "4.0.1",
- "tldts": "6.1.78",
+ "tldts": "6.1.79",
"tosource": "2.0.0-alpha.3",
"tough-cookie": "5.1.1",
"tsx": "4.19.3",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bc20e83472b770..a550a0ecbf64b4 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -243,8 +243,8 @@ importers:
specifier: 4.0.1
version: 4.0.1
tldts:
- specifier: 6.1.78
- version: 6.1.78
+ specifier: 6.1.79
+ version: 6.1.79
tosource:
specifier: 2.0.0-alpha.3
version: 2.0.0-alpha.3
@@ -5521,11 +5521,11 @@ packages:
resolution: {integrity: sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==}
hasBin: true
- [email protected]:
- resolution: {integrity: sha512-jS0svNsB99jR6AJBmfmEWuKIgz91Haya91Z43PATaeHJ24BkMoNRb/jlaD37VYjb0mYf6gRL/HOnvS1zEnYBiw==}
+ [email protected]:
+ resolution: {integrity: sha512-HM+Ud/2oQuHt4I43Nvjc213Zji/z25NSH5OkJskJwHXNtYh9DTRlHMDFhms9dFMP7qyve/yVaXFIxmcJ7TdOjw==}
- [email protected]:
- resolution: {integrity: sha512-fSgYrW0ITH0SR/CqKMXIruYIPpNu5aDgUp22UhYoSrnUQwc7SBqifEBFNce7AAcygUPBo6a/gbtcguWdmko4RQ==}
+ [email protected]:
+ resolution: {integrity: sha512-wjlYwK8lC/WcywLWf3A7qbK07SexezXjTRVwuPWXHvcjD7MnpPS2RXY5rLO3g12a8CNc7Y7jQRQsV7XyuBZjig==}
hasBin: true
[email protected]:
@@ -11753,11 +11753,11 @@ snapshots:
[email protected]: {}
- [email protected]: {}
+ [email protected]: {}
- [email protected]:
+ [email protected]:
dependencies:
- tldts-core: 6.1.78
+ tldts-core: 6.1.79
[email protected]:
dependencies:
@@ -11793,7 +11793,7 @@ snapshots:
[email protected]:
dependencies:
- tldts: 6.1.78
+ tldts: 6.1.79
[email protected]: {}
|
b9beac87bc8fd0ecdf4d6258a83ebc27a73742ad
|
2018-09-23 12:27:04
|
DIYgod
|
docs: update
| false
|
update
|
docs
|
diff --git a/docs/README.md b/docs/README.md
index 5abd6667c685f7..362c2982b25dbb 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -875,7 +875,7 @@ GitHub 官方也提供了一些 RSS:
<route name="内购价格更新(限免)" author="HenryQW" example="/appstore/iap/cn/id953286746" path="/appstore/iap/:country/:id" :paramsDesc="['App Store 国家, 必选, 如 Darkroom – Photo Editor 的链接为 https://itunes.apple.com/cn/app/id953286746, 则 country 为 `cn`', 'App Store app id, 必选, 如 Darkroom – Photo Editor 的链接为 https://itunes.apple.com/cn/app/id953286746, 则 id 为 `id953286746`']"/>
-<route name="每日精品限免 / 促销应用" author="Andiedie" example="/appstore/xianmian" path="/appstore/xianmian"/>
+<route name="每日精品限免 / 促销应用(鲜面连线 by AppSo)" author="Andiedie" example="/appstore/xianmian" path="/appstore/xianmian"/>
### F-Droid
|
bf6e5cf5841c5370c3ed8c924d04456b5543fd6c
|
2018-11-12 20:05:19
|
Calpa Liu
|
hotfix: Promise.parse() is not a function (#1116)
| false
|
Promise.parse() is not a function (#1116)
|
hotfix
|
diff --git a/routes/hko/weather.js b/routes/hko/weather.js
index 0a1fad7ce73d2d..19c81d08794539 100644
--- a/routes/hko/weather.js
+++ b/routes/hko/weather.js
@@ -3,9 +3,9 @@ const cheerio = require('cheerio');
module.exports = async (ctx) => {
const url = 'http://rss.weather.gov.hk/rss/CurrentWeather.xml';
- const cache = ctx.cache.get(url);
+ const cache = await ctx.cache.get(url);
if (cache) {
- return Promise.parse(cache);
+ return JSON.parse(cache);
}
const { data } = await axios({ method: 'get', url });
|
68c810d870c6d263d1a7fafed15fc752e9b9f0ae
|
2023-06-16 20:39:01
|
Yuhang
|
docs: add deploy to Zeabur button (#12676)
| false
|
add deploy to Zeabur button (#12676)
|
docs
|
diff --git a/docs/en/install/README.md b/docs/en/install/README.md
index ee81dd43ea7a7f..48b1d38823cb7e 100644
--- a/docs/en/install/README.md
+++ b/docs/en/install/README.md
@@ -21,6 +21,7 @@ Deploy for public access may require:
4. [Heroku](https://devcenter.heroku.com/articles/getting-started-with-nodejs)
5. [Google App Engine](https://cloud.google.com/appengine/)
6. [Fly.io](https://fly.io/)
+7. [Zeabur](https://zeabur.com)
## Docker Image
@@ -408,6 +409,8 @@ Run RSSHub from just $1/month. Includes automatic updates and $5 free starting c
3. Create a new service in the project, select deploying from the **marketplace**.
4. Add a domain name, if you use a custom domain name, you can refer to [Zeabur's domain name binding document](https://docs.zeabur.com/deploy/domain-binding).
+[](https://dash.zeabur.com/templates/X46PTP)
+
## Deploy to Google App Engine(GAE)
### Before You Begin
diff --git a/docs/install/README.md b/docs/install/README.md
index ca92c2553137e3..6382f2e767550f 100644
--- a/docs/install/README.md
+++ b/docs/install/README.md
@@ -21,6 +21,7 @@ sidebar: auto
4. [Heroku](https://devcenter.heroku.com/articles/getting-started-with-nodejs)
5. [Google App Engine](https://cloud.google.com/appengine/)
6. [Fly.io](https://fly.io/)
+7. [Zeabur](https://zeabur.com)
## Docker 镜像
@@ -415,6 +416,8 @@ $ fly secrets set CACHE_TYPE=redis REDIS_URL='<刚才的连接 URL>'
3. 在项目中选择创建新服务,选择从**服务市场**部署。
4. 添加域名,若使用自定义域名,可参见 [Zeabur 的域名绑定文档](https://docs.zeabur.com/zh-CN/deploy/domain-binding)。
+[](https://dash.zeabur.com/templates/X46PTP)
+
## 部署到 Google App Engine
### 准备
|
8b765e6266025e037bcc3751d2231721d5bed7d1
|
2024-12-05 01:53:43
|
github-actions[bot]
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/lib/routes/yna/namespace.ts b/lib/routes/yna/namespace.ts
index 37440b9efc9d80..361481423442a1 100644
--- a/lib/routes/yna/namespace.ts
+++ b/lib/routes/yna/namespace.ts
@@ -5,6 +5,6 @@ export const namespace: Namespace = {
url: 'yna.co.kr',
lang: 'ko',
zh: {
- name: '韩联社',
- }
+ name: '韩联社',
+ },
};
|
223d9a5356f549e118670a2b20e1091f21d70479
|
2020-05-18 10:04:55
|
lijy
|
feat: 加入北京教育考试院路由 (#4798)
| false
|
加入北京教育考试院路由 (#4798)
|
feat
|
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index a5792199b6e3b2..8dd893655baffb 100755
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -1909,4 +1909,27 @@
},
],
},
+ 'bjeea.com': {
+ _name: '北京考试院',
+ www: [
+ {
+ title: '首页 / 通知公告',
+ docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
+ source: ['/html/bjeeagg'],
+ target: '/gov/beijing/bjeea/bjeeagg',
+ },
+ {
+ title: '首页 / 招考政策',
+ docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
+ source: ['/html/zkzc'],
+ target: '/gov/beijing/bjeea/zkzc',
+ },
+ {
+ title: '首页 / 自考快递',
+ docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
+ source: ['/html/zkkd'],
+ target: '/gov/beijing/bjeea/zkkd',
+ },
+ ],
+ },
});
diff --git a/docs/government.md b/docs/government.md
index bef848b5acea09..5ce306318a43e3 100644
--- a/docs/government.md
+++ b/docs/government.md
@@ -128,6 +128,16 @@ pageClass: routes
<Route author="EsuRt" example="/gov/statecouncil/briefing" path="/gov/statecouncil/briefing"/>
+### 北京市人民政府
+
+#### 北京教育考试院
+
+<Route author="gavin-k" example="/gov/beijing/bjeea/bjeeagg" path="/gov/beijing/bjeea/:type" :paramsDesc="['分类名']"/>
+
+| 通知公告 | 招考政策 | 自考快递 |
+| :------: | :------: | :------: |
+| bjeeagg | zkzc | zkkd |
+
### 河北省退役军人事务厅
<Route author="SunShinenny" example="/gov/veterans/hebei/sxxx" path="/gov/veterans/hebei/:type" :paramsDesc="['分类名']">
diff --git a/lib/router.js b/lib/router.js
index 460573d1e7e6b2..ac13d012ed923a 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -1192,6 +1192,9 @@ router.get('/gov/sapprft/approval/:channel/:detail?', require('./routes/gov/sapp
// 北京卫生健康委员会
router.get('/gov/beijing/mhc/:caty', require('./routes/gov/beijing/mhc'));
+// 北京考试院
+router.get('/gov/beijing/bjeea/:type', require('./routes/gov/beijing/eea'));
+
// 小黑盒
router.get('/xiaoheihe/user/:id', require('./routes/xiaoheihe/user'));
router.get('/xiaoheihe/news', require('./routes/xiaoheihe/news'));
diff --git a/lib/routes/gov/beijing/eea.js b/lib/routes/gov/beijing/eea.js
new file mode 100644
index 00000000000000..4ea5e6032ac443
--- /dev/null
+++ b/lib/routes/gov/beijing/eea.js
@@ -0,0 +1,86 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+const baseUrl = 'https://www.bjeea.cn/';
+const siteTitle = '北京教育考试院--';
+
+const categoryMap = {
+ bjeeagg: { title: '首页 / 通知公告', suffix: 'html/bjeeagg' },
+ zkzc: { title: '首页 / 招考政策', suffix: 'html/zkzc' },
+ zkkd: { title: '首页 / 自考快递', suffix: 'html/zkkd' },
+};
+
+// 专门定义一个function用于加载文章内容
+async function load(link) {
+ // 异步请求文章
+ const response = await got.get(link);
+ // 加载文章内容
+ const $ = cheerio.load(response.data);
+ // 提取文章内容
+ const description = $('.sidNavText').html();
+ // 返回解析的结果
+ return { description };
+}
+
+module.exports = async (ctx) => {
+ // 默认 正常规定 然后获取列表页面
+ const type = ctx.params.type || 'bjeeagg';
+
+ const listPageUrl = baseUrl + categoryMap[type].suffix;
+ const response = await got({
+ method: 'get',
+ url: listPageUrl,
+ headers: {
+ Referer: baseUrl,
+ },
+ });
+ const $ = cheerio.load(response.data);
+
+ // 获取当前页面的 list
+ const list = $('div#info>ul>li');
+
+ const result = await Promise.all(
+ // 遍历每一篇文章
+ list
+ .map(async (item) => {
+ const $ = cheerio.load(list[item]); // 将列表项加载成 html
+ const $rel_url = $('a').attr('href'); // 获取 每一项的url
+
+ let $item_url, $is_interior;
+ if ($rel_url.substr(0, 4) === 'http') {
+ $item_url = $rel_url;
+ $is_interior = false;
+ } else {
+ $item_url = baseUrl.substring(0, baseUrl.length - 1) + $rel_url;
+ $is_interior = true;
+ }
+
+ const $title = $('a').text(); // 获取每个的标题
+
+ const date_txt = $.text().match(/[1-9]\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/); // 匹配 yyyy-mm-dd格式时间
+ const $pubdate = new Date(date_txt); // 正则匹配发布时间 然后转换成时间
+
+ // 列表上提取到的信息
+ // 标题 链接
+ const single = {
+ title: $title,
+ pubDate: $pubdate,
+ link: $item_url,
+ guid: $item_url,
+ };
+
+ // 对于列表的每一项, 单独获取 时间与详细内容
+ const other = $is_interior ? await ctx.cache.tryGet($item_url, async () => await load($item_url)) : $title;
+ // 合并解析后的结果集作为该篇文章最终的输出结果
+ return Promise.resolve(Object.assign({}, single, other));
+ })
+ .get()
+ );
+
+ ctx.state.data = {
+ title: siteTitle + categoryMap[type].title,
+ link: baseUrl,
+ description: siteTitle + categoryMap[type].title,
+ item: result,
+ };
+};
|
f9a482da41988234ae9948b584f4a1d47bff50d5
|
2023-06-15 20:16:23
|
miles
|
feat(route): 金十数据 主题文章 (#12667)
| false
|
金十数据 主题文章 (#12667)
|
feat
|
diff --git a/docs/finance.md b/docs/finance.md
index f894967face40f..671c16f83fc1c2 100644
--- a/docs/finance.md
+++ b/docs/finance.md
@@ -374,6 +374,10 @@ TokenInsight 官方亦有提供 RSS,可参考 <https://api.tokeninsight.com/re
<Route author="laampui" example="/jin10" path="/jin10/:important?" :paramsDesc="['只看重要,任意值开启,留空关闭']" radar="1"/>
+### 主题文章
+
+<Route author="miles170" example="/jin10/topic/396" path="/jin10/topic/:id" radar="1"/>
+
## 老虎社区
### 个人主页
diff --git a/lib/v2/jin10/maintainer.js b/lib/v2/jin10/maintainer.js
index b5866076429417..de06161d3c1fcf 100644
--- a/lib/v2/jin10/maintainer.js
+++ b/lib/v2/jin10/maintainer.js
@@ -1,3 +1,4 @@
module.exports = {
'/:important?': ['laampui'],
+ '/topic/:id': ['miles170'],
};
diff --git a/lib/v2/jin10/radar.js b/lib/v2/jin10/radar.js
index b01aff3f74b811..603c8bfbf235a5 100644
--- a/lib/v2/jin10/radar.js
+++ b/lib/v2/jin10/radar.js
@@ -9,5 +9,13 @@ module.exports = {
target: '/jin10',
},
],
+ xnews: [
+ {
+ title: '主题文章',
+ docs: 'https://docs.rsshub.app/finance.html#jin-shi-shu-ju',
+ source: ['/topic/:id'],
+ target: '/jin10/topic/:id',
+ },
+ ],
},
};
diff --git a/lib/v2/jin10/router.js b/lib/v2/jin10/router.js
index 450c0f751d9ec6..b8bbe6cca7ae15 100644
--- a/lib/v2/jin10/router.js
+++ b/lib/v2/jin10/router.js
@@ -1,3 +1,4 @@
module.exports = function (router) {
router.get('/:important?', require('./index'));
+ router.get('/topic/:id', require('./topic'));
};
diff --git a/lib/v2/jin10/topic.js b/lib/v2/jin10/topic.js
new file mode 100644
index 00000000000000..5b5252ffbcd9e8
--- /dev/null
+++ b/lib/v2/jin10/topic.js
@@ -0,0 +1,50 @@
+const got = require('@/utils/got');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+const config = require('@/config').value;
+
+module.exports = async (ctx) => {
+ const id = ctx.params.id;
+ const data = await ctx.cache.tryGet(
+ `jin10:topic:${id}`,
+ async () => {
+ const { data: response } = await got(`https://reference-api.jin10.com/topic/getById?id=${id}`, {
+ headers: {
+ 'x-app-id': 'g93rhHb9DcDptyPb',
+ 'x-version': '1.0.1',
+ },
+ });
+ return response.data;
+ },
+ config.cache.routeExpire,
+ false
+ );
+
+ const items = await Promise.all(
+ data.list.map((item) =>
+ ctx.cache.tryGet(`jin10:reference:${item.id}`, async () => {
+ const { data: response } = await got(`https://reference-api.jin10.com/reference/getOne?id=${item.id}&type=news`, {
+ headers: {
+ 'x-app-id': 'g93rhHb9DcDptyPb',
+ 'x-version': '1.0.1',
+ },
+ });
+
+ return {
+ title: item.title,
+ description: response.data.content,
+ author: item.author.nick,
+ pubDate: timezone(parseDate(item.display_datetime), 8),
+ link: `https://xnews.jin10.com/details/${item.id}`,
+ };
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: data.title,
+ link: `https://xnews.jin10.com/topic/${id}`,
+ description: data.introduction,
+ item: items,
+ };
+};
|
1c6411fcad8cc4666b222be284c00d29bb972cf3
|
2020-10-18 07:26:26
|
Ethan Shen
|
feat: add 全现在专栏 (#5871)
| false
|
add 全现在专栏 (#5871)
|
feat
|
diff --git a/docs/new-media.md b/docs/new-media.md
index 411923b3c80eee..e9e4ac2c1e1720 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -1120,6 +1120,10 @@ area 分区选项
</Route>
+## 全现在
+
+<Route author="nczitzk" example="/allnow/column/199" path="/allnow/column/:id" :paramsDesc="['专栏 id']"/>
+
## 人人都是产品经理
### 热门文章
diff --git a/lib/router.js b/lib/router.js
index f5601307c51e21..94e41663af72cc 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -3347,6 +3347,9 @@ router.get('/yuanshen/:location?/:category?', require('./routes/yuanshen/index')
// World Trade Organization
router.get('/wto/dispute-settlement/:year?', require('./routes/wto/dispute-settlement'));
+// 全现在
+router.get('/allnow/column/:id', require('./routes/allnow/column'));
+
// 证券时报网
router.get('/stcn/news/:id?', require('./routes/stcn/news'));
diff --git a/lib/routes/allnow/column.js b/lib/routes/allnow/column.js
new file mode 100644
index 00000000000000..88d5a2c0ba1ccb
--- /dev/null
+++ b/lib/routes/allnow/column.js
@@ -0,0 +1,49 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+
+module.exports = async (ctx) => {
+ const rootUrl = 'https://m.allnow.com';
+ const currentUrl = `${rootUrl}/column/${ctx.params.id}`;
+ const response = await got({
+ method: 'get',
+ url: currentUrl,
+ });
+
+ const $ = cheerio.load(response.data);
+ const list = $('a.normal')
+ .slice(0, 10)
+ .map((_, item) => {
+ item = $(item);
+ return {
+ link: `${rootUrl}${item.attr('href')}`,
+ };
+ })
+ .get();
+
+ const items = await Promise.all(
+ list.map(
+ async (item) =>
+ await ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: item.link,
+ });
+ const content = cheerio.load(detailResponse.data);
+
+ item.title = content('p.title').text();
+ item.author = content('a.single-name').eq(0).text();
+ item.description = content('#article-content').html();
+ item.pubDate = new Date(detailResponse.data.match(/time:"(.*)",abstract:"/)[1] + ' GMT+8').toUTCString();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: `${$('p.name').text()} - 全现在`,
+ link: rootUrl,
+ item: items,
+ description: $('p.desc').text(),
+ };
+};
|
2b164a362f5672c09ed31f04aed8d48ab8f7726b
|
2021-06-22 19:09:38
|
Henry Wang
|
fix: 懂球帝早报报错 (#7746)
| false
|
懂球帝早报报错 (#7746)
|
fix
|
diff --git a/lib/routes/dongqiudi/utils.js b/lib/routes/dongqiudi/utils.js
index f4a8f24201f056..c69f5f6a6d1d4e 100644
--- a/lib/routes/dongqiudi/utils.js
+++ b/lib/routes/dongqiudi/utils.js
@@ -117,7 +117,7 @@ const ProcessFeedType2 = (item, response) => {
runScripts: 'dangerously',
});
- const data = dom.window.__NUXT__.data[1].newData;
+ const data = dom.window.__NUXT__.data[0].newData;
if (Object.keys(data).length > 0) {
const body = ProcessVideo(cheerio.load(data.body));
|
437fb82858deb4dbf817df1d6960941c27174f81
|
2022-05-29 04:53:05
|
Fatpandac
|
feat(route): add Caa.reviews (#9842)
| false
|
add Caa.reviews (#9842)
|
feat
|
diff --git a/docs/en/journal.md b/docs/en/journal.md
index 4e504820322863..842edd85d99716 100644
--- a/docs/en/journal.md
+++ b/docs/en/journal.md
@@ -45,6 +45,19 @@ Fill in parameter `query` with content after `http://export.arxiv.org/api/query?
<RouteEn author="nczitzk" example="/bioone/journals/acta-chiropterologica" path="/bioone/journals/:journal?" :paramsDesc="['Journals, can be found in URL']"/>
+## caa.reviews
+
+### Book Reviews
+
+<RouteEn author="Fatpandac" example="/caareviews/book" path="/caareviews/book"/>
+
+### Exhibition Reviews
+
+<RouteEn author="Fatpandac" example="/caareviews/exhibition" path="/caareviews/exhibition"/>
+
+### Essays
+
+<RouteEn author="Fatpandac" example="/caareviews/essay" path="/caareviews/essay"/>
## Cell Journal
<RouteEn author="yech1990" example="/cell/cell/current" path="/cell/cell/:category" supportScihub="1" />
diff --git a/docs/journal.md b/docs/journal.md
index 9bb41c3dcaa9f5..a2e38a50dd34bf 100644
--- a/docs/journal.md
+++ b/docs/journal.md
@@ -45,6 +45,20 @@ pageClass: routes
<Route author="nczitzk" example="/bioone/journals/acta-chiropterologica" path="/bioone/journals/:journal?" :paramsDesc="['期刊名,可在期刊页地址栏中找到']"/>
+## caa.reviews
+
+### Book Reviews
+
+<Route author="Fatpandac" example="/caareviews/book" path="/caareviews/book"/>
+
+### Exhibition Reviews
+
+<Route author="Fatpandac" example="/caareviews/exhibition" path="/caareviews/exhibition"/>
+
+### Essays
+
+<Route author="Fatpandac" example="/caareviews/essay" path="/caareviews/essay"/>
+
## Cell
### 主刊
diff --git a/lib/v2/caareviews/book.js b/lib/v2/caareviews/book.js
new file mode 100644
index 00000000000000..50901a68d8fc01
--- /dev/null
+++ b/lib/v2/caareviews/book.js
@@ -0,0 +1,14 @@
+const { rootUrl, getList, getItems } = require('./utils');
+
+module.exports = async (ctx) => {
+ const url = `${rootUrl}/reviews/book`;
+
+ const list = await getList(url);
+ const items = await getItems(ctx, list);
+
+ ctx.state.data = {
+ title: 'Book Reviews',
+ link: url,
+ item: items,
+ };
+};
diff --git a/lib/v2/caareviews/essay.js b/lib/v2/caareviews/essay.js
new file mode 100644
index 00000000000000..67b3768a7d621b
--- /dev/null
+++ b/lib/v2/caareviews/essay.js
@@ -0,0 +1,14 @@
+const { rootUrl, getList, getItems } = require('./utils');
+
+module.exports = async (ctx) => {
+ const url = `${rootUrl}/reviews/essay`;
+
+ const list = await getList(url);
+ const items = await getItems(ctx, list);
+
+ ctx.state.data = {
+ title: 'Essays',
+ link: url,
+ item: items,
+ };
+};
diff --git a/lib/v2/caareviews/exhibition.js b/lib/v2/caareviews/exhibition.js
new file mode 100644
index 00000000000000..df9823a5205ca3
--- /dev/null
+++ b/lib/v2/caareviews/exhibition.js
@@ -0,0 +1,14 @@
+const { rootUrl, getList, getItems } = require('./utils');
+
+module.exports = async (ctx) => {
+ const url = `${rootUrl}/reviews/exhibition`;
+
+ const list = await getList(url);
+ const items = await getItems(ctx, list);
+
+ ctx.state.data = {
+ title: 'Exhibition Reviews',
+ link: url,
+ item: items,
+ };
+};
diff --git a/lib/v2/caareviews/maintainer.js b/lib/v2/caareviews/maintainer.js
new file mode 100644
index 00000000000000..bbf9a50c6c5dd2
--- /dev/null
+++ b/lib/v2/caareviews/maintainer.js
@@ -0,0 +1,5 @@
+module.exports = {
+ '/book': ['Fatpandac'],
+ '/essay': ['Fatpandac'],
+ '/exhibition': ['Fatpandac'],
+};
diff --git a/lib/v2/caareviews/radar.js b/lib/v2/caareviews/radar.js
new file mode 100644
index 00000000000000..ca6b8beb2ab8f9
--- /dev/null
+++ b/lib/v2/caareviews/radar.js
@@ -0,0 +1,25 @@
+module.exports = {
+ 'caareviews.org': {
+ _name: 'caa.reviews',
+ '.': [
+ {
+ title: 'Book Reviews',
+ docs: 'https://docs.rsshub.app/journal.html#caa-reviews',
+ source: ['/reviews/book'],
+ target: '/caareviews/book',
+ },
+ {
+ title: 'Exhibition Reviews',
+ docs: 'https://docs.rsshub.app/journal.html#caa-reviews',
+ source: ['/reviews/exhibition'],
+ target: '/caareviews/exhibition',
+ },
+ {
+ title: 'Essays',
+ docs: 'https://docs.rsshub.app/journal.html#caa-reviews',
+ source: ['/reviews/essay'],
+ target: '/caareviews/essay',
+ },
+ ],
+ },
+};
diff --git a/lib/v2/caareviews/router.js b/lib/v2/caareviews/router.js
new file mode 100644
index 00000000000000..41b9042d8a742f
--- /dev/null
+++ b/lib/v2/caareviews/router.js
@@ -0,0 +1,5 @@
+module.exports = function (router) {
+ router.get('/book', require('./book'));
+ router.get('/essay', require('./essay'));
+ router.get('/exhibition', require('./exhibition'));
+};
diff --git a/lib/v2/caareviews/templates/utils.art b/lib/v2/caareviews/templates/utils.art
new file mode 100644
index 00000000000000..ae6f69496b8146
--- /dev/null
+++ b/lib/v2/caareviews/templates/utils.art
@@ -0,0 +1,2 @@
+<img src="{{ coverUrl }}">
+{{@ content}}
diff --git a/lib/v2/caareviews/utils.js b/lib/v2/caareviews/utils.js
new file mode 100644
index 00000000000000..2fd12d524df56b
--- /dev/null
+++ b/lib/v2/caareviews/utils.js
@@ -0,0 +1,49 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const { art } = require('@/utils/render');
+const path = require('path');
+
+const rootUrl = 'http://www.caareviews.org';
+
+const getList = async (url) => {
+ const response = await got(url);
+ const $ = cheerio.load(response.data);
+ const list = $('#infinite-content > div')
+ .map((_index, item) => ({
+ title: $(item).find('div.title').text().trim(),
+ link: new URL($(item).find('div.title > em > a').attr('href'), rootUrl).href,
+ author: $(item).find('div.contributors').text().trim(),
+ }))
+ .get();
+
+ return list;
+};
+
+const getItems = async (ctx, list) =>
+ await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const detailResponse = await got(item.link);
+ const $ = cheerio.load(detailResponse.data);
+
+ const coverUrl = new URL($('div.cover > a').attr('href'), rootUrl).href;
+ const content = $('div.content.full-review').html();
+ item.description = art(path.join(__dirname, 'templates/utils.art'), {
+ coverUrl,
+ content,
+ });
+ $('div.review_heading').remove();
+ item.pubDate = parseDate($('div.header-text > div.clearfix').text());
+ item.doi = $('div.crossref > a').attr('href').replace('http://dx.doi.org/', '');
+
+ return item;
+ })
+ )
+ );
+
+module.exports = {
+ rootUrl,
+ getList,
+ getItems,
+};
|
ef6448645ebdf83f3a9ecfdc36a1795a4bd77cfe
|
2024-08-26 13:09:15
|
DIYgod
|
feat(twitter): remove limiter
| false
|
remove limiter
|
feat
|
diff --git a/lib/routes/twitter/api/web-api/utils.ts b/lib/routes/twitter/api/web-api/utils.ts
index f37f28a4343b41..ba16c409789ae4 100644
--- a/lib/routes/twitter/api/web-api/utils.ts
+++ b/lib/routes/twitter/api/web-api/utils.ts
@@ -8,7 +8,6 @@ import { CookieAgent, CookieClient } from 'http-cookie-agent/undici';
import { ProxyAgent } from 'undici';
import cache from '@/utils/cache';
import logger from '@/utils/logger';
-import { RateLimiterMemory, RateLimiterRedis, RateLimiterQueue } from 'rate-limiter-flexible';
import ofetch from '@/utils/ofetch';
import proxy from '@/utils/proxy';
import login from './login';
@@ -16,21 +15,6 @@ import login from './login';
const dispatchers = {};
let authTokenIndex = 0;
-const loginLimiter = cache.clients.redisClient
- ? new RateLimiterRedis({
- points: 1,
- duration: 1,
- execEvenly: true,
- storeClient: cache.clients.redisClient,
- })
- : new RateLimiterMemory({
- points: 1,
- duration: 1,
- execEvenly: true,
- });
-
-const loginLimiterQueue = new RateLimiterQueue(loginLimiter);
-
const token2Cookie = (token) =>
cache.tryGet(`twitter:cookie:${token}`, async () => {
const jar = new CookieJar();
@@ -56,7 +40,6 @@ export const twitterGot = async (url, params) => {
if (!config.twitter.authToken) {
throw new ConfigNotFoundError('Twitter cookie is not configured');
}
- await loginLimiterQueue.removeTokens(1);
const index = authTokenIndex++ % config.twitter.authToken.length;
const token = config.twitter.authToken[index];
|
65ba168e87da5a9747b86eef7bea582b01c7a5d0
|
2024-02-23 16:33:24
|
storytellerF
|
fix(router/u9a9): return cache if need (#14537)
| false
|
return cache if need (#14537)
|
fix
|
diff --git a/lib/v2/u9a9/index.js b/lib/v2/u9a9/index.js
index 5d3b3b6d52bdc2..b225c521d010fe 100644
--- a/lib/v2/u9a9/index.js
+++ b/lib/v2/u9a9/index.js
@@ -21,7 +21,7 @@ module.exports = async (ctx) => {
const { data: response } = await got(link);
const $ = cheerio.load(response);
- const items = $('table tr')
+ const list = $('table tr')
.slice(1) // skip thead
.toArray()
.map((item) => {
@@ -43,20 +43,20 @@ module.exports = async (ctx) => {
};
});
- if (preview) {
- await Promise.all(
- items.map((item) =>
- ctx.cache.tryGet(item.link, async () => {
- const { data: response } = await got(item.link);
- const $ = cheerio.load(response);
+ const items = preview
+ ? await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ const { data: response } = await got(item.link);
+ const $ = cheerio.load(response);
- item.description = $('.panel-body').eq(1).html();
+ item.description = $('.panel-body').eq(1).html();
- return item;
- })
- )
- );
- }
+ return item;
+ })
+ )
+ )
+ : list;
ctx.state.data = {
title,
|
853f182f05bcc6c989a8bd602e85c64420030e66
|
2023-09-09 05:05:51
|
dependabot[bot]
|
chore(deps-dev): bump eslint from 8.48.0 to 8.49.0 (#13241)
| false
|
bump eslint from 8.48.0 to 8.49.0 (#13241)
|
chore
|
diff --git a/package.json b/package.json
index b951ce0ad67cb2..38cd782b62a6ef 100644
--- a/package.json
+++ b/package.json
@@ -152,7 +152,7 @@
"@types/koa": "2.13.8",
"@vercel/nft": "0.23.1",
"cross-env": "7.0.3",
- "eslint": "8.48.0",
+ "eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-n": "16.0.2",
"eslint-plugin-prettier": "5.0.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e1308a19cc36d9..012773eabc3473 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -209,20 +209,20 @@ devDependencies:
specifier: 7.0.3
version: 7.0.3
eslint:
- specifier: 8.48.0
- version: 8.48.0
+ specifier: 8.49.0
+ version: 8.49.0
eslint-config-prettier:
specifier: 9.0.0
- version: 9.0.0([email protected])
+ version: 9.0.0([email protected])
eslint-plugin-n:
specifier: 16.0.2
- version: 16.0.2([email protected])
+ version: 16.0.2([email protected])
eslint-plugin-prettier:
specifier: 5.0.0
- version: 5.0.0([email protected])([email protected])([email protected])
+ version: 5.0.0([email protected])([email protected])([email protected])
eslint-plugin-yml:
specifier: 1.8.0
- version: 1.8.0([email protected])
+ version: 1.8.0([email protected])
fs-extra:
specifier: 11.1.1
version: 11.1.1
@@ -652,13 +652,13 @@ packages:
kuler: 2.0.0
dev: false
- /@eslint-community/[email protected]([email protected]):
+ /@eslint-community/[email protected]([email protected]):
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.48.0
+ eslint: 8.49.0
eslint-visitor-keys: 3.4.3
dev: true
@@ -684,13 +684,13 @@ packages:
- supports-color
dev: true
- /@eslint/[email protected]:
- resolution: {integrity: sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==}
+ /@eslint/[email protected]:
+ resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@humanwhocodes/[email protected]:
- resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
+ /@humanwhocodes/[email protected]:
+ resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -1009,7 +1009,7 @@ packages:
resolution: {integrity: sha512-KIKkT44hEqCzqxODYwFMUvYEK0CrdHx/Ll9xiOWgFbBSRuzbxmVy4d/tzfgoucGz72HJZNOMjuyzFTBKntRK5Q==}
engines: {node: '>= 14'}
dependencies:
- eslint: 8.48.0
+ eslint: 8.49.0
jschardet: 3.0.0
lodash: 4.17.21
utf8: 3.0.0
@@ -2890,36 +2890,36 @@ packages:
source-map: 0.6.1
dev: false
- /[email protected]([email protected]):
+ /[email protected]([email protected]):
resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.48.0
+ eslint: 8.49.0
dev: true
- /[email protected]([email protected]):
+ /[email protected]([email protected]):
resolution: {integrity: sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '>=8'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0([email protected])
+ '@eslint-community/eslint-utils': 4.4.0([email protected])
'@eslint-community/regexpp': 4.8.0
- eslint: 8.48.0
+ eslint: 8.49.0
dev: true
- /[email protected]([email protected]):
+ /[email protected]([email protected]):
resolution: {integrity: sha512-Y66uDfUNbBzypsr0kELWrIz+5skicECrLUqlWuXawNSLUq3ltGlCwu6phboYYOTSnoTdHgTLrc+5Ydo6KjzZog==}
engines: {node: '>=16.0.0'}
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- '@eslint-community/eslint-utils': 4.4.0([email protected])
+ '@eslint-community/eslint-utils': 4.4.0([email protected])
builtins: 5.0.1
- eslint: 8.48.0
- eslint-plugin-es-x: 7.2.0([email protected])
+ eslint: 8.49.0
+ eslint-plugin-es-x: 7.2.0([email protected])
ignore: 5.2.4
is-core-module: 2.13.0
minimatch: 3.1.2
@@ -2927,7 +2927,7 @@ packages:
semver: 7.5.4
dev: true
- /[email protected]([email protected])([email protected])([email protected]):
+ /[email protected]([email protected])([email protected])([email protected]):
resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -2941,21 +2941,21 @@ packages:
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.48.0
- eslint-config-prettier: 9.0.0([email protected])
+ eslint: 8.49.0
+ eslint-config-prettier: 9.0.0([email protected])
prettier: 3.0.3
prettier-linter-helpers: 1.0.0
synckit: 0.8.5
dev: true
- /[email protected]([email protected]):
+ /[email protected]([email protected]):
resolution: {integrity: sha512-fgBiJvXD0P2IN7SARDJ2J7mx8t0bLdG6Zcig4ufOqW5hOvSiFxeUyc2g5I1uIm8AExbo26NNYCcTGZT0MXTsyg==}
engines: {node: ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: '>=6.0.0'
dependencies:
debug: 4.3.4
- eslint: 8.48.0
+ eslint: 8.49.0
lodash: 4.17.21
natural-compare: 1.4.0
yaml-eslint-parser: 1.2.2
@@ -2976,16 +2976,16 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /[email protected]:
- resolution: {integrity: sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==}
+ /[email protected]:
+ resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0([email protected])
+ '@eslint-community/eslint-utils': 4.4.0([email protected])
'@eslint-community/regexpp': 4.8.0
'@eslint/eslintrc': 2.1.2
- '@eslint/js': 8.48.0
- '@humanwhocodes/config-array': 0.11.10
+ '@eslint/js': 8.49.0
+ '@humanwhocodes/config-array': 0.11.11
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
|
2cc724fc9bf4c0d5bacd67a81ff35eb55ae3ddcc
|
2024-11-15 11:34:34
|
Webber Qian
|
fix: example edit or authentication source (#17583)
| false
|
example edit or authentication source (#17583)
|
fix
|
diff --git a/lib/routes/logrocket/index.ts b/lib/routes/logrocket/index.ts
index 16bb17de4b0406..8a1f605b983ef5 100644
--- a/lib/routes/logrocket/index.ts
+++ b/lib/routes/logrocket/index.ts
@@ -10,7 +10,7 @@ import cache from '@/utils/cache';
export const route: Route = {
path: '/:type',
categories: ['blog'],
- example: '/dev',
+ example: '/logrocket/dev',
parameters: { type: 'dev | product-management | ux-design' },
radar: [
{
|
4fbe648ddeb6cb9cd5447d1c167dec96baf5ebab
|
2022-02-11 03:07:03
|
Fatpandac
|
fix(route): item's desc is same but guid is different (#9042)
| false
|
item's desc is same but guid is different (#9042)
|
fix
|
diff --git a/docs/travel.md b/docs/travel.md
index 47ae09ac615691..e74f9df314f5f9 100644
--- a/docs/travel.md
+++ b/docs/travel.md
@@ -12,7 +12,7 @@ pageClass: routes
### 售票信息
-<Route author="Fatpandac" example="/12306/2022-02-19/重庆/永川东" path="/12306/:date/:from/:to/:type?" :paramsDesc="['时间', '始发站', '终点站', '售票类型,成人和学生可选,默认为成人']"/>
+<Route author="Fatpandac" example="/12306/2022-02-19/重庆/永川东" path="/12306/:date/:from/:to/:type?" :paramsDesc="['时间,格式为(YYYY-MM-DD)', '始发站', '终点站', '售票类型,成人和学生可选,默认为成人']"/>
## All the Flight Deals
diff --git a/lib/v2/12306/index.js b/lib/v2/12306/index.js
index 84e0f53b34d0ad..8f9d14c75a2650 100644
--- a/lib/v2/12306/index.js
+++ b/lib/v2/12306/index.js
@@ -61,11 +61,11 @@ module.exports = async (ctx) => {
Cookie: await getJSESSIONID(linkUrl),
},
});
- const data = response.data.data.result;
- const map = response.data.data.map;
- if (data.length === 0) {
+ if (response.data.data === undefined || response.data.data.length === 0) {
throw '没有找到相关车次,请检查参数是否正确';
}
+ const data = response.data.data.result;
+ const map = response.data.data.map;
const items = data.map((item) => {
const itemData = item.split('|');
@@ -96,7 +96,7 @@ module.exports = async (ctx) => {
trainInfo,
}),
link: linkUrl,
- guid: item,
+ guid: Object.values(trainInfo).join('|'),
};
});
|
95db3b4e99bbf56aed1e9fd8b968de34ac51fbcf
|
2022-03-29 18:42:16
|
Rongrong
|
fix(core): torrent searching error (#9407)
| false
|
torrent searching error (#9407)
|
fix
|
diff --git a/lib/utils/torrent.js b/lib/utils/torrent.js
index a57562d6ddaa1d..099ebaa45d915f 100644
--- a/lib/utils/torrent.js
+++ b/lib/utils/torrent.js
@@ -60,6 +60,7 @@ class HDHome extends TorrentProvider {
);
}
}
+
TorrentSearchApi.loadProvider(HDHome);
const allProviders = ['HDHome', 'Rarbg', '1337x', 'Yts', 'Eztv'];
@@ -119,7 +120,14 @@ module.exports = {
const keyword = keywords[0];
const normalizeKeyword = normalize(keyword);
- const torrents = await TorrentSearchApi.search(providers, keywords.join(' '), category);
+ let torrents;
+ try {
+ torrents = await TorrentSearchApi.search(providers, keywords.join(' '), category);
+ } catch (e) {
+ // expect a status code error, but we don't mind catching all errors here
+ // logger.debug(e);
+ return {};
+ }
if (torrents && torrents.length > 0) {
let bestRating = 0;
let bestSize = 0;
|
ffce01a1254985a960bf1cbcadd5da536b7f5c98
|
2024-03-08 21:06:18
|
DIYgod
|
test: add test namespace to routes
| false
|
add test namespace to routes
|
test
|
diff --git a/lib/routes-new/test/index.ts b/lib/routes-new/test/index.ts
new file mode 100644
index 00000000000000..fbf581b75c6108
--- /dev/null
+++ b/lib/routes-new/test/index.ts
@@ -0,0 +1,410 @@
+import { config } from '@/config';
+import got from '@/utils/got';
+import wait from '@/utils/wait';
+import cache from '@/utils/cache';
+import { DataItem, Route } from '@/types';
+
+let cacheIndex = 0;
+
+export const route: Route = {
+ path: '/bangumi/media/:mediaid',
+ categories: ['new-media'],
+ example: '/bilibili/bangumi/media/9192',
+ parameters: {
+ mediaid: '番剧媒体 id, 番剧主页 URL 中获取',
+ },
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportRadar: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ name: '番剧',
+ maintainers: ['DIYgod'],
+ radar: {
+ source: ['www.bilibili.com/bangumi/media/:bid'],
+ target: '/bangumi/media/:bid',
+ },
+ handler,
+};
+
+async function handler(ctx) {
+ if (ctx.req.param('id') === 'error') {
+ throw new Error('Error test');
+ }
+ if (ctx.req.param('id') === 'httperror') {
+ await got({
+ method: 'get',
+ url: 'https://httpbingo.org/status/404',
+ });
+ }
+ let item: DataItem[] = [];
+ switch (ctx.req.param('id')) {
+ case 'filter':
+ item = [
+ {
+ title: 'Filter Title1',
+ description: 'Description1',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/-1`,
+ author: `DIYgod0`,
+ category: ['Category0', 'Category1'],
+ },
+ {
+ title: 'Filter Title2',
+ description: 'Description2',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: `DIYgod0`,
+ category: ['Category0', 'Category1', 'Category2'],
+ },
+ {
+ title: 'Filter Title3',
+ description: 'Description3',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/1`,
+ author: `DIYgod0`,
+ category: 'Category3',
+ },
+ ];
+
+ break;
+
+ case 'filter-illegal-category':
+ item.push({
+ title: 'TitleIllegal',
+ description: 'DescriptionIllegal',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/1`,
+ author: `DIYgod0`,
+ category: [1, 'CategoryIllegal', true, null, undefined, { type: 'object' }],
+ });
+
+ break;
+
+ case 'long':
+ item.push({
+ title: `Long Title `.repeat(50),
+ description: `Long Description `.repeat(10),
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: `DIYgod0`,
+ });
+
+ break;
+
+ case 'cache': {
+ const description = await cache.tryGet(
+ 'test',
+ () => ({
+ text: `Cache${++cacheIndex}`,
+ }),
+ config.cache.routeExpire * 2
+ );
+ item.push({
+ title: 'Cache Title',
+ description: description.text,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: `DIYgod0`,
+ });
+
+ break;
+ }
+ case 'refreshCache': {
+ let refresh = await cache.get('refreshCache');
+ let noRefresh = await cache.get('noRefreshCache', false);
+ if (!refresh) {
+ refresh = '0';
+ await cache.set('refreshCache', '1');
+ }
+ if (!noRefresh) {
+ noRefresh = '0';
+ await cache.set('noRefreshCache', '1', undefined);
+ }
+ item.push({
+ title: 'Cache Title',
+ description: refresh + ' ' + noRefresh,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: `DIYgod0`,
+ });
+
+ break;
+ }
+ case 'cacheUrlKey': {
+ const description = await cache.tryGet(
+ new URL('https://rsshub.app'),
+ () => ({
+ text: `Cache${++cacheIndex}`,
+ }),
+ config.cache.routeExpire * 2
+ );
+ item.push({
+ title: 'Cache Title',
+ description: description.text,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: `DIYgod0`,
+ });
+
+ break;
+ }
+ case 'complicated':
+ item.push(
+ {
+ title: `Complicated Title`,
+ description: `<a href="/DIYgod/RSSHub"></a>
+<img src="/DIYgod/RSSHub.jpg">
+<script>alert(1);</script>
+<a href="http://mock.com/DIYgod/RSSHub"></a>
+<img src="/DIYgod/RSSHub.jpg" data-src="/DIYgod/RSSHub0.jpg">
+<img data-src="/DIYgod/RSSHub.jpg">
+<img data-mock="/DIYgod/RSSHub.png">
+<img mock="/DIYgod/RSSHub.gif">
+<img src="http://mock.com/DIYgod/DIYgod/RSSHub">
+<img src="/DIYgod/RSSHub.jpg" onclick="alert(1);" onerror="alert(1);" onload="alert(1);">
+<img src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==">`,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `//mock.com/DIYgod/RSSHub`,
+ author: `DIYgod`,
+ },
+ {
+ title: `Complicated Title`,
+ description: `<a href="/DIYgod/RSSHub"></a>
+<img src="/DIYgod/RSSHub.jpg">`,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://mock.com/DIYgod/RSSHub`,
+ author: `DIYgod`,
+ }
+ );
+
+ break;
+
+ case 'multimedia':
+ item.push({
+ title: `Multimedia Title`,
+ description: `<img src="/DIYgod/RSSHub.jpg">
+<video src="/DIYgod/RSSHub.mp4"></video>
+<video poster="/DIYgod/RSSHub.jpg">
+<source src="/DIYgod/RSSHub.mp4" type="video/mp4">
+<source src="/DIYgod/RSSHub.webm" type="video/webm">
+</video>
+<audio src="/DIYgod/RSSHub.mp3"></audio>
+<iframe src="/DIYgod/RSSHub.html"></iframe>`,
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://mock.com/DIYgod/RSSHub`,
+ author: `DIYgod`,
+ });
+
+ break;
+
+ case 'sort':
+ item.push(
+ {
+ title: `Sort Title 0`,
+ link: `https://github.com/DIYgod/RSSHub/issues/s1`,
+ author: `DIYgod0`,
+ },
+ {
+ title: `Sort Title 1`,
+ link: `https://github.com/DIYgod/RSSHub/issues/s1`,
+ author: `DIYgod0`,
+ },
+ {
+ title: `Sort Title 2`,
+ link: `https://github.com/DIYgod/RSSHub/issues/s2`,
+ pubDate: new Date(1_546_272_000_000 - 10 * 10 * 1000).toUTCString(),
+ author: `DIYgod0`,
+ },
+ {
+ title: `Sort Title 3`,
+ link: `https://github.com/DIYgod/RSSHub/issues/s3`,
+ pubDate: new Date(1_546_272_000_000).toUTCString(),
+ author: `DIYgod0`,
+ }
+ );
+
+ break;
+
+ case 'mess':
+ item.push({
+ title: `Mess Title`,
+ link: `/DIYgod/RSSHub/issues/0`,
+ pubDate: 1_546_272_000_000,
+ author: `DIYgod0`,
+ });
+
+ break;
+
+ case 'opencc':
+ item.push({
+ title: '小可愛',
+ description: '宇宙無敵',
+ link: `/DIYgod/RSSHub/issues/0`,
+ pubDate: new Date(1_546_272_000_000).toUTCString(),
+ author: `DIYgod0`,
+ });
+
+ break;
+
+ case 'brief':
+ item.push({
+ title: '小可愛',
+ description: '<p>宇宙無敵</p><br>'.repeat(1000),
+ link: `/DIYgod/RSSHub/issues/0`,
+ pubDate: new Date(1_546_272_000_000).toUTCString(),
+ author: `DIYgod0`,
+ });
+
+ break;
+
+ case 'json':
+ item.push(
+ {
+ title: 'Title0',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/-3`,
+ },
+ {
+ title: 'Title1',
+ description: 'Description1',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/-2`,
+ author: `DIYgod0 `,
+ category: 'Category0',
+ },
+ {
+ title: 'Title2 HTML in description',
+ description: '<a href="https://github.com/DIYgod/RSSHub">RSSHub</a>',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ updated: new Date(`2019-3-2`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/-1`,
+ author: [{ name: ' DIYgod1' }, { name: 'DIYgod2 ' }],
+ category: ['Category0', 'Category1'],
+ },
+ {
+ title: 'Title3 HTML in content',
+ content: {
+ html: '<a href="https://github.com/DIYgod/RSSHub">DIYgod/RSSHub</a>',
+ },
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ updated: new Date(`2019-3-2`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/0`,
+ author: [{ name: ' DIYgod3' }, { name: 'DIYgod4 ' }, { name: 'DIYgod5 ' }],
+ category: ['Category1'],
+ enclosure_url: 'https://github.com/DIYgod/RSSHub/issues/0',
+ enclosure_type: 'image/jpeg',
+ enclosure_length: 3661,
+ itunes_duration: 36610,
+ },
+ {
+ title: 'Title4 author is null',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/pull/11555`,
+ author: null,
+ }
+ );
+
+ break;
+
+ case 'gpt':
+ item.push(
+ {
+ title: 'Title0',
+ description: 'Description0',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: 'https://github.com/DIYgod/RSSHub/issues/0',
+ },
+ {
+ title: 'Title1',
+ description:
+ '快速开始\n' +
+ '如果您在使用 RSSHub 过程中遇到了问题或者有建议改进,我们很乐意听取您的意见!您可以通过 Pull Request 来提交您的修改。无论您对 Pull Request 的使用是否熟悉,我们都欢迎不同经验水平的开发者参与贡献。如果您不懂编程,也可以通过 报告错误 的方式来帮助我们。\n' +
+ '\n' +
+ '参与讨论\n' +
+ 'Telegram 群组 GitHub Issues GitHub 讨论\n' +
+ '\n' +
+ '开始之前\n' +
+ '要制作一个 RSS 订阅,您需要结合使用 Git、HTML、JavaScript、jQuery 和 Node.js。\n' +
+ '\n' +
+ '如果您对它们不是很了解,但想要学习它们,以下是一些好的资源:\n' +
+ '\n' +
+ 'MDN Web Docs 上的 JavaScript 指南\n' +
+ 'W3Schools\n' +
+ 'Codecademy 上的 Git 课程\n' +
+ '如果您想查看其他开发人员如何使用这些技术来制作 RSS 订阅的示例,您可以查看 我们的代码库 中的一些代码。\n' +
+ '\n' +
+ '提交新的 RSSHub 规则\n' +
+ '如果您发现一个网站没有提供 RSS 订阅,您可以使用 RSSHub 制作一个 RSS 规则。RSS 规则是一个短小的 Node.js 程序代码(以下简称 “路由”),它告诉 RSSHub 如何从网站中提取内容并生成 RSS 订阅。通过制作新的 RSS 路由,您可以帮助让您喜爱的网站的内容被更容易访问和关注。\n' +
+ '\n' +
+ '在您开始编写 RSS 路由之前,请确保源站点没有提供 RSS。一些网页会在 HTML 头部中包含一个 type 为 application/atom+xml 或 application/rss+xml 的 link 元素来指示 RSS 链接。\n' +
+ '\n' +
+ '这是在 HTML 头部中看到 RSS 链接可能会长成这样:<link rel="alternate" type="application/rss+xml" href="http://example.com/rss.xml" />。如果您看到这样的链接,这意味着这个网站已经有了一个 RSS 订阅,您不需要为它制作一个新的 RSS 路由。',
+ pubDate: new Date(`2019-3-1`).toUTCString(),
+ link: 'https://github.com/DIYgod/RSSHub/issues/1',
+ }
+ );
+
+ break;
+
+ default:
+ // Do nothing
+ }
+
+ for (let i = 1; i < 6; i++) {
+ item.push({
+ title: `Title${i}`,
+ description: `Description${i}`,
+ pubDate: new Date((ctx.req.param('id') === 'current_time' ? new Date() : 1_546_272_000_000) - i * 10 * 1000).toUTCString(),
+ link: `https://github.com/DIYgod/RSSHub/issues/${i}`,
+ author: `DIYgod${i}`,
+ });
+ }
+
+ if (ctx.req.param('id') === 'empty') {
+ item = null;
+ }
+
+ if (ctx.req.param('id') === 'allow_empty') {
+ item = null;
+ }
+
+ if (ctx.req.param('id') === 'enclosure') {
+ item = [
+ {
+ title: '',
+ link: 'https://github.com/DIYgod/RSSHub/issues/1',
+ enclosure_url: 'https://github.com/DIYgod/RSSHub/issues/1',
+ enclosure_length: 3661,
+ itunes_duration: 36610,
+ },
+ ];
+ }
+
+ if (ctx.req.param('id') === 'slow') {
+ await wait(1000);
+ }
+
+ if (ctx.req.query('mode') === 'fulltext') {
+ item = [
+ {
+ title: '',
+ link: 'https://m.thepaper.cn/newsDetail_forward_4059298',
+ },
+ ];
+ }
+
+ return {
+ title: `Test ${ctx.req.param('id')}`,
+ itunes_author: ctx.req.param('id') === 'enclosure' ? 'DIYgod' : null,
+ link: 'https://github.com/DIYgod/RSSHub',
+ item,
+ allowEmpty: ctx.req.param('id') === 'allow_empty',
+ description:
+ ctx.req.param('id') === 'complicated' ? '<img src="http://mock.com/DIYgod/DIYgod/RSSHub">' : ctx.req.param('id') === 'multimedia' ? '<video src="http://mock.com/DIYgod/DIYgod/RSSHub"></video>' : 'A test route for RSSHub',
+ };
+}
diff --git a/lib/routes-new/test/namespace.ts b/lib/routes-new/test/namespace.ts
new file mode 100644
index 00000000000000..160289306d0238
--- /dev/null
+++ b/lib/routes-new/test/namespace.ts
@@ -0,0 +1,6 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: 'RSSHub Test',
+ url: 'docs.rsshub.app',
+};
|
7dd591ca82a55df84dc3fb40fce90618311368bc
|
2022-02-22 20:18:59
|
Elliott
|
feat(route): add 信息学院路由 (#7777)
| false
|
add 信息学院路由 (#7777)
|
feat
|
diff --git a/docs/university.md b/docs/university.md
index 71832b25c80648..ad72fd7a3a3996 100644
--- a/docs/university.md
+++ b/docs/university.md
@@ -258,6 +258,16 @@ pageClass: routes
</Route>
+### 信息学院通知
+
+<Route author="wzc-blog" example="/bjfu/it/xyxw" path="/bjfu/it/:type" :paramsDesc="['通知类别']">
+
+| 学院新闻 | 科研动态 | 本科生培养 | 研究生培养 |
+| ---- | ---- | ----- | ----- |
+| xyxw | kydt | pydt | pydt2 |
+
+</Route>
+
## 北京物资学院
### 通知公告
diff --git a/lib/router.js b/lib/router.js
index ef293356e5e422..f2366932e5ad13 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -536,11 +536,12 @@ router.get('/sayhuahuo', lazyloadRouteHandler('./routes/galgame/sayhuahuo'));
// 终点分享
router.get('/zdfx', lazyloadRouteHandler('./routes/galgame/zdfx'));
-// 北京林业大学
-router.get('/bjfu/grs', lazyloadRouteHandler('./routes/universities/bjfu/grs'));
-router.get('/bjfu/kjc', lazyloadRouteHandler('./routes/universities/bjfu/kjc'));
-router.get('/bjfu/jwc/:type', lazyloadRouteHandler('./routes/universities/bjfu/jwc/index'));
-router.get('/bjfu/news/:type', lazyloadRouteHandler('./routes/universities/bjfu/news/index'));
+// 北京林业大学 migrated to v2
+// router.get('/bjfu/grs', lazyloadRouteHandler('./routes/universities/bjfu/grs'));
+// router.get('/bjfu/kjc', lazyloadRouteHandler('./routes/universities/bjfu/kjc'));
+// router.get('/bjfu/jwc/:type', lazyloadRouteHandler('./routes/universities/bjfu/jwc/index'));
+// router.get('/bjfu/news/:type', lazyloadRouteHandler('./routes/universities/bjfu/news/index'));
+// router.get('/bjfu/it/:type', lazyloadRouteHandler('./routes/universities/bjfu/it/index'));
// 北京理工大学
router.get('/bit/jwc', lazyloadRouteHandler('./routes/universities/bit/jwc/jwc'));
diff --git a/lib/routes/universities/bjfu/grs.js b/lib/v2/bjfu/grs.js
similarity index 100%
rename from lib/routes/universities/bjfu/grs.js
rename to lib/v2/bjfu/grs.js
diff --git a/lib/v2/bjfu/it/index.js b/lib/v2/bjfu/it/index.js
new file mode 100644
index 00000000000000..5ce783dea0f0b5
--- /dev/null
+++ b/lib/v2/bjfu/it/index.js
@@ -0,0 +1,49 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const util = require('./utils');
+const iconv = require('iconv-lite'); // 转码
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type;
+ let title, path;
+ switch (type) {
+ case 'kydt':
+ title = '科研动态';
+ path = 'kyxz/kydt/';
+ break;
+ case 'pydt':
+ title = '本科生培养';
+ path = 'bkspy/pydt/';
+ break;
+ case 'pydt2':
+ title = '研究生培养';
+ path = 'yjspy/pydt2/';
+ break;
+ default:
+ title = '学院新闻';
+ path = 'xyxw/';
+ }
+ const base = 'http://it.bjfu.edu.cn/' + path;
+
+ const response = await got({
+ method: 'get',
+ responseType: 'buffer', // 转码
+ url: base,
+ });
+
+ const data = iconv.decode(response.data, 'gb2312'); // 转码
+ const $ = cheerio.load(data);
+
+ // const list = $('div[item-content]').slice(0, 10).get();
+
+ const list = $('.item-content').get();
+
+ const result = await util.ProcessFeed(base, list, ctx.cache); // 感谢@hoilc指导
+
+ ctx.state.data = {
+ title: '北林信息 - ' + title,
+ link: 'http://it.bjfu.edu.cn/' + path,
+ description: '北京林业大学信息学院 - ' + title,
+ item: result,
+ };
+};
diff --git a/lib/v2/bjfu/it/utils.js b/lib/v2/bjfu/it/utils.js
new file mode 100644
index 00000000000000..45938bc0cd7138
--- /dev/null
+++ b/lib/v2/bjfu/it/utils.js
@@ -0,0 +1,64 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const iconv = require('iconv-lite'); // 转码
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+// 完整文章页
+async function load(link) {
+ const response = await got.get(link, {
+ responseType: 'buffer',
+ });
+
+ const data = iconv.decode(response.data, 'gb2312'); // 转码
+
+ // 加载文章内容
+ const $ = cheerio.load(data);
+
+ // 解析日期
+ const pubDate = timezone(
+ parseDate(
+ $('.template-head-info')
+ .text()
+ .match(/\d{4}-\d{2}-\d{2}/)
+ ),
+ +8
+ );
+
+ // 提取内容
+ const description = $('.template-body').html();
+
+ // 返回解析的结果
+ return { description, pubDate };
+}
+
+const ProcessFeed = async (base, list, caches) =>
+ // 使用 Promise.all() 进行 async 并发
+ await Promise.all(
+ // 遍历每一篇文章
+ list.map(async (item) => {
+ const $ = cheerio.load(item);
+
+ const $title = $('a');
+ // 还原相对链接为绝对链接
+ const itemUrl = new URL($title.attr('href'), base).href; // 感谢@hoilc指导
+
+ // 列表上提取到的信息
+ const single = {
+ title: $title.text(),
+ link: itemUrl,
+ author: '北林信息',
+ guid: itemUrl,
+ };
+
+ // 使用tryGet方法从缓存获取内容。
+ // 当缓存中无法获取到链接内容的时候,则使用load方法加载文章内容。
+ const other = await caches.tryGet(itemUrl, async () => await load(itemUrl));
+
+ // 合并解析后的结果集作为该篇文章最终的输出结果
+ return { ...single, ...other };
+ })
+ );
+module.exports = {
+ ProcessFeed,
+};
diff --git a/lib/routes/universities/bjfu/jwc/index.js b/lib/v2/bjfu/jwc/index.js
similarity index 100%
rename from lib/routes/universities/bjfu/jwc/index.js
rename to lib/v2/bjfu/jwc/index.js
diff --git a/lib/routes/universities/bjfu/jwc/utils.js b/lib/v2/bjfu/jwc/utils.js
similarity index 80%
rename from lib/routes/universities/bjfu/jwc/utils.js
rename to lib/v2/bjfu/jwc/utils.js
index ad4cec7f99fa5e..a443fd9c0810b9 100644
--- a/lib/routes/universities/bjfu/jwc/utils.js
+++ b/lib/v2/bjfu/jwc/utils.js
@@ -1,6 +1,8 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const iconv = require('iconv-lite'); // 转码
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
// 完整文章页
async function load(link) {
@@ -14,16 +16,15 @@ async function load(link) {
const $ = cheerio.load(data);
// 解析日期
- const date = new Date(
- $('div #con_djl')
- .text()
- .match(/\d{4}-\d{2}-\d{2}/)
+ const pubDate = timezone(
+ parseDate(
+ $('div #con_djl')
+ .text()
+ .match(/\d{4}-\d{2}-\d{2}/)
+ ),
+ +8
);
- const timeZone = 8;
- const serverOffset = date.getTimezoneOffset() / 60;
- const pubDate = new Date(date.getTime() - 60 * 60 * 1000 * (timeZone + serverOffset)).toUTCString();
-
// 提取内容
const description = $('#con_c').html();
@@ -54,7 +55,7 @@ const ProcessFeed = (base, list, caches) =>
const other = await caches.tryGet(itemUrl, () => load(itemUrl));
// 合并解析后的结果集作为该篇文章最终的输出结果
- return Promise.resolve(Object.assign({}, single, other));
+ return { ...single, ...other };
})
);
module.exports = {
diff --git a/lib/routes/universities/bjfu/kjc.js b/lib/v2/bjfu/kjc.js
similarity index 100%
rename from lib/routes/universities/bjfu/kjc.js
rename to lib/v2/bjfu/kjc.js
diff --git a/lib/v2/bjfu/maintainer.js b/lib/v2/bjfu/maintainer.js
new file mode 100644
index 00000000000000..5c42dfb687f288
--- /dev/null
+++ b/lib/v2/bjfu/maintainer.js
@@ -0,0 +1,7 @@
+module.exports = {
+ '/grs': ['markmingjie'],
+ '/it/:type': ['wzc-blog'],
+ '/jwc/:type': ['markmingjie'],
+ '/kjc': ['markmingjie'],
+ '/news/:type': ['markmingjie'],
+};
diff --git a/lib/routes/universities/bjfu/news/index.js b/lib/v2/bjfu/news/index.js
similarity index 100%
rename from lib/routes/universities/bjfu/news/index.js
rename to lib/v2/bjfu/news/index.js
diff --git a/lib/routes/universities/bjfu/news/utils.js b/lib/v2/bjfu/news/utils.js
similarity index 80%
rename from lib/routes/universities/bjfu/news/utils.js
rename to lib/v2/bjfu/news/utils.js
index 445975a90cd4ec..1d9851484ab1b2 100644
--- a/lib/routes/universities/bjfu/news/utils.js
+++ b/lib/v2/bjfu/news/utils.js
@@ -1,6 +1,8 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const iconv = require('iconv-lite'); // 转码
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
// 完整文章页
async function load(link) {
@@ -14,16 +16,15 @@ async function load(link) {
const $ = cheerio.load(data);
// 解析日期
- const date = new Date(
- $('.article')
- .text()
- .match(/\d{4}-\d{2}-\d{2}/)
+ const pubDate = timezone(
+ parseDate(
+ $('.article')
+ .text()
+ .match(/\d{4}\/\d{2}\/\d{2}/)
+ ),
+ +8
);
- const timeZone = 8;
- const serverOffset = date.getTimezoneOffset() / 60;
- const pubDate = new Date(date.getTime() - 60 * 60 * 1000 * (timeZone + serverOffset)).toUTCString();
-
// 提取内容
const description = $('.article_con').html();
@@ -54,7 +55,7 @@ const ProcessFeed = (base, list, caches) =>
const other = await caches.tryGet(itemUrl, () => load(itemUrl));
// 合并解析后的结果集作为该篇文章最终的输出结果
- return Promise.resolve(Object.assign({}, single, other));
+ return { ...single, ...other };
})
);
module.exports = {
diff --git a/lib/v2/bjfu/radar.js b/lib/v2/bjfu/radar.js
new file mode 100644
index 00000000000000..c97d9e5906a10f
--- /dev/null
+++ b/lib/v2/bjfu/radar.js
@@ -0,0 +1,45 @@
+module.exports = {
+ 'bjfu.edu.cn': {
+ _name: '北京林业大学',
+ graduate: [
+ {
+ title: '研究生院培养动态',
+ docs: 'https://docs.rsshub.app/university.html#bei-jing-lin-ye-da-xue',
+ source: '/',
+ target: '/bjfu/grs',
+ },
+ ],
+ it: [
+ {
+ title: '信息学院通知',
+ docs: 'https://docs.rsshub.app/university.html#bei-jing-lin-ye-da-xue',
+ source: '/:type/index.html',
+ target: '/bjfu/it/:type',
+ },
+ ],
+ jwc: [
+ {
+ title: '教务处通知公告',
+ docs: 'https://docs.rsshub.app/university.html#bei-jing-lin-ye-da-xue',
+ source: '/:type/index.html',
+ target: '/bjfu/jwc/:type',
+ },
+ ],
+ kyc: [
+ {
+ title: '科技处通知公告',
+ docs: 'https://docs.rsshub.app/university.html#bei-jing-lin-ye-da-xue',
+ source: '/',
+ target: '/bjfu/kjc',
+ },
+ ],
+ news: [
+ {
+ title: '绿色新闻网',
+ docs: 'https://docs.rsshub.app/university.html#bei-jing-lin-ye-da-xue',
+ source: '/:type/index.html',
+ target: '/bjfu/news/:type',
+ },
+ ],
+ },
+};
diff --git a/lib/v2/bjfu/router.js b/lib/v2/bjfu/router.js
new file mode 100644
index 00000000000000..00dde4326dbbdd
--- /dev/null
+++ b/lib/v2/bjfu/router.js
@@ -0,0 +1,7 @@
+module.exports = (router) => {
+ router.get('/grs', require('./grs'));
+ router.get('/it/:type', require('./it/index'));
+ router.get('/jwc/:type', require('./jwc/index'));
+ router.get('/kjc', require('./kjc'));
+ router.get('/news/:type', require('./news/index'));
+};
|
f76f5867849e9cbe5c41ceae140dd9c065dfe5a1
|
2020-04-21 22:43:12
|
dependabot-preview[bot]
|
chore(deps-dev): bump prettier from 2.0.4 to 2.0.5
| false
|
bump prettier from 2.0.4 to 2.0.5
|
chore
|
diff --git a/package.json b/package.json
index c66d7de789c150..edca786d4163fd 100644
--- a/package.json
+++ b/package.json
@@ -51,7 +51,7 @@
"nodejieba": "2.4.1",
"nodemon": "2.0.3",
"pinyin": "2.9.0",
- "prettier": "2.0.4",
+ "prettier": "2.0.5",
"prettier-check": "2.0.0",
"pretty-quick": "2.0.1",
"supertest": "4.0.2",
diff --git a/yarn.lock b/yarn.lock
index 3b251567b9aca8..dab13261412ccb 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9566,10 +9566,10 @@ [email protected]:
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.3.tgz#8c62168453badef702f34b45b6ee899574a6a65d"
integrity sha512-kn/GU6SMRYPxUakNXhpP0EedT/KmaPzr0H5lIsDogrykbaxOpOfAFfk5XA7DZrJyMAv1wlMV3CPcZruGXVVUZw==
[email protected]:
- version "2.0.4"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.4.tgz#2d1bae173e355996ee355ec9830a7a1ee05457ef"
- integrity sha512-SVJIQ51spzFDvh4fIbCLvciiDMCrRhlN3mbZvv/+ycjvmF5E73bKdGfU8QDLNmjYJf+lsGnDBC4UUnvTe5OO0w==
[email protected]:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.0.5.tgz#d6d56282455243f2f92cc1716692c08aa31522d4"
+ integrity sha512-7PtVymN48hGcO4fGjybyBSIWDsLU4H4XlvOHfq91pz9kkGlonzwTfYkaIEwiRg/dAJF9YlbsduBAgtYLi+8cFg==
pretty-bytes@^5.1.0:
version "5.2.0"
|
eb3a26ba6b80d2e8eae14257a640b941cc740e72
|
2020-12-14 17:25:00
|
Shun Zi
|
fix: douban people status: more checks in case of unstable and erroneous api response (#6442)
| false
|
douban people status: more checks in case of unstable and erroneous api response (#6442)
|
fix
|
diff --git a/lib/routes/douban/people/status.js b/lib/routes/douban/people/status.js
index 44c404a3303af4..d413ab77d26b10 100644
--- a/lib/routes/douban/people/status.js
+++ b/lib/routes/douban/people/status.js
@@ -2,6 +2,62 @@ const querystring = require('querystring');
const got = require('@/utils/got');
const { fallback, queryToBoolean, queryToInteger } = require('@/utils/readable-social');
+function tryFixStatus(status) {
+ let result = { isFixSuccess: true, why: '' };
+ const now = new Date();
+
+ if (!status) {
+ result = {
+ isFixSuccess: false,
+ // 添加方括号,与 status.msg 的样式统一
+ why: '[ 无内容 ]',
+ };
+ status = {}; // dummy
+ } else if (status.deleted) {
+ result = {
+ isFixSuccess: false,
+ why: status.msg ? status.msg : '[ 内容已被删除 ]',
+ };
+ } else if (status.hidden) {
+ result = {
+ isFixSuccess: false,
+ why: status.msg ? status.msg : '[ 内容已被设为不可见 ]',
+ };
+ } else if (!status.activity || status.text === undefined || status.text === null || !status.uri) {
+ result = {
+ isFixSuccess: false,
+ why: status.msg ? status.msg : '[ 内容已不可访问 ]',
+ };
+ } else {
+ if (!status.author) {
+ status.author = {};
+ }
+ if (!status.author.url) {
+ status.author.url = 'https://www.douban.com/people/1/';
+ }
+ if (!status.author.name) {
+ status.author.name = '[作者不可见]';
+ }
+ if (!status.author.avatar) {
+ status.author.avatar = 'https://img1.doubanio.com/icon/user_normal.jpg';
+ }
+ if (!status.create_time) {
+ status.create_time = now.toLocaleString();
+ }
+ if (!status.entities) {
+ status.entities = [];
+ }
+ }
+
+ if (!result.isFixSuccess) {
+ status.sharing_url = 'https://www.douban.com?rsshub_failed=' + now.getTime().toString();
+ if (!status.create_time) {
+ status.create_time = now.toLocaleString();
+ }
+ }
+ return result;
+}
+
function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
const routeParams = querystring.parse(ctx.params.routeParams);
@@ -46,17 +102,27 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
} = params;
const { status, comments } = item;
+ const { isFixSuccess, why } = tryFixStatus(status);
+ if (!isFixSuccess) {
+ return {
+ title: why,
+ description: why,
+ };
+ }
+
let description = '';
let title = '';
let activityInDesc;
let activityInTitle;
+ const { isFixSuccess: isResharedFixSuccess, why: resharedWhy } = tryFixStatus(status.reshared_status);
+
if (status.activity !== '转发') {
activityInDesc = status.activity;
activityInTitle = status.activity;
} else {
- if (status.reshared_status.deleted) {
+ if (!isResharedFixSuccess) {
activityInDesc = `转发广播`;
activityInTitle = `转发广播`;
} else {
@@ -137,7 +203,7 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
title += status.text.replace('\n', '');
}
- if (status.images.length) {
+ if (status.images && status.images.length) {
if (readable) {
description += `<br clear="both" /><div style="clear: both"></div>`;
} else {
@@ -148,11 +214,19 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
// 让所有配图在description的最前面再次出现一次,但宽高设为0
let picsPrefix = '';
status.images.forEach(function (image) {
+ if (!(image.large && image.large.url)) {
+ return;
+ }
picsPrefix += `<img width="0" height="0" hidden="true" src="${image.large.url}">`;
});
picsPrefixes.push(picsPrefix);
status.images.forEach((image) => {
+ if (!(image.large && image.large.url)) {
+ description += '[无法显示的图片]';
+ return;
+ }
+
if (addLinkForPics) {
description += '<a href="' + image.large.url + '" target="_blank" rel="noopener noreferrer">';
}
@@ -193,25 +267,34 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
title += showEmojiForRetweet ? ' 🔁 ' : ' Fw: ';
}
- let usernameAndAvatar = '';
+ const { isFixSuccess: isParentFixSuccess, why: parentWhy } = tryFixStatus(status.parent_status);
- if (readable) {
- usernameAndAvatar += `<a href="${status.parent_status.author === undefined ? 'https://www.douban.com/people/1/' : status.parent_status.author.url}">`;
- }
- if (authorNameBold) {
- usernameAndAvatar += `<strong>`;
- }
- usernameAndAvatar += status.parent_status.author === undefined ? '[原转发不可访问]' : status.parent_status.author.name;
- if (authorNameBold) {
- usernameAndAvatar += `</strong>`;
- }
- if (readable) {
- usernameAndAvatar += `</a>`;
- }
- usernameAndAvatar += `: `;
- description += usernameAndAvatar + (status.parent_status.text === undefined ? '[原转发不可访问]' : status.parent_status.text);
- if (showRetweetTextInTitle) {
- title += status.parent_status.text === undefined ? '[原转发不可访问]' : status.parent_status.author.name + ': ' + status.parent_status.text;
+ if (!isParentFixSuccess) {
+ description += parentWhy;
+ if (showRetweetTextInTitle) {
+ title += parentWhy;
+ }
+ } else {
+ let usernameAndAvatar = '';
+
+ if (readable) {
+ usernameAndAvatar += `<a href="${status.parent_status.author.url}">`;
+ }
+ if (authorNameBold) {
+ usernameAndAvatar += `<strong>`;
+ }
+ usernameAndAvatar += status.parent_status.author.name;
+ if (authorNameBold) {
+ usernameAndAvatar += `</strong>`;
+ }
+ if (readable) {
+ usernameAndAvatar += `</a>`;
+ }
+ usernameAndAvatar += `: `;
+ description += usernameAndAvatar + status.parent_status.text;
+ if (showRetweetTextInTitle) {
+ title += status.parent_status.author.name + ': ' + status.parent_status.text;
+ }
}
}
@@ -230,6 +313,17 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
if (image) {
description += `<img src="${image.url}" ${readable ? 'vspace="0" hspace="12" align="left" height="75" style="height: 75px;"' : ''} />`;
}
+
+ if (!status.card.title) {
+ status.card.title = '[空]';
+ }
+ if (!status.card.subtitle) {
+ status.card.subtitle = '[空]';
+ }
+ if (!status.card.url) {
+ status.card.url = 'https://www.douban.com';
+ }
+
description += `<a href="${status.card.url}" target="_blank" rel="noopener noreferrer"><strong>${status.card.title}</strong><br><small>${status.card.subtitle}</small>`;
if (status.card.rating) {
description += `<br><small>评分:${status.card.rating}</small>`;
@@ -249,6 +343,11 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
}
const videoCover = status.video_card.video_info && status.video_card.video_info.cover_url;
const videoSrc = status.video_card.video_info && status.video_card.video_info.video_url;
+
+ if (!status.video_card.url) {
+ status.video_card.url = 'https://www.douban.com';
+ }
+
description += `${videoSrc ? `<video src="${videoSrc}" ${videoCover ? `poster="${videoCover}"` : ''}></video>` : ''}<br>${status.video_card.title ? `<a href="${status.video_card.url}">${status.video_card.title}</a>` : ''}`;
if (readable) {
description += `</blockquote>`;
@@ -267,9 +366,9 @@ function getContentByActivity(ctx, item, params = {}, picsPrefixes = []) {
title += ' | ';
}
- if (status.reshared_status.deleted) {
- description += `[原动态不可访问]`;
- title += `[原动态不可访问]`;
+ if (!isResharedFixSuccess) {
+ description += resharedWhy;
+ title += resharedWhy;
} else {
description += getContentByActivity(
ctx,
|
f3741e853045088c6d18d669a89f0645524792ca
|
2022-05-05 19:19:44
|
github-actions[bot]
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/docs/university.md b/docs/university.md
index 1b5e8f783a3c3d..a96043bc9ca008 100644
--- a/docs/university.md
+++ b/docs/university.md
@@ -1693,8 +1693,8 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE_TLS
<Route author="zefengdaguo" example="/njit/jwc/jx" path="/njit/jwc/:type?" :paramsDesc="['默认为 `jx`']" />
-| 教学 | 考试 | 信息 | 实践 |
-| ------ | ---- | ---- | ---- |
+| 教学 | 考试 | 信息 | 实践 |
+| -- | -- | -- | -- |
| jx | ks | xx | sj |
## 南京工业大学
diff --git a/lib/v2/njit/jwc.js b/lib/v2/njit/jwc.js
index 38eae140dd74eb..72d4f644e01e66 100644
--- a/lib/v2/njit/jwc.js
+++ b/lib/v2/njit/jwc.js
@@ -61,7 +61,7 @@ module.exports = async (ctx) => {
.replace(/src="\//g, `src="${new URL('.', host).href}`)
.replace(/href="\//g, `href="${new URL('.', host).href}`)
.trim(),
- pubDate: $('.author p').eq(1).text().replace('时间:', '')
+ pubDate: $('.author p').eq(1).text().replace('时间:', ''),
};
return single;
});
diff --git a/lib/v2/njit/maintainer.js b/lib/v2/njit/maintainer.js
index dcf7e1ddca5a3f..87b3cfd1b671df 100644
--- a/lib/v2/njit/maintainer.js
+++ b/lib/v2/njit/maintainer.js
@@ -1,4 +1,4 @@
module.exports = {
'/tzgg': ['zefengdaguo'],
'/jwc/:type?': ['zefengdaguo'],
-};
\ No newline at end of file
+};
diff --git a/lib/v2/njit/radar.js b/lib/v2/njit/radar.js
index 74a21b1d794691..bb04d76bb7865d 100644
--- a/lib/v2/njit/radar.js
+++ b/lib/v2/njit/radar.js
@@ -6,7 +6,7 @@ module.exports = {
title: '南京工程学院教务处',
docs: 'https://docs.rsshub.app/university.html#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-jiao-wu-chu',
source: '/index/:type',
- target: (params) => `/njit/jwc/${params.type.replace('.htm', '')}`
+ target: (params) => `/njit/jwc/${params.type.replace('.htm', '')}`,
},
],
www: [
@@ -14,8 +14,8 @@ module.exports = {
title: '南京工程学院通知公告',
docs: 'https://docs.rsshub.app/university.html#nan-jing-gong-cheng-xue-yuan-nan-jing-gong-cheng-xue-yuan-tong-zhi-gong-gao',
source: '/',
- target: '/njit/tzgg'
- }
- ]
+ target: '/njit/tzgg',
+ },
+ ],
},
};
diff --git a/lib/v2/njit/router.js b/lib/v2/njit/router.js
index e3721c6dca3687..41654d74aac41c 100644
--- a/lib/v2/njit/router.js
+++ b/lib/v2/njit/router.js
@@ -1,4 +1,4 @@
module.exports = (router) => {
router.get('/tzgg', require('./tzgg'));
router.get('/jwc/:type?', require('./jwc'));
-};
\ No newline at end of file
+};
|
c8084f322d6d157d1a32e18652eab2209a699e8a
|
2022-08-23 18:44:42
|
syrinka
|
feat(utils): nga post 增加 author 字段,适配部分富文本样式 (#10579)
| false
|
nga post 增加 author 字段,适配部分富文本样式 (#10579)
|
feat
|
diff --git a/lib/v2/nga/post.js b/lib/v2/nga/post.js
index f76679a81fa828..aef1e1d96732c1 100644
--- a/lib/v2/nga/post.js
+++ b/lib/v2/nga/post.js
@@ -6,7 +6,7 @@ const timezone = require('@/utils/timezone');
const config = require('@/config').value;
module.exports = async (ctx) => {
- const getPageUrl = (tid, authorId, page = 1, hash = '') => `https://nga.178.com/read.php?tid=${tid}&page=${page}&authorid=${authorId}&rand=${Math.random() * 1000}#${hash}`;
+ const getPageUrl = (tid, authorId, page = 1, hash = '') => `https://nga.178.com/read.php?tid=${tid}&page=${page}${authorId ? `&authorid=${authorId}` : ''}&rand=${Math.random() * 1000}#${hash}`;
const getPage = async (tid, authorId, pageId = 1) => {
const link = getPageUrl(tid, authorId, pageId);
const timestamp = Math.floor(Date.now() / 1000);
@@ -32,31 +32,77 @@ module.exports = async (ctx) => {
return match ? match[2] : 1;
};
- const eraseTag = (str) => str.replace(/\[(\w+)\].+?\[\/\1\]/g, '');
- const eraseQuote = (str) => str.replace(/\[quote\](.+?)\[\/quote\]/, (m, b) => b).replace(/\[b\].*?\[uid=\d+\](.+?)\[\/uid\].+?\[\/b\]/, (m, user) => `@${user} `);
- const pipeImg = (str) => str.replace(/\[img\](.+?)\[\/img\]/g, (m, src) => `<img src='${src[0] === '.' ? 'https://img.nga.178.com/attachments' + src.substr(1) : src}'></img>`);
+ const deepReplace = (str, pattern, replace) => {
+ // 对于可能存在嵌套的样式一路 replace 到最深处
+ while (str.match(pattern)) {
+ str = str.replace(pattern, replace);
+ }
+ return str;
+ };
+
+ const formatContent = (str) => {
+ // 简单样式
+ str = deepReplace(str, /\[(b|u|i|del|code|sub|sup)\](.+?)\[\/\1\]/g, '<$1>$2</$1>');
+ str = str
+ .replace(/\[dice\](.+?)\[\/dice\]/g, '<b>ROLL : $1</b>')
+ .replace(/\[color=(.+?)\](.+?)\[\/color\]/g, '<span style="color:$1;">$2</span>')
+ .replace(/\[font=(.+?)\](.+?)\[\/font\]/g, '<span style="font-family:$1;">$2</span>')
+ .replace(/\[size=(.+?)\](.+?)\[\/size\]/g, '<span style="font-size:$1;">$2</span>')
+ .replace(/\[align=(.+?)\](.+?)\[\/align\]/g, '<span style="text-align:$1;">$2</span>');
+ // 图片
+ str = str.replace(/\[img\](.+?)\[\/img\]/g, (m, src) => `<img src='${src[0] === '.' ? 'https://img.nga.178.com/attachments' + src.substr(1) : src}'></img>`);
+ // 折叠
+ str = deepReplace(str, /\[collapse(?:=(.+?))?\](.+?)\[\/collapse\]/g, '<details><summary>$1</summary>$2</details>');
+ // 引用
+ str = deepReplace(str, /\[quote\](.+?)\[\/quote\]/g, '<blockquote>$1</blockquote>')
+ .replace(/\[@(.+?)\]/g, '<a href="https://nga.178.com/nuke.php?func=ucp&username=$1">@$1</a>')
+ .replace(/\[uid=(\d+)\](.+?)\[\/uid\]/g, '<a href="https://nga.178.com/nuke.php?func=ucp&uid=$1">@$2</a>')
+ .replace(/\[tid=(\d+)\](.+?)\[\/tid\]/g, '<a href="https://nga.178.com/read.php?tid=$1">$2</a>')
+ .replace(/\[pid=(\d+),(\d+),(\d+)\](.+?)\[\/pid\]/g, (m, tid, pid, page, str) => {
+ const url = `https://nga.178.com/read.php?tid=${tid}&page=${page}#pid${pid}Anchor`;
+ return `<a href="${url}">${str}</a>`;
+ });
+ // 链接
+ str = str.replace(/\[url=(.+?)\](.+?)\[\/url\]/g, '<a href="$1">$2</a>');
+ // 分割线
+ str = str.replace(/\[h\](.+?)\[\/h\]/g, '<h4 style="font-size:1.17em;font-weight:bold;border-bottom:1px solid #aaa;clear:both;margin:1.33em 0 0.2em 0;">$1</h4>');
+ return str;
+ };
const tid = ctx.params.tid;
- const authorId = ctx.params.authorId;
+ const authorId = ctx.params.authorId || undefined;
const pageId = await getLastPageId(tid, authorId);
const $ = await getPage(tid, authorId, pageId);
const title = $('title').text() || '';
+ const posterMap = JSON.parse(
+ $('script')
+ .eq(7)
+ .text()
+ .match(/commonui\.userInfo\.setAll\((.*)\)$/m)[1]
+ );
+ const authorName = authorId ? posterMap[authorId].username : undefined;
const items = $('#m_posts_c')
.children()
.filter('table')
.map((ind, post_) => {
const post = $(post_);
+ const posterId = post
+ .find('.posterinfo a')
+ .first()
+ .attr('href')
+ .match(/&uid=(\d+)/)[1];
+ const poster = authorName || posterMap[posterId].username;
const content = post.find('.postcontent').first();
- const title = eraseTag(content.text());
- const description = eraseTag(pipeImg(eraseQuote(content.html() || '')));
+ const description = formatContent(content.html());
const postId = content.attr('id');
const link = getPageUrl(tid, authorId, pageId, postId);
const pubDate = timezone(parseDate(post.find('.postInfo > span').first().text(), 'YYYY-MM-DD HH:mm'), +8);
return {
- title,
+ title: cheerio.load(description).text(),
+ author: poster,
link,
description,
pubDate,
@@ -64,8 +110,15 @@ module.exports = async (ctx) => {
};
});
+ let rssTitle;
+ if (authorName) {
+ rssTitle = `NGA ${authorName} ${title}`;
+ } else {
+ rssTitle = `NGA ${title}`;
+ }
+
ctx.state.data = {
- title: authorId ? `nga-${title}-${authorId}` : `nga-${title}`,
+ title: rssTitle,
link: getPageUrl(tid, authorId, pageId),
item: items.get(),
};
|
99be86ebbaa6cd8b3b8266bdfd858751f4f97d18
|
2022-06-23 20:04:54
|
Tony
|
chore: update feature request template
| false
|
update feature request template
|
chore
|
diff --git a/.github/ISSUE_TEMPLATE/feature_request_en.yml b/.github/ISSUE_TEMPLATE/feature_request_en.yml
index 72f9cfa5c0ae8a..212b7901bc5c91 100644
--- a/.github/ISSUE_TEMPLATE/feature_request_en.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request_en.yml
@@ -7,7 +7,7 @@ body:
- type: markdown
attributes:
value: |
- Please ensure the feature requested is not listed in [documentation](https://docs.rsshub.app/en) or [issue](https://github.com/DIYgod/RSSHub/issues), and provide all the information required by this template.
+ Please ensure the feature requested is not listed in [documentation](https://docs.rsshub.app/en) or [issue](https://github.com/DIYgod/RSSHub/issues), and is not a [new RSS proposal](https://github.com/DIYgod/RSSHub/issues/new?assignees=&labels=RSS+proposal&template=rss_request_en.yml), and provide all the information required by this template.
Otherwise the issue will be closed immediately.
- type: textarea
diff --git a/.github/ISSUE_TEMPLATE/feature_request_zh.yml b/.github/ISSUE_TEMPLATE/feature_request_zh.yml
index bd4ae44e5bcd7e..1d4b6839d0d5a6 100644
--- a/.github/ISSUE_TEMPLATE/feature_request_zh.yml
+++ b/.github/ISSUE_TEMPLATE/feature_request_zh.yml
@@ -7,7 +7,7 @@ body:
- type: markdown
attributes:
value: |
- 请确保 [文档](https://docs.rsshub.app) 和 [issue](https://github.com/DIYgod/RSSHub/issues) 中没有相关内容,并按照模版提供信息,
+ 请确保 [文档](https://docs.rsshub.app) 和 [Issue](https://github.com/DIYgod/RSSHub/issues) 中没有相关内容及不是[新的 RSS 提案](https://github.com/DIYgod/RSSHub/issues/new?assignees=&labels=RSS+proposal&template=rss_request_zh.yml),并按照模版提供信息,
否则 issue 将被立即关闭。
- type: textarea
|
6a76e5702d911fa12e92b712fa519b095e46be1d
|
2019-10-18 09:13:22
|
Cloud
|
chore(deps): bump markdown-it from 9.1.0 to 10.0.0 (#3249)
| false
|
bump markdown-it from 9.1.0 to 10.0.0 (#3249)
|
chore
|
diff --git a/docs/new-media.md b/docs/new-media.md
index d8d954eec3515c..1e6b1c56852f2b 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -125,6 +125,12 @@ pageClass: routes
<Route author="Cerebrater" example="/matters/author/az" path="/matters/author/:uid" :paramsDesc="['作者 id,可在作者主頁的 URL 找到']"/>
+## Nautilus
+
+### 话题
+
+<Route author="emdoe" example="/nautilus/topic/Art" path="/nautilus/topic/:tid" :paramsDesc="['话题 id, 可在页面上方 TOPICS 栏目处找到']"/>
+
## Readhub
### 分类
@@ -479,12 +485,6 @@ pageClass: routes
<Route author="crispgm" example="/nogizaka46/news" path="/nogizaka46/news" />
-## Nautilus
-
-### 话题
-
-<Route author="emdoe" example="/nautilus/topic/Art" path="/nautilus/topic/:tid" :paramsDesc="['话题 id, 可在页面上方 TOPICS 栏目处找到']"/>
-
## 派代
### 首页
diff --git a/package.json b/package.json
index 59f36bc4e6c576..8d393215537b1c 100644
--- a/package.json
+++ b/package.json
@@ -41,6 +41,7 @@
"@vuepress/plugin-google-analytics": "1.2.0",
"@vuepress/plugin-pwa": "1.2.0",
"cross-env": "6.0.3",
+ "entities": "2.0.0",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-prettier": "3.1.1",
@@ -85,7 +86,7 @@
"lru-cache": "5.1.1",
"lz-string": "1.4.4",
"mailparser": "2.7.1",
- "markdown-it": "9.1.0",
+ "markdown-it": "10.0.0",
"module-alias": "2.2.2",
"path-to-regexp": "3.1.0",
"pidusage": "2.0.17",
diff --git a/yarn.lock b/yarn.lock
index 7927d9269e71d0..83fe1301e36a26 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3922,6 +3922,11 @@ enhanced-resolve@^4.1.0:
memory-fs "^0.4.0"
tapable "^1.0.0"
[email protected], entities@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4"
+ integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==
+
entities@^1.1.1, entities@~1.1.1:
version "1.1.2"
resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
@@ -7076,13 +7081,13 @@ markdown-it-table-of-contents@^0.4.0:
resolved "https://registry.yarnpkg.com/markdown-it-table-of-contents/-/markdown-it-table-of-contents-0.4.4.tgz#3dc7ce8b8fc17e5981c77cc398d1782319f37fbc"
integrity sha512-TAIHTHPwa9+ltKvKPWulm/beozQU41Ab+FIefRaQV1NRnpzwcV9QOe6wXQS5WLivm5Q/nlo0rl6laGkMDZE7Gw==
[email protected]:
- version "9.1.0"
- resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-9.1.0.tgz#df9601c168568704d554b1fff9af0c5b561168d9"
- integrity sha512-xHKG4C8iPriyfu/jc2hsCC045fKrMQ0VexX2F1FGYiRxDxqMB2aAhF8WauJ3fltn2kb90moGBkiiEdooGIg55w==
[email protected]:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc"
+ integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg==
dependencies:
argparse "^1.0.7"
- entities "~1.1.1"
+ entities "~2.0.0"
linkify-it "^2.0.0"
mdurl "^1.0.1"
uc.micro "^1.0.5"
|
94ffb50814be5beb2af5657fb94c2aa829e52728
|
2024-05-25 19:59:42
|
Tony
|
fix(route): zhihu `__zse_ck` (#15707)
| false
|
zhihu `__zse_ck` (#15707)
|
fix
|
diff --git a/lib/routes/zhihu/utils.ts b/lib/routes/zhihu/utils.ts
index d5705c83c276c4..b72468b76f40e6 100644
--- a/lib/routes/zhihu/utils.ts
+++ b/lib/routes/zhihu/utils.ts
@@ -62,9 +62,25 @@ export const getSignedHeader = async (url: string, apiPath: string) => {
// fisrt: get cookie(dc_0) from zhihu.com
const dc0 = await cache.tryGet('zhihu:cookies:d_c0', async () => {
- const response = await ofetch.raw(url);
+ const response1 = await ofetch.raw(url);
+ const $ = load(response1._data);
+ const zseCk = $('script:contains("__zse_ck")')
+ .text()
+ .match(/\|\|"(.*?)",.*;document\.cookie/)?.[1];
+ if (!zseCk) {
+ throw new Error('Failed to extract `__zse_ck` from page');
+ }
+
+ const response2 = await ofetch.raw(url, {
+ headers: {
+ cookie: `${response1.headers
+ .getSetCookie()
+ .map((s) => s.split(';')[0])
+ .join('; ')}; __zse_ck=${zseCk}`,
+ },
+ });
- const dc0 = response.headers
+ const dc0 = response2.headers
.getSetCookie()
.find((s) => s.startsWith('d_c0='))
?.split(';')[0];
|
a4daf28ca5881e2f99a5e7a00064fc282b0eafbf
|
2024-10-11 09:51:35
|
Stephen Zhou
|
fix: catch Invalid Date (#17081)
| false
|
catch Invalid Date (#17081)
|
fix
|
diff --git a/lib/middleware/template.tsx b/lib/middleware/template.tsx
index e91084ed3957c8..36dae2e72d93d5 100644
--- a/lib/middleware/template.tsx
+++ b/lib/middleware/template.tsx
@@ -74,8 +74,16 @@ const middleware: MiddlewareHandler = async (ctx, next) => {
}
if (outputType !== 'rss') {
- item.pubDate && (item.pubDate = convertDateToISO8601(item.pubDate) || '');
- item.updated && (item.updated = convertDateToISO8601(item.updated) || '');
+ try {
+ item.pubDate && (item.pubDate = convertDateToISO8601(item.pubDate) || '');
+ } catch {
+ item.pubDate = '';
+ }
+ try {
+ item.updated && (item.updated = convertDateToISO8601(item.updated) || '');
+ } catch {
+ item.updated = '';
+ }
}
}
}
|
215db34f0214b9fc5a0ab57e05829bd831c980ed
|
2022-04-01 04:20:00
|
dependabot[bot]
|
chore(deps): bump puppeteer from 13.5.1 to 13.5.2 (#9433)
| false
|
bump puppeteer from 13.5.1 to 13.5.2 (#9433)
|
chore
|
diff --git a/package.json b/package.json
index 0d5530699e91c7..173f3a70e908a1 100644
--- a/package.json
+++ b/package.json
@@ -119,7 +119,7 @@
"parse-torrent": "9.1.5",
"pidusage": "3.0.0",
"plist": "3.0.5",
- "puppeteer": "13.5.1",
+ "puppeteer": "13.5.2",
"query-string": "7.1.1",
"require-all": "3.0.0",
"rss-parser": "3.12.0",
diff --git a/yarn.lock b/yarn.lock
index 84c0ee406faacd..3c4c13298f37cc 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4581,20 +4581,13 @@ [email protected], debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
dependencies:
ms "2.0.0"
-debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
+debug@4, [email protected], debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
dependencies:
ms "2.1.2"
[email protected]:
- version "4.3.3"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664"
- integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==
- dependencies:
- ms "2.1.2"
-
debug@^3.1.0, debug@^3.1.1, debug@^3.2.6, debug@^3.2.7:
version "3.2.7"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
@@ -11239,13 +11232,13 @@ pupa@^2.0.1, pupa@^2.1.1:
dependencies:
escape-goat "^2.0.0"
[email protected]:
- version "13.5.1"
- resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.1.tgz#d0f751bf36120efc2ebf74c7562a204a84e500e9"
- integrity sha512-wWxO//vMiqxlvuzHMAJ0pRJeDHvDtM7DQpW1GKdStz2nZo2G42kOXBDgkmQ+zqjwMCFofKGesBeeKxIkX9BO+w==
[email protected]:
+ version "13.5.2"
+ resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-13.5.2.tgz#73ae84969cbf514aeee871a05ec4549d67f6abee"
+ integrity sha512-DJAyXODBikZ3xPs8C35CtExEw78LZR9RyelGDAs0tX1dERv3OfW7qpQ9VPBgsfz+hG2HiMTO/Tyf7BuMVWsrxg==
dependencies:
cross-fetch "3.1.5"
- debug "4.3.3"
+ debug "4.3.4"
devtools-protocol "0.0.969999"
extract-zip "2.0.1"
https-proxy-agent "5.0.0"
|
8172152acde45ec3054f90300cbbc5238738950e
|
2022-08-13 03:00:32
|
dependabot[bot]
|
chore(deps): bump dayjs from 1.11.4 to 1.11.5 (#10453)
| false
|
bump dayjs from 1.11.4 to 1.11.5 (#10453)
|
chore
|
diff --git a/package.json b/package.json
index 78ae716a6db928..576f054cfe7d13 100644
--- a/package.json
+++ b/package.json
@@ -88,7 +88,7 @@
"city-timezones": "1.2.1",
"crypto-js": "4.1.1",
"currency-symbol-map": "5.1.0",
- "dayjs": "1.11.4",
+ "dayjs": "1.11.5",
"dotenv": "16.0.1",
"emailjs-imap-client": "3.1.0",
"entities": "3.0.1",
diff --git a/yarn.lock b/yarn.lock
index c30f862696b23c..48cdc0d18d8d3f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4720,10 +4720,10 @@ data-urls@^3.0.2:
whatwg-mimetype "^3.0.0"
whatwg-url "^11.0.0"
[email protected], dayjs@^1.10.0:
- version "1.11.4"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.4.tgz#3b3c10ca378140d8917e06ebc13a4922af4f433e"
- integrity sha512-Zj/lPM5hOvQ1Bf7uAvewDaUcsJoI6JmNqmHhHl3nyumwe0XHwt8sWdOVAPACJzCebL8gQCi+K49w7iKWnGwX9g==
[email protected], dayjs@^1.10.0:
+ version "1.11.5"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.5.tgz#00e8cc627f231f9499c19b38af49f56dc0ac5e93"
+ integrity sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==
de-indent@^1.0.2:
version "1.0.2"
|
0bc647c8bea93e3bf64c4efb56681211c77a8a89
|
2024-12-17 18:43:22
|
Bubu
|
feat(route): APNIC Blog 全文 RSS (#17839)
| false
|
APNIC Blog 全文 RSS (#17839)
|
feat
|
diff --git a/lib/routes/apnic/index.ts b/lib/routes/apnic/index.ts
new file mode 100644
index 00000000000000..6570faec284b98
--- /dev/null
+++ b/lib/routes/apnic/index.ts
@@ -0,0 +1,61 @@
+import { Route } from '@/types';
+
+import cache from '@/utils/cache';
+import got from '@/utils/got';
+import { load } from 'cheerio';
+import { parseDate } from '@/utils/parse-date';
+
+export const route: Route = {
+ path: '/blog',
+ categories: ['blog'],
+ example: '/apnic/blog',
+ url: 'blog.apnic.net',
+ name: 'Blog',
+ maintainers: ['p3psi-boo'],
+ handler,
+};
+
+async function handler() {
+ const baseUrl = 'https://blog.apnic.net';
+ const feedUrl = `${baseUrl}/feed/`;
+
+ const response = await got(feedUrl);
+ const $ = load(response.data, { xmlMode: true });
+
+ // 从 RSS XML 中直接提取文章信息
+ const list = $('item')
+ .toArray()
+ .map((item) => {
+ const $item = $(item);
+ return {
+ title: $item.find('title').text(),
+ link: $item.find('link').text(),
+ author: $item.find(String.raw`dc\:creator`).text(),
+ category:
+ $item
+ .find('category')
+ .text()
+ .match(/>([^<]+)</)?.[1] || '',
+ pubDate: parseDate($item.find('pubDate').text()),
+ };
+ });
+
+ const items = await Promise.all(
+ list.map((item) =>
+ cache.tryGet(item.link, async () => {
+ const { data: articleData } = await got(item.link);
+ const $article = load(articleData);
+
+ // 获取文章正文内容
+ item.description = $article('.entry-content').html();
+ return item;
+ })
+ )
+ );
+
+ return {
+ title: 'APNIC Blog',
+ link: baseUrl,
+ item: items,
+ };
+}
diff --git a/lib/routes/apnic/namespace.ts b/lib/routes/apnic/namespace.ts
new file mode 100644
index 00000000000000..e3e9914088b2aa
--- /dev/null
+++ b/lib/routes/apnic/namespace.ts
@@ -0,0 +1,8 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: 'APNIC',
+ url: 'blog.apnic.net',
+ description: 'Asia-Pacific Network Information Centre',
+ lang: 'en',
+};
|
ef8660285398ad570cce949cc3b507b3aad424c1
|
2024-11-11 07:39:12
|
Neko Aria
|
feat(route/discord): add guild messages search with comprehensive parameters (#17522)
| false
|
add guild messages search with comprehensive parameters (#17522)
|
feat
|
diff --git a/lib/routes/discord/discord-api.ts b/lib/routes/discord/discord-api.ts
index e5576a944d5b34..9cf85e3ec2c87b 100644
--- a/lib/routes/discord/discord-api.ts
+++ b/lib/routes/discord/discord-api.ts
@@ -1,7 +1,9 @@
+import { APIMessage } from 'discord-api-types/v10';
+import { RESTGetAPIGuildResult, RESTGetAPIGuildChannelsResult, RESTGetAPIChannelResult, RESTGetAPIChannelMessagesQuery, RESTGetAPIChannelMessagesResult } from 'discord-api-types/rest/v10';
+
+import { config } from '@/config';
import cache from '@/utils/cache';
import ofetch from '@/utils/ofetch';
-import { config } from '@/config';
-import { RESTGetAPIGuildResult, RESTGetAPIGuildChannelsResult, RESTGetAPIChannelResult, RESTGetAPIChannelMessagesQuery, RESTGetAPIChannelMessagesResult } from 'discord-api-types/rest/v10';
export const baseUrl = 'https://discord.com';
const apiUrl = `${baseUrl}/api/v10`;
@@ -48,3 +50,43 @@ export const getChannelMessages = (channelId, authorization, limit = 100) =>
config.cache.routeExpire,
false
) as Promise<RESTGetAPIChannelMessagesResult>;
+
+interface SearchGuildMessagesResult {
+ analytics_id: string;
+ doing_deep_historical_index: boolean;
+ total_results: number;
+ messages: APIMessage[][];
+}
+
+export const VALID_HAS_TYPES = new Set(['link', 'embed', 'poll', 'file', 'video', 'image', 'sound', 'sticker', 'snapshot'] as const);
+
+export type HasType = typeof VALID_HAS_TYPES extends Set<infer T> ? T : never;
+
+export interface SearchGuildMessagesParams {
+ content?: string;
+ author_id?: string;
+ mentions?: string;
+ has?: HasType[];
+ max_id?: string;
+ min_id?: string;
+ channel_id?: string;
+ pinned?: boolean;
+}
+
+export const searchGuildMessages = (guildId: string, authorization: string, params: SearchGuildMessagesParams) =>
+ cache.tryGet(
+ `discord:guilds:${guildId}:search:${JSON.stringify(params)}`,
+ () => {
+ const queryParams = {
+ ...params,
+ has: params.has?.length ? params.has : undefined,
+ };
+
+ return ofetch(`${apiUrl}/guilds/${guildId}/messages/search`, {
+ headers: { authorization },
+ query: queryParams,
+ });
+ },
+ config.cache.routeExpire,
+ false
+ ) as Promise<SearchGuildMessagesResult>;
diff --git a/lib/routes/discord/search.ts b/lib/routes/discord/search.ts
new file mode 100644
index 00000000000000..633539f7d0a390
--- /dev/null
+++ b/lib/routes/discord/search.ts
@@ -0,0 +1,103 @@
+import path from 'node:path';
+
+import { config } from '@/config';
+import InvalidParameterError from '@/errors/types/invalid-parameter';
+import { Route } from '@/types';
+import { parseDate } from '@/utils/parse-date';
+import { art } from '@/utils/render';
+import ConfigNotFoundError from '@/errors/types/config-not-found';
+import { queryToBoolean } from '@/utils/readable-social';
+
+import { baseUrl, getGuild, searchGuildMessages, SearchGuildMessagesParams, HasType, VALID_HAS_TYPES } from './discord-api';
+
+export const route: Route = {
+ path: '/search/:guildId/:routeParams',
+ categories: ['social-media'],
+ example: '/discord/search/302094807046684672/content=friendly&has=image,video',
+ parameters: {
+ guildId: 'Guild ID',
+ routeParams: 'Search parameters, support content, author_id, mentions, has, min_id, max_id, channel_id, pinned',
+ },
+ features: {
+ requireConfig: [
+ {
+ name: 'DISCORD_AUTHORIZATION',
+ description: 'Discord authorization header',
+ },
+ ],
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ name: 'Guild Search',
+ maintainers: ['NekoAria'],
+ handler,
+};
+
+const parseSearchParams = (routeParams?: string): SearchGuildMessagesParams => {
+ const parsed = new URLSearchParams(routeParams);
+ const hasTypes = parsed.get('has')?.split(',').filter(Boolean);
+ const validHasTypes = hasTypes?.filter((type) => VALID_HAS_TYPES.has(type as HasType)) as HasType[];
+
+ const params = {
+ content: parsed.get('content') ?? undefined,
+ author_id: parsed.get('author_id') ?? undefined,
+ mentions: parsed.get('mentions') ?? undefined,
+ has: validHasTypes?.length ? validHasTypes : undefined,
+ min_id: parsed.get('min_id') ?? undefined,
+ max_id: parsed.get('max_id') ?? undefined,
+ channel_id: parsed.get('channel_id') ?? undefined,
+ pinned: parsed.has('pinned') ? queryToBoolean(parsed.get('pinned')) : undefined,
+ };
+
+ return Object.fromEntries(Object.entries(params).filter(([, value]) => value !== undefined));
+};
+
+async function handler(ctx) {
+ const { authorization } = config.discord || {};
+ if (!authorization) {
+ throw new ConfigNotFoundError('Discord RSS is disabled due to the lack of authorization config');
+ }
+
+ const { guildId } = ctx.req.param();
+ const searchParams = parseSearchParams(ctx.req.param('routeParams'));
+
+ if (!Object.keys(searchParams).length) {
+ throw new InvalidParameterError('At least one valid search parameter is required');
+ }
+
+ const [guildInfo, searchResult] = await Promise.all([getGuild(guildId, authorization), searchGuildMessages(guildId, authorization, searchParams)]);
+
+ if (!searchResult?.messages?.length) {
+ return {
+ title: `Search Results - ${guildInfo.name}`,
+ link: `${baseUrl}/channels/${guildId}`,
+ item: [],
+ allowEmpty: true,
+ };
+ }
+
+ const messages = searchResult.messages.flat().map((message) => ({
+ title: message.content.split('\n')[0] || '(no content)',
+ description: art(path.join(__dirname, 'templates/message.art'), { message, guildInfo }),
+ author: message.author.global_name ?? message.author.username,
+ pubDate: parseDate(message.timestamp),
+ updated: message.edited_timestamp ? parseDate(message.edited_timestamp) : undefined,
+ category: [`#${message.channel_id}`],
+ link: `${baseUrl}/channels/${guildId}/${message.channel_id}/${message.id}`,
+ }));
+
+ const searchDesc = Object.entries(searchParams)
+ .filter(([, value]) => value !== undefined)
+ .map(([key, value]) => `${key}:${Array.isArray(value) ? value.join(',') : value}`)
+ .join(' ');
+
+ return {
+ title: `Search "${searchDesc}" in ${guildInfo.name} - Discord`,
+ link: `${baseUrl}/channels/${guildId}`,
+ item: messages,
+ allowEmpty: true,
+ };
+}
|
d72dce405608d741403d8c42ecd05f4e4e4f343a
|
2022-02-02 23:02:44
|
Fatpandac
|
fix(route): fix douban/explore route is empty (#8968)
| false
|
fix douban/explore route is empty (#8968)
|
fix
|
diff --git a/docs/social-media.md b/docs/social-media.md
index a33af792e6605c..d86729714fc16e 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -809,7 +809,7 @@ YouTube 官方亦有提供频道 RSS,形如 <https://www.youtube.com/feeds/vid
### 浏览发现
-<Route author="clarkzsd" example="/douban/explore" path="/douban/explore"/>
+<Route author="clarkzsd Fatpandac" example="/douban/explore" path="/douban/explore"/>
### 浏览发现分栏目
diff --git a/lib/v2/douban/other/explore.js b/lib/v2/douban/other/explore.js
index fa56b2fafc54eb..d4e6a1d7e5188d 100644
--- a/lib/v2/douban/other/explore.js
+++ b/lib/v2/douban/other/explore.js
@@ -1,5 +1,7 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
+const { art } = require('@/utils/render');
+const path = require('path');
module.exports = async (ctx) => {
const response = await got({
@@ -10,8 +12,7 @@ module.exports = async (ctx) => {
const data = response.data;
const $ = cheerio.load(data);
- const list = $('div[data-item_id]');
- let itemPicUrl;
+ const list = $('div.item');
ctx.state.data = {
title: '豆瓣-浏览发现',
@@ -19,13 +20,29 @@ module.exports = async (ctx) => {
item:
list &&
list
- .map((index, item) => {
+ .map((_, item) => {
item = $(item);
- itemPicUrl = item.find('a.cover').attr('style').replace('background-image:url(', '').replace(')', '');
+
+ const title = item.find('.title a').first().text() ? item.find('.title a').first().text() : '#' + item.find('.icon-topic').text();
+ const desc = item.find('.content p').text();
+ const itemPic = item.find('a.cover').attr('style')
+ ? item
+ .find('a.cover')
+ .attr('style')
+ .match(/\('(.*?)'\)/)[1]
+ : '';
+ const author = item.find('.usr-pic a').last().text();
+ const link = item.find('.title a').attr('href') ?? item.find('.icon-topic a').attr('href');
+
return {
- title: item.find('.title a').first().text(),
- description: `作者:${item.find('.usr-pic a').last().text()}<br>描述:${item.find('.content p').text()}<br><img src="${itemPicUrl}">`,
- link: item.find('.title a').attr('href'),
+ title,
+ author,
+ description: art(path.join(__dirname, '../templates/explore.art'), {
+ author,
+ desc,
+ itemPic,
+ }),
+ link,
};
})
.get(),
diff --git a/lib/v2/douban/templates/explore.art b/lib/v2/douban/templates/explore.art
new file mode 100644
index 00000000000000..13d5b89c6def7a
--- /dev/null
+++ b/lib/v2/douban/templates/explore.art
@@ -0,0 +1,7 @@
+作者:{{author}}
+<br>
+描述:{{desc}}
+<br>
+{{ if itemPic }}
+<img src={{ itemPic }}>
+{{ /if }}
|
3a62de1cdcdd236b80b81e74e3d6a13653f244cb
|
2023-04-25 20:31:18
|
dependabot[bot]
|
chore(deps): bump lru-cache from 8.0.5 to 9.1.1 (#12383)
| false
|
bump lru-cache from 8.0.5 to 9.1.1 (#12383)
|
chore
|
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 8e8d14facf1035..bff1c5cf72b863 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -23,6 +23,8 @@ jobs:
node-version: 18
cache: 'yarn'
- run: yarn install
+ - run: yarn install
+ working-directory: ./docs
- run: npm run format
- name: Commit files
run: |
diff --git a/lib/middleware/cache/memory.js b/lib/middleware/cache/memory.js
index 671ac3cf134675..21dc9c7d41b253 100644
--- a/lib/middleware/cache/memory.js
+++ b/lib/middleware/cache/memory.js
@@ -1,9 +1,9 @@
-const Lru = require('lru-cache');
+const { LRUCache } = require('lru-cache');
const config = require('@/config').value;
const status = { available: false };
-const memoryCache = new Lru({
+const memoryCache = new LRUCache({
ttl: config.cache.routeExpire * 1000,
max: config.memory.max,
});
diff --git a/package.json b/package.json
index 56239a31e8854e..ddadb1325f6c31 100644
--- a/package.json
+++ b/package.json
@@ -107,7 +107,7 @@
"koa-basic-auth": "4.0.0",
"koa-favicon": "2.1.0",
"koa-mount": "4.0.0",
- "lru-cache": "8.0.5",
+ "lru-cache": "9.1.1",
"lz-string": "1.5.0",
"mailparser": "3.6.4",
"markdown-it": "13.0.1",
diff --git a/yarn.lock b/yarn.lock
index 2b50535bb84e0e..46e3420ae5d369 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4830,10 +4830,10 @@ lowercase-keys@^2.0.0:
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479"
integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==
[email protected]:
- version "8.0.5"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-8.0.5.tgz#983fe337f3e176667f8e567cfcce7cb064ea214e"
- integrity sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==
[email protected]:
+ version "9.1.1"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-9.1.1.tgz#c58a93de58630b688de39ad04ef02ef26f1902f1"
+ integrity sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A==
lru-cache@^4.0.1:
version "4.1.5"
|
cc01340fb4f3c8b62fb44152baf3ad072576decd
|
2019-09-15 21:08:05
|
DIYgod
|
fix(radar): pixiv rules
| false
|
pixiv rules
|
fix
|
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index 27c1d4254695ac..8410bd8c9269e7 100644
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -50,16 +50,6 @@
verification: (params) => params.uid,
},
],
- www: [
- {
- title: '博主',
- docs: 'https://docs.rsshub.app/social-media.html#%E5%BE%AE%E5%8D%9A',
- source: ['/u/:id', '/:id'],
- target: '/weibo/user/:uid',
- script: "({uid: document.querySelector('head').innerHTML.match(/\\$CONFIG\\['oid']='(\\d+)'/)[1]})",
- verification: (params) => params.uid,
- },
- ],
},
'pixiv.net': {
_name: 'Pixiv',
@@ -74,19 +64,17 @@
title: '用户动态',
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
source: '/member.php',
- target: (params, url) => `/pixiv/user/bookmarks/${new URL(url).searchParams.get('id')}`,
+ target: (params, url) => `/pixiv/user/${new URL(url).searchParams.get('id')}`,
},
{
title: '排行榜',
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
source: '/ranking.php',
- target: (params, url) => `/pixiv/user/bookmarks/${new URL(url).searchParams.get('id')}`,
},
{
title: '关键词',
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
source: '/search.php',
- target: (params, url) => `/pixiv/user/bookmarks/${new URL(url).searchParams.get('id')}`,
},
{
title: '关注的新作品',
|
7ea65c2509d7c5b5ff27d35181d0813cb2f7f0cd
|
2024-09-04 19:38:13
|
Keo
|
fix(route): tidy sis001 articles (#16619)
| false
|
tidy sis001 articles (#16619)
|
fix
|
diff --git a/lib/routes/sis001/author.ts b/lib/routes/sis001/author.ts
index 51fb8b03153abb..d724a0570eaf10 100644
--- a/lib/routes/sis001/author.ts
+++ b/lib/routes/sis001/author.ts
@@ -29,7 +29,7 @@ async function handler(ctx) {
const response = await got(url);
const $ = load(response.data);
- const username = $('div.username').text();
+ const username = $('div.bg div.title').text().replace('的个人空间', '');
let items = $('div.center_subject ul li a[href^=thread]')
.toArray()
diff --git a/lib/routes/sis001/common.ts b/lib/routes/sis001/common.ts
index 51632562b9a3ed..4e3e485a5ccfcb 100644
--- a/lib/routes/sis001/common.ts
+++ b/lib/routes/sis001/common.ts
@@ -22,8 +22,15 @@ async function getThread(item) {
),
8
);
- $('div[id^=postmessage_] table, fieldset, .posttags, strong').remove();
- item.description = $('div[id^=postmessage_]').eq(0).remove('strong').html() + ($('.defaultpost .postattachlist').html() ?? '');
+ $('div[id^=postmessage_] table, fieldset, .posttags, strong font').remove();
+ item.description =
+ $('div[id^=postmessage_]')
+ .eq(0)
+ .html()
+ ?.replaceAll('\n', '')
+ .replaceAll(/\u3000{2}.+?(((?:<br>){2})|( ))/g, (str) => `<p>${str.replaceAll('<br>', '')}</p>`)
+ .replaceAll(' ', '')
+ .replace(/^.+?((?:作者)|(?:<p>))/, '$1') + ($('.defaultpost .postattachlist').html() ?? '');
return item;
}
|
df51c93677e61ed9518dcf9c8985cd1a678f4a93
|
2024-04-24 15:03:56
|
NyaaaDoge
|
feat(route): add steam community hub (#15346)
| false
|
add steam community hub (#15346)
|
feat
|
diff --git a/lib/routes/steam/appcommunityfeed.ts b/lib/routes/steam/appcommunityfeed.ts
new file mode 100644
index 00000000000000..da93fb95f81b74
--- /dev/null
+++ b/lib/routes/steam/appcommunityfeed.ts
@@ -0,0 +1,92 @@
+import { Route } from '@/types';
+import { getCurrentPath } from '@/utils/helpers';
+const __dirname = getCurrentPath(import.meta.url);
+
+import ofetch from '@/utils/ofetch';
+import { art } from '@/utils/render';
+import path from 'node:path';
+
+const workshopFileTypes = {
+ 0: 'Community',
+ 1: 'Microtransaction',
+ 2: 'Collection',
+ 3: 'Art',
+ 4: 'Video',
+ 5: 'Screenshot',
+ 6: 'Game',
+ 7: 'Software',
+ 8: 'Concept',
+ 9: 'WebGuide',
+ 10: 'IntegratedGuide',
+ 11: 'Merch',
+ 12: 'ControllerBinding',
+ 13: 'SteamworksAccessInvite',
+ 14: 'SteamVideo',
+ 15: 'GameManagedItem',
+};
+
+export const route: Route = {
+ path: '/appcommunityfeed/:appid/:routeParams?',
+ categories: ['game'],
+ example: '/steam/appcommunityfeed/730',
+ parameters: {
+ appid: 'Steam appid, can be found on the community hub page or store page URL.',
+ routeParams: 'Query parameters.',
+ },
+ radar: [
+ {
+ title: 'Community Hub',
+ source: ['steamcommunity.com/app/:appid'],
+ target: '/appcommunityfeed/:appid',
+ },
+ {
+ title: 'Community Hub',
+ source: ['store.steampowered.com/app/:appid/*/'],
+ target: '/appcommunityfeed/:appid',
+ },
+ ],
+ description: `Query Parameters:
+
+| Name | Type | Description |
+| ---------------------- | ------ | ----------------------- |
+| p | string | p |
+| rgSections[] | string | rgSections |
+| filterLanguage | string | Filter Language |
+| languageTag | string | Language Tag |
+| nMaxInappropriateScore | string | Max Inappropriate Score |
+
+Example:
+- \`/appcommunityfeed/730/p=1&rgSections[]=2&rgSections[]=4&filterLanguage=english&languageTag=english&nMaxInappropriateScore=1\` for CS2 Screenshot and Artwork contents.
+- \`/appcommunityfeed/730/rgSections[]=6\` for CS2 Workshop contents only.
+- \`/appcommunityfeed/570/rgSections[]=3&rgSections[]=9\` for Dota2 Video and Guides contents.
+
+:::tip
+It can also access community hub contents that require a logged-in account.
+:::
+`,
+ name: 'Steam Community Hub Feeds',
+ maintainers: ['NyaaaDoge'],
+
+ handler: async (ctx) => {
+ const { appid = 730, routeParams } = ctx.req.param();
+
+ const baseUrl = 'https://steamcommunity.com';
+ const apiUrl = `${baseUrl}/library/appcommunityfeed/${appid}${routeParams ? `?${routeParams}` : ''}`;
+ const response = await ofetch(apiUrl);
+
+ return {
+ title: `${appid} Steam Community Hub`,
+ link: `https://steamcommunity.com/app/${appid}`,
+ item: response.hub.map((item) => ({
+ title: item.title === '' ? workshopFileTypes[item.type] : item.title,
+ link: `https://steamcommunity.com/sharedfiles/filedetails/?id=${item.published_file_id}`,
+ description: art(path.join(__dirname, 'templates/appcommunityfeed-description.art'), {
+ image: item.full_image_url,
+ description: item.description,
+ }),
+ author: item.creator.name,
+ category: workshopFileTypes[item.type],
+ })),
+ };
+ },
+};
diff --git a/lib/routes/steam/templates/appcommunityfeed-description.art b/lib/routes/steam/templates/appcommunityfeed-description.art
new file mode 100644
index 00000000000000..e77f842b8e8fb6
--- /dev/null
+++ b/lib/routes/steam/templates/appcommunityfeed-description.art
@@ -0,0 +1,4 @@
+{{ if image }}
+<img src="{{ image }}"/>
+{{ /if }}
+<p>{{ description }}</p>
|
dfc7a15f52c3ad9daa95ee021a112e88d5576e71
|
2024-06-27 18:56:16
|
Bendancom
|
feat(route): add journal《回归线》 (#15991)
| false
|
add journal《回归线》 (#15991)
|
feat
|
diff --git a/lib/routes/hypergryph/announce.ts b/lib/routes/hypergryph/arknights/announce.ts
similarity index 100%
rename from lib/routes/hypergryph/announce.ts
rename to lib/routes/hypergryph/arknights/announce.ts
diff --git a/lib/routes/hypergryph/arknights/arktca.ts b/lib/routes/hypergryph/arknights/arktca.ts
new file mode 100644
index 00000000000000..712ed338bcafd5
--- /dev/null
+++ b/lib/routes/hypergryph/arknights/arktca.ts
@@ -0,0 +1,124 @@
+import { Route } from '@/types';
+import got from '@/utils/got';
+import { load } from 'cheerio';
+import { parseDate } from '@/utils/parse-date';
+import cache from '@/utils/cache';
+
+const rssDescription = '期刊《回归线》 | 泰拉创作者联合会';
+const url = 'aneot.arktca.com';
+const author = 'Bendancom';
+
+export const route: Route = {
+ path: '/arknights/arktca',
+ categories: ['game'],
+ example: '/hypergryph/arknights/arktca',
+ parameters: {},
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ name: '期刊',
+ url,
+ maintainers: [author],
+ radar: [
+ {
+ source: [url],
+ },
+ ],
+ description: rssDescription,
+ handler,
+};
+
+async function handler() {
+ const baseUrl = `https://${url}`;
+ const { data: allResponse } = await got(`${baseUrl}/posts`);
+ const $ = load(allResponse);
+
+ const allUrlList = $('div.theme-hope-content > table')
+ .find('a')
+ .toArray()
+ .map((item) => baseUrl + $(item).prop('href'));
+
+ const journalList = await Promise.all(
+ allUrlList.map(async (item) => {
+ const { data: response } = await got(item);
+ const $$ = load(response);
+ const regVol = /(?<=Vol. )(\w+)/;
+ const match = regVol.exec($$('div.vp-page-title').find('h1').text());
+ const volume = match ? match[0] : '';
+ const links = $$('div.theme-hope-content > ul a')
+ .toArray()
+ .map((e) => baseUrl + $(e).prop('href'));
+ return {
+ volume,
+ links,
+ };
+ })
+ );
+
+ const journals = await Promise.all(
+ journalList.map(
+ async (item) =>
+ await Promise.all(
+ item.links.map((link) =>
+ cache.tryGet(link, async () => {
+ const { data: response } = await got(link);
+ const $$ = load(response);
+
+ $$('div.ads-container').remove();
+ const language = $$('html').prop('lang');
+
+ const pageTitle = $$('div.vp-page-title');
+
+ const title = `Vol.${item.volume} ` + pageTitle.children('h1').text();
+ const pageInfo = pageTitle.children('div.page-info');
+
+ const pageAuthorInfo = pageInfo.children('span.page-author-info');
+ const author = pageAuthorInfo.find('span.page-author-item').text();
+
+ const pageDateInfo = pageInfo.children('span.page-date-info');
+ const date = pageDateInfo.children('meta').prop('content');
+ const pubDate = parseDate(date);
+
+ const pageCategoryInfo = pageInfo.find('span.page-category-info');
+ const category = pageCategoryInfo.children('meta').prop('content');
+
+ const article = $$('div.theme-hope-content');
+ const description = article.html();
+
+ const comments = Number.parseInt($$('span.wl-num').text());
+ return {
+ title,
+ language,
+ author,
+ pubDate,
+ category,
+ description,
+ comments,
+ guid: link,
+ link,
+ };
+ })
+ )
+ )
+ )
+ );
+
+ const logoUrl = `${baseUrl}/logo.svg`;
+
+ return {
+ title: '回归线',
+ link: baseUrl,
+ description: rssDescription,
+ icon: logoUrl,
+ logo: logoUrl,
+ image: logoUrl,
+ author,
+ language: 'zh-CN',
+ item: journals.flat(Infinity),
+ };
+}
diff --git a/lib/routes/hypergryph/japan.ts b/lib/routes/hypergryph/arknights/japan.ts
similarity index 100%
rename from lib/routes/hypergryph/japan.ts
rename to lib/routes/hypergryph/arknights/japan.ts
diff --git a/lib/routes/hypergryph/news.ts b/lib/routes/hypergryph/arknights/news.ts
similarity index 100%
rename from lib/routes/hypergryph/news.ts
rename to lib/routes/hypergryph/arknights/news.ts
|
114d6e076600b00aef5b53fccdc07b0533631014
|
2024-07-17 16:30:32
|
dependabot[bot]
|
chore(deps): bump tldts from 6.1.31 to 6.1.32 (#16192)
| false
|
bump tldts from 6.1.31 to 6.1.32 (#16192)
|
chore
|
diff --git a/package.json b/package.json
index 5b34788787ee8d..c042aaa29aa514 100644
--- a/package.json
+++ b/package.json
@@ -122,7 +122,7 @@
"telegram": "2.22.2",
"tiny-async-pool": "2.1.0",
"title": "3.5.3",
- "tldts": "6.1.31",
+ "tldts": "6.1.32",
"tosource": "2.0.0-alpha.3",
"tough-cookie": "4.1.4",
"tsx": "4.16.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 73b7c7e81e2087..989b3649423041 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -43,7 +43,7 @@ importers:
version: 2.2.3
'@scalar/hono-api-reference':
specifier: 0.5.107
- version: 0.5.107([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
+ version: 0.5.107([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
'@sentry/node':
specifier: 7.116.0
version: 7.116.0
@@ -225,8 +225,8 @@ importers:
specifier: 3.5.3
version: 3.5.3
tldts:
- specifier: 6.1.31
- version: 6.1.31
+ specifier: 6.1.32
+ version: 6.1.32
tosource:
specifier: 2.0.0-alpha.3
version: 2.0.0-alpha.3
@@ -1367,20 +1367,20 @@ packages:
resolution: {integrity: sha512-DnIVVAiXR4tfWERTiQxr1Prrs/uFEbC1C4gTGORMvbF4k7ENyVQeLcoUfNyhlAj2MB/OeorCrN3wSnYuDOUS6Q==}
engines: {node: '>=8.0.0'}
- '@inquirer/[email protected]':
- resolution: {integrity: sha512-nbLSX37b2dGPtKWL3rPuR/5hOuD30S+pqJ/MuFiUEgN6GiMs8UMxiurKAMDzKt6C95ltjupa8zH6+3csXNHWpA==}
+ '@inquirer/[email protected]':
+ resolution: {integrity: sha512-CiLGi3JmKGEsia5kYJN62yG/njHydbYIkzSBril7tCaKbsnIqxa2h/QiON9NjfwiKck/2siosz4h7lVhLFocMQ==}
engines: {node: '>=18'}
- '@inquirer/[email protected]':
- resolution: {integrity: sha512-nguvH3TZar3ACwbytZrraRTzGqyxJfYJwv+ZwqZNatAosdWQMP1GV8zvmkNlBe2JeZSaw0WYBHZk52pDpWC9qA==}
+ '@inquirer/[email protected]':
+ resolution: {integrity: sha512-p2BRZv/vMmpwlU4ZR966vKQzGVCi4VhLjVofwnFLziTQia541T7i1Ar8/LPh+LzjkXzocme+g5Io6MRtzlCcNA==}
engines: {node: '>=18'}
- '@inquirer/[email protected]':
- resolution: {integrity: sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==}
+ '@inquirer/[email protected]':
+ resolution: {integrity: sha512-R7Gsg6elpuqdn55fBH2y9oYzrU/yKrSmIsDX4ROT51vohrECFzTf2zw9BfUbOW8xjfmM2QbVoVYdTwhrtEKWSQ==}
engines: {node: '>=18'}
- '@inquirer/[email protected]':
- resolution: {integrity: sha512-AjOqykVyjdJQvtfkNDGUyMYGF8xN50VUxftCQWsOyIo4DFRLr6VQhW0VItGI1JIyQGCGgIpKa7hMMwNhZb4OIw==}
+ '@inquirer/[email protected]':
+ resolution: {integrity: sha512-L/UdayX9Z1lLN+itoTKqJ/X4DX5DaWu2Sruwt4XgZzMNv32x4qllbzMX4MbJlz0yxAQtU19UvABGOjmdq1u3qA==}
engines: {node: '>=18'}
'@internationalized/[email protected]':
@@ -2092,12 +2092,15 @@ packages:
'@types/[email protected]':
resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
- '@types/[email protected]':
- resolution: {integrity: sha512-nPwTRDKUctxw3di5b4TfT3I0sWDiWoPQCZjXhvdkINntwr8lcoVCKsTgnXeRubKIlfnV+eN/HYk6Jb40tbcEAQ==}
+ '@types/[email protected]':
+ resolution: {integrity: sha512-MIxieZHrm4Ee8XArBIc+Or9HINt2StOmCbgRcXGSJl8q14svRvkZPe7LJq9HKtTI1SK3wU8b91TjntUm7T69Pg==}
'@types/[email protected]':
resolution: {integrity: sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==}
+ '@types/[email protected]':
+ resolution: {integrity: sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==}
+
'@types/[email protected]':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -3316,8 +3319,8 @@ packages:
[email protected]:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- [email protected]:
- resolution: {integrity: sha512-QOIJiWpQJDHAVO4P58pwb133Cwee0nbvy/MV1CwzZVGpkH1RX33N3vsaWRCpR6bF63AAq366neZrRTu7Qlsbbw==}
+ [email protected]:
+ resolution: {integrity: sha512-5qp1N2POAfW0u1qGAxXEtz6P7bO1m6gpZr5hdf5ve6lxpLM7MpiM4jIPz7xcrNlClQMafbyUDDWjlIQZ1Mw0Rw==}
[email protected]:
resolution: {integrity: sha512-5gxbEjcb/Z2n6TTmXZx9wVi3N/DOzE7RXY3Xg9dakDuhX/izwumB9rGjeWUV6dTA0D0+juvo+JonZgNR9sgA5A==}
@@ -5180,8 +5183,8 @@ packages:
resolution: {integrity: sha512-vv8fJuOUCCvSPjDjBLlMqYMHob4aGjkmrkaE42/mZr0VT+ZAU10jRF8oTnX9+pgU9/vYJ8P7YT3Vd6ajkmzSCw==}
engines: {node: '>=0.12'}
- [email protected]:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ [email protected]:
+ resolution: {integrity: sha512-Ww6ZlOiEQfPfXM45v17oabk77Z7mg5bOt7AjDyzy7RjK9OrLrLC8dyZQoAPEOtFX9SaNf1Tdvr5gRJWdTJj7GA==}
[email protected]:
resolution: {integrity: sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==}
@@ -6049,8 +6052,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- [email protected]:
- resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ [email protected]:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
@@ -6365,8 +6368,8 @@ packages:
[email protected]:
resolution: {integrity: sha512-49AwoOQNKdqKPd9CViyH5wJoSKsCDjUlzL8DxuGp3P1FsGY36NJDAa18jLZcaHAUUuTj+JB8IAo8zWgBNvBF7A==}
- [email protected]:
- resolution: {integrity: sha512-DlTxttYcogpDfx3tf/8jfnma1nfAYi2cBUYV2YNoPPecwmO3YGiFlOX9D8tGAu+EDF38ryBzvrDKU/BLMsUwbw==}
+ [email protected]:
+ resolution: {integrity: sha512-1uRHzPB+Vzu57ocybfZ4jh5Q3SdlH7XW23J5sQoM9LhE9eIOlzxer/3XPSsycvih3rboRsvt0QCmzSrqyOYUIA==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -6473,11 +6476,11 @@ packages:
resolution: {integrity: sha512-YY4ei7K7gPGifqNSrfMaPdqTqiHcwYKUJ7zhLqQOK2ildlGgti5TSwJiXXN1YqG17I2GYZh5cZqv2r5fwBUM+w==}
hasBin: true
- [email protected]:
- resolution: {integrity: sha512-IdTd0OpW2qgG1mbFxoXp14ohLNO6KP+H3htsNb3pk2FF8m21vvIaDlTWmKBR+UnZmXkSFOfZYYeswPAjSoHs+g==}
+ [email protected]:
+ resolution: {integrity: sha512-XfnnY74YWMBfE6BNpi33GCpjzw0lJUUmUW+bKukARTD4IChV9plBnu4wRvl/rN8mnoXA+xAEpVN8XfmtKvQWlA==}
- [email protected]:
- resolution: {integrity: sha512-x4Kp6r2VwnkLYwWVXs/wi4j7QN9w1XPzEDZtDpHY8LEBM/E2TwlR7rT1mqpINUZ/r+dmuVo9+CtdPPk+ia7OHA==}
+ [email protected]:
+ resolution: {integrity: sha512-M5zZuEGvVz6YAwt3w93zhtBXbW0K4KF4ejzuBULyVp40u/FTQVpLj01zwYTlUkgYqYprTqxCfQFfZSWgz5fJnw==}
hasBin: true
[email protected]:
@@ -6628,8 +6631,8 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- [email protected]:
- resolution: {integrity: sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==}
+ [email protected]:
+ resolution: {integrity: sha512-hxMO1k4ip1uTVGgPbs1hVpYyhz2P91A6tQyH2H9POx3U6T3MdhIcfY8L2hRu/LRmzPFdfduOS0RIDjFlP2urPw==}
engines: {node: '>=16'}
[email protected]:
@@ -6650,8 +6653,8 @@ packages:
[email protected]:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
- [email protected]:
- resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
+ [email protected]:
+ resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
[email protected]:
resolution: {integrity: sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==}
@@ -8237,9 +8240,9 @@ snapshots:
- '@vue/composition-api'
- vue
- '@headlessui/[email protected]([email protected])':
+ '@headlessui/[email protected]([email protected])':
dependencies:
- tailwindcss: 3.4.5
+ tailwindcss: 3.4.6
'@headlessui/[email protected]([email protected]([email protected]))':
dependencies:
@@ -8279,17 +8282,17 @@ snapshots:
chalk: 2.4.2
lodash: 4.17.21
- '@inquirer/[email protected]':
+ '@inquirer/[email protected]':
dependencies:
- '@inquirer/core': 9.0.2
- '@inquirer/type': 1.4.0
+ '@inquirer/core': 9.0.3
+ '@inquirer/type': 1.5.0
- '@inquirer/[email protected]':
+ '@inquirer/[email protected]':
dependencies:
- '@inquirer/figures': 1.0.3
- '@inquirer/type': 1.4.0
+ '@inquirer/figures': 1.0.4
+ '@inquirer/type': 1.5.0
'@types/mute-stream': 0.0.4
- '@types/node': 20.14.10
+ '@types/node': 20.14.11
'@types/wrap-ansi': 3.0.0
ansi-escapes: 4.3.2
cli-spinners: 2.9.2
@@ -8300,9 +8303,9 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
- '@inquirer/[email protected]': {}
+ '@inquirer/[email protected]': {}
- '@inquirer/[email protected]':
+ '@inquirer/[email protected]':
dependencies:
mute-stream: 1.0.0
@@ -8399,7 +8402,7 @@ snapshots:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.2
+ semver: 7.6.3
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -8698,9 +8701,9 @@ snapshots:
'@rollup/[email protected]':
optional: true
- '@scalar/[email protected]([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
+ '@scalar/[email protected]([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
dependencies:
- '@headlessui/tailwindcss': 0.2.1([email protected])
+ '@headlessui/tailwindcss': 0.2.1([email protected])
'@headlessui/vue': 1.7.22([email protected]([email protected]))
'@scalar/components': 0.12.14([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
'@scalar/draggable': 0.1.3([email protected])
@@ -8735,11 +8738,11 @@ snapshots:
- typescript
- vitest
- '@scalar/[email protected]([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
+ '@scalar/[email protected]([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
dependencies:
'@floating-ui/vue': 1.1.1([email protected]([email protected]))
'@headlessui/vue': 1.7.22([email protected]([email protected]))
- '@scalar/api-client': 2.0.22([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
+ '@scalar/api-client': 2.0.22([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
'@scalar/components': 0.12.14([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
'@scalar/oas-utils': 0.2.13([email protected])
'@scalar/openapi-parser': 0.7.2
@@ -8824,9 +8827,9 @@ snapshots:
transitivePeerDependencies:
- typescript
- '@scalar/[email protected]([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
+ '@scalar/[email protected]([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))':
dependencies:
- '@scalar/api-reference': 1.24.46([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
+ '@scalar/api-reference': 1.24.46([email protected])([email protected](@babel/[email protected](@babel/[email protected]))([email protected])([email protected]))([email protected])([email protected])([email protected](@types/[email protected])([email protected]([email protected])([email protected])))
hono: 4.4.13
transitivePeerDependencies:
- '@jest/globals'
@@ -9020,7 +9023,7 @@ snapshots:
dependencies:
'@storybook/csf': 0.1.11
'@types/express': 4.17.21
- '@types/node': 18.19.39
+ '@types/node': 18.19.40
browser-assert: 1.2.1
esbuild: 0.21.5
esbuild-register: 3.5.0([email protected])
@@ -9297,7 +9300,7 @@ snapshots:
'@types/node': 20.14.10
form-data: 4.0.0
- '@types/[email protected]':
+ '@types/[email protected]':
dependencies:
undici-types: 5.26.5
@@ -9305,6 +9308,10 @@ snapshots:
dependencies:
undici-types: 5.26.5
+ '@types/[email protected]':
+ dependencies:
+ undici-types: 5.26.5
+
'@types/[email protected]': {}
'@types/[email protected]': {}
@@ -9432,7 +9439,7 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.2
+ semver: 7.6.3
ts-api-utils: 1.3.0([email protected])
optionalDependencies:
typescript: 5.5.3
@@ -9969,8 +9976,8 @@ snapshots:
[email protected]:
dependencies:
caniuse-lite: 1.0.30001642
- electron-to-chromium: 1.4.828
- node-releases: 2.0.14
+ electron-to-chromium: 1.4.829
+ node-releases: 2.0.17
update-browserslist-db: 1.1.0([email protected])
[email protected]: {}
@@ -10635,11 +10642,11 @@ snapshots:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.6.2
+ semver: 7.6.3
[email protected]: {}
- [email protected]: {}
+ [email protected]: {}
[email protected]: {}
@@ -10771,7 +10778,7 @@ snapshots:
[email protected]([email protected]):
dependencies:
eslint: 9.7.0
- semver: 7.6.2
+ semver: 7.6.3
[email protected]([email protected]):
dependencies:
@@ -10818,7 +10825,7 @@ snapshots:
globals: 15.8.0
ignore: 5.3.1
minimatch: 9.0.5
- semver: 7.6.2
+ semver: 7.6.3
[email protected](@types/[email protected])([email protected]([email protected]))([email protected])([email protected]):
dependencies:
@@ -10847,7 +10854,7 @@ snapshots:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.6.2
+ semver: 7.6.3
strip-indent: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -11528,7 +11535,7 @@ snapshots:
lowercase-keys: 3.0.0
p-cancelable: 4.0.1
responselike: 3.0.0
- type-fest: 4.21.0
+ type-fest: 4.22.0
[email protected]: {}
@@ -12483,7 +12490,7 @@ snapshots:
[email protected]:
dependencies:
- semver: 7.6.2
+ semver: 7.6.3
[email protected]: {}
@@ -12896,7 +12903,7 @@ snapshots:
acorn: 8.12.1
pathe: 1.1.2
pkg-types: 1.1.3
- ufo: 1.5.3
+ ufo: 1.5.4
[email protected]: {}
@@ -12916,7 +12923,7 @@ snapshots:
dependencies:
'@bundled-es-modules/cookie': 2.0.0
'@bundled-es-modules/statuses': 1.0.1
- '@inquirer/confirm': 3.1.14
+ '@inquirer/confirm': 3.1.15
'@mswjs/cookies': 1.1.1
'@mswjs/interceptors': 0.29.1
'@open-draft/until': 2.1.0
@@ -12929,7 +12936,7 @@ snapshots:
outvariant: 1.4.3
path-to-regexp: 6.2.2
strict-event-emitter: 0.5.1
- type-fest: 4.21.0
+ type-fest: 4.22.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.5.3
@@ -12980,7 +12987,7 @@ snapshots:
dependencies:
write-file-atomic: 1.3.4
- [email protected]: {}
+ [email protected]: {}
[email protected]: {}
@@ -13048,7 +13055,7 @@ snapshots:
execa: 8.0.1
pathe: 1.1.2
pkg-types: 1.1.3
- ufo: 1.5.3
+ ufo: 1.5.4
[email protected]: {}
@@ -13064,7 +13071,7 @@ snapshots:
dependencies:
destr: 2.0.3
node-fetch-native: 1.6.4
- ufo: 1.5.3
+ ufo: 1.5.4
[email protected]: {}
@@ -13956,7 +13963,7 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- [email protected]: {}
+ [email protected]: {}
[email protected]:
dependencies:
@@ -14170,7 +14177,7 @@ snapshots:
ora: 5.4.1
prettier: 3.3.3
prompts: 2.4.2
- semver: 7.6.2
+ semver: 7.6.3
strip-json-comments: 3.1.1
tempy: 3.1.0
tiny-invariant: 1.3.3
@@ -14324,7 +14331,7 @@ snapshots:
[email protected]: {}
- [email protected]:
+ [email protected]:
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -14472,11 +14479,11 @@ snapshots:
[email protected]: {}
- [email protected]: {}
+ [email protected]: {}
- [email protected]:
+ [email protected]:
dependencies:
- tldts-core: 6.1.31
+ tldts-core: 6.1.32
[email protected]:
dependencies:
@@ -14589,7 +14596,7 @@ snapshots:
[email protected]: {}
- [email protected]: {}
+ [email protected]: {}
[email protected]:
dependencies:
@@ -14606,7 +14613,7 @@ snapshots:
[email protected]: {}
- [email protected]: {}
+ [email protected]: {}
[email protected]:
dependencies:
|
dab3e9497c6d33d760dd533f5ec56add79cf966f
|
2021-11-28 05:34:40
|
dependabot[bot]
|
chore(deps): bump codecov/codecov-action from 1 to 2.1.0 (#8601)
| false
|
bump codecov/codecov-action from 1 to 2.1.0 (#8601)
|
chore
|
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index eb256d3d61d2a8..8fae4de5bcb144 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -29,6 +29,6 @@ jobs:
REDIS_URL: redis://localhost:${{ job.services.redis.ports[6379] }}/
- run: npm run docs:build
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v1
+ uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
|
114d05832717267db45080e95d82a79106751ae9
|
2025-03-03 16:41:23
|
dependabot[bot]
|
chore(deps): bump @hono/zod-openapi from 0.18.4 to 0.19.2 (#18498)
| false
|
bump @hono/zod-openapi from 0.18.4 to 0.19.2 (#18498)
|
chore
|
diff --git a/package.json b/package.json
index 5b970cb0939df4..5140aadb362d97 100644
--- a/package.json
+++ b/package.json
@@ -53,7 +53,7 @@
"@bbob/html": "4.2.0",
"@bbob/preset-html5": "4.2.0",
"@hono/node-server": "1.13.8",
- "@hono/zod-openapi": "0.18.4",
+ "@hono/zod-openapi": "0.19.2",
"@notionhq/client": "2.2.16",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-prometheus": "0.57.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0830dd7329c4f0..8589c1068f717e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -27,8 +27,8 @@ importers:
specifier: 1.13.8
version: 1.13.8([email protected])
'@hono/zod-openapi':
- specifier: 0.18.4
- version: 0.18.4([email protected])([email protected])
+ specifier: 0.19.2
+ version: 0.19.2([email protected])([email protected])
'@notionhq/client':
specifier: 2.2.16
version: 2.2.16
@@ -1392,8 +1392,8 @@ packages:
peerDependencies:
hono: ^4
- '@hono/[email protected]':
- resolution: {integrity: sha512-6NHMHU96Hh32B1yDhb94Z4Z5/POsmEu2AXpWLWcBq9arskRnOMt2752yEoXoADV8WUAc7H1IkNaQHGj1ytXbYw==}
+ '@hono/[email protected]':
+ resolution: {integrity: sha512-lkFa6wdQVgY7d7/m++Ixr3hvKCF5Y+zjTIPM37fex5ylCfX53A/W28gZRDuFZx3aR+noKob7lHfwdk9dURLzxw==}
engines: {node: '>=16.0.0'}
peerDependencies:
hono: '>=4.3.6'
@@ -7055,7 +7055,7 @@ snapshots:
dependencies:
hono: 4.7.2
- '@hono/[email protected]([email protected])([email protected])':
+ '@hono/[email protected]([email protected])([email protected])':
dependencies:
'@asteasolutions/zod-to-openapi': 7.3.0([email protected])
'@hono/zod-validator': 0.4.3([email protected])([email protected])
|
db474c726fc015d2a821c26c8070ae870dbc57a8
|
2019-03-04 16:34:33
|
Henry Wang
|
fix: filter out paid articles (#1659)
| false
|
filter out paid articles (#1659)
|
fix
|
diff --git a/lib/routes/leetcode/articles.js b/lib/routes/leetcode/articles.js
index 4a6679c4bab5e1..6ed0d7b320d40b 100644
--- a/lib/routes/leetcode/articles.js
+++ b/lib/routes/leetcode/articles.js
@@ -11,15 +11,21 @@ module.exports = async (ctx) => {
const list = $('a.list-group-item')
.slice(0, 10)
+ .filter((i, e) => $(e).find('h4.media-heading i').length === 0)
.map(function() {
const info = {
title: $(this)
.find('h4.media-heading')
+ .text()
+ .trim(),
+ author: $(this)
+ .find('.text-500')
.text(),
link: $(this).attr('href'),
date: $(this)
.find('p.pull-right.media-date strong')
- .text(),
+ .text()
+ .trim(),
};
return info;
})
@@ -27,8 +33,6 @@ module.exports = async (ctx) => {
const out = await Promise.all(
list.map(async (info) => {
- const title = info.title;
- const date = info.date;
const itemUrl = url.resolve(host, info.link);
const cache = await ctx.cache.get(itemUrl);
@@ -47,19 +51,22 @@ module.exports = async (ctx) => {
.trim();
const single = {
- title: title,
+ title: info.title,
+ author: info.author,
link: itemUrl,
- description: description,
- pubDate: new Date(date).toUTCString(),
+ description,
+ pubDate: new Date(info.date).toUTCString(),
};
+
ctx.cache.set(itemUrl, JSON.stringify(single), 24 * 60 * 60);
return Promise.resolve(single);
})
);
ctx.state.data = {
- title: 'leetcode文章',
- link: link,
+ title: 'LeetCode Articles',
+ description: 'LeetCode Articles, the only official solutions you will find.',
+ link,
item: out,
};
};
|
8c9dcc549787432fbf431b95c5122ba28d5650d0
|
2019-10-12 16:38:03
|
DIYgod
|
docs: fix typo
| false
|
fix typo
|
docs
|
diff --git a/docs/social-media.md b/docs/social-media.md
index a92aed9bab0ef0..b772f2a1d4f512 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -344,6 +344,10 @@ pageClass: routes
<Route author="DIYgod" example="/telegram/stickerpack/DIYgod" path="/telegram/stickerpack/:name" :paramsDesc="['贴纸包 id, 可在分享贴纸获得的 URL 中找到']"/>
+### Telegram Blog
+
+<Route author="fengkx" example="/telegram/blog" path="/telegram/blog" />
+
## Twitter
### 用户时间线
@@ -360,10 +364,6 @@ pageClass: routes
:::
-### Telegram Blog
-
-<Route author="fengkx" example="/telegram/blog" path="/telegram/blog" />
-
</Route>
### 列表时间线
|
221fe4dfa4dc5420f1fae43e646b84604b13cdd7
|
2019-03-22 22:11:23
|
DIYgod
|
docs: support, close #1788
| false
|
support, close #1788
|
docs
|
diff --git a/README.md b/README.md
index be4c8759e9f00f..76632878b4cbec 100644
--- a/README.md
+++ b/README.md
@@ -65,21 +65,19 @@ RSSHub 是采用 MIT 许可的开源项目,使用完全免费。 但是随着
你可以通过下列的方法来赞助 RSSHub 的开发。
-### 一次性赞助
+## 周期性赞助
-我们通过以下方式接受赞助:
+周期性赞助可以获得额外的回报, 比如更快的 GitHub 响应或者你的名字会出现在 RSSHub 的 GitHub 仓库和现在我们的官网中.
-- [微信支付](https://i.imgur.com/aq6PtWa.png)
-- [支付宝](https://i.imgur.com/wv1Pj2k.png)
-- [Paypal](https://www.paypal.me/DIYgod)
-- 比特币: 13CwQLHzPYm2tewNMSJBeArbbRM5NSmCD1
+- 通过 [Patreon](https://www.patreon.com/DIYgod) 赞助
+- 给我们发邮件联系赞助事宜: i#diygod.me
-### 周期性赞助
+## 一次性赞助
-周期性赞助可以获得额外的回报,比如更快的 GitHub 响应或者你的名字会出现在 RSSHub 的 GitHub 仓库和现在我们的官网中。
+我们通过以下方式接受赞助 :
-- 通过 [Patreon](https://www.patreon.com/DIYgod) 赞助成为 backer 或 sponsor
-- 给我们发邮件联系赞助事宜: i#diygod.me
+- [微信支付](https://i.loli.net/2019/03/23/5c950ebbc373e.png)
+- [支付宝](https://i.loli.net/2019/03/23/5c950ebbc980e.png)
## 相关项目
diff --git a/docs/en/support/README.md b/docs/en/support/README.md
index 2ca3da9eda341f..b2219116413455 100644
--- a/docs/en/support/README.md
+++ b/docs/en/support/README.md
@@ -8,18 +8,17 @@ RSSHub is open source and completely free under the MIT license. However, just l
You can support RSSHub via donations.
-## One-time Donation
-
-We accept donations via the following ways:
-
-- [WeChat Pay](https://i.imgur.com/aq6PtWa.png)
-- [Alipay](https://i.imgur.com/wv1Pj2k.png)
-- [Paypal](https://www.paypal.me/DIYgod)
-- Bitcoin: 13CwQLHzPYm2tewNMSJBeArbbRM5NSmCD1
-
## Recurring Donation
Recurring donors will be rewarded via express issue response, or even have your name displayed on our GitHub page and website.
- Become a Backer or a Sponser on [Patreon](https://www.patreon.com/DIYgod)
- Contact us directly: i#diygod.me
+
+## One-time Donation
+
+We accept donations via the following ways:
+
+- [WeChat Pay](https://i.loli.net/2019/03/23/5c950ebbc373e.png)
+- [Alipay](https://i.loli.net/2019/03/23/5c950ebbc980e.png)
+- [Paypal](https://www.paypal.me/DIYgod)
diff --git a/docs/support/README.md b/docs/support/README.md
index d8b33af6cabb25..c6db28c5f08f60 100644
--- a/docs/support/README.md
+++ b/docs/support/README.md
@@ -8,18 +8,16 @@ RSSHub 是采用 MIT 许可的开源项目, 使用完全免费. 但是随着项
你可以通过下列的方法来赞助 RSSHub 的开发.
-## 一次性赞助
-
-我们通过以下方式接受赞助 :
-
-- [微信支付](https://i.imgur.com/aq6PtWa.png)
-- [支付宝](https://i.imgur.com/wv1Pj2k.png)
-- [Paypal](https://www.paypal.me/DIYgod)
-- 比特币: 13CwQLHzPYm2tewNMSJBeArbbRM5NSmCD1
-
## 周期性赞助
周期性赞助可以获得额外的回报, 比如更快的 GitHub 响应或者你的名字会出现在 RSSHub 的 GitHub 仓库和现在我们的官网中.
-- 通过 [Patreon](https://www.patreon.com/DIYgod) 赞助成为 backer 或 sponsor
+- 通过 [Patreon](https://www.patreon.com/DIYgod) 赞助
- 给我们发邮件联系赞助事宜: i#diygod.me
+
+## 一次性赞助
+
+我们通过以下方式接受赞助 :
+
+- [微信支付](https://i.loli.net/2019/03/23/5c950ebbc373e.png)
+- [支付宝](https://i.loli.net/2019/03/23/5c950ebbc980e.png)
|
60c611ec82dd5a8ba0bc7d79e14e4b5ff1644ad9
|
2020-08-23 01:47:36
|
Altair
|
fix: #4788 rss of zhihu answers not working. (#5483)
| false
|
#4788 rss of zhihu answers not working. (#5483)
|
fix
|
diff --git a/lib/routes/zhihu/answers.js b/lib/routes/zhihu/answers.js
index 8bd513a0ea51df..57ad6dbbbd7f66 100644
--- a/lib/routes/zhihu/answers.js
+++ b/lib/routes/zhihu/answers.js
@@ -1,16 +1,38 @@
const got = require('@/utils/got');
const utils = require('./utils');
+const crypto = require('crypto');
+const jsencrypt = require('./execlib/jsencrypt');
module.exports = async (ctx) => {
const id = ctx.params.id;
+ const d_c0 = await getDC0FromCookies(id);
+
+ const zst81 =
+ '3_2.0ae3TnRUTEvOOUCNMTQnTSHUZo02p-HNMZBO8YD_q2Xtuo_Y0K6P0E6uy-LS9-hp1DufI-we8gGHPgJO1xuPZ0GxCTJHR7820XM20cLRGDJXfgGCBxupMuD_Ic4cpr4w0mRPO7HoY70SfquPmz93mhDQyiqV9ebO1hwOYiiR0ELYuUrxmtDomqU7ynXtOnAoTh_PhRDSTF82VVh29ZhFL1bUYbLgszUc04wFMCrLf9ucOA9HYMGVmzDwyJG2_tJSC4CeTveg11UY9qcX0DhoY2eS1u9efxCVqxGYMhrxyqh2pwucY8bSBwge0Vbx8fBtYWuVMcqumUqSBchLCzJLOErpL3hepEgHfyuYBZrx9oBo1o7NY7CL_fh90Vqkwq9COGMVYzc9BnugLJCw9-GXmShgO0h3KHU2YsQx0zqxY8DNmuUwOMwt1oMOOQvN_iBg8ZqVBtbo_rDwVQvw1JUNmZcN_wBSBAD3KwqN83rO0QTLsWwYC';
+ const zse83 = '3_2.0';
+
+ const path = `/api/v4/members/${id}/answers?include=data%5B*%5D.is_normal%2Cadmin_closed_comment%2Creward_info%2Cis_collapsed%2Cannotation_action%2Cannotation_detail%2Ccollapse_reason%2Ccollapsed_by%2Csuggest_edit%2Ccomment_count%2Ccan_comment%2Ccontent%2Ceditable_content%2Cvoteup_count%2Creshipment_settings%2Ccomment_permission%2Cmark_infos%2Ccreated_time%2Cupdated_time%2Creview_info%2Cexcerpt%2Cis_labeled%2Clabel_info%2Crelationship.is_authorized%2Cvoting%2Cis_author%2Cis_thanked%2Cis_nothelp%2Cis_recognized%3Bdata%5B*%5D.author.badge%5B%3F(type%3Dbest_answerer)%5D.topics%3Bdata%5B*%5D.question.has_publishing_draft%2Crelationship&offset=0&limit=20&sort_by=created`;
+ const currenURI = `https://www.zhihu.com/people/${id}/answers`;
+
+ const tmp = [zse83, path, currenURI, d_c0, zst81].join('+');
+ const md5 = crypto.createHash('md5');
+ const signature = jsencrypt(md5.update(tmp).digest('hex'));
+
+ const xzseHeaders = {
+ 'x-zse-83': zse83,
+ 'x-zse-86': '1.0_' + signature,
+ 'x-zst-81': zst81,
+ };
+
const response = await got({
method: 'get',
- url: `https://www.zhihu.com/api/v4/members/${id}/answers?include=data%5B*%5D.is_normal%2Cadmin_closed_comment%2Creward_info%2Cis_collapsed%2Cannotation_action%2Cannotation_detail%2Ccollapse_reason%2Ccollapsed_by%2Csuggest_edit%2Ccomment_count%2Ccan_comment%2Ccontent%2Cvoteup_count%2Creshipment_settings%2Ccomment_permission%2Cmark_infos%2Ccreated_time%2Cupdated_time%2Creview_info%2Cquestion%2Cexcerpt%2Crelationship.is_authorized%2Cvoting%2Cis_author%2Cis_thanked%2Cis_nothelp%3Bdata%5B*%5D.author.badge%5B%3F(type%3Dbest_answerer)%5D.topics&offset=0&limit=7&sort_by=created`,
+ url: `https://www.zhihu.com${path}`,
headers: {
...utils.header,
+ ...xzseHeaders,
Referer: `https://www.zhihu.com/people/${id}/answers`,
- Authorization: 'oauth c3cef7c66a1843f8b3a9e6a1e3160e20', // hard-coded in js
+ cookie: `d_c0=${d_c0}`,
},
});
@@ -30,3 +52,19 @@ module.exports = async (ctx) => {
})),
};
};
+
+async function getDC0FromCookies(id) {
+ const url = `https://www.zhihu.com/people/${id}`;
+ const response = await got({
+ method: 'get',
+ url,
+ headers: {
+ ...utils.header,
+ },
+ });
+
+ const targetCookies = (response.headers['set-cookie'] || []).filter((c) => /d_c0=([^;]+)/.test(c));
+ const matchResult = (targetCookies[0] || '').match(new RegExp('d_c0=([^;]+)'));
+
+ return matchResult[1] || '';
+}
diff --git a/lib/routes/zhihu/execlib/jsencrypt.js b/lib/routes/zhihu/execlib/jsencrypt.js
new file mode 100644
index 00000000000000..73bb6da2436c61
--- /dev/null
+++ b/lib/routes/zhihu/execlib/jsencrypt.js
@@ -0,0 +1,380 @@
+/**
+ * Generate x-zse-86
+ */
+/* eslint-disable */
+const jsdom = require('jsdom');
+const { JSDOM } = jsdom;
+const dom = new JSDOM(`<!DOCTYPE html><p>Hello world</p>`);
+const window = dom.window;
+
+function t(e) {
+ return (t =
+ 'function' === typeof Symbol && 'symbol' === typeof Symbol.A
+ ? function (e) {
+ return typeof e;
+ }
+ : function (e) {
+ return e && 'function' === typeof Symbol && e.constructor === Symbol && e !== Symbol.prototype ? 'symbol' : typeof e;
+ })(e);
+}
+Object.defineProperty(exports, '__esModule', {
+ value: !0,
+});
+const A = '2.0',
+ __g = {};
+function s() {}
+function i(e) {
+ (this.t = (2048 & e) >> 11), (this.s = (1536 & e) >> 9), (this.i = 511 & e), (this.h = 511 & e);
+}
+function h(e) {
+ (this.s = (3072 & e) >> 10), (this.h = 1023 & e);
+}
+function a(e) {
+ (this.a = (3072 & e) >> 10), (this.c = (768 & e) >> 8), (this.n = (192 & e) >> 6), (this.t = 63 & e);
+}
+function c(e) {
+ (this.s = (e >> 10) & 3), (this.i = 1023 & e);
+}
+function n() {}
+function e(e) {
+ (this.a = (3072 & e) >> 10), (this.c = (768 & e) >> 8), (this.n = (192 & e) >> 6), (this.t = 63 & e);
+}
+function o(e) {
+ (this.h = (4095 & e) >> 2), (this.t = 3 & e);
+}
+function r(e) {
+ (this.s = (e >> 10) & 3), (this.i = (e >> 2) & 255), (this.t = 3 & e);
+}
+(s.prototype.e = function (e) {
+ e.o = !1;
+}),
+ (i.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ e.r[this.s] = this.i;
+ break;
+ case 1:
+ e.r[this.s] = e.k[this.h];
+ }
+ }),
+ (h.prototype.e = function (e) {
+ e.k[this.h] = e.r[this.s];
+ }),
+ (a.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ e.r[this.a] = e.r[this.c] + e.r[this.n];
+ break;
+ case 1:
+ e.r[this.a] = e.r[this.c] - e.r[this.n];
+ break;
+ case 2:
+ e.r[this.a] = e.r[this.c] * e.r[this.n];
+ break;
+ case 3:
+ e.r[this.a] = e.r[this.c] / e.r[this.n];
+ break;
+ case 4:
+ e.r[this.a] = e.r[this.c] % e.r[this.n];
+ break;
+ case 5:
+ e.r[this.a] = e.r[this.c] == e.r[this.n];
+ break;
+ case 6:
+ e.r[this.a] = e.r[this.c] >= e.r[this.n];
+ break;
+ case 7:
+ e.r[this.a] = e.r[this.c] || e.r[this.n];
+ break;
+ case 8:
+ e.r[this.a] = e.r[this.c] && e.r[this.n];
+ break;
+ case 9:
+ e.r[this.a] = e.r[this.c] !== e.r[this.n];
+ break;
+ case 10:
+ e.r[this.a] = t(e.r[this.c]);
+ break;
+ case 11:
+ e.r[this.a] = e.r[this.c] in e.r[this.n];
+ break;
+ case 12:
+ e.r[this.a] = e.r[this.c] > e.r[this.n];
+ break;
+ case 13:
+ e.r[this.a] = -e.r[this.c];
+ break;
+ case 14:
+ e.r[this.a] = e.r[this.c] < e.r[this.n];
+ break;
+ case 15:
+ e.r[this.a] = e.r[this.c] & e.r[this.n];
+ break;
+ case 16:
+ e.r[this.a] = e.r[this.c] ^ e.r[this.n];
+ break;
+ case 17:
+ e.r[this.a] = e.r[this.c] << e.r[this.n];
+ break;
+ case 18:
+ e.r[this.a] = e.r[this.c] >>> e.r[this.n];
+ break;
+ case 19:
+ e.r[this.a] = e.r[this.c] | e.r[this.n];
+ break;
+ case 20:
+ e.r[this.a] = !e.r[this.c];
+ }
+ }),
+ (c.prototype.e = function (e) {
+ e.Q.push(e.C), e.B.push(e.k), (e.C = e.r[this.s]), (e.k = []);
+ for (let t = 0; t < this.i; t++) {
+ e.k.unshift(e.f.pop());
+ }
+ e.g.push(e.f), (e.f = []);
+ }),
+ (n.prototype.e = function (e) {
+ (e.C = e.Q.pop()), (e.k = e.B.pop()), (e.f = e.g.pop());
+ }),
+ (e.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ e.u = e.r[this.a] >= e.r[this.c];
+ break;
+ case 1:
+ e.u = e.r[this.a] <= e.r[this.c];
+ break;
+ case 2:
+ e.u = e.r[this.a] > e.r[this.c];
+ break;
+ case 3:
+ e.u = e.r[this.a] < e.r[this.c];
+ break;
+ case 4:
+ e.u = e.r[this.a] == e.r[this.c];
+ break;
+ case 5:
+ e.u = e.r[this.a] != e.r[this.c];
+ break;
+ case 6:
+ e.u = e.r[this.a];
+ break;
+ case 7:
+ e.u = !e.r[this.a];
+ }
+ }),
+ (o.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ e.C = this.h;
+ break;
+ case 1:
+ e.u && (e.C = this.h);
+ break;
+ case 2:
+ e.u || (e.C = this.h);
+ break;
+ case 3:
+ (e.C = this.h), (e.w = null);
+ }
+ e.u = !1;
+ }),
+ (r.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ for (var t = [], n = 0; n < this.i; n++) {
+ t.unshift(e.f.pop());
+ }
+ e.r[3] = e.r[this.s](t[0], t[1]);
+ break;
+ case 1:
+ for (var r = e.f.pop(), o = [], i = 0; i < this.i; i++) {
+ o.unshift(e.f.pop());
+ }
+ e.r[3] = e.r[this.s][r](o[0], o[1]);
+ break;
+ case 2:
+ for (var a = [], c = 0; c < this.i; c++) {
+ a.unshift(e.f.pop());
+ }
+ e.r[3] = new e.r[this.s](a[0], a[1]);
+ }
+ });
+const k = function (e) {
+ for (var t = 66, n = [], r = 0; r < e.length; r++) {
+ const o = 24 ^ e.charCodeAt(r) ^ t;
+ n.push(String.fromCharCode(o)), (t = o);
+ }
+ return n.join('');
+};
+function Q(e) {
+ (this.t = (4095 & e) >> 10), (this.s = (1023 & e) >> 8), (this.i = 1023 & e), (this.h = 63 & e);
+}
+function C(e) {
+ (this.t = (4095 & e) >> 10), (this.a = (1023 & e) >> 8), (this.c = (255 & e) >> 6);
+}
+function B(e) {
+ (this.s = (3072 & e) >> 10), (this.h = 1023 & e);
+}
+function f(e) {
+ this.h = 4095 & e;
+}
+function g(e) {
+ this.s = (3072 & e) >> 10;
+}
+function u(e) {
+ this.h = 4095 & e;
+}
+function w(e) {
+ (this.t = (3840 & e) >> 8), (this.s = (192 & e) >> 6), (this.i = 63 & e);
+}
+function G() {
+ (this.r = [0, 0, 0, 0]),
+ (this.C = 0),
+ (this.Q = []),
+ (this.k = []),
+ (this.B = []),
+ (this.f = []),
+ (this.g = []),
+ (this.u = !1),
+ (this.G = []),
+ (this.b = []),
+ (this.o = !1),
+ (this.w = null),
+ (this.U = null),
+ (this.F = []),
+ (this.R = 0),
+ (this.J = {
+ 0: s,
+ 1: i,
+ 2: h,
+ 3: a,
+ 4: c,
+ 5: n,
+ 6: e,
+ 7: o,
+ 8: r,
+ 9: Q,
+ 10: C,
+ 11: B,
+ 12: f,
+ 13: g,
+ 14: u,
+ 15: w,
+ });
+}
+(Q.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ e.f.push(e.r[this.s]);
+ break;
+ case 1:
+ e.f.push(this.i);
+ break;
+ case 2:
+ e.f.push(e.k[this.h]);
+ break;
+ case 3:
+ e.f.push(k(e.b[this.h]));
+ }
+}),
+ (C.prototype.e = function (A) {
+ switch (this.t) {
+ case 0:
+ var t = A.f.pop();
+ A.r[this.a] = A.r[this.c][t];
+ break;
+ case 1:
+ var s = A.f.pop(),
+ i = A.f.pop();
+ A.r[this.c][s] = i;
+ break;
+ case 2:
+ var h = A.f.pop();
+ A.r[this.a] = eval(h);
+ }
+ }),
+ (B.prototype.e = function (e) {
+ e.r[this.s] = k(e.b[this.h]);
+ }),
+ (f.prototype.e = function (e) {
+ e.w = this.h;
+ }),
+ (g.prototype.e = function (e) {
+ throw e.r[this.s];
+ }),
+ (u.prototype.e = function (e) {
+ const t = this,
+ n = [0];
+ e.k.forEach(function (e) {
+ n.push(e);
+ });
+ const r = function (r) {
+ const o = new G();
+ return (o.k = n), (o.k[0] = r), o.v(e.G, t.h, e.b, e.F), o.r[3];
+ };
+ (r.toString = function () {
+ return '() { [native code] }';
+ }),
+ (e.r[3] = r);
+ }),
+ (w.prototype.e = function (e) {
+ switch (this.t) {
+ case 0:
+ for (var t = {}, n = 0; n < this.i; n++) {
+ const r = e.f.pop();
+ t[e.f.pop()] = r;
+ }
+ e.r[this.s] = t;
+ break;
+ case 1:
+ for (var o = [], i = 0; i < this.i; i++) {
+ o.unshift(e.f.pop());
+ }
+ e.r[this.s] = o;
+ }
+ }),
+ (G.prototype.D = function (e) {
+ for (var t = window.atob(e), n = (t.charCodeAt(0) << 8) | t.charCodeAt(1), r = [], o = 2; o < n + 2; o += 2) {
+ r.push((t.charCodeAt(o) << 8) | t.charCodeAt(o + 1));
+ }
+ this.G = r;
+ for (var i = [], a = n + 2; a < t.length; ) {
+ const c = (t.charCodeAt(a) << 8) | t.charCodeAt(a + 1),
+ s = t.slice(a + 2, a + 2 + c);
+ i.push(s), (a += c + 2);
+ }
+ this.b = i;
+ }),
+ (G.prototype.v = function (e, t, n) {
+ for (t = t || 0, n = n || [], this.C = t, 'string' === typeof e ? this.D(e) : ((this.G = e), (this.b = n)), this.o = !0, this.R = Date.now(); this.o; ) {
+ const r = this.G[this.C++];
+ if ('number' !== typeof r) {
+ break;
+ }
+ const o = Date.now();
+ if (500 < o - this.R) {
+ return;
+ }
+ this.R = o;
+ try {
+ this.e(r);
+ } catch (e) {
+ (this.U = e), this.w && (this.C = this.w);
+ }
+ }
+ }),
+ (G.prototype.e = function (e) {
+ const t = (61440 & e) >> 12;
+ new this.J[t](e).e(this);
+ });
+'undefined' !== typeof window &&
+ new G().v(
+ 'AxjgB5MAnACoAJwBpAAAABAAIAKcAqgAMAq0AzRJZAZwUpwCqACQACACGAKcBKAAIAOcBagAIAQYAjAUGgKcBqFAuAc5hTSHZAZwqrAIGgA0QJEAJAAYAzAUGgOcCaFANRQ0R2QGcOKwChoANECRACQAsAuQABgDnAmgAJwMgAGcDYwFEAAzBmAGcSqwDhoANECRACQAGAKcD6AAGgKcEKFANEcYApwRoAAxB2AGcXKwEhoANECRACQAGAKcE6AAGgKcFKFANEdkBnGqsBUaADRAkQAkABgCnBagAGAGcdKwFxoANECRACQAGAKcGKAAYAZx+rAZGgA0QJEAJAAYA5waoABgBnIisBsaADRAkQAkABgCnBygABoCnB2hQDRHZAZyWrAeGgA0QJEAJAAYBJwfoAAwFGAGcoawIBoANECRACQAGAOQALAJkAAYBJwfgAlsBnK+sCEaADRAkQAkABgDkACwGpAAGAScH4AJbAZy9rAiGgA0QJEAJACwI5AAGAScH6AAkACcJKgAnCWgAJwmoACcJ4AFnA2MBRAAMw5gBnNasCgaADRAkQAkABgBEio0R5EAJAGwKSAFGACcKqAAEgM0RCQGGAYSATRFZAZzshgAtCs0QCQAGAYSAjRFZAZz1hgAtCw0QCQAEAAgB7AtIAgYAJwqoAASATRBJAkYCRIANEZkBnYqEAgaBxQBOYAoBxQEOYQ0giQKGAmQABgAnC6ABRgBGgo0UhD/MQ8zECALEAgaBxQBOYAoBxQEOYQ0gpEAJAoYARoKNFIQ/zEPkAAgChgLGgkUATmBkgAaAJwuhAUaCjdQFAg5kTSTJAsQCBoHFAE5gCgHFAQ5hDSCkQAkChgBGgo0UhD/MQ+QACAKGAsaCRQCOYGSABoAnC6EBRoKN1AUEDmRNJMkCxgFGgsUPzmPkgAaCJwvhAU0wCQFGAUaCxQGOZISPzZPkQAaCJwvhAU0wCQFGAUaCxQMOZISPzZPkQAaCJwvhAU0wCQFGAUaCxQSOZISPzZPkQAaCJwvhAU0wCQFGAkSAzRBJAlz/B4FUAAAAwUYIAAIBSITFQkTERwABi0GHxITAAAJLwMSGRsXHxMZAAk0Fw8HFh4NAwUABhU1EBceDwAENBcUEAAGNBkTGRcBAAFKAAkvHg4PKz4aEwIAAUsACDIVHB0QEQ4YAAsuAzs7AAoPKToKDgAHMx8SGQUvMQABSAALORoVGCQgERcCAxoACAU3ABEXAgMaAAsFGDcAERcCAxoUCgABSQAGOA8LGBsPAAYYLwsYGw8AAU4ABD8QHAUAAU8ABSkbCQ4BAAFMAAktCh8eDgMHCw8AAU0ADT4TGjQsGQMaFA0FHhkAFz4TGjQsGQMaFA0FHhk1NBkCHgUbGBEPAAFCABg9GgkjIAEmOgUHDQ8eFSU5DggJAwEcAwUAAUMAAUAAAUEADQEtFw0FBwtdWxQTGSAACBwrAxUPBR4ZAAkqGgUDAwMVEQ0ACC4DJD8eAx8RAAQ5GhUYAAFGAAAABjYRExELBAACWhgAAVoAQAg/PTw0NxcQPCQ5C3JZEBs9fkcnDRcUAXZia0Q4EhQgXHojMBY3MWVCNT0uDhMXcGQ7AUFPHigkQUwQFkhaAkEACjkTEQspNBMZPC0ABjkTEQsrLQ=='
+ );
+const b = function (e) {
+ return __g._encrypt(encodeURIComponent(e));
+};
+(exports.ENCRYPT_VERSION = A), (exports.default = b);
+
+module.exports = b;
diff --git a/lib/routes/zhihu/utils.js b/lib/routes/zhihu/utils.js
index 31eec8186e5f48..784419ebd7e011 100644
--- a/lib/routes/zhihu/utils.js
+++ b/lib/routes/zhihu/utils.js
@@ -2,8 +2,8 @@ const cheerio = require('cheerio');
module.exports = {
header: {
- 'x-api-version': '3.0.40',
- 'x-udid': 'AMAiMrPqqQ2PTnOxAr5M71LCh-dIQ8kkYvw=',
+ 'x-api-version': '3.0.91',
+ 'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36',
},
ProcessImage: function (content) {
const $ = cheerio.load(content, { xmlMode: true });
|
75f1ad0566aad1602c2f62c04f94fd0ee4552a28
|
2022-07-19 16:31:55
|
dependabot[bot]
|
chore(deps): bump rand-user-agent from 1.0.71 to 1.0.72 (#10249)
| false
|
bump rand-user-agent from 1.0.71 to 1.0.72 (#10249)
|
chore
|
diff --git a/package.json b/package.json
index cfd4acaf0e8cd6..1ed998252b326e 100644
--- a/package.json
+++ b/package.json
@@ -122,7 +122,7 @@
"puppeteer-extra": "3.3.4",
"puppeteer-extra-plugin-stealth": "2.11.0",
"query-string": "7.1.1",
- "rand-user-agent": "1.0.71",
+ "rand-user-agent": "1.0.72",
"re2": "1.17.7",
"require-all": "3.0.0",
"rss-parser": "3.12.0",
diff --git a/yarn.lock b/yarn.lock
index fcaf57879167f3..8565e32f8e45f7 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -11570,10 +11570,10 @@ ramda@^0.26.1:
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06"
integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==
[email protected]:
- version "1.0.71"
- resolved "https://registry.yarnpkg.com/rand-user-agent/-/rand-user-agent-1.0.71.tgz#21a01636862874a3bef73a691c7bdc1b9be30bf3"
- integrity sha512-EjENPlXMoYNHjV8Suyyk+BpZ77IJ3LTy+hGCEh5QQUQGMhes/ZPbTb3ArQqMHYN3533dr7+PJUDfBdex0jdj4Q==
[email protected]:
+ version "1.0.72"
+ resolved "https://registry.yarnpkg.com/rand-user-agent/-/rand-user-agent-1.0.72.tgz#2514823be4b27b262c4aa9fe30680e66ed9edff7"
+ integrity sha512-KgDZ3UyEw05ynYZliDlH8xPNMRBfV003y1Cgy/QlnjYrsC1Dey8EAeLJjT+wULoLjYbwJs1i2g+jaxLX59THWA==
[email protected]:
version "0.4.6"
|
72386443cd2768c31c60a34864b97fb74e42bbaa
|
2020-09-05 01:30:17
|
dependabot-preview[bot]
|
chore(deps): [security] bump http-proxy from 1.17.0 to 1.18.1
| false
|
[security] bump http-proxy from 1.17.0 to 1.18.1
|
chore
|
diff --git a/yarn.lock b/yarn.lock
index 3131d26b7a40d0..9d3cfee6ef607f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5010,10 +5010,10 @@ event-target-shim@^5.0.0:
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
-eventemitter3@^3.0.0:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7"
- integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==
+eventemitter3@^4.0.0:
+ version "4.0.7"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
events@^1.1.0:
version "1.1.1"
@@ -5423,11 +5423,9 @@ [email protected]:
integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==
follow-redirects@^1.0.0:
- version "1.7.0"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.7.0.tgz#489ebc198dc0e7f64167bd23b03c4c19b5784c76"
- integrity sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==
- dependencies:
- debug "^3.2.6"
+ version "1.13.0"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db"
+ integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==
for-in@^1.0.2:
version "1.0.2"
@@ -6258,11 +6256,11 @@ http-proxy-middleware@^0.19.1:
micromatch "^3.1.10"
http-proxy@^1.17.0:
- version "1.17.0"
- resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a"
- integrity sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==
+ version "1.18.1"
+ resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
+ integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
dependencies:
- eventemitter3 "^3.0.0"
+ eventemitter3 "^4.0.0"
follow-redirects "^1.0.0"
requires-port "^1.0.0"
|
6ed47fbdf996c0496a2034fb51c7e74d0ce38363
|
2024-02-25 05:21:56
|
github-actions[bot]
|
style: auto format
| false
|
auto format
|
style
|
diff --git a/lib/v2/shisu/news.js b/lib/v2/shisu/news.js
index 6544eb930d80ef..bc58b68c50260e 100644
--- a/lib/v2/shisu/news.js
+++ b/lib/v2/shisu/news.js
@@ -22,7 +22,7 @@ module.exports = async (ctx) => {
title: i.find('a').text().trim(),
link: `${url}${i.find('a').attr('href')}`,
category: i.find('.in-con02 > span:nth-child(1)').text(),
- itunes_item_image: `${url}${img}`
+ itunes_item_image: `${url}${img}`,
};
});
break;
@@ -37,7 +37,7 @@ module.exports = async (ctx) => {
category: i.find('p>span:nth-child(1)').text(),
};
});
- };
+ }
const items = await Promise.all(
itemsoup.map((j) =>
ctx.cache.tryGet(j.link, async () => {
@@ -51,7 +51,8 @@ module.exports = async (ctx) => {
j.itunes_item_image = img ? `${url}${img}` : banner;
}
return j;
- }))
+ })
+ )
);
ctx.state.data = {
diff --git a/website/docs/routes/university.mdx b/website/docs/routes/university.mdx
index 5df29682edd2ca..239f5e13e63679 100644
--- a/website/docs/routes/university.mdx
+++ b/website/docs/routes/university.mdx
@@ -2625,14 +2625,14 @@ jsjxy.hbut.edu.cn 证书链不全,自建 RSSHub 可设置环境变量 NODE\_TL
| 1793 | sstmzs |
</Route>
-## 上海外国语大学 {#shang-hai-eai-guo-yu-da-xue}
+## 上海外国语大学 {#shang-hai-wai-guo-yu-da-xue}
-### 上外新闻 {#shang-hai-eai-guo-yu-da-xue-sisu-news}
+### 上外新闻 {#shang-hai-wai-guo-yu-da-xue-shang-wai-xin-wen}
<Route author="Duuckjing" example="/shisu/news/notice" path="/shisu/news/:category" paramsDesc={['新闻的分类可根据自己的需要选择,首页为全部新闻']} radar="1">
-| 首页 | 特稿 | 学术 | 教学 | 国际 | 校园 | 人物 | 视讯 | 公告 |
-| ---- | -------- | -------- | -------- | ------------- | ------ | ------ | ---------- | ------ |
-| news | gazette | research- | academics- | international | campus | people | multimedia | notice |
+ | 首页 | 特稿 | 学术 | 教学 | 国际 | 校园 | 人物 | 视讯 | 公告 |
+ | ---- | ------- | --------- | ---------- | ------------- | ------ | ------ | ---------- | ------ |
+ | news | gazette | research- | academics- | international | campus | people | multimedia | notice |
</Route>
## 深圳大学 {#shen-zhen-da-xue}
|
ba09be474da0988df14db364e084ccd6864a181d
|
2021-11-28 06:13:59
|
DIYgod
|
test: fix rss-parser update error
| false
|
fix rss-parser update error
|
test
|
diff --git a/test/middleware/template.js b/test/middleware/template.js
index 3f454250af675c..f6a0218c26f318 100644
--- a/test/middleware/template.js
+++ b/test/middleware/template.js
@@ -36,6 +36,8 @@ describe('template', () => {
delete parsed2.lastBuildDate;
delete parsed1.feedUrl;
delete parsed2.feedUrl;
+ delete parsed1.paginationLinks;
+ delete parsed2.paginationLinks;
expect(parsed2).toMatchObject(parsed1);
});
|
194ce9687cac630a02f104cf3fca9ca46d421663
|
2019-10-31 12:55:19
|
DIYgod
|
chore: turn all eslint rules on as an error
| false
|
turn all eslint rules on as an error
|
chore
|
diff --git a/.eslintrc b/.eslintrc
index c726440dac604f..ee8c2132fc236d 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -10,47 +10,47 @@
"es6": true
},
"rules": {
- "no-console": 1,
- "block-scoped-var": 1,
- "curly": 1,
- "eqeqeq": 1,
- "no-global-assign": 1,
- "no-implicit-globals": 1,
- "no-labels": 1,
- "no-multi-str": 1,
- "comma-spacing": 1,
- "comma-style": 1,
- "func-call-spacing": 1,
- "keyword-spacing": 1,
- "linebreak-style": 1,
- "lines-around-comment": 1,
- "no-multiple-empty-lines": 1,
- "space-infix-ops": 1,
- "arrow-spacing": 1,
- "no-var": 1,
- "prefer-const": 1,
- "no-unsafe-negation": 1,
- "array-callback-return": 1,
- "dot-notation": 1,
- "no-eval": 1,
- "no-extend-native": 1,
- "no-extra-label": 1,
- "semi": 1,
- "space-before-blocks": 1,
- "space-in-parens": 1,
- "space-unary-ops": 1,
- "spaced-comment": 1,
- "arrow-body-style": 1,
- "arrow-parens": 1,
- "no-restricted-imports": 1,
- "no-duplicate-imports": 1,
- "no-useless-computed-key": 1,
- "no-useless-rename": 1,
- "rest-spread-spacing": 1,
- "no-trailing-spaces": 1,
+ "no-console": 2,
+ "block-scoped-var": 2,
+ "curly": 2,
+ "eqeqeq": 2,
+ "no-global-assign": 2,
+ "no-implicit-globals": 2,
+ "no-labels": 2,
+ "no-multi-str": 2,
+ "comma-spacing": 2,
+ "comma-style": 2,
+ "func-call-spacing": 2,
+ "keyword-spacing": 2,
+ "linebreak-style": 2,
+ "lines-around-comment": 2,
+ "no-multiple-empty-lines": 2,
+ "space-infix-ops": 2,
+ "arrow-spacing": 2,
+ "no-var": 2,
+ "prefer-const": 2,
+ "no-unsafe-negation": 2,
+ "array-callback-return": 2,
+ "dot-notation": 2,
+ "no-eval": 2,
+ "no-extend-native": 2,
+ "no-extra-label": 2,
+ "semi": 2,
+ "space-before-blocks": 2,
+ "space-in-parens": 2,
+ "space-unary-ops": 2,
+ "spaced-comment": 2,
+ "arrow-body-style": 2,
+ "arrow-parens": 2,
+ "no-restricted-imports": 2,
+ "no-duplicate-imports": 2,
+ "no-useless-computed-key": 2,
+ "no-useless-rename": 2,
+ "rest-spread-spacing": 2,
+ "no-trailing-spaces": 2,
"no-control-regex": 0,
"prettier/prettier": 0,
- "no-await-in-loop": 1,
+ "no-await-in-loop": 2,
"require-atomic-updates": 0,
"no-prototype-builtins": 0
}
diff --git a/lib/routes/szse/inquire.js b/lib/routes/szse/inquire.js
index 1d616d84cb95a6..e0ac20465303ea 100644
--- a/lib/routes/szse/inquire.js
+++ b/lib/routes/szse/inquire.js
@@ -40,8 +40,6 @@ module.exports = async (ctx) => {
for (let i = 0; i < ptype[key].dataArr.length; i++) {
ptype[key].dataArr[i].category = ptype[key].dataCategory;
}
- } else {
- console.log(key);
}
}
|
ddbc760dc822276529b9874a8f9d2aa040dfce6d
|
2023-08-16 18:34:07
|
TonyRL
|
docs: fix new docs link
| false
|
fix new docs link
|
docs
|
diff --git a/.github/ISSUE_TEMPLATE/bug_report_zh.yml b/.github/ISSUE_TEMPLATE/bug_report_zh.yml
index d0a646ac265f9d..3225ed9095007d 100644
--- a/.github/ISSUE_TEMPLATE/bug_report_zh.yml
+++ b/.github/ISSUE_TEMPLATE/bug_report_zh.yml
@@ -69,7 +69,7 @@ body:
label: 部署相关信息
description: |
请提供您的操作系统、node 版本和(如果适用) docker 版本。
- 请确保您部署的是[主线 master 分支](https://github.com/DIYgod/RSSHub/tree/master)最新版 RSSHub。
+ 请确保您部署的是 [主线 master 分支](https://github.com/DIYgod/RSSHub/tree/master) 最新版 RSSHub。
placeholder: 'OS: Linux, Node: v10.15.3, Docker: v19.03.13'
- type: textarea
@@ -86,5 +86,5 @@ body:
attributes:
label: 这不是重复的 issue
options:
- - label: 我已经搜索了[现有 issue](https://github.com/DIYgod/RSSHub/issues),以确保该错误尚未被报告。
+ - label: 我已经搜索了 [现有 issue](https://github.com/DIYgod/RSSHub/issues),以确保该错误尚未被报告。
required: true
diff --git a/.github/ISSUE_TEMPLATE/rss_request_zh.yml b/.github/ISSUE_TEMPLATE/rss_request_zh.yml
index 501994bee268e7..a737cdcbf0d3ff 100644
--- a/.github/ISSUE_TEMPLATE/rss_request_zh.yml
+++ b/.github/ISSUE_TEMPLATE/rss_request_zh.yml
@@ -10,7 +10,7 @@ body:
请确保 [文档](https://docs.rsshub.app) 和 [issue](https://github.com/DIYgod/RSSHub/issues) 中没有相关内容,且源站没有提供 RSS,并按照模版提供信息
否则 issue 将被立即关闭
- 目前 RSS 提案滞销,如有能力请按照 [指南](https://docs.rsshub.app/joinus) 自行编写并提交 PR
+ 目前 RSS 提案滞销,如有能力请按照 [指南](https://docs.rsshub.app/joinus/quick-start) 自行编写并提交 PR
- type: dropdown
id: category
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 733398212ad446..412aa64ff59e3f 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -30,17 +30,17 @@ If your changes are not related to route, please fill in `routes` section with `
## 新 RSS 路由检查表 / New RSS Route Checklist
- [ ] 新的路由 New Route
- - [ ] 跟随 [v2 路由规范](https://docs.rsshub.app/joinus/script-standard) Follows [v2 Script Standard](https://docs.rsshub.app/en/joinus/script-standard)
+ - [ ] 跟随 [v2 路由规范](https://docs.rsshub.app/joinus/advanced/script-standard) Follows [v2 Script Standard](https://docs.rsshub.app/en/joinus/advanced/script-standard)
- [ ] 文档说明 Documentation
- [ ] 中文文档 CN
- [ ] 英文文档 EN
-- [ ] 全文获取 fulltext
- - [ ] 使用缓存 Use Cache
+- [ ] 全文获取 full article
+ - [ ] 使用缓存 Use cache
- [ ] 反爬/频率限制 anti-bot or rate limit?
- [ ] 如果有, 是否有对应的措施? If yes, do your code reflect this sign?
-- [ ] [日期和时间](https://docs.rsshub.app/joinus/pub-date) [date and time](https://docs.rsshub.app/en/joinus/pub-date)
+- [ ] [日期和时间](https://docs.rsshub.app/joinus/advanced/pub-date) [date and time](https://docs.rsshub.app/en/joinus/advanced/pub-date)
- [ ] 可以解析 Parsed
- - [ ] 时区调整 Correct TimeZone
+ - [ ] 时区正确 Correct time zone
- [ ] 添加了新的包 New package added
- [ ] `Puppeteer`
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index a0a8c6dffa51b8..72cb7a8e537f3a 100644
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -212,7 +212,7 @@
www: [
{
title: '新闻中心',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/xwzx/:name',
target: (params) => {
const type = params.name.replace('.htm', '');
@@ -221,11 +221,11 @@
},
],
jsjxy: [
- { title: '新闻动态', docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue', source: '/index/xwdt.htm', target: '/hbut/cs/xwdt' },
- { title: '通知公告', docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue', source: '/index/tzgg.htm', target: '/hbut/cs/tzgg' },
- { title: '教学信息', docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue', source: '/jxxx.htm', target: '/hbut/cs/jxxx' },
- { title: '科研动态', docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue', source: '/kxyj/kydt.htm', target: '/hbut/cs/kydt' },
- { title: '党建活动', docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue', source: '/djhd/djhd.htm', target: '/hbut/cs/djhd' },
+ { title: '新闻动态', docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue', source: '/index/xwdt.htm', target: '/hbut/cs/xwdt' },
+ { title: '通知公告', docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue', source: '/index/tzgg.htm', target: '/hbut/cs/tzgg' },
+ { title: '教学信息', docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue', source: '/jxxx.htm', target: '/hbut/cs/jxxx' },
+ { title: '科研动态', docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue', source: '/kxyj/kydt.htm', target: '/hbut/cs/kydt' },
+ { title: '党建活动', docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue', source: '/djhd/djhd.htm', target: '/hbut/cs/djhd' },
],
},
'zhuixinfan.com': { _name: '追新番日剧站', '.': [{ title: '更新列表', docs: 'https://docs.rsshub.app/routes/multimedia#zhui-xin-fan-ri-ju-zhan', source: ['/main.php'], target: '/zhuixinfan/list' }] },
@@ -312,13 +312,13 @@
'umass.edu': {
_name: 'UMASS Amherst',
ece: [
- { title: 'ECE News', docs: 'http://docs.rsshub.app/en/university.html#umass-amherst', source: '/news', target: '/umass/amherst/ecenews' },
- { title: 'ECE Seminar', docs: 'http://docs.rsshub.app/en/university.html#umass-amherst', source: '/seminars', target: '/umass/amherst/eceseminar' },
+ { title: 'ECE News', docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst', source: '/news', target: '/umass/amherst/ecenews' },
+ { title: 'ECE Seminar', docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst', source: '/seminars', target: '/umass/amherst/eceseminar' },
],
- 'www.cics': [{ title: 'CICS News', docs: 'http://docs.rsshub.app/en/university.html#umass-amherst', source: '/news', target: '/umass/amherst/csnews' }],
+ 'www.cics': [{ title: 'CICS News', docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst', source: '/news', target: '/umass/amherst/csnews' }],
www: [
- { title: 'IPO Events', docs: 'http://docs.rsshub.app/en/university.html#umass-amherst', source: '/ipo/iss/events', target: '/umass/amherst/ipoevents' },
- { title: 'IPO Featured Stories', docs: 'http://docs.rsshub.app/en/university.html#umass-amherst', source: '/ipo/iss/featured-stories', target: '/umass/amherst/ipostories' },
+ { title: 'IPO Events', docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst', source: '/ipo/iss/events', target: '/umass/amherst/ipoevents' },
+ { title: 'IPO Featured Stories', docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst', source: '/ipo/iss/featured-stories', target: '/umass/amherst/ipostories' },
],
},
'bjeea.com': {
@@ -378,7 +378,7 @@
},
],
},
- 'buaq.net': { _name: '不安全资讯', '.': [{ title: '不安全资讯', docs: 'http://docs.rsshub.app/new-media.html#bu-an-quan', source: '/', target: '/buaq' }] },
+ 'buaq.net': { _name: '不安全资讯', '.': [{ title: '不安全资讯', docs: 'http://docs.rsshub.app/routes/new-media#bu-an-quan', source: '/', target: '/buaq' }] },
'jian-ning.com': { _name: '建宁闲谈', '.': [{ title: '文章', docs: 'https://docs.rsshub.app/routes/blog#jian-ning-xian-tan', source: '/*', target: '/blogs/jianning' }] },
'matataki.io': {
_name: 'matataki',
diff --git a/lib/radar-rules.js b/lib/radar-rules.js
index 64194e3a24d052..bb3c1ab9f57f04 100644
--- a/lib/radar-rules.js
+++ b/lib/radar-rules.js
@@ -673,7 +673,7 @@ module.exports = {
www: [
{
title: '新闻中心',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/university#hu-bei-gong-ye-da-xue',
source: '/xwzx/:name',
target: (params) => {
const type = params.name.replace('.htm', '');
@@ -684,31 +684,31 @@ module.exports = {
jsjxy: [
{
title: '新闻动态',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/index/xwdt.htm',
target: '/hbut/cs/xwdt',
},
{
title: '通知公告',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/index/tzgg.htm',
target: '/hbut/cs/tzgg',
},
{
title: '教学信息',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/jxxx.htm',
target: '/hbut/cs/jxxx',
},
{
title: '科研动态',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/kxyj/kydt.htm',
target: '/hbut/cs/kydt',
},
{
title: '党建活动',
- docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
+ docs: 'http://docs.rsshub.app/routes/university#hu-bei-gong-ye-da-xue',
source: '/djhd/djhd.htm',
target: '/hbut/cs/djhd',
},
@@ -817,13 +817,13 @@ module.exports = {
ece: [
{
title: 'ECE News',
- docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
+ docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst',
source: '/news',
target: '/umass/amherst/ecenews',
},
{
title: 'ECE Seminar',
- docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
+ docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst',
source: '/seminars',
target: '/umass/amherst/eceseminar',
},
@@ -831,7 +831,7 @@ module.exports = {
'www.cics': [
{
title: 'CICS News',
- docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
+ docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst',
source: '/news',
target: '/umass/amherst/csnews',
},
@@ -839,13 +839,13 @@ module.exports = {
www: [
{
title: 'IPO Events',
- docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
+ docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst',
source: '/ipo/iss/events',
target: '/umass/amherst/ipoevents',
},
{
title: 'IPO Featured Stories',
- docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
+ docs: 'http://docs.rsshub.app/en/routes/university#umass-amherst',
source: '/ipo/iss/featured-stories',
target: '/umass/amherst/ipostories',
},
@@ -962,7 +962,7 @@ module.exports = {
'.': [
{
title: '不安全资讯',
- docs: 'http://docs.rsshub.app/new-media.html#bu-an-quan',
+ docs: 'http://docs.rsshub.app/routes/new-media#bu-an-quan',
source: '/',
target: '/buaq',
},
diff --git a/lib/v2/caixin/radar.js b/lib/v2/caixin/radar.js
index 0b853438ad5d2f..c92e6b2155f770 100644
--- a/lib/v2/caixin/radar.js
+++ b/lib/v2/caixin/radar.js
@@ -42,7 +42,7 @@ module.exports = {
weekly: [
{
title: '财新周刊',
- docs: 'https://docs.rsshub.app/traditional-media.html#cai-xin-wang',
+ docs: 'https://docs.rsshub.app/routes/traditional-media#cai-xin-wang',
source: ['/', '/*'],
target: '/caixin/weekly',
},
diff --git a/lib/v2/finology/radar.js b/lib/v2/finology/radar.js
index 23e2194bef3c45..b8a2cc5e72a467 100644
--- a/lib/v2/finology/radar.js
+++ b/lib/v2/finology/radar.js
@@ -4,25 +4,25 @@ module.exports = {
insider: [
{
title: 'Bullets',
- docs: 'https://docs.rsshub.app/en/finance.html#finology-insider',
+ docs: 'https://docs.rsshub.app/en/routes/finance#finology-insider',
source: ['/bullets'],
target: '/finology/bullets',
},
{
title: 'Category',
- docs: 'https://docs.rsshub.app/en/finance.html#finology-insider',
+ docs: 'https://docs.rsshub.app/en/routes/finance#finology-insider',
source: '/:category',
target: '/finology/:category',
},
{
title: 'Most Viewed',
- docs: 'https://docs.rsshub.app/en/finance.html#finology-insider',
+ docs: 'https://docs.rsshub.app/en/routes/finance#finology-insider',
source: '/most-viewed',
target: '/finology/most-viewed/monthly',
},
{
title: 'Trending Topic',
- docs: 'https://docs.rsshub.app/en/finance.html#finology-insider',
+ docs: 'https://docs.rsshub.app/en/routes/finance#finology-insider',
source: ['/tag/:topic'],
target: '/finology/tag/:topic',
},
diff --git a/lib/v2/grist/radar.js b/lib/v2/grist/radar.js
index 8d0a04e4d6872a..03d7915c63088e 100644
--- a/lib/v2/grist/radar.js
+++ b/lib/v2/grist/radar.js
@@ -4,25 +4,25 @@ module.exports = {
'.': [
{
title: 'Articles',
- docs: 'https://docs.rsshub.app/en/new-media.html#grist',
+ docs: 'https://docs.rsshub.app/en/routes/new-media#grist',
source: ['/articles/'],
target: '/grist/',
},
{
title: 'Featured',
- docs: 'https://docs.rsshub.app/en/new-media.html#grist',
+ docs: 'https://docs.rsshub.app/en/routes/new-media#grist',
source: '/',
target: '/grist/featured',
},
{
title: 'Series',
- docs: 'https://docs.rsshub.app/en/new-media.html#grist',
+ docs: 'https://docs.rsshub.app/en/routes/new-media#grist',
source: '/series/:series',
target: '/grist/series/:series',
},
{
title: 'Topic',
- docs: 'https://docs.rsshub.app/en/new-media.html#grist',
+ docs: 'https://docs.rsshub.app/en/routes/new-media#grist',
source: ['/:topic'],
target: '/grist/topic/:topic',
},
diff --git a/lib/v2/science/radar.js b/lib/v2/science/radar.js
index e1b00cacaae927..7576140f005e50 100644
--- a/lib/v2/science/radar.js
+++ b/lib/v2/science/radar.js
@@ -21,8 +21,8 @@ module.exports = {
target: '/science/early/:journal',
},
{
- title: 'Science Blogs',
- docs: 'https://docs.rsshub.app/journal.html#science-xi-lie',
+ title: '博客',
+ docs: 'https://docs.rsshub.app/routes/journal#science-xi-lie',
source: ['/blogs/:name'],
target: '/science/blogs/:name',
},
diff --git a/website/docs/joinus/new-rss/submit-route.md b/website/docs/joinus/new-rss/submit-route.md
index eb2f3c11b32963..9fd04ef39c071b 100644
--- a/website/docs/joinus/new-rss/submit-route.md
+++ b/website/docs/joinus/new-rss/submit-route.md
@@ -41,17 +41,17 @@ If your changes are not related to route, please fill in `routes` with `NOROUTE`
## 新 RSS 路由检查列表 / New RSS Route Checklist
- [ ] 新的路由 New Route
- - [ ] 跟随 [v2 路由规范](/joinus/advanced/script-standard.html) Follows [v2 Script Standard](/en/joinus/advanced/script-standard.html)
+ - [ ] 跟随 [v2 路由规范](https://docs.rsshub.app/joinus/advanced/script-standard) Follows [v2 Script Standard](https://docs.rsshub.app/en/joinus/advanced/script-standard)
- [ ] 文档说明 Documentation
- [ ] 中文文档 CN
- [ ] 英文文档 EN
- [ ] 全文获取 fulltext
- - [ ] 使用缓存 Use Cache
+ - [ ] 使用缓存 Use cache
- [ ] 反爬/频率限制 anti-bot or rate limit?
- [ ] 如果有, 是否有对应的措施? If yes, do your code reflect this sign?
-- [ ] [日期和时间](/joinus/advanced/pub-date) [date and time](/en/joinus/advanced/pub-date)
+- [ ] [日期和时间](https://docs.rsshub.app/joinus/advanced/pub-date) [Date and time](https://docs.rsshub.app/en/joinus/advanced/pub-date)
- [ ] 可以解析 Parsed
- - [ ] 时区调整 Correct TimeZone
+ - [ ] 时区正确 Correct time zone
- [ ] 添加了新的包 New package added
- [ ] `Puppeteer`
diff --git a/website/i18n/en/docusaurus-plugin-content-docs/current/joinus/new-rss/submit-route.md b/website/i18n/en/docusaurus-plugin-content-docs/current/joinus/new-rss/submit-route.md
index daf0906d07521b..0580de87a80dcd 100644
--- a/website/i18n/en/docusaurus-plugin-content-docs/current/joinus/new-rss/submit-route.md
+++ b/website/i18n/en/docusaurus-plugin-content-docs/current/joinus/new-rss/submit-route.md
@@ -41,17 +41,17 @@ If your changes are not related to route, please fill in `routes` section with `
## 新 RSS 路由检查表 / New RSS Route Checklist
- [ ] 新的路由 New Route
- - [ ] 跟随 [v2 路由规范](/joinus/advanced/script-standard) Follows [v2 Script Standard](/en/joinus/advanced/script-standard)
+ - [ ] 跟随 [v2 路由规范](https://docs.rsshub.app/joinus/advanced/script-standard) Follows [v2 Script Standard](https://docs.rsshub.app/en/joinus/advanced/script-standard)
- [ ] 文档说明 Documentation
- [ ] 中文文档 CN
- [ ] 英文文档 EN
-- [ ] 全文获取 fulltext
- - [ ] 使用缓存 Use Cache
+- [ ] 全文获取 full article
+ - [ ] 使用缓存 Use cache
- [ ] 反爬/频率限制 anti-bot or rate limit?
- [ ] 如果有, 是否有对应的措施? If yes, do your code reflect this sign?
-- [ ] [日期和时间](/joinus/advanced/pub-date) [date and time](/en/joinus/advanced/pub-date)
+- [ ] [日期和时间](https://docs.rsshub.app/joinus/advanced/pub-date) [Date and time](https://docs.rsshub.app/en/joinus/advanced/pub-date)
- [ ] 可以解析 Parsed
- - [ ] 时区调整 Correct TimeZone
+ - [ ] 时区正确 Correct time zone
- [ ] 添加了新的包 New package added
- [ ] `Puppeteer`
|
9fb68e77f5a16b70df044cfe75b838d4ed958373
|
2020-07-07 15:07:05
|
P. Tan
|
fix: the problem in Issue #5137 解决上海理工大学教务网列表为空的问题 (#5139)
| false
|
the problem in Issue #5137 解决上海理工大学教务网列表为空的问题 (#5139)
|
fix
|
diff --git a/lib/routes/universities/usst/jwc.js b/lib/routes/universities/usst/jwc.js
index f7e2d55f41c260..3aece3ad317c8e 100644
--- a/lib/routes/universities/usst/jwc.js
+++ b/lib/routes/universities/usst/jwc.js
@@ -11,7 +11,7 @@ module.exports = async (ctx) => {
$('td[width="30px"]').remove();
$('td[width="195"]').remove();
// ## 获取列表
- const list = $('.main_shadow > table > tbody > tr > td').get();
+ const list = $('#container-2 > .inner .post1 > .con > ul > li ').get();
// ## 定义输出的item
const out = await Promise.all(
// ### 遍历列表,筛选出自己想要的内容
@@ -37,7 +37,7 @@ module.exports = async (ctx) => {
url: singleUrl,
});
const $ = cheerio.load(detail_response.data);
- const detail_content = $('.wp_articlecontent > .Article_Content').html();
+ const detail_content = $('.wp_articlecontent').html();
// ### 设置 RSS feed item
const single = {
title: title,
|
2c3a16f9c5f6e1d4e99fbdc9f0fe1c945845c5c5
|
2025-01-04 16:52:18
|
Nishant Singh
|
feat(add route): VisionIAS route for daily news (#18030)
| false
|
VisionIAS route for daily news (#18030)
|
feat
|
diff --git a/lib/routes/visionias/namespace.ts b/lib/routes/visionias/namespace.ts
new file mode 100644
index 00000000000000..311b0a695be1f2
--- /dev/null
+++ b/lib/routes/visionias/namespace.ts
@@ -0,0 +1,8 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: 'VisionIAS',
+ url: 'visionias.in',
+ lang: 'en',
+ categories: ['study'],
+};
diff --git a/lib/routes/visionias/news-today.ts b/lib/routes/visionias/news-today.ts
new file mode 100644
index 00000000000000..d05e51313dc267
--- /dev/null
+++ b/lib/routes/visionias/news-today.ts
@@ -0,0 +1,100 @@
+import { Data, Route } from '@/types';
+import { baseUrl, extractNews } from './utils';
+import dayjs from 'dayjs';
+import ofetch from '@/utils/ofetch';
+import { load } from 'cheerio';
+
+import logger from '@/utils/logger';
+
+export const route: Route = {
+ path: '/newsToday/:filter?',
+ example: '/visionias/newsToday',
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ parameters: {
+ filter: {
+ description: 'Period to fetch news for the current month. All news for the current month or only the latest',
+ default: 'latest',
+ options: [
+ { value: 'all', label: 'All' },
+ { value: 'latest', label: 'Latest' },
+ ],
+ },
+ },
+ radar: [
+ {
+ source: ['visionias.in/current-affairs/news-today'],
+ target: '/newsToday',
+ },
+ ],
+ name: 'News Today',
+ maintainers: ['Rjnishant530'],
+ handler,
+};
+
+async function handler(ctx): Promise<Data> {
+ const filter = ctx.req.param('filter') ?? 'latest';
+ const currentYear = dayjs().year();
+ const currentMonth = dayjs().month() + 1;
+ logger.debug(`Getting news for month ${currentMonth} and year ${currentYear}`);
+ const response = await ofetch(`${baseUrl}/current-affairs/news-today/getbymonth?year=${currentYear}&month=${currentMonth}`);
+
+ let items: any = [];
+ // let title = 'News Today';
+
+ if (response.length !== 0) {
+ if (filter === 'latest') {
+ const currentUrl = response[0].url;
+ // title = response[0].formatted_published_at;
+ items = await processCurrentNews(currentUrl);
+ } else {
+ const results = await Promise.all(response.map((element) => processCurrentNews(element.url)));
+ items.push(...results.flat());
+ }
+ }
+ return {
+ title: 'News Today | Current Affairs | Vision IAS',
+ link: `${baseUrl}/current-affairs/news-today/archive`,
+ description: 'News Today is a daily bulletin providing readers with a comprehensive overview of news developments, news types, and technical terms.',
+ language: 'en',
+ item: items,
+ image: `${baseUrl}/current-affairs/images/news-today-logo.svg`,
+ icon: `${baseUrl}/current-affairs/favicon.ico`,
+ logo: `${baseUrl}/current-affairs/favicon.ico`,
+ allowEmpty: true,
+ };
+}
+
+async function processCurrentNews(currentUrl) {
+ const response = await ofetch(`${baseUrl}${currentUrl}`);
+ const $ = load(response);
+ const items = $(`#table-of-content > ul > li > a`)
+ .toArray()
+ .map((item) => {
+ const link = $(item).attr('href');
+ const title = $(item).clone().children('span').remove().end().text().trim();
+ return {
+ title,
+ link: title === 'Also in News' ? link : `${baseUrl}${link}`,
+ guid: link,
+ };
+ });
+ const newsPromises = await Promise.allSettled(items.map((item) => extractNews(item, 'main > div > div.mt-6 > div.flex > div.flex.mt-6')));
+ const finalItems: any = [];
+ for (const news of newsPromises) {
+ if (news.status === 'fulfilled') {
+ finalItems.push(...(Array.isArray(news.value) ? news.value : [news.value]));
+ } else {
+ finalItems.push({
+ title: 'Error Parse News',
+ });
+ }
+ }
+ return finalItems;
+}
diff --git a/lib/routes/visionias/templates/description-sub.art b/lib/routes/visionias/templates/description-sub.art
new file mode 100644
index 00000000000000..e947d6315aa283
--- /dev/null
+++ b/lib/routes/visionias/templates/description-sub.art
@@ -0,0 +1,6 @@
+{{ if heading }}
+ <h2>{{ heading }}</h2>
+{{ /if }}
+{{ if articleContent }}
+ {{@ articleContent }}
+{{ /if }}
\ No newline at end of file
diff --git a/lib/routes/visionias/templates/description.art b/lib/routes/visionias/templates/description.art
new file mode 100644
index 00000000000000..2f92e6a1c8d17b
--- /dev/null
+++ b/lib/routes/visionias/templates/description.art
@@ -0,0 +1,12 @@
+{{ if heading }}
+ <h1>{{ heading }}</h1>
+{{ /if }}
+{{ if subItems }}
+ {{ each subItems item }}
+ {{ if item?.description }}
+ {{@ item.description }}
+ {{ /if }}
+ {{ /each }}
+{{else}}
+ {{@ articleContent }}
+{{ /if }}
\ No newline at end of file
diff --git a/lib/routes/visionias/utils.ts b/lib/routes/visionias/utils.ts
new file mode 100644
index 00000000000000..e9ebec22d51a16
--- /dev/null
+++ b/lib/routes/visionias/utils.ts
@@ -0,0 +1,109 @@
+import { getCurrentPath } from '@/utils/helpers';
+const __dirname = getCurrentPath(import.meta.url);
+
+import { DataItem } from '@/types';
+import { parseDate } from '@/utils/parse-date';
+import { art } from '@/utils/render';
+import path from 'node:path';
+import ofetch from '@/utils/ofetch';
+import { load } from 'cheerio';
+import cache from '@/utils/cache';
+
+export const baseUrl = 'https://visionias.in';
+
+export async function extractNews(item, selector) {
+ if (item.link === '') {
+ return item;
+ }
+ return await cache.tryGet(item.link, async () => {
+ const response = await ofetch(item.link || '');
+ const $$ = load(response);
+ const postedDate = String($$('meta[property="article:published_time"]').attr('content'));
+ const updatedDate = String($$('meta[property="article:modified_time"]').attr('content'));
+ const tags = $$('meta[property="article:tag"]')
+ .toArray()
+ .map((tag) => $$(tag).attr('content'));
+ const content = $$(selector);
+ const heading = content.find('div.space-y-4 > h1').text();
+ const mainGroup = content.find('div.flex > div.w-full');
+
+ const shortArticles = mainGroup.find('[x-data^="{isShortArticleOpen"]');
+ const sections = mainGroup.find('[x-data^="{isSectionOpen"]');
+ if (shortArticles.length !== 0) {
+ const items = shortArticles.toArray().map((element) => {
+ const mainDiv = $$(element);
+ const title = mainDiv.find('a > div > h1').text().trim();
+ const id = mainDiv.find('a').attr('href');
+ const htmlContent = extractArticle(mainDiv.html());
+ const innerTags = mainDiv
+ .find('ul > li:contains("Tags :")')
+ ?.nextAll('li')
+ .toArray()
+ .map((tag) => $$(tag).text());
+ const description = art(path.join(__dirname, `templates/description.art`), {
+ heading: title,
+ articleContent: htmlContent,
+ });
+ return {
+ title: `${title} | ${heading}`,
+ pubDate: parseDate(postedDate),
+ category: innerTags,
+ description,
+ link: `${item.link}${id}`,
+ author: 'Vision IAS',
+ } as DataItem;
+ });
+ return items;
+ } else if (sections.length === 0) {
+ const htmlContent = extractArticle(mainGroup.html());
+ const description = art(path.join(__dirname, 'templates/description.art'), {
+ heading,
+ articleContent: htmlContent,
+ });
+ return {
+ title: item.title,
+ pubDate: parseDate(postedDate),
+ category: tags,
+ description,
+ link: item.link,
+ updated: updatedDate ? parseDate(updatedDate) : null,
+ author: 'Vision IAS',
+ } as DataItem;
+ } else {
+ const items = sections.toArray().map((element) => {
+ const mainDiv = $$(element);
+ const title = mainDiv.find('a > div > h2').text().trim();
+ const htmlContent = extractArticle(mainDiv.html(), 'div.ck-content');
+ const description = art(path.join(__dirname, `templates/description-sub.art`), {
+ heading: title,
+ articleContent: htmlContent,
+ });
+ return { description };
+ });
+ const description = art(path.join(__dirname, `templates/description.art`), {
+ heading,
+ subItems: items,
+ });
+ return {
+ title: heading,
+ pubDate: parseDate(postedDate),
+ category: tags,
+ description,
+ link: item.link,
+ updated: updatedDate ? parseDate(updatedDate) : null,
+ author: 'Vision IAS',
+ } as DataItem;
+ }
+ });
+}
+
+function extractArticle(articleDiv, selectorString: string = '#article-content') {
+ const $ = load(articleDiv, null, false);
+ const articleDiv$ = $(articleDiv);
+ const articleContent = articleDiv$.find(String(selectorString));
+ articleContent.find('figure').each((_, element) => {
+ $(element).css('width', '');
+ });
+ const htmlContent = articleContent.html();
+ return htmlContent;
+}
diff --git a/lib/routes/visionias/weekly-focus.ts b/lib/routes/visionias/weekly-focus.ts
new file mode 100644
index 00000000000000..65d55a478cffcb
--- /dev/null
+++ b/lib/routes/visionias/weekly-focus.ts
@@ -0,0 +1,56 @@
+import { Data, Route } from '@/types';
+import { baseUrl, extractNews } from './utils';
+import ofetch from '@/utils/ofetch';
+import { load } from 'cheerio';
+
+export const route: Route = {
+ path: '/weeklyFocus',
+ example: '/visionias/weeklyFocus',
+ features: {
+ requireConfig: false,
+ requirePuppeteer: false,
+ antiCrawler: false,
+ supportBT: false,
+ supportPodcast: false,
+ supportScihub: false,
+ },
+ radar: [
+ {
+ source: ['visionias.in/current-affairs/weekly-focus'],
+ target: '/weeklyFocus',
+ },
+ ],
+ name: 'Weekly Focus',
+ maintainers: ['Rjnishant530'],
+ handler,
+};
+
+async function handler(ctx): Promise<Data> {
+ const limit = ctx.req.query('limit') ? Number.parseInt(ctx.req.query('limit'), 10) : 1;
+ const response = await ofetch(`${baseUrl}/current-affairs/weekly-focus/archive`);
+ const $ = load(response);
+ const cards = $('div.weekly-focus-single-card').slice(0, limit).toArray();
+ const individualLinks = cards.flatMap((card) =>
+ $(card)
+ .find('a:has(p)')
+ .toArray()
+ .map((item) => {
+ const link = $(item).attr('href');
+ return { link: link?.startsWith('http') ? link : `${baseUrl}${link}` };
+ })
+ );
+
+ const itemsPromise = await Promise.allSettled(individualLinks.map(({ link }) => extractNews({ link }, 'main > div > div.flex > div.flex.w-full > div.w-full.mt-6')));
+
+ return {
+ title: 'Weekly Focus | Current Affairs | Vision IAS',
+ link: `${baseUrl}/current-affairs/weekly-focus/archive`,
+ description: 'Weekly Focus provides weekly comprehensive analysis of current themes with multidimensional and consolidated content.',
+ language: 'en',
+ item: itemsPromise.map((item) => (item.status === 'fulfilled' ? item.value : { title: 'Error Parse News' })),
+ image: `${baseUrl}/current-affairs/images/weekly-focus-logo.svg`,
+ icon: `${baseUrl}/current-affairs/favicon.ico`,
+ logo: `${baseUrl}/current-affairs/favicon.ico`,
+ allowEmpty: true,
+ };
+}
|
3cd7beccc266b5e99da6a7f770fcecc983592df4
|
2020-05-02 10:29:45
|
Ethan Shen
|
fix: 本地宝保留旧页面样式的城市资讯 (#4635)
| false
|
本地宝保留旧页面样式的城市资讯 (#4635)
|
fix
|
diff --git a/docs/new-media.md b/docs/new-media.md
index 67b7583a87b878..71dc92f1a372e5 100644
--- a/docs/new-media.md
+++ b/docs/new-media.md
@@ -336,7 +336,7 @@ Supported sub-sites:
### 焦点资讯
-<Route author="nczitzk" example="/bendibao/news/bj" path="/bendibao/news/:city" :paramsDesc="['城市缩写']">
+<Route author="nczitzk" example="/bendibao/news/bj" path="/bendibao/news/:city" :paramsDesc="['城市缩写,可在该城市页面的 URL 中找到']">
| 城市名 | 缩写 |
| ------ | ---- |
@@ -347,6 +347,8 @@ Supported sub-sites:
更多城市请参见 [这里](http://www.bendibao.com/city.htm)
+> **香港特别行政区** 和 **澳门特别行政区** 的本地宝城市页面不更新资讯。
+
</Route>
## 币世界
diff --git a/lib/routes/bendibao/news.js b/lib/routes/bendibao/news.js
index cf10d8baf469bf..9c91c2372ecc03 100644
--- a/lib/routes/bendibao/news.js
+++ b/lib/routes/bendibao/news.js
@@ -4,13 +4,18 @@ const cheerio = require('cheerio');
module.exports = async (ctx) => {
const city = ctx.params.city;
- const response = await got({
+ let response = await got({
method: 'get',
url: `http://${city}.bendibao.com/`,
});
- const $ = cheerio.load(response.data);
- const list = $('ul.focus-news li')
+ let $ = cheerio.load(response.data);
+ const title =
+ $('title')
+ .text()
+ .replace(/-爱上本地宝,生活会更好/, '') + `焦点资讯`;
+
+ let list = $('ul.focus-news li')
.map((_, item) => {
item = $(item).find('a');
return {
@@ -20,6 +25,32 @@ module.exports = async (ctx) => {
})
.get();
+ // Cities share 2 sets of ui.
+ //
+ // eg1. http://bj.bendibao.com/
+ // eg2. http://kel.bendibao.com/
+ //
+ // Go to /news to fetch data for the eg2 case.
+
+ if (!list.length) {
+ response = await got({
+ method: 'get',
+ url: `http://${city}.bendibao.com/news`,
+ });
+
+ $ = cheerio.load(response.data);
+
+ list = $('#listNewsTimeLy div.info')
+ .map((_, item) => {
+ item = $(item).find('a');
+ return {
+ title: item.text(),
+ link: item.attr('href'),
+ };
+ })
+ .get();
+ }
+
const items = await Promise.all(
list.map(
async (item) =>
@@ -42,10 +73,7 @@ module.exports = async (ctx) => {
);
ctx.state.data = {
- title:
- $('title')
- .text()
- .replace(/-爱上本地宝,生活会更好/, '') + `焦点资讯`,
+ title: title,
link: `http://${city}.bendibao.com/`,
item: items,
};
|
fed0e126db69773fc9e8ad90e415bf33e430b79e
|
2019-01-30 08:41:35
|
renovate[bot]
|
fix(deps): update dependency winston to v3.2.1 (#1486)
| false
|
update dependency winston to v3.2.1 (#1486)
|
fix
|
diff --git a/package.json b/package.json
index 65be1fe08205d2..29fafc0570b6d5 100644
--- a/package.json
+++ b/package.json
@@ -78,7 +78,7 @@
"sharp": "^0.21.0",
"socks-proxy-agent": "^4.0.1",
"twit": "2.2.11",
- "winston": "3.2.0"
+ "winston": "3.2.1"
},
"engines": {
"node": ">=8.0.0"
diff --git a/yarn.lock b/yarn.lock
index 72a1fb5d75be8d..4ab2395d80a397 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6249,16 +6249,16 @@ log-update@^2.3.0:
cli-cursor "^2.0.0"
wrap-ansi "^3.0.1"
-logform@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/logform/-/logform-2.1.0.tgz#eb769f7f98f285a4ed5dc7905cac89be5a1f7c04"
- integrity sha512-srZ6qfWCHLX0HVBuWiBC9CPWh61PFrj/akMSQTEqVOgik8fbpg849VU/kepesr6kBZ42Jsk8Duuabim6hAh27w==
+logform@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/logform/-/logform-2.1.1.tgz#7461e8445c1528adb4e9ae2cf277ba3b64b84ff1"
+ integrity sha512-PARKXBrI4Mf3FTB7yDW/CPAHbbtqTYbzBVk58F8wXX3q3sGbmbkLjksbAxkKCh4GNtq0En1YMJYzMeeyxOKUBg==
dependencies:
colors "^1.2.1"
fast-safe-stringify "^2.0.4"
fecha "^2.3.3"
ms "^2.1.1"
- triple-beam "^1.2.0"
+ triple-beam "^1.3.0"
loglevelnext@^1.0.1, loglevelnext@^1.0.2:
version "1.0.5"
@@ -10389,15 +10389,15 @@ winston-transport@^4.3.0:
readable-stream "^2.3.6"
triple-beam "^1.2.0"
[email protected]:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/winston/-/winston-3.2.0.tgz#f42735b194a425526025d3ae721246c796172f24"
- integrity sha512-r2e2ufodByh8U1infSXNLViN7ekqVRoSkcJgpS6AzAyKve0uiUkeQq0kxdSDr8bwaM1rGXprvvoC1B+ocy5L0w==
[email protected]:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/winston/-/winston-3.2.1.tgz#63061377976c73584028be2490a1846055f77f07"
+ integrity sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw==
dependencies:
async "^2.6.1"
diagnostics "^1.1.1"
is-stream "^1.1.0"
- logform "^2.1.0"
+ logform "^2.1.1"
one-time "0.0.4"
readable-stream "^3.1.1"
stack-trace "0.0.x"
|
390d5fe02cc7370b250cdc13d7a59aaa8661b495
|
2024-03-15 18:41:03
|
tssujt
|
fix(route): Update wmpvp news title (#14797)
| false
|
Update wmpvp news title (#14797)
|
fix
|
diff --git a/lib/routes/wmpvp/index.ts b/lib/routes/wmpvp/index.ts
index cf4285e0b087f7..a64a204b20ca1a 100644
--- a/lib/routes/wmpvp/index.ts
+++ b/lib/routes/wmpvp/index.ts
@@ -23,6 +23,11 @@ export const route: Route = {
| 1 | 2 |`,
};
+const TYPE_MAP = {
+ '1': 'DOTA2',
+ '2': 'CS2',
+};
+
async function handler(ctx) {
const type = ctx.req.param('type');
@@ -49,7 +54,7 @@ async function handler(ctx) {
});
return {
- title: `完美世界电竞`,
+ title: `完美世界电竞 - ${TYPE_MAP[type]} 资讯`,
link: `https://news.wmpvp.com/`,
item: items,
};
|
0a60a733ad7096432815f60a2497959f418a2975
|
2020-04-28 13:28:02
|
DIYgod
|
docs: format
| false
|
format
|
docs
|
diff --git a/docs/design.md b/docs/design.md
index 0c90bbc0151e15..4fd99a719b335a 100755
--- a/docs/design.md
+++ b/docs/design.md
@@ -4,17 +4,17 @@ pageClass: routes
# 设计
-## Digic Picture
+## Axis Studios
-### 作品和新闻
+### Work type
-<Route author="MisteryMonster" example="/digic-pictures/works/real-time-engine" path="/digic-pictures/:menu/:tag?" :paramsDesc="['`news`, `works`', 'WORK 下项目类型: `/game-cinematics`, `/feature`, `/making-of`, `/commercials-vfx`, `/real-time-engine`']"/>
+<Route author="MisteryMonster" example="/axis-studios/work/full-service-cg-production" path="/axis-studios/:type/:tag?" :paramsDesc="['`work`, `blog`','文章内的 Work type URL: `compositing`, `full-service-cg-production`, `vfx-supervision`, `realtime`, `art-direction`, `animation`']">
-## Blur Studio
+文章内 Work type 指向的栏目地址,比如: 'https://axisstudiosgroup.com/work/full-service-cg-production' 的 tag 为 `full-service-cg-production`,要注意的是 tag 和文章的目录是一样的。
-### Works
+有一些 tag 并不经常使用: `Script`, `direction`, `production`, `design-concept` 等等。
-<Route author="MisteryMonster" example="/blur-studio" path="/blur-studio" />
+</Route>
## Blow Studio
@@ -22,17 +22,17 @@ pageClass: routes
<Route author="MisteryMonster" example="/blow-studio" path="/blow-studio" />
-## Axis Studios
+## Blur Studio
-### Work type
+### Works
-<Route author="MisteryMonster" example="/axis-studios/work/full-service-cg-production" path="/axis-studios/:type/:tag?" :paramsDesc="['`work`, `blog`','文章内的 Work type URL: `compositing`, `full-service-cg-production`, `vfx-supervision`, `realtime`, `art-direction`, `animation`']">
+<Route author="MisteryMonster" example="/blur-studio" path="/blur-studio" />
-文章内 Work type 指向的栏目地址,比如: 'https://axisstudiosgroup.com/work/full-service-cg-production' 的 tag 为 `full-service-cg-production`,要注意的是 tag 和文章的目录是一样的。
+## Digic Picture
-有一些 tag 并不经常使用: `Script`, `direction`, `production`, `design-concept` 等等。
+### 作品和新闻
-</Route>
+<Route author="MisteryMonster" example="/digic-pictures/works/real-time-engine" path="/digic-pictures/:menu/:tag?" :paramsDesc="['`news`, `works`', 'WORK 下项目类型: `/game-cinematics`, `/feature`, `/making-of`, `/commercials-vfx`, `/real-time-engine`']"/>
## Dribbble
@@ -55,12 +55,6 @@ pageClass: routes
<Route author="miaoyafeng" example="/invisionapp/inside-design" path="/invisionapp/inside-design">
</Route>
-## Sun Creature
-
-### Works
-
-<Route author="MisteryMonster" example="/sun-creature" path="/sun-creature" />
-
## Method Studios
### 菜单
@@ -73,6 +67,12 @@ pageClass: routes
</Route>
+## Sun Creature
+
+### Works
+
+<Route author="MisteryMonster" example="/sun-creature" path="/sun-creature" />
+
## UI 中国
### 推荐文章
diff --git a/docs/en/design.md b/docs/en/design.md
index bfd6997742f1d9..a5fde4a09de5fa 100755
--- a/docs/en/design.md
+++ b/docs/en/design.md
@@ -4,17 +4,17 @@ pageClass: routes
# Design
-## Digic Picture
+## Axis Studios
-### Works & News
+### Work type
-<RouteEn author="MisteryMonster" example="/digic-pictures/works/real-time-engine" path="/digic-pictures/:menu/:tag?" :paramsDesc="['`news`, `works`', 'Under WORK types: `/game-cinematics`, `/feature`, `/making-of`, `/commercials-vfx`, `/real-time-engine`']" />
+<RouteEn author="MisteryMonster" example="/axis-studios/work/full-service-cg-production" path="/axis-studios/:type/:tag?" :paramsDesc="['`work`, `blog`', 'Work type URL: `compositing`, `full-service-cg-production`, `vfx-supervision`, `realtime`, `art-direction`, `animation`']">
-## Blur Studio
+Work type URL in articles. Such as: 'https://axisstudiosgroup.com/work/full-service-cg-production' the tag will be `full-service-cg-production`.
-### Works
+Some tags are rarely used: `Script`, `direction`, `production`, `design-concept` etc。
-<RouteEn author="MisteryMonster" example="/blur-studio" path="/blur-studio" />
+</RouteEn>
## Blow Studio
@@ -22,17 +22,17 @@ pageClass: routes
<RouteEn author="MisteryMonster" example="/blow-studio" path="/blow-studio" />
-## Axis Studios
+## Blur Studio
-### Work type
+### Works
-<RouteEn author="MisteryMonster" example="/axis-studios/work/full-service-cg-production" path="/axis-studios/:type/:tag?" :paramsDesc="['`work`, `blog`', 'Work type URL: `compositing`, `full-service-cg-production`, `vfx-supervision`, `realtime`, `art-direction`, `animation`']">
+<RouteEn author="MisteryMonster" example="/blur-studio" path="/blur-studio" />
-Work type URL in articles. Such as: 'https://axisstudiosgroup.com/work/full-service-cg-production' the tag will be `full-service-cg-production`.
+## Digic Picture
-Some tags are rarely used: `Script`, `direction`, `production`, `design-concept` etc。
+### Works & News
-</RouteEn>
+<RouteEn author="MisteryMonster" example="/digic-pictures/works/real-time-engine" path="/digic-pictures/:menu/:tag?" :paramsDesc="['`news`, `works`', 'Under WORK types: `/game-cinematics`, `/feature`, `/making-of`, `/commercials-vfx`, `/real-time-engine`']" />
## Dribbble
@@ -55,12 +55,6 @@ Some tags are rarely used: `Script`, `direction`, `production`, `design-concep
<RouteEn author="miaoyafeng" example="/invisionapp/inside-design" path="/invisionapp/inside-design">
</RouteEn>
-## Sun Creature
-
-### Works
-
-<RouteEn author="MisteryMonster" example="/sun-creature" path="/sun-creature" />
-
## Method Studios
### Menus
@@ -73,6 +67,12 @@ Default is under 'https://www.methodstudios.com/en/features'.
</RouteEn>
+## Sun Creature
+
+### Works
+
+<RouteEn author="MisteryMonster" example="/sun-creature" path="/sun-creature" />
+
## Unit Image
### Films
diff --git a/docs/reading.md b/docs/reading.md
index c9d114f0e2105e..dbf16d0d24d7d0 100644
--- a/docs/reading.md
+++ b/docs/reading.md
@@ -99,6 +99,12 @@ count 的取值范围为 1-12,为防止请求次数过多,推荐设置为 5
</Route>
+## 第一版主
+
+### 小说
+
+<Route author="x1a0xv4n" example="/novel/d1bz/2/2608_6" path="/novel/d1bz/:category/:id" :paramsDesc="['小说分类,可在对应小说页 URL 中找到,例如`2`', '小说id,可在对应小说页 URL 中找到,例如`2608_6`']"/>
+
## 飞地
### 分类
@@ -224,7 +230,3 @@ count 的取值范围为 1-12,为防止请求次数过多,推荐设置为 5
### 主页
<Route author="kt286" example="/zreading" path="/zreading" />
-
-## 第一版主
-
-<Route author="x1a0xv4n" example="/novel/d1bz/2/2608_6" path="/novel/d1bz/:category/:id" :paramsDesc="['小说分类,可在对应小说页 URL 中找到,例如`2`', '小说id,可在对应小说页 URL 中找到,例如`2608_6`']"/>
|
77db6c2de191cbe23796d3cfbdf2dd7b171395da
|
2022-08-30 03:27:43
|
dependabot[bot]
|
chore(deps): bump rand-user-agent from 1.0.78 to 1.0.79 (#10650)
| false
|
bump rand-user-agent from 1.0.78 to 1.0.79 (#10650)
|
chore
|
diff --git a/package.json b/package.json
index 06fed2bbc17949..2fb657a72d16d9 100644
--- a/package.json
+++ b/package.json
@@ -124,7 +124,7 @@
"puppeteer-extra": "3.3.4",
"puppeteer-extra-plugin-stealth": "2.11.1",
"query-string": "7.1.1",
- "rand-user-agent": "1.0.78",
+ "rand-user-agent": "1.0.79",
"re2": "1.17.7",
"require-all": "3.0.0",
"rss-parser": "3.12.0",
diff --git a/yarn.lock b/yarn.lock
index 964dccb8af3827..d6c25dd7f93500 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -11721,10 +11721,10 @@ ramda@^0.26.1:
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06"
integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==
[email protected]:
- version "1.0.78"
- resolved "https://registry.yarnpkg.com/rand-user-agent/-/rand-user-agent-1.0.78.tgz#5472e954b06ab1ef8b7b080ebc0db6fd3a9a142d"
- integrity sha512-atAfPjApMtpHK6pz+1zD1NYc8rV4ixqz4UtkYw17LSxKvOaaiLZBeUz6keJuTTNoTUjdYFZXAFBy29WHdvxwAw==
[email protected]:
+ version "1.0.79"
+ resolved "https://registry.yarnpkg.com/rand-user-agent/-/rand-user-agent-1.0.79.tgz#1472d536fdced3e2e2b64cccafafc20651599d91"
+ integrity sha512-M/KwE9V2ILytCmKNyg8g/ExrQspUUZcBNFbfryLyJuNcPC/x9IYy+9LEZnSio0a5Rfjv/iHXQYTSEqavL0aZrw==
[email protected]:
version "0.4.6"
|
d5e0e137b428bd5101beada6a55b75083b2e76bc
|
2020-03-28 05:49:56
|
DIYgod
|
fix: diygod animal-crossing
| false
|
diygod animal-crossing
|
fix
|
diff --git a/lib/routes/blogs/diygod/animal-crossing.js b/lib/routes/blogs/diygod/animal-crossing.js
index 9ced1d3d969815..e94c6ffae3a1b4 100644
--- a/lib/routes/blogs/diygod/animal-crossing.js
+++ b/lib/routes/blogs/diygod/animal-crossing.js
@@ -11,6 +11,7 @@ module.exports = async (ctx) => {
const data = response.data;
const $ = cheerio.load(data);
+ $('style').remove();
const list = $('h2');
ctx.state.data = {
|
219e10dc12205ef0f6490ccfd65afb0097b24f38
|
2021-02-12 20:17:26
|
dependabot-preview[bot]
|
chore(deps-dev): bump @types/koa from 2.11.7 to 2.11.8
| false
|
bump @types/koa from 2.11.7 to 2.11.8
|
chore
|
diff --git a/package.json b/package.json
index b81b7bd6364d8a..d5ae481c1840f7 100644
--- a/package.json
+++ b/package.json
@@ -37,7 +37,7 @@
"devDependencies": {
"@types/cheerio": "0.22.24",
"@types/got": "9.6.11",
- "@types/koa": "2.11.7",
+ "@types/koa": "2.11.8",
"@vuepress/plugin-back-to-top": "1.8.1",
"@vuepress/plugin-google-analytics": "1.8.1",
"@vuepress/plugin-pwa": "1.8.1",
diff --git a/yarn.lock b/yarn.lock
index 5dcf10a0fccb09..2cfa414115439a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1691,10 +1691,10 @@
dependencies:
"@types/koa" "*"
-"@types/koa@*", "@types/[email protected]":
- version "2.11.7"
- resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.11.7.tgz#3b38f3b9faa66315a84890a771d166fb36463100"
- integrity sha512-1iXJZZWCePoMe9LGSIPWsu5k5RI4ooXijW78c+nljMn3YbUts8PXoEESu1OeFmrazLPl1l97vTxzwvmH32TWVQ==
+"@types/koa@*", "@types/[email protected]":
+ version "2.11.8"
+ resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.11.8.tgz#b3fa4bf0baa518b71cb0c14b8a354b6292bea883"
+ integrity sha512-8LJHhlEjxvEb9MR06zencOxZyxpTHG2u6pcvJbSBN9DRBc+GYQ9hFI8sSH7dvYoITKeAGWo2eVPKx1Z/zX/yKw==
dependencies:
"@types/accepts" "*"
"@types/content-disposition" "*"
|
199d4febfc745ab42dcda61860a21289df98dc2f
|
2024-10-23 08:11:54
|
xbpk3t
|
fix(route): update 69shuba url (#17256)
| false
|
update 69shuba url (#17256)
|
fix
|
diff --git a/lib/routes/69shu/article.ts b/lib/routes/69shu/article.ts
index 26c63fdb624d6c..4371e35dce616f 100644
--- a/lib/routes/69shu/article.ts
+++ b/lib/routes/69shu/article.ts
@@ -6,7 +6,7 @@ import type { Route, DataItem } from '@/types';
export const route: Route = {
path: '/article/:id',
name: '章节',
- url: 'www.69shuba.pro',
+ url: 'www.69shuba.cx',
maintainers: ['eternasuno'],
example: '/69shu/article/47117',
parameters: { id: '小说 id, 可在对应小说页 URL 中找到' },
@@ -21,13 +21,13 @@ export const route: Route = {
},
radar: [
{
- source: ['www.69shuba.pro/book/:id.htm'],
+ source: ['www.69shuba.cx/book/:id.htm'],
target: '/article/:id',
},
],
handler: async (ctx) => {
const { id } = ctx.req.param();
- const link = `https://www.69shuba.pro/book/${id}.htm`;
+ const link = `https://www.69shuba.cx/book/${id}.htm`;
const $ = load(await get(link));
const item = await Promise.all(
diff --git a/lib/routes/69shu/namespace.ts b/lib/routes/69shu/namespace.ts
index e02b40b527d26a..df36fa4cd454d5 100644
--- a/lib/routes/69shu/namespace.ts
+++ b/lib/routes/69shu/namespace.ts
@@ -2,5 +2,5 @@ import type { Namespace } from '@/types';
export const namespace: Namespace = {
name: '69书吧',
- url: '69shuba.pro',
+ url: '69shuba.cx',
};
|
dc818428f2658bc39d6cd4ef65b862037142f778
|
2020-07-28 22:46:12
|
hoilc
|
feat: add picuki (#5256)
| false
|
add picuki (#5256)
|
feat
|
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index a450b9351e709d..a27aceb2607fd9 100644
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -2109,6 +2109,17 @@
},
],
},
+ 'picuki.com': {
+ _name: 'Picuki',
+ www: [
+ {
+ title: '用户',
+ docs: 'https://docs.rsshub.app/social-media.html#picuki-yong-hu',
+ source: '/profile/:id',
+ target: '/picuki/profile/:id',
+ },
+ ],
+ },
'manxiaosi.com': {
_name: '漫小肆',
'.': [
diff --git a/docs/en/social-media.md b/docs/en/social-media.md
index 49682567344d95..40a711348ceab5 100644
--- a/docs/en/social-media.md
+++ b/docs/en/social-media.md
@@ -50,6 +50,12 @@ For example, https://pawoo.net/users/pawoo_support.atom or https://pawoo.net/use
<RouteEn author="hoilc" example="/piapro/public/music/miku/2" path="/piapro/public/:type/:tag?/:category?" :paramsDesc="['work type, can be `music`,`illust`,`text`','`tag` parameter in url','category ID, `categoryId` parameter in url']"/>
+## Picuki
+
+### User Profile
+
+<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id" :paramsDesc="['Instagram id']" />
+
## pixiv
### User Bookmark
diff --git a/docs/social-media.md b/docs/social-media.md
index 8c45db46908688..c783fd618e9ce3 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -342,6 +342,12 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
<Route author="hoilc" example="/piapro/public/music/miku/2" path="/piapro/public/:type/:tag?/:category?" :paramsDesc="['作品类别, 可选`music`,`illust`,`text`','标签, 即 URL 中`tag`参数','分类 ID, 即 URL 中 `categoryId` 参数']"/>
+## Picuki
+
+### 用户
+
+<Route author="hoilc" example="/picuki/profile/stefaniejoosten" path="/picuki/profile/:id" :paramsDesc="['Instagram 用户 id']" radar="1" />
+
## pixiv
### 用户收藏
diff --git a/lib/router.js b/lib/router.js
index 9dac95885f0741..92353cd1a60514 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -2971,6 +2971,8 @@ router.get('/ngbj/cat/:cat', require('./routes/niaogebiji/cat'));
// 东方我乐多丛志
router.get('/touhougarakuta/:language/:type', require('./routes/touhougarakuta'));
+// Picuki
+router.get('/picuki/profile/:id', require('./routes/picuki/profile'));
// 新榜
router.get('/newrank/wechat/:wxid', require('./routes/newrank/wechat'));
router.get('/newrank/douyin/:dyid', require('./routes/newrank/douyin'));
diff --git a/lib/routes/picuki/profile.js b/lib/routes/picuki/profile.js
new file mode 100644
index 00000000000000..485c7f1598d159
--- /dev/null
+++ b/lib/routes/picuki/profile.js
@@ -0,0 +1,39 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const chrono = require('chrono-node');
+
+module.exports = async (ctx) => {
+ const id = ctx.params.id;
+
+ const url = `https://www.picuki.com/profile/${id}`;
+
+ const response = await got.get(url);
+ const $ = cheerio.load(response.data);
+
+ const profile_name = $('.profile-name-bottom').text();
+ const profile_img = $('.profile-avatar > img').attr('src');
+ const profile_description = $('.profile-description').text();
+
+ const list = $('ul.box-photos [data-s="media"]').get();
+
+ ctx.state.data = {
+ title: `${profile_name} (@${id}) - Picuki`,
+ link: url,
+ image: profile_img,
+ description: profile_description,
+ item: list.map((post) => {
+ post = $(post);
+ const post_image = post.find('.post-image').attr('src');
+ const post_description = post.find('.photo-description').text().trim();
+ const post_link = post.find('.photo > a').attr('href');
+ const post_time = post.find('.time');
+ return {
+ title: post_description || 'Untitled',
+ author: `@${id}`,
+ description: `<img src="${post_image}">` + (post_description.length > 100 ? `<p>${post_description}</p>` : ''),
+ link: post_link,
+ pubDate: post_time ? chrono.parseDate(post_time.text()) : new Date(),
+ };
+ }),
+ };
+};
|
9b7748733dba69e84b45e5246ad2978b3cd6ae01
|
2024-04-30 03:45:26
|
dependabot[bot]
|
chore(deps): bump @tonyrl/rand-user-agent from 2.0.60 to 2.0.61 (#15410)
| false
|
bump @tonyrl/rand-user-agent from 2.0.60 to 2.0.61 (#15410)
|
chore
|
diff --git a/package.json b/package.json
index bb303acf7b9d48..81fb8350363d12 100644
--- a/package.json
+++ b/package.json
@@ -56,7 +56,7 @@
"@notionhq/client": "2.2.15",
"@postlight/parser": "2.2.3",
"@sentry/node": "7.112.2",
- "@tonyrl/rand-user-agent": "2.0.60",
+ "@tonyrl/rand-user-agent": "2.0.61",
"aes-js": "3.1.2",
"art-template": "4.13.2",
"bbcodejs": "0.0.4",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e283788516fb9b..1b3965564cc192 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -24,8 +24,8 @@ dependencies:
specifier: 7.112.2
version: 7.112.2
'@tonyrl/rand-user-agent':
- specifier: 2.0.60
- version: 2.0.60
+ specifier: 2.0.61
+ version: 2.0.61
aes-js:
specifier: 3.1.2
version: 3.1.2
@@ -2793,8 +2793,8 @@ packages:
dependencies:
defer-to-connect: 2.0.1
- /@tonyrl/[email protected]:
- resolution: {integrity: sha512-aECrYYbIRNbIz8LlgwAoOF9rc0WgGRwuzLvSVny/kzdtJCkszZjMRs4/WpFdRIiGWrw6KZ21O05CXeaFp0eNZw==}
+ /@tonyrl/[email protected]:
+ resolution: {integrity: sha512-sa/xm6BzI8FsDRk/jBJY8H2dI6JZ/SSDTRA/JW7aPSn6kJnPiHwPeWpGF3hATK/bgKgfKd5I0a/TePibemicwA==}
engines: {node: '>=14.16'}
dev: false
|
9a9bdd14f1e674d443102360acb4d15a753b5e2e
|
2022-08-17 21:21:41
|
lin1005q
|
fix: 支持oschina更多地址直接显示正文 (#10509)
| false
|
支持oschina更多地址直接显示正文 (#10509)
|
fix
|
diff --git a/docs/blog.md b/docs/blog.md
index 0b49abc8d52eea..93b7976df98a74 100644
--- a/docs/blog.md
+++ b/docs/blog.md
@@ -19,6 +19,7 @@ pageClass: routes
### 用户博客
<Route author="Jkker" example="/csdn/blog/csdngeeknews" path="/csdn/blog/:user" radar="1" :paramsDesc="['`user` 为 CSDN 用户名,可以在主页 url 中找到']" />
+
## Google Sites
### 文章更新
diff --git a/docs/en/blog.md b/docs/en/blog.md
index 2bf17bae696c29..063b8b83505d3d 100644
--- a/docs/en/blog.md
+++ b/docs/en/blog.md
@@ -15,6 +15,7 @@ pageClass: routes
### User Feed
<RouteEn author="Jkker" example="/csdn/blog/csdngeeknews" path="/csdn/blog/:user" radar="1" :paramsDesc="['`user` is the username of a CSDN blog which can be found in the url of the home page']" />
+
## Google Sites
### Articles
diff --git a/docs/en/social-media.md b/docs/en/social-media.md
index 88a18002a4d0c2..4fc1a8f9e8df4d 100644
--- a/docs/en/social-media.md
+++ b/docs/en/social-media.md
@@ -240,7 +240,7 @@ Though, every Story expires after 24 hours, so it may be not so serious.
### Following timeline
-<RouteEn author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1" selfhost="1"/>
+<RouteEn author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1" selfhost="1">
::: warning
Only for self-hosted
@@ -248,7 +248,9 @@ Only for self-hosted
:::
</RouteEn>
-## pixiv-fanbox
+## pixivFANBOX
+
+### User
<RouteEn author="sgqy" example="/fanbox/otomeoto" path="/fanbox/:user?" :paramsDesc="['User name. Can be found in URL. Default is official news']"/>
diff --git a/docs/programming.md b/docs/programming.md
index 85f034103b8d8d..461fddd1f5fa88 100644
--- a/docs/programming.md
+++ b/docs/programming.md
@@ -857,13 +857,13 @@ GitHub 官方也提供了一些 RSS:
### 资讯
-<Route author="tgly307 zengxs" example="/oschina/news/project" path="/oschina/news/:category?" :paramsDesc="['板块名']">
+<Route author="tgly307 zengxs" example="/oschina/news/project" path="/oschina/news/:category?" :paramsDesc="['板块名']" radar="1" rssbud="1">
| [综合资讯][osc_gen] | [软件更新资讯][osc_proj] | [行业资讯][osc_ind] | [编程语言资讯][osc_pl] |
| --------------- | ------------------ | --------------- | ---------------- |
| industry | project | industry-news | programming |
-订阅[全部板块资讯][osc_all]可以使用 <https://rsshub.app/oschina/news>
+订阅 [全部板块资讯][osc_all] 可以使用 <https://rsshub.app/oschina/news>
[osc_all]: https://www.oschina.net/news "开源中国 - 全部资讯"
@@ -879,27 +879,15 @@ GitHub 官方也提供了一些 RSS:
### 用户博客
-<Route author="dxmpalb" example="/oschina/user/xxiaobian" path="/oschina/user/:id" :paramsDesc="['用户 id,可通过查看用户博客网址得到,如果博客以 u/数字结尾,使用下一条路由']">
-
-| 小小编辑 |
-| --------- |
-| xxiaobian |
-
-</Route>
+<Route author="dxmpalb" example="/oschina/user/lenve" path="/oschina/user/:id" :paramsDesc="['用户 id,可通过查看用户博客网址得到,如果博客以 u/数字结尾,使用下一条路由']" radar="1" rssbud="1"/>
### 数字型账号用户博客
-<Route author="dxmpalb" example="/oschina/u/3920392" path="/oschina/u/:id" :paramsDesc="['用户 id,可通过查看用户博客网址得到,以 u/数字结尾,数字即为 id']">
-
-| EAWorld 的博客 |
-| ----------- |
-| 3920392 |
-
-</Route>
+<Route author="dxmpalb" example="/oschina/u/3920392" path="/oschina/u/:uid" :paramsDesc="['用户 id,可通过查看用户博客网址得到,以 u/数字结尾,数字即为 id']" radar="1" rssbud="1"/>
### 问答主题
-<Route author="loveely7" example="/oschina/topic/weekly-news" path="/oschina/topic/:topic" :paramsDesc="['主题名,可从[全部主题](https://www.oschina.net/question/topics)进入主题页,在 URL 中找到']"/>
+<Route author="loveely7" example="/oschina/topic/weekly-news" path="/oschina/topic/:topic" :paramsDesc="['主题名,可从 [全部主题](https://www.oschina.net/question/topics) 进入主题页,在 URL 中找到']" radar="1" rssbud="1"/>
## 拉勾网
diff --git a/docs/social-media.md b/docs/social-media.md
index 3b3633d5bfdca7..d6dea2e39a357e 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -585,9 +585,10 @@ Instagram Stories 没有可靠的 guid,你的 RSS 阅读器可能将同一条
| safe | r18 | 空或其他任意值 |
</Route>
+
### 关注的新作品
-<Route author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1" selfhost="1"/>
+<Route author="ClarkeCheng" example="/pixiv/user/illustfollows" path="/pixiv/user/illustfollows" radar="1" rssbud="1" selfhost="1">
::: warning 注意
@@ -597,9 +598,11 @@ Instagram Stories 没有可靠的 guid,你的 RSS 阅读器可能将同一条
</Route>
-## pixiv-fanbox
+## pixivFANBOX
+
+### User
-<Route author="sgqy" example="/fanbox/otomeoto" path="/fanbox/:user?" :paramsDesc="['用户名, 可在用户主页 URL 中找到. 默认为官方资讯']"/>
+<Route author="sgqy" example="/fanbox/otomeoto" path="/fanbox/:user?" :paramsDesc="['用户名,可在用户主页 URL 中找到,默认为官方资讯']"/>
## Popi 提问箱
diff --git a/lib/router.js b/lib/router.js
index 90e7dd9f27b270..8b057683bc4ed2 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -396,11 +396,11 @@ router.get('/gwern/:category', lazyloadRouteHandler('./routes/gwern/category'));
// LinkedKeeper
router.get('/linkedkeeper/:type/:id?', lazyloadRouteHandler('./routes/linkedkeeper/index'));
-// 开源中国
-router.get('/oschina/news/:category?', lazyloadRouteHandler('./routes/oschina/news'));
-router.get('/oschina/user/:id', lazyloadRouteHandler('./routes/oschina/user'));
-router.get('/oschina/u/:id', lazyloadRouteHandler('./routes/oschina/u'));
-router.get('/oschina/topic/:topic', lazyloadRouteHandler('./routes/oschina/topic'));
+// 开源中国 migrated to v2
+// router.get('/oschina/news/:category?', lazyloadRouteHandler('./routes/oschina/news'));
+// router.get('/oschina/user/:id', lazyloadRouteHandler('./routes/oschina/user'));
+// router.get('/oschina/u/:id', lazyloadRouteHandler('./routes/oschina/u'));
+// router.get('/oschina/topic/:topic', lazyloadRouteHandler('./routes/oschina/topic'));
// MIT Technology Review
router.get('/technologyreview', lazyloadRouteHandler('./routes/technologyreview/index'));
diff --git a/lib/routes/oschina/topic.js b/lib/routes/oschina/topic.js
deleted file mode 100644
index 889832640df240..00000000000000
--- a/lib/routes/oschina/topic.js
+++ /dev/null
@@ -1,54 +0,0 @@
-const url = require('url');
-const got = require('@/utils/got');
-const date = require('@/utils/date');
-const cheerio = require('cheerio');
-
-async function load(link) {
- const res = await got({
- method: 'get',
- url: link,
- });
- const content = cheerio.load(res.data);
- content('.ad-wrap').remove();
- return content;
-}
-
-module.exports = async (ctx) => {
- const topic = ctx.params.topic;
- const topicUrl = `https://www.oschina.net/question/topic/${topic}?show=time`;
-
- const $ = await load(topicUrl);
- const topicName = $('.topic-info > .topic-header > h3').text();
- const list = $('#questionList').find('.question-item');
- const count = [];
- for (let i = 0; i < Math.min(list.length, 10); i++) {
- count.push(i);
- }
-
- const resultItem = await Promise.all(
- count.map(async (i) => {
- const each = $(list[i]);
- const originalUrl = each.find('.header').attr('href');
-
- const item = {
- title: each.find('.header').text(),
- link: url.resolve('https://www.oschina.net', encodeURI(originalUrl)),
- author: date(each.find('.extra > .list > .item:nth-of-type(1)').text()),
- pubDate: date(each.find('.extra > .list > .item:nth-of-type(2)').text()),
- };
-
- item.description = await ctx.cache.tryGet(originalUrl, async () => {
- const content = await load(item.link);
- return content('#articleContent').html();
- });
-
- return item;
- })
- );
-
- ctx.state.data = {
- title: `开源中国-${topicName}`,
- link: topicUrl,
- item: resultItem,
- };
-};
diff --git a/lib/routes/oschina/u.js b/lib/routes/oschina/u.js
deleted file mode 100644
index a2c787271ce97f..00000000000000
--- a/lib/routes/oschina/u.js
+++ /dev/null
@@ -1,57 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-
-module.exports = async (ctx) => {
- const id = ctx.params.id;
- const res = await got({
- method: 'get',
- url: `https://my.oschina.net/u/${id}`,
- headers: {
- Referer: `https://my.oschina.net/u/${id}`,
- },
- });
- const $ = cheerio.load(res.data);
- $('div[data-tooltip]').remove();
- const author = $('[data-user-name]').attr('data-user-name');
- const list = $('#newestBlogList').find('.blog-item');
- const count = [];
- for (let i = 0; i < Math.min(list.length, 10); i++) {
- count.push(i);
- }
- const resultItem = await Promise.all(
- count.map(async (i) => {
- const each = $(list[i]);
- const originalUrl = each.find('a.header', '.content').attr('href');
- const item = {
- title: each.find('a.header', '.content').text(),
- description: each.find('p', '.description').text(),
- link: encodeURI(originalUrl),
- };
- const key = 'oschina' + item.link;
- const value = await ctx.cache.get(key);
-
- if (value) {
- item.description = value;
- } else {
- const detail = await got({
- method: 'get',
- url: item.link,
- headers: {
- Referer: item.link,
- },
- });
- const content = cheerio.load(detail.data);
- content('#articleContent .ad-wrap').remove();
- item.description = content('.article-detail').html();
- ctx.cache.set(key, item.description);
- }
- return item;
- })
- );
-
- ctx.state.data = {
- title: author + '的博客',
- link: `https://my.oschina.net/u/${id}`,
- item: resultItem,
- };
-};
diff --git a/lib/routes/oschina/user.js b/lib/routes/oschina/user.js
deleted file mode 100644
index 5800ed49747d34..00000000000000
--- a/lib/routes/oschina/user.js
+++ /dev/null
@@ -1,57 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-
-module.exports = async (ctx) => {
- const id = ctx.params.id;
- const res = await got({
- method: 'get',
- url: `https://my.oschina.net/${id}`,
- headers: {
- Referer: `https://my.oschina.net/${id}`,
- },
- });
- const $ = cheerio.load(res.data);
- $('div[data-tooltip]').remove();
- const author = $('[data-user-name]').attr('data-user-name');
- const list = $('#newestBlogList').find('.blog-item');
- const count = [];
- for (let i = 0; i < Math.min(list.length, 10); i++) {
- count.push(i);
- }
- const resultItem = await Promise.all(
- count.map(async (i) => {
- const each = $(list[i]);
- const originalUrl = each.find('a.header', '.content').attr('href');
- const item = {
- title: each.find('a.header', '.content').text(),
- description: each.find('p', '.description').text(),
- link: encodeURI(originalUrl),
- };
- const key = 'oschina' + item.link;
- const value = await ctx.cache.get(key);
-
- if (value) {
- item.description = value;
- } else {
- const detail = await got({
- method: 'get',
- url: item.link,
- headers: {
- Referer: item.link,
- },
- });
- const content = cheerio.load(detail.data);
- content('.ad-wrap').remove();
- item.description = content('.article-detail').html();
- ctx.cache.set(key, item.description);
- }
- return item;
- })
- );
-
- ctx.state.data = {
- title: author + '的博客',
- link: `https://my.oschina.net/${id}`,
- item: resultItem,
- };
-};
diff --git a/lib/v2/oschina/maintainer.js b/lib/v2/oschina/maintainer.js
new file mode 100644
index 00000000000000..a31dfc58eccbd7
--- /dev/null
+++ b/lib/v2/oschina/maintainer.js
@@ -0,0 +1,6 @@
+module.exports = {
+ '/news/:category?': ['tgly307', 'zengxs'],
+ '/topic/:topic': ['loveely7'],
+ '/u/:id': ['dxmpalb'],
+ '/user/:id': ['dxmpalb'],
+};
diff --git a/lib/routes/oschina/news.js b/lib/v2/oschina/news.js
similarity index 54%
rename from lib/routes/oschina/news.js
rename to lib/v2/oschina/news.js
index 724b862e037e49..eddbe3a2ce7058 100644
--- a/lib/routes/oschina/news.js
+++ b/lib/v2/oschina/news.js
@@ -1,10 +1,8 @@
-const url = require('url');
const got = require('@/utils/got');
-const date = require('@/utils/date');
+const { parseDate, parseRelativeDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
const cheerio = require('cheerio');
-const USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0';
-
const configs = {
all: {
name: '最新资讯',
@@ -34,59 +32,57 @@ const configs = {
};
module.exports = async (ctx) => {
- const category = ctx.params.category || 'all';
+ const category = ctx.params.category ?? 'all';
const config = configs[category];
- const res = await got({
- method: 'get',
- url: config.ajaxUrl,
+ const res = await got(config.ajaxUrl, {
headers: {
- 'User-Agent': USER_AGENT,
Referer: config.link,
'X-Requested-With': 'XMLHttpRequest',
},
});
const $ = cheerio.load(res.data);
- $('.ad-wrap').remove();
- const list = $('.items').find('.news-item');
- const count = [];
- for (let i = 0; i < Math.min(list.length, 10); i++) {
- count.push(i);
- }
- const resultItem = await Promise.all(
- count.map(async (i) => {
- const each = $(list[i]);
- const originalUrl = each.find('a', 'h3').attr('href');
- const item = {
- title: each.find('a', 'h3').attr('title'),
- description: each.find('p', '.description').text(),
- link: url.resolve('https://www.oschina.net', encodeURI(originalUrl)),
- pubDate: date(each.find('.extra > .list > .item:nth-of-type(2)').text()),
+
+ const list = $('.items .news-item')
+ .toArray()
+ .map((item) => {
+ item = $(item);
+ const date = item.find('.extra > .list > .item:nth-of-type(2)').text();
+ return {
+ title: item.find('h3 a').attr('title'),
+ description: item.find('.description p').text(),
+ link: item.find('h3 a').attr('href'),
+ pubDate: timezone(/\//.test(date) ? parseDate(date, ['YYYY/MM/DD HH:mm', 'MM/DD HH:mm']) : parseRelativeDate(date), +8),
};
- if (/^https?:\/\/www.oschina.net\/news\/.*$/.test(originalUrl)) {
- const key = 'oschina' + item.link;
- const value = await ctx.cache.get(key);
+ });
- if (value) {
- item.description = value;
- } else {
- const detail = await got({
- method: 'get',
- url: item.link,
+ const resultItem = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ if (/^https?:\/\/(my|www)\.oschina.net\/.*$/.test(item.link)) {
+ const detail = await got(item.link, {
headers: {
- 'User-Agent': USER_AGENT,
Referer: config.link,
},
});
const content = cheerio.load(detail.data);
- content('.ad-wrap').remove();
+
item.description = content('.article-detail').html();
item.author = content('.article-box__meta .item').first().text();
- ctx.cache.set(key, item.description);
}
- }
- return item;
- })
+ if (/^https?:\/\/gitee.com\/.*$/.test(item.link)) {
+ const detail = await got(item.link, {
+ headers: {
+ Referer: config.link,
+ },
+ });
+ const content = cheerio.load(detail.data);
+
+ item.description = content('.file_content').html();
+ }
+ return item;
+ })
+ )
);
ctx.state.data = {
diff --git a/lib/v2/oschina/radar.js b/lib/v2/oschina/radar.js
new file mode 100644
index 00000000000000..a2c778b86e6b12
--- /dev/null
+++ b/lib/v2/oschina/radar.js
@@ -0,0 +1,33 @@
+module.exports = {
+ 'oschina.net': {
+ _name: '开源中国',
+ '.': [
+ {
+ title: '资讯',
+ docs: 'https://docs.rsshub.app/programming.html#kai-yuan-zhong-guo',
+ source: ['/news/:category'],
+ target: '/oschina/news/:category',
+ },
+ {
+ title: '问答主题',
+ docs: 'https://docs.rsshub.app/programming.html#kai-yuan-zhong-guo',
+ source: ['/question/topic/:topic'],
+ target: '/oschina/topic/:topic',
+ },
+ ],
+ my: [
+ {
+ title: '用户博客',
+ docs: 'https://docs.rsshub.app/programming.html#kai-yuan-zhong-guo',
+ source: ['/:id'],
+ target: '/oschina/user/:id',
+ },
+ {
+ title: '数字型账号用户博客',
+ docs: 'https://docs.rsshub.app/programming.html#kai-yuan-zhong-guo',
+ source: ['/u/:uid'],
+ target: '/oschina/u/:uid',
+ },
+ ],
+ },
+};
diff --git a/lib/v2/oschina/router.js b/lib/v2/oschina/router.js
new file mode 100644
index 00000000000000..e8820c0164200b
--- /dev/null
+++ b/lib/v2/oschina/router.js
@@ -0,0 +1,6 @@
+module.exports = (router) => {
+ router.get('/news/:category?', require('./news'));
+ router.get('/topic/:topic', require('./topic'));
+ router.get('/u/:uid', require('./user'));
+ router.get('/user/:id', require('./user'));
+};
diff --git a/lib/v2/oschina/topic.js b/lib/v2/oschina/topic.js
new file mode 100644
index 00000000000000..1ca2638896d8e1
--- /dev/null
+++ b/lib/v2/oschina/topic.js
@@ -0,0 +1,53 @@
+const got = require('@/utils/got');
+const { parseDate, parseRelativeDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+const cheerio = require('cheerio');
+
+async function load(link) {
+ const res = await got(link);
+ const content = cheerio.load(res.data);
+ return content;
+}
+
+module.exports = async (ctx) => {
+ const topic = ctx.params.topic;
+ const topicUrl = `https://www.oschina.net/question/topic/${topic}?show=time`;
+
+ const $ = await load(topicUrl);
+ const topicName = $('.topic-info > .topic-header > h3').text();
+ const list = $('#questionList .question-item')
+ .toArray()
+ .map((item) => {
+ item = $(item);
+ const date = item.find('.extra > .list > .item:nth-of-type(2)').text();
+ return {
+ title: item.find('.header').text(),
+ description: item.find('.description').html(),
+ link: item.find('.header').attr('href'),
+ author: item.find('.extra > .list > .item:nth-of-type(1)').text(),
+ pubDate: timezone(/\//.test(date) ? parseDate(date, ['YYYY/MM/DD HH:mm', 'MM/DD HH:mm']) : parseRelativeDate(date), +8),
+ };
+ });
+
+ const resultItem = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ try {
+ const content = await load(item.link);
+ content('.ad-wrap').remove();
+ item.description = content('#articleContent').html();
+ } catch (e) {
+ // 403
+ }
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: `开源中国-${topicName}`,
+ description: $('.topic-introduction').text(),
+ link: topicUrl,
+ item: resultItem,
+ };
+};
diff --git a/lib/v2/oschina/user.js b/lib/v2/oschina/user.js
new file mode 100644
index 00000000000000..74e937a4fa3a4c
--- /dev/null
+++ b/lib/v2/oschina/user.js
@@ -0,0 +1,50 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate, parseRelativeDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+module.exports = async (ctx) => {
+ const { id, uid } = ctx.params;
+ const res = id ? await got(`https://my.oschina.net/${id}`) : await got(`https://my.oschina.net/u/${uid}`);
+ const $ = cheerio.load(res.data);
+
+ const author = $('.user-name .name').text();
+ const list = $('#newestBlogList .blog-item')
+ .toArray()
+ .map((item) => {
+ item = $(item);
+ const date = item.find('.extra div .item:nth-of-type(2)').text();
+ const accessible = !item.find('div.label[data-tooltip=审核中]').length;
+ item.find('.label').remove();
+ return {
+ title: item.find('.content a.header').text(),
+ description: item.find('.description p').text(),
+ link: item.find('a.header').attr('href'),
+ pubDate: timezone(/\//.test(date) ? parseDate(date, ['YYYY/MM/DD HH:mm', 'MM/DD HH:mm']) : parseRelativeDate(date), +8),
+ author,
+ accessible,
+ };
+ });
+
+ const resultItem = await Promise.all(
+ list.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ if (item.accessible) {
+ const detail = await got(item.link);
+ const content = cheerio.load(detail.data);
+
+ item.description = content('.article-detail').html();
+ }
+ delete item.accessible;
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: author + '的博客',
+ description: $('.user-text .user-signature').text(),
+ link: `https://my.oschina.net/${id ? id : uid}`,
+ item: resultItem,
+ };
+};
|
3b442f3c84967114cedba7ee615c960de5119e1c
|
2019-09-08 10:17:48
|
Cloud
|
feat: youzan/weidian title replace userid to shopname (#3017)
| false
|
youzan/weidian title replace userid to shopname (#3017)
|
feat
|
diff --git a/lib/routes/weidian/goods.js b/lib/routes/weidian/goods.js
index f547a1a333f23a..81dc70e5563cad 100644
--- a/lib/routes/weidian/goods.js
+++ b/lib/routes/weidian/goods.js
@@ -1,4 +1,5 @@
const got = require('@/utils/got');
+const cheerio = require('cheerio');
module.exports = async (ctx) => {
const id = String(ctx.params.id);
@@ -6,6 +7,10 @@ module.exports = async (ctx) => {
const link = `https://weidian.com/?userid=${id}`;
const api_link = `https://thor.weidian.com/ares/shop.getItemsInShop/1.0?param={"shopId":"${id}","tabId":3,"sortOrder":"desc","limit":20,"page":1}`;
+ const shopresponse = await got.get(link);
+ const $ = cheerio.load(shopresponse.data);
+ const shopname = $('.shop-name').text();
+
const response = await got({
method: 'get',
url: api_link,
@@ -25,7 +30,7 @@ module.exports = async (ctx) => {
});
ctx.state.data = {
- title: `${id} 商铺上新`,
+ title: `${shopname || id} 商铺上新`,
link: link,
item: out,
};
diff --git a/lib/routes/youzan/goods.js b/lib/routes/youzan/goods.js
index 2dc47153048bf9..f42db63dc0472b 100644
--- a/lib/routes/youzan/goods.js
+++ b/lib/routes/youzan/goods.js
@@ -1,11 +1,16 @@
const got = require('@/utils/got');
+const cheerio = require('cheerio');
module.exports = async (ctx) => {
const id = String(ctx.params.id);
- const link = `https://h5.youzan.com/wscshop/feature/goods/all?kdt_id=${id}`;
+ const link = `https://h5.youzan.com/wscshop/showcase/homepage?kdt_id=${id}`;
const api_link = `https://h5.youzan.com/wscshop/showcase/goods/allGoods.json?pageSize=20&page=1&offlineId=0&order=&order_by=createdTime&kdt_id=${id}`;
+ const shopresponse = await got.get(link);
+ const $ = cheerio.load(shopresponse.data);
+ const shopname = $('title').text();
+
const response = await got({
method: 'get',
url: api_link,
@@ -25,7 +30,7 @@ module.exports = async (ctx) => {
});
ctx.state.data = {
- title: `${id} 商铺上新`,
+ title: `${shopname || id} 商铺上新`,
link: link,
item: out,
};
|
cce38cfd7540bc568812725e7ff652e52fa4924d
|
2021-08-12 13:38:43
|
Ethan Shen
|
fix(route): 1X Gallery (#7923)
| false
|
1X Gallery (#7923)
|
fix
|
diff --git a/docs/en/picture.md b/docs/en/picture.md
index 453e3276bf8653..57d10660017b3d 100644
--- a/docs/en/picture.md
+++ b/docs/en/picture.md
@@ -8,11 +8,13 @@ pageClass: routes
### Photos
-<RouteEn author="nczitzk" example="/1x/latest/all" path="/1x/:type?/:caty?" :paramsDesc="['sort type, `latest` by default, or `popular` or `curators-choice`', 'picture category, `all` by default, see below']">
+<RouteEn author="nczitzk" example="/1x" path="/1x/:category?" :paramsDesc="['Category, Latest awarded by default, see below']">
-| Picture Category | Code |
+| Category | Title |
| ---------------- | ------------- |
-| All categories | all |
+| Latest awarded | latest |
+| Popular | popular |
+| Latest published | published |
| Abstract | abstract |
| Action | action |
| Animals | animals |
diff --git a/docs/picture.md b/docs/picture.md
index 8d13903e62dd19..6a23adbc18b3b8 100644
--- a/docs/picture.md
+++ b/docs/picture.md
@@ -8,31 +8,33 @@ pageClass: routes
### Photos
-<Route author="nczitzk" example="/1x/latest/all" path="/1x/:type?/:caty?" :paramsDesc="['排序类型,默认为 `latest`,亦可选 `popular` 或 `curators-choice`', '图片类别,默认为 `all`,见下表']">
-
-| 图片类别 | 代码 |
-| -------------- | ------------- |
-| All categories | all |
-| Abstract | abstract |
-| Action | action |
-| Animals | animals |
-| Architecture | architecture |
-| Conceptual | conceptual |
-| Creative edit | creative-edit |
-| Documentary | documentary |
-| Everyday | everyday |
-| Fine Art Nude | fine-art-nude |
-| Humour | humour |
-| Landscape | landscape |
-| Macro | macro |
-| Mood | mood |
-| Night | night |
-| Performance | performance |
-| Portrait | portrait |
-| Still life | still-life |
-| Street | street |
-| Underwater | underwater |
-| Wildlife | wildlife |
+<Route author="nczitzk" example="/1x" path="/1x/:category?" :paramsDesc="['类别,默认为 Latest awarded,见下表']">
+
+| Category | Title |
+| ---------------- | ------------- |
+| Latest awarded | latest |
+| Popular | popular |
+| Latest published | published |
+| Abstract | abstract |
+| Action | action |
+| Animals | animals |
+| Architecture | architecture |
+| Conceptual | conceptual |
+| Creative edit | creative-edit |
+| Documentary | documentary |
+| Everyday | everyday |
+| Fine Art Nude | fine-art-nude |
+| Humour | humour |
+| Landscape | landscape |
+| Macro | macro |
+| Mood | mood |
+| Night | night |
+| Performance | performance |
+| Portrait | portrait |
+| Still life | still-life |
+| Street | street |
+| Underwater | underwater |
+| Wildlife | wildlife |
</Route>
diff --git a/lib/router.js b/lib/router.js
index 50da0f0c89921a..ded22da6a31503 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -3386,7 +3386,7 @@ router.get('/chaping/news/:caty?', require('./routes/chaping/news'));
router.get('/feixuew/:id?', require('./routes/feixuew/index'));
// 1X
-router.get('/1x/:type?/:caty?', require('./routes/1x/index'));
+router.get('/1x/:category?', require('./routes/1x/index'));
// 剑网3
router.get('/jx3/:caty?', require('./routes/jx3/news'));
diff --git a/lib/routes/1x/index.js b/lib/routes/1x/index.js
index 5e4fc0c2b91f28..fee50080112a3e 100644
--- a/lib/routes/1x/index.js
+++ b/lib/routes/1x/index.js
@@ -1,36 +1,69 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
+const categories = {
+ latest: 'latest',
+ popular: 'popular',
+ published: 'published',
+ abstract: 'latest:15:',
+ action: 'latest:1:',
+ animals: 'latest:21:',
+ architecture: 'latest:11:',
+ conceptual: 'latest:17:',
+ 'creative-edit': 'latest:10:',
+ documentary: 'latest:8:',
+ everyday: 'latest:14:',
+ 'fine-art-nude': 'latest:12:',
+ humour: 'latest:3:',
+ landscape: 'latest:6:',
+ macro: 'latest:2:',
+ mood: 'latest:4:',
+ night: 'latest:9:',
+ performance: 'latest:19:',
+ portrait: 'latest:13:',
+ 'still-life': 'latest:18:',
+ street: 'latest:7:',
+ underwater: 'latest:20:',
+ wildlife: 'latest:5:',
+};
+
module.exports = async (ctx) => {
- ctx.params.type = ctx.params.type || 'latest';
- ctx.params.caty = ctx.params.caty || 'all';
+ const category = ctx.params.category || 'latest';
const rootUrl = `https://1x.com`;
- const currentUrl = `${rootUrl}/photos/${ctx.params.type}/${ctx.params.caty}`;
+ const currentUrl = `${rootUrl}/gallery/${category}`;
+ const apiUrl = `${rootUrl}/backend/lm.php?style=normal&mode=${categories[category]}&from=0&autoload=`;
const response = await got({
method: 'get',
- url: currentUrl,
+ url: apiUrl,
});
const $ = cheerio.load(response.data);
- const list = $('#photos_target')
- .find('td a img')
- .slice(0, 30)
- .map((_, item) => {
+ const items = $('root data')
+ .html()
+ .split('\n')
+ .slice(0, -1)
+ .map((item) => {
item = $(item);
+
+ const id = item
+ .find('.photos-feed-image')
+ .attr('id')
+ .match(/img-(\d+)/)[1];
+
return {
- title: item.attr('title'),
- link: `${rootUrl}/${item.parent().attr('href')}`,
- description: `<img src="${item.attr('src')}">`,
- author: item.attr('title'),
+ guid: id,
+ link: `${rootUrl}/photo/${id}`,
+ author: item.find('.photos-feed-data-name').eq(0).text(),
+ title: item.find('.photos-feed-data-title').text() || 'Untitled',
+ description: `<img src="${item.find('.photos-feed-image').attr('src')}">`,
};
- })
- .get();
+ });
ctx.state.data = {
- title: `${$('title').text()} - ${ctx.params.caty}`,
+ title: `${category} - 1X`,
link: currentUrl,
- item: list,
+ item: items,
};
};
|
53022113dce2133798736d751146dbacba542be4
|
2024-05-08 16:14:10
|
Raymond Nook
|
fix: typo
| false
|
typo
|
fix
|
diff --git a/lib/routes/github/wiki.ts b/lib/routes/github/wiki.ts
index 773def69e9e08d..c207a92801ed06 100644
--- a/lib/routes/github/wiki.ts
+++ b/lib/routes/github/wiki.ts
@@ -38,8 +38,8 @@ async function handler(ctx) {
if (!page) {
const { data } = await got(`${baseUrl}/${user}/${repo}/wiki`);
const $ = load(data);
-
- url = `${baseUrl}{$('a[href$=_history]')}`;
+
+ url = `${baseUrl}${$('a[href$=_history]')}`;
}
const { data } = await got(url);
|
3a697e27fb69fe32698acec29ebc92020a3a124c
|
2021-11-27 14:29:11
|
Ethan Shen
|
fix(route): add 少女前线情报局 (#8519)
| false
|
add 少女前线情报局 (#8519)
|
fix
|
diff --git a/docs/game.md b/docs/game.md
index 0eb898ac27ffa9..bc1d0e988ff8bd 100644
--- a/docs/game.md
+++ b/docs/game.md
@@ -555,7 +555,7 @@ Example:`https://www.iyingdi.com/tz/people/55547` ,id 是 `55547`
## 少女前线
-### 新闻
+### 情报局
<Route author="nczitzk" example="/gf-cn/news" path="/gf-cn/news/:category?" :paramsDesc="['分类,见下表,默认为新闻']">
diff --git a/lib/router.js b/lib/router.js
index b97696251e06f0..3fcb7973c5ef9d 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -4042,7 +4042,7 @@ router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/
router.get('/ccg/:category?', lazyloadRouteHandler('./routes/ccg/index'));
// 少女前线
-router.get('/gf-cn/news/:category?', lazyloadRouteHandler('./routes/gf-cn/news'));
+// router.get('/gf-cn/news/:category?', lazyloadRouteHandler('./routes/gf-cn/news'));
// Eagle
router.get('/eagle/changelog/:language?', lazyloadRouteHandler('./routes/eagle/changelog'));
diff --git a/lib/routes/gf-cn/news.js b/lib/routes/gf-cn/news.js
deleted file mode 100644
index fbe0f0732b34f3..00000000000000
--- a/lib/routes/gf-cn/news.js
+++ /dev/null
@@ -1,39 +0,0 @@
-const got = require('@/utils/got');
-
-module.exports = async (ctx) => {
- const category = ctx.params.category || '1';
-
- const rootUrl = 'https://gfcn-webserver.sunborngame.com';
- const currentUrl = `${rootUrl}/website/news_list/${category}?page=0&limit=11`;
- const response = await got({
- method: 'get',
- url: currentUrl,
- });
-
- const list = response.data.data.list.map((item) => ({
- title: item.Title,
- link: `${rootUrl}/website/news/${item.Id}`,
- pubDate: new Date(item.Date).toUTCString(),
- }));
-
- const items = await Promise.all(
- list.map((item) =>
- ctx.cache.tryGet(item.link, async () => {
- const detailResponse = await got({
- method: 'get',
- url: item.link,
- });
- item.description = detailResponse.data.data.Content;
- item.link = item.link.replace(`${rootUrl}/website/news/`, `${rootUrl}/NewsInfo?id=`);
-
- return item;
- })
- )
- );
-
- ctx.state.data = {
- title: `少女前线 - ${category === '1' ? '新闻' : '公告'}`,
- link: currentUrl,
- item: items,
- };
-};
diff --git a/lib/v2/gf-cn/maintainer.js b/lib/v2/gf-cn/maintainer.js
new file mode 100644
index 00000000000000..d4350891fda653
--- /dev/null
+++ b/lib/v2/gf-cn/maintainer.js
@@ -0,0 +1,3 @@
+module.exports = {
+ '/news/:category?': ['nczitzk'],
+};
diff --git a/lib/v2/gf-cn/news.js b/lib/v2/gf-cn/news.js
new file mode 100644
index 00000000000000..a6e2d9722e47ff
--- /dev/null
+++ b/lib/v2/gf-cn/news.js
@@ -0,0 +1,50 @@
+const got = require('@/utils/got');
+const timezone = require('@/utils/timezone');
+const { parseDate } = require('@/utils/parse-date');
+
+const titles = {
+ 1: '新闻',
+ 3: '公告',
+};
+
+module.exports = async (ctx) => {
+ const category = ctx.params.category ?? '1';
+
+ const rootUrl = 'https://gf-cn.sunborngame.com';
+ const apiRootUrl = 'https://gfcn-webserver.sunborngame.com';
+ const apiUrl = `${apiRootUrl}/website/news_list/${category}?page=0&limit=${ctx.query.limit ?? 50}`;
+ const currentUrl = `${rootUrl}/News`;
+
+ const response = await got({
+ method: 'get',
+ url: apiUrl,
+ });
+
+ let items = response.data.data.list.map((item) => ({
+ guid: item.Id,
+ title: item.Title,
+ link: `${rootUrl}/NewsInfo?id=${item.Id}`,
+ pubDate: timezone(parseDate(item.Date), +8),
+ }));
+
+ items = await Promise.all(
+ items.map((item) =>
+ ctx.cache.tryGet(item.guid, async () => {
+ const detailResponse = await got({
+ method: 'get',
+ url: `${apiRootUrl}/website/news/${item.guid}`,
+ });
+
+ item.description = detailResponse.data.data.Content.replace(/<img src="/g, '<img src="https://gf-cn.cdn.sunborngame.com/website/cms/');
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: `${titles[category]} - 少女前线 - 情报局`,
+ link: currentUrl,
+ item: items,
+ };
+};
diff --git a/lib/v2/gf-cn/radar.js b/lib/v2/gf-cn/radar.js
new file mode 100644
index 00000000000000..225b6590f843cb
--- /dev/null
+++ b/lib/v2/gf-cn/radar.js
@@ -0,0 +1,13 @@
+module.exports = {
+ 'sunborngame.com': {
+ _name: '少女前线',
+ '.': [
+ {
+ title: '情报局',
+ docs: 'https://docs.rsshub.app/game.html#shao-nv-qian-xian-qing-bao-ju',
+ source: ['/:category', '/'],
+ target: '/gf-cn/news/:category?',
+ },
+ ],
+ },
+};
diff --git a/lib/v2/gf-cn/router.js b/lib/v2/gf-cn/router.js
new file mode 100644
index 00000000000000..dae94fc378c41b
--- /dev/null
+++ b/lib/v2/gf-cn/router.js
@@ -0,0 +1,3 @@
+module.exports = function (router) {
+ router.get('/news/:category?', require('./news'));
+};
|
ee5bee804d30ec5044a30cca6ec93855e4bbdfbf
|
2020-07-29 19:08:20
|
Jiaxi ®
|
feat: add 中国科学院信息工程研究所 (#5285)
| false
|
add 中国科学院信息工程研究所 (#5285)
|
feat
|
diff --git a/docs/university.md b/docs/university.md
index 670119ad7aa553..88586ac0828b16 100644
--- a/docs/university.md
+++ b/docs/university.md
@@ -1785,6 +1785,10 @@ type 列表:
<Route author="HenryQW" example="/cas/sim/academic" path="/cas/sim/academic"/>
+### 中国科学院信息工程研究所 第二研究室 处理架构组 知识库
+
+<Route author="renzhexigua" example="/cas/mesalab/kb" path="/cas/mesalab/kb"/>
+
## 中国农业大学
### 中国农业大学研招网通知公告
diff --git a/lib/router.js b/lib/router.js
index 4d7058436276ea..b3378f2694d81e 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -654,6 +654,7 @@ router.get('/gdut/news', require('./routes/universities/gdut/news'));
// 中国科学院
router.get('/cas/sim/academic', require('./routes/universities/cas/sim/academic'));
+router.get('/cas/mesalab/kb', require('./routes/universities/cas/mesalab/kb'));
// 中国传媒大学
router.get('/cuc/yz', require('./routes/universities/cuc/yz'));
diff --git a/lib/routes/universities/cas/mesalab/kb.js b/lib/routes/universities/cas/mesalab/kb.js
new file mode 100644
index 00000000000000..7f8f2934a7dace
--- /dev/null
+++ b/lib/routes/universities/cas/mesalab/kb.js
@@ -0,0 +1,45 @@
+const cherrio = require('cheerio');
+const got = require('@/utils/got');
+
+module.exports = async (ctx, next) => {
+ const homepage = 'https://www.mesalab.cn';
+ const response = await got({
+ method: 'get',
+ url: `${homepage}/f/article/articleList?pageNo=1&pageSize=15&createTimeSort=DESC`,
+ });
+
+ const $ = cherrio.load(response.data);
+ const articles = $('.aw-item').get();
+
+ const items = await Promise.all(
+ articles.map(async (item) => {
+ const article = $(item).find('.aw-item-content > p').first();
+ const title = article
+ .text()
+ .replace(/(\r\n|\n|\r)/gm, ' ')
+ .trim();
+ const link = `${homepage}/${article.find('a').attr('href')}`;
+
+ return await ctx.cache.tryGet(link, async () => {
+ const result = await got.get(link);
+ const $ = cherrio.load(result.body);
+ return {
+ title,
+ author: $('.user_name').text(),
+ pubDate: new Date($('.link_postdate').text().replace(/\s+/g, ' ')).toUTCString(),
+ description: $('#article_details').html(),
+ link,
+ };
+ });
+ })
+ );
+
+ ctx.state.data = {
+ title: 'MESA 知识库',
+ description: '中国科学院信息工程研究所 第二研究室 处理架构组',
+ link: homepage,
+ item: items,
+ };
+
+ await next();
+};
|
061cb7025d1da311df703b4e12c1c9bb9b72bf3f
|
2021-01-06 20:39:30
|
dependabot-preview[bot]
|
chore(deps-dev): bump nodemon from 2.0.6 to 2.0.7
| false
|
bump nodemon from 2.0.6 to 2.0.7
|
chore
|
diff --git a/package.json b/package.json
index 0ac56cc3e53745..dba1b0d3495452 100644
--- a/package.json
+++ b/package.json
@@ -48,7 +48,7 @@
"jest": "26.6.3",
"mockdate": "3.0.2",
"nock": "13.0.5",
- "nodemon": "2.0.6",
+ "nodemon": "2.0.7",
"pinyin": "2.9.1",
"prettier": "2.2.1",
"prettier-check": "2.0.0",
diff --git a/yarn.lock b/yarn.lock
index 37c9e5c301ecc0..011b36eb8260fb 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -9197,10 +9197,10 @@ [email protected]:
resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.16.tgz#5cb6391b1d79ab7eff32d6f9f48366b5a7117293"
integrity sha512-68K0LgZ6hmZ7PVmwL78gzNdjpj5viqBdFqKrTtr9bZbJYj6BRj5W6WGkxXrEnUl3Co3CBXi3CZBUlpV/foGnOQ==
[email protected]:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.6.tgz#1abe1937b463aaf62f0d52e2b7eaadf28cc2240d"
- integrity sha512-4I3YDSKXg6ltYpcnZeHompqac4E6JeAMpGm8tJnB9Y3T0ehasLa4139dJOcCrB93HHrUMsCrKtoAlXTqT5n4AQ==
[email protected]:
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.7.tgz#6f030a0a0ebe3ea1ba2a38f71bf9bab4841ced32"
+ integrity sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==
dependencies:
chokidar "^3.2.2"
debug "^3.2.6"
|
61725b253c662be8e533acfc8590346c6201f38b
|
2024-12-10 18:44:45
|
dependabot[bot]
|
chore(deps-dev): bump @typescript-eslint/parser from 8.17.0 to 8.18.0 (#17847)
| false
|
bump @typescript-eslint/parser from 8.17.0 to 8.18.0 (#17847)
|
chore
|
diff --git a/package.json b/package.json
index 00235a97a834a6..6125ef078fbbe2 100644
--- a/package.json
+++ b/package.json
@@ -168,7 +168,7 @@
"@types/title": "3.4.3",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
- "@typescript-eslint/parser": "8.17.0",
+ "@typescript-eslint/parser": "8.18.0",
"@vercel/nft": "0.27.9",
"@vitest/coverage-v8": "2.0.5",
"discord-api-types": "0.37.111",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 80cbc15c999361..12cfac1379e11f 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -363,10 +363,10 @@ importers:
version: 10.0.0
'@typescript-eslint/eslint-plugin':
specifier: 8.17.0
- version: 8.17.0(@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])
+ version: 8.17.0(@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])
'@typescript-eslint/parser':
- specifier: 8.17.0
- version: 8.17.0([email protected])([email protected])
+ specifier: 8.18.0
+ version: 8.18.0([email protected])([email protected])
'@vercel/nft':
specifier: 0.27.9
version: 0.27.9([email protected])
@@ -2006,20 +2006,21 @@ packages:
typescript:
optional: true
- '@typescript-eslint/[email protected]':
- resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==}
+ '@typescript-eslint/[email protected]':
+ resolution: {integrity: sha512-hgUZ3kTEpVzKaK3uNibExUYm6SKKOmTU2BOxBSvOYwtJEPdVQ70kZJpPjstlnhCHcuc2WGfSbpKlb/69ttyN5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/[email protected]':
resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/[email protected]':
+ resolution: {integrity: sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/[email protected]':
resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2034,6 +2035,10 @@ packages:
resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/[email protected]':
+ resolution: {integrity: sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/[email protected]':
resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2043,6 +2048,12 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/[email protected]':
+ resolution: {integrity: sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.8.0'
+
'@typescript-eslint/[email protected]':
resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2057,6 +2068,10 @@ packages:
resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/[email protected]':
+ resolution: {integrity: sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@ungap/[email protected]':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
@@ -7355,10 +7370,10 @@ snapshots:
'@types/node': 22.10.1
optional: true
- '@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])':
+ '@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.17.0([email protected])([email protected])
+ '@typescript-eslint/parser': 8.18.0([email protected])([email protected])
'@typescript-eslint/scope-manager': 8.17.0
'@typescript-eslint/type-utils': 8.17.0([email protected])([email protected])
'@typescript-eslint/utils': 8.17.0([email protected])([email protected])
@@ -7373,15 +7388,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/[email protected]([email protected])([email protected])':
+ '@typescript-eslint/[email protected]([email protected])([email protected])':
dependencies:
- '@typescript-eslint/scope-manager': 8.17.0
- '@typescript-eslint/types': 8.17.0
- '@typescript-eslint/typescript-estree': 8.17.0([email protected])
- '@typescript-eslint/visitor-keys': 8.17.0
+ '@typescript-eslint/scope-manager': 8.18.0
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/typescript-estree': 8.18.0([email protected])
+ '@typescript-eslint/visitor-keys': 8.18.0
debug: 4.3.7
eslint: 9.16.0
- optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
@@ -7391,6 +7405,11 @@ snapshots:
'@typescript-eslint/types': 8.17.0
'@typescript-eslint/visitor-keys': 8.17.0
+ '@typescript-eslint/[email protected]':
+ dependencies:
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/visitor-keys': 8.18.0
+
'@typescript-eslint/[email protected]([email protected])([email protected])':
dependencies:
'@typescript-eslint/typescript-estree': 8.17.0([email protected])
@@ -7405,6 +7424,8 @@ snapshots:
'@typescript-eslint/[email protected]': {}
+ '@typescript-eslint/[email protected]': {}
+
'@typescript-eslint/[email protected]([email protected])':
dependencies:
'@typescript-eslint/types': 8.17.0
@@ -7420,6 +7441,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/[email protected]([email protected])':
+ dependencies:
+ '@typescript-eslint/types': 8.18.0
+ '@typescript-eslint/visitor-keys': 8.18.0
+ debug: 4.3.7
+ fast-glob: 3.3.2
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 1.4.0([email protected])
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/[email protected]([email protected])([email protected])':
dependencies:
'@eslint-community/eslint-utils': 4.4.1([email protected])
@@ -7437,6 +7472,11 @@ snapshots:
'@typescript-eslint/types': 8.17.0
eslint-visitor-keys: 4.2.0
+ '@typescript-eslint/[email protected]':
+ dependencies:
+ '@typescript-eslint/types': 8.18.0
+ eslint-visitor-keys: 4.2.0
+
'@ungap/[email protected]': {}
'@unhead/[email protected]':
|
967d263b90099faa003387c46ac4d887a1e3f53c
|
2021-04-23 01:54:19
|
dependabot-preview[bot]
|
chore(deps): bump googleapis from 71.0.0 to 72.0.0
| false
|
bump googleapis from 71.0.0 to 72.0.0
|
chore
|
diff --git a/package.json b/package.json
index 14c3e9073ac6fa..efe2bf1e6696b2 100644
--- a/package.json
+++ b/package.json
@@ -82,7 +82,7 @@
"etag": "1.8.1",
"fanfou-sdk": "4.2.0",
"git-rev-sync": "3.0.1",
- "googleapis": "71.0.0",
+ "googleapis": "72.0.0",
"got": "11.8.2",
"https-proxy-agent": "5.0.0",
"iconv-lite": "0.6.2",
diff --git a/yarn.lock b/yarn.lock
index 60a755978a54e3..0e933def78991c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6063,10 +6063,10 @@ googleapis-common@^5.0.2:
url-template "^2.0.8"
uuid "^8.0.0"
[email protected]:
- version "71.0.0"
- resolved "https://registry.yarnpkg.com/googleapis/-/googleapis-71.0.0.tgz#93f81d3b0a67529502803d655ab7968b386e981d"
- integrity sha512-pi3aWckvsEJbZmJ/+MeO8eIWOK2wmSKRRLvCQbgqTLrFce/jEHLusPly+H3FkpmbO3oTtYRUMJJ07Y4F3DeOgA==
[email protected]:
+ version "72.0.0"
+ resolved "https://registry.yarnpkg.com/googleapis/-/googleapis-72.0.0.tgz#fac456d25c8a0bd88ec7029adf9bc8a5fb93d46f"
+ integrity sha512-GMHXnZy86tLdFGkHd5G1mEWFGKO2+G8VFmk2my+mRCum0e5MOPQXG+PAvDVjVwCQJEOjPpBOZae53THRXaVm9w==
dependencies:
google-auth-library "^7.0.2"
googleapis-common "^5.0.2"
|
79a3d36c2b9d7a8673feff419e577688ac03c152
|
2021-01-26 10:38:43
|
Queensferry
|
feat: implement github topics router (#5803) (#6792)
| false
|
implement github topics router (#5803) (#6792)
|
feat
|
diff --git a/assets/radar-rules.js b/assets/radar-rules.js
index 0fc904ae970716..59aedff58012ac 100644
--- a/assets/radar-rules.js
+++ b/assets/radar-rules.js
@@ -248,6 +248,12 @@
source: '/trending',
target: '/github/trending/:since',
},
+ {
+ title: 'Trending',
+ docs: 'https://docs.rsshub.app/programming.html#github',
+ source: '/topics',
+ target: '/github/topics/:name/:qs?',
+ },
{
title: '仓库 Issue',
docs: 'https://docs.rsshub.app/programming.html#github',
diff --git a/docs/en/programming.md b/docs/en/programming.md
index e388ff8bc20be8..5a047117e3776c 100644
--- a/docs/en/programming.md
+++ b/docs/en/programming.md
@@ -37,6 +37,20 @@ GitHub provides some official RSS feeds:
<RouteEn path="/github/trending/:since/:language?" example="/github/trending/daily/javascript" :paramsDesc="['time frame, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL, possible values are: daily, weekly or monthly', 'the feed language, available in [Trending page](https://github.com/trending/javascript?since=monthly) \'s URL']" radar="1" rssbud="1"/>
+### Topics
+
+<Route author="queensferryme" example="/github/topics/framework" path="/github/topics/:name/:qs?" :paramsDesc="['Topic name, which can be found in the URL of the corresponding [Topics Page](https://github.com/topics/framework)', 'Query string, like `l=php&o=desc&s=stars`. Details listed as follows:']" radar="1" rssbud="1">
+
+| Parameter | Description | Values |
+| ---- | ---- | ---- |
+| `l` | Language | For instance `php`, which can be found in the URL of the corresponding [Topics page](https://github.com/topics/framework?l=php) |
+| `o` | Sorting Order | `asc`, `desc` |
+| `s` | Sorting Criteria | `stars`, `forks`, `updated` |
+
+For instance, the `/github/topics/framework/l=php&o=desc&s=stars` route will generate the RSS feed corresponding to this [page](https://github.com/topics/framework?l=php&o=desc&s=stars).
+
+</Route>
+
### Repo Issues
<RouteEn author="HenryQW AndreyMZ" path="/github/issue/:user/:repo/:state?/:labels?" example="/github/issue/DIYgod/RSSHub/all/bug" :paramsDesc="['GitHub username', 'GitHub repo name', 'the state of the issues. Can be either `open`, `closed`, or `all`. Default: `open`.', 'a list of comma separated label names']" radar="1" rssbud="1"/>
diff --git a/docs/programming.md b/docs/programming.md
index 493aa2bfb81597..a12794e21bdb17 100644
--- a/docs/programming.md
+++ b/docs/programming.md
@@ -93,6 +93,20 @@ GitHub 官方也提供了一些 RSS:
<Route author="DIYgod" example="/github/trending/daily/javascript" path="/github/trending/:since/:language?" :paramsDesc="['时间跨度, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到, 可选 daily weekly monthly', '语言, 可在 [Trending 页](https://github.com/trending/javascript?since=monthly) URL 中找到']" radar="1" rssbud="1"/>
+### Topics
+
+<Route author="queensferryme" example="/github/topics/framework" path="/github/topics/:name/:qs?" :paramsDesc="['名称,可以在相关 [Topics 页](https://github.com/topics/framework) URL 中找到', '过滤规则,形如 `l=php&o=desc&s=stars`,详见下表']" radar="1" rssbud="1">
+
+| 参数名 | 描述 | 可选值 |
+| ------ | -------- | ----------------------------------------------------------------------------------------- |
+| `l` | 编程语言 | 例如 `php`,可以在相关 [Topics 页](https://github.com/topics/framework?l=php) URL 中找到 |
+| `o` | 排序方法 | `asc`(升序)<br>`desc`(降序) |
+| `s` | 排序标准 | `stars`(按 star 数量排序)<br>`forks`(按 fork 数量排序)<br>`updated`(按更新日期排序) |
+
+例如 `/github/topics/framework/l=php&o=desc&s=stars` 会生成对应[此页面](https://github.com/topics/framework?l=php&o=desc&s=stars)的 RSS。
+
+</Route>
+
### 仓库 Issues
<Route author="HenryQW AndreyMZ" example="/github/issue/DIYgod/RSSHub/open/RSS%20wanted" path="/github/issue/:user/:repo/:state?/:labels?" :paramsDesc="['用户名', '仓库名', 'issue 状态,可选`open`,`closed`或`all`,默认为`open`', '标签列表,以逗号分隔']" radar="1" rssbud="1"/>
diff --git a/lib/router.js b/lib/router.js
index 885c193a352dde..8eb98ff1fdd1b9 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -307,6 +307,7 @@ router.get('/github/branches/:user/:repo', require('./routes/github/branches'));
router.get('/github/file/:user/:repo/:branch/:filepath+', require('./routes/github/file'));
router.get('/github/starred_repos/:user', require('./routes/github/starred_repos'));
router.get('/github/contributors/:user/:repo/:order?/:anon?', require('./routes/github/contributors'));
+router.get('/github/topics/:name/:qs?', require('./routes/github/topic'));
// f-droid
router.get('/fdroid/apprelease/:app', require('./routes/fdroid/apprelease'));
diff --git a/lib/routes/github/topic.js b/lib/routes/github/topic.js
new file mode 100644
index 00000000000000..55287fddacaa4a
--- /dev/null
+++ b/lib/routes/github/topic.js
@@ -0,0 +1,25 @@
+const cheerio = require('cheerio');
+const got = require('@/utils/got');
+
+module.exports = async (ctx) => {
+ const link = `https://github.com/topics/${ctx.params.name}?${ctx.params.qs}`;
+ const { data } = await got(link);
+ const $ = cheerio.load(data);
+
+ ctx.state.data = {
+ title: $('title').text(),
+ link,
+ item: $('article.my-4')
+ .map((_, item) => {
+ item = $(item);
+
+ const title = $(item.find('h1 a').get(1)).attr('href').slice(1);
+ const author = title.split('/')[0];
+ const description = `${item.find('div.border-bottom > div > p + div').text()}`;
+ const link = `https://github.com/${title}`;
+
+ return { title, author, description, link };
+ })
+ .get(),
+ };
+};
|
741cdd8ee3a62abb57692fad6661513d107464ab
|
2024-09-27 15:00:56
|
DIYgod
|
fix(twitter): check 429
| false
|
check 429
|
fix
|
diff --git a/lib/routes/twitter/api/web-api/utils.ts b/lib/routes/twitter/api/web-api/utils.ts
index 2ff5c0caedf20b..7397b0ca3434f3 100644
--- a/lib/routes/twitter/api/web-api/utils.ts
+++ b/lib/routes/twitter/api/web-api/utils.ts
@@ -127,10 +127,10 @@ export const twitterGot = async (url, params) => {
},
dispatcher: dispatchers.agent,
onResponse: async ({ response }) => {
- if (response.status === 429) {
- logger.debug(`twitter debug: twitter rate limit exceeded for token ${auth.token}`);
- await cache.set(`twitter:lock-token:${auth.token}`, '1', 1000);
- } else if (response.status === 403 || response.status === 401 || JSON.stringify(response._data?.data) === '{"user":{}}') {
+ if (response.status === 429 || JSON.stringify(response._data?.data) === '{"user":{}}') {
+ logger.debug(`twitter debug: twitter rate limit exceeded for token ${auth.token} with status ${response.status}`);
+ await cache.set(`twitter:lock-token:${auth.token}`, '1', 2000);
+ } else if (response.status === 403 || response.status === 401) {
const newCookie = await login({
username: auth.username,
password: auth.password,
@@ -139,7 +139,7 @@ export const twitterGot = async (url, params) => {
if (newCookie) {
logger.debug(`twitter debug: reset twitter cookie for token ${auth.token}, ${newCookie}`);
await cache.set(`twitter:cookie:${auth.token}`, newCookie, config.cache.contentExpire);
- logger.debug(`twitter debug: unlock twitter cookie with error1 for token ${auth.token}`);
+ logger.debug(`twitter debug: unlock twitter cookie for token ${auth.token} with error1`);
await cache.set(`twitter:lock-token:${auth.token}`, '', 1);
} else {
const tokenIndex = config.twitter.authToken?.indexOf(auth.token);
@@ -158,7 +158,7 @@ export const twitterGot = async (url, params) => {
config.twitter.password?.splice(passwordIndex, 1);
}
}
- logger.debug(`twitter debug: delete twitter cookie for token ${auth.token}, remaining tokens: ${config.twitter.authToken?.length}`);
+ logger.debug(`twitter debug: delete twitter cookie for token ${auth.token} with status ${response.status}, remaining tokens: ${config.twitter.authToken?.length}`);
await cache.set(`twitter:lock-token:${auth.token}`, '1', 86400);
}
}
|
0d3a6dc5895a66aa9be32e330848c088086acf0c
|
2024-11-01 00:48:35
|
pseudoyu
|
fix(route/telegram): use tglib when no routeParams
| false
|
use tglib when no routeParams
|
fix
|
diff --git a/lib/routes/telegram/channel.ts b/lib/routes/telegram/channel.ts
index 9ec1cc6adbdbe9..c50e6b4bdfad05 100644
--- a/lib/routes/telegram/channel.ts
+++ b/lib/routes/telegram/channel.ts
@@ -121,7 +121,7 @@ For backward compatibility reasons, invalid \`routeParams\` will be treated as \
};
async function handler(ctx) {
- if (ctx.req.param('routeParams') && config.telegram.session) {
+ if (!ctx.req.param('routeParams') && config.telegram.session) {
return tglibchannel(ctx);
}
|
8f1e290814e064b23814fda3d5525abc5f3f3c4d
|
2024-10-22 21:35:52
|
haowenwu
|
feat(route/douban): add topic support (#17234)
| false
|
add topic support (#17234)
|
feat
|
diff --git a/lib/routes/douban/other/topic.ts b/lib/routes/douban/other/topic.ts
index 75c855972a064f..f4a239010b469d 100644
--- a/lib/routes/douban/other/topic.ts
+++ b/lib/routes/douban/other/topic.ts
@@ -16,7 +16,7 @@ export const route: Route = {
supportScihub: false,
},
name: '话题',
- maintainers: ['LogicJake', 'pseudoyu'],
+ maintainers: ['LogicJake', 'pseudoyu', 'haowenwu'],
handler,
};
@@ -66,6 +66,19 @@ async function handler(ctx) {
description += `<br><img src="${images[i].normal.url}" />`;
}
}
+ } else if (type === 'topic') {
+ link = item.target.group.sharing_url;
+ author = item.target.status.author.name;
+ title = item.target.title;
+ date = item.target.create_time;
+ description = item.target.abstract;
+ const images = item.target.photos;
+ if (images) {
+ let i;
+ for (i in images) {
+ description += `<br><img src="${images[i].src}" />`;
+ }
+ }
} else {
link = item.target.sharing_url;
author = item.target.author.name;
|
958be6266ecda91deabaf1bca60c0714cc3a48e3
|
2022-04-16 21:31:39
|
Levi Zim
|
feat(route): 山东大学(威海)新闻网 (#9537)
| false
|
山东大学(威海)新闻网 (#9537)
|
feat
|
diff --git a/docs/university.md b/docs/university.md
index c0156f2e16e3da..20eecee88a7bd4 100644
--- a/docs/university.md
+++ b/docs/university.md
@@ -1961,7 +1961,7 @@ type 列表:
### 软件学院通知
-<Route author="Ji4n1ng" example="/sdu/sc/0" path="/sdu/sc/:type?" :paramsDesc="['默认为 `0`']">
+<Route author="Ji4n1ng" example="/sdu/sc/0" path="/sdu/sc/:type?" :paramsDesc="['默认为 `0`']" radar="1" rssbud="1">
| 通知公告 | 学术动态 | 本科教育 | 研究生教育 |
| ---- | ---- | ---- | ----- |
@@ -1971,7 +1971,7 @@ type 列表:
### 材料科学与工程学院通知
-<Route author="Ji4n1ng" example="/sdu/cmse/0" path="/sdu/cmse/:type?" :paramsDesc="['默认为 `0`']">
+<Route author="Ji4n1ng" example="/sdu/cmse/0" path="/sdu/cmse/:type?" :paramsDesc="['默认为 `0`']" radar="1" rssbud="1">
| 通知公告 | 学院新闻 | 本科生教育 | 研究生教育 | 学术动态 |
| ---- | ---- | ----- | ----- | ---- |
@@ -1981,7 +1981,7 @@ type 列表:
### 机械工程学院通知
-<Route author="Ji4n1ng" example="/sdu/mech/0" path="/sdu/mech/:type?" :paramsDesc="['默认为 `0`']">
+<Route author="Ji4n1ng" example="/sdu/mech/0" path="/sdu/mech/:type?" :paramsDesc="['默认为 `0`']" radar="1" rssbud="1">
| 通知公告 | 院所新闻 | 教学信息 | 学术动态 | 学院简报 |
| ---- | ---- | ---- | ---- | ---- |
@@ -1991,7 +1991,7 @@ type 列表:
### 能源与动力工程学院通知
-<Route author="Ji4n1ng" example="/sdu/epe/0" path="/sdu/epe/:type?" :paramsDesc="['默认为 `0`']">
+<Route author="Ji4n1ng" example="/sdu/epe/0" path="/sdu/epe/:type?" :paramsDesc="['默认为 `0`']" radar="1" rssbud="1">
| 学院动态 | 通知公告 | 学术论坛 |
| ---- | ---- | ---- |
@@ -2001,14 +2001,26 @@ type 列表:
### 计算机科学与技术学院通知
-<Route author="suxb201" example="/sdu/cs/0" path="/sdu/cs/:type?" :paramsDesc="['默认为 `0`']">
+<Route author="suxb201" example="/sdu/cs/0" path="/sdu/cs/:type?" :paramsDesc="['默认为 `0`']" radar="1" rssbud="1">
-| 学院公告 | 学术报告 | 新闻动态 |
+| 学院公告 | 学术报告 | 科技简讯 |
| ---- | ---- | ---- |
| 0 | 1 | 2 |
</Route>
+## 山东大学(威海)
+
+### 新闻网
+
+<Route author="kxxt" example="/sdu/wh/news/xyyw" path="/sdu/wh/news/:column?" :paramsDesc="['专栏名称,默认为校园要闻(`xyyw`)']" radar="1" rssbud="1">
+
+| 校园要闻 | 学生动态 | 综合新闻 | 山大视点 | 菁菁校园 | 校园简讯 | 玛珈之窗 | 热点专题 | 媒体视角 | 高教视野 | 理论学习 |
+| ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ---- |
+| xyyw | xsdt | zhxw | sdsd | jjxy | xyjx | mjzc | rdzt | mtsj | gjsy | llxx |
+
+</Route>
+
## 上海大学
### 上海大学官网信息
diff --git a/lib/router.js b/lib/router.js
index 7a83292f45d302..e740efec2c27b7 100644
--- a/lib/router.js
+++ b/lib/router.js
@@ -716,12 +716,12 @@ router.get('/jgsu/jwc', lazyloadRouteHandler('./routes/universities/jgsu/jwc'));
// 中南大学
router.get('/csu/job/:type?', lazyloadRouteHandler('./routes/universities/csu/job'));
-// 山东大学
-router.get('/sdu/sc/:type?', lazyloadRouteHandler('./routes/universities/sdu/sc'));
-router.get('/sdu/cs/:type?', lazyloadRouteHandler('./routes/universities/sdu/cs'));
-router.get('/sdu/cmse/:type?', lazyloadRouteHandler('./routes/universities/sdu/cmse'));
-router.get('/sdu/mech/:type?', lazyloadRouteHandler('./routes/universities/sdu/mech'));
-router.get('/sdu/epe/:type?', lazyloadRouteHandler('./routes/universities/sdu/epe'));
+// 山东大学 migrated to v2
+// router.get('/sdu/sc/:type?', lazyloadRouteHandler('./routes/universities/sdu/sc'));
+// router.get('/sdu/cs/:type?', lazyloadRouteHandler('./routes/universities/sdu/cs'));
+// router.get('/sdu/cmse/:type?', lazyloadRouteHandler('./routes/universities/sdu/cmse'));
+// router.get('/sdu/mech/:type?', lazyloadRouteHandler('./routes/universities/sdu/mech'));
+// router.get('/sdu/epe/:type?', lazyloadRouteHandler('./routes/universities/sdu/epe'));
// 中国海洋大学
router.get('/ouc/it/:type?', lazyloadRouteHandler('./routes/universities/ouc/it'));
diff --git a/lib/routes/universities/sdu/cmse.js b/lib/routes/universities/sdu/cmse.js
deleted file mode 100644
index bafd5a67d4f4d8..00000000000000
--- a/lib/routes/universities/sdu/cmse.js
+++ /dev/null
@@ -1,55 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://www.cmse.sdu.edu.cn/';
-const typelist = ['通知公告', '学院新闻', '本科生教育', '研究生教育', '学术动态'];
-const urlList = ['zxzx/tzgg.htm', 'zxzx/xyxw.htm', 'zxzx/bksjy.htm', 'zxzx/yjsjy.htm', 'zxzx/xsdt.htm'];
-
-module.exports = async (ctx) => {
- const type = parseInt(ctx.params.type) || 0;
- const link = url.resolve(host, urlList[type]);
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const list = $('#list_right_list a')
- .slice(0, 10)
- .map((i, e) => $(e).attr('href'))
- .get();
-
- const out = await Promise.all(
- list
- .filter((e) => e.startsWith('../info'))
- .map(async (itemUrl) => {
- itemUrl = url.resolve(host, itemUrl.slice('3'));
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const rawDate = $('#show_info').text().split(/\s{4}/);
- let date = rawDate[0].split(':')[1];
- date = date.slice(0, 4) + '-' + date.slice(5, 7) + '-' + date.slice(8, 10) + ' ' + date.slice(12);
-
- const single = {
- title: $('#show_title').text().trim(),
- link: itemUrl,
- author: '山东大学材料科学与工程学院',
- description: $('#show_content').html(),
- pubDate: new Date(date),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: `山东大学材料科学与工程学院${typelist[type]}`,
- link,
- item: out,
- };
-};
diff --git a/lib/routes/universities/sdu/cs.js b/lib/routes/universities/sdu/cs.js
deleted file mode 100644
index e6b1321729c3a9..00000000000000
--- a/lib/routes/universities/sdu/cs.js
+++ /dev/null
@@ -1,55 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://www.cs.sdu.edu.cn/';
-const typelist = ['学院公告', '学术报告', '新闻动态'];
-const urlList = ['index/xygg.htm', 'xwgg/xsbg.htm', 'xwgg/xyxw.htm'];
-
-module.exports = async (ctx) => {
- const type = parseInt(ctx.params.type) || 0;
- const link = url.resolve(host, urlList[type]);
-
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const dateDict = {};
- const list = $('.sub_text .news-list')
- .slice(0, 10)
- .map((i, e) => {
- const divs = $(e).children();
- const tlink = 'http://www.cs.sdu.edu.cn/' + $('a', divs[1]).attr('href').substring(3);
- dateDict[tlink] = new Date($(divs[2]).text()).toUTCString();
- return tlink;
- })
- .get();
-
- const out = await Promise.all(
- list.map(async (itemUrl) => {
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const single = {
- title: $('#newsTitle').text().trim(),
- author: '山东大学计算机科学与技术学院',
- description: $('.v_news_content').html(),
- pubDate: dateDict[itemUrl],
- link: itemUrl,
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: `山东大学计算机科学与技术学院${typelist[type]}通知`,
- link,
- item: out,
- };
-};
diff --git a/lib/routes/universities/sdu/epe.js b/lib/routes/universities/sdu/epe.js
deleted file mode 100644
index efb870e0737f40..00000000000000
--- a/lib/routes/universities/sdu/epe.js
+++ /dev/null
@@ -1,54 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://www.epe.sdu.edu.cn/';
-const typelist = ['学院动态', '通知公告', '学术论坛'];
-const urlList = ['zxzx/xydt.htm', 'zxzx/tzgg.htm', 'zxzx/xslt.htm'];
-
-module.exports = async (ctx) => {
- const type = parseInt(ctx.params.type) || 0;
- const link = url.resolve(host, urlList[type]);
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const list = $('#page_right_main li a')
- .slice(0, 10)
- .map((i, e) => $(e).attr('href'))
- .get();
-
- const out = await Promise.all(
- list
- .filter((e) => e.startsWith('../info'))
- .map(async (itemUrl) => {
- itemUrl = url.resolve(host, itemUrl.slice('3'));
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const rawDate = $('#show_info').text().split(/\s{4}/);
- const date = rawDate[0].split(':')[1];
-
- const single = {
- title: $('#show_title').text().trim(),
- link: itemUrl,
- author: '山东大学能源与动力工程学院',
- description: $('#show_content').html(),
- pubDate: new Date(date),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: `山东大学能源与动力工程学院${typelist[type]}`,
- link,
- item: out,
- };
-};
diff --git a/lib/routes/universities/sdu/mech.js b/lib/routes/universities/sdu/mech.js
deleted file mode 100644
index bf823d7f54866f..00000000000000
--- a/lib/routes/universities/sdu/mech.js
+++ /dev/null
@@ -1,58 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const typelist = ['通知公告', '院所新闻', '教学信息', '学术动态', '学院简报'];
-const urlList = ['xwdt/tzgg.htm', 'xwdt/ysxw.htm', 'xwdt/jxxx.htm', 'xwdt/xsdt.htm', 'xwdt/xyjb.htm'];
-const host = 'http://www.mech.sdu.edu.cn/';
-
-module.exports = async (ctx) => {
- const type = parseInt(ctx.params.type) || 0;
- const link = url.resolve(host, urlList[type]);
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const list = $('#page_list li a')
- .slice(0, 10)
- .map((i, e) => $(e).attr('href'))
- .get();
-
- const out = await Promise.all(
- list
- .filter((e) => e.startsWith('../info') || e.startsWith('http://www.rd.sdu.edu.cn/'))
- .map(async (itemUrl) => {
- const isFromMech = itemUrl.startsWith('../info');
- if (isFromMech) {
- itemUrl = url.resolve(host, itemUrl.slice('3'));
- }
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const rawDate = $('#show_info').text().split(/\s{4}/);
- let date = rawDate[0].split(':')[1];
- date = date.slice(0, 4) + '-' + date.slice(5, 7) + '-' + date.slice(8, 10) + ' ' + date.slice(11);
-
- const single = {
- title: $('#show_title').text().trim(),
- link: itemUrl,
- author: '山东大学机械工程学院',
- description: $('#show_content').html(),
- pubDate: new Date(date),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: `山东大学机械工程学院${typelist[type]}`,
- link,
- item: out,
- };
-};
diff --git a/lib/routes/universities/sdu/sc.js b/lib/routes/universities/sdu/sc.js
deleted file mode 100644
index 6e11ca76383d02..00000000000000
--- a/lib/routes/universities/sdu/sc.js
+++ /dev/null
@@ -1,56 +0,0 @@
-const got = require('@/utils/got');
-const cheerio = require('cheerio');
-const url = require('url');
-
-const host = 'http://www.sc.sdu.edu.cn/';
-const typelist = ['通知公告', '学术动态', '本科教育', '研究生教育'];
-const urlList = ['tzgg.htm', 'kxyj/xsdt/2.htm', 'rcpy/bkjy.htm', 'rcpy/yjsjy.htm'];
-
-module.exports = async (ctx) => {
- const type = parseInt(ctx.params.type) || 0;
- const link = url.resolve(host, urlList[type]);
- const response = await got.get(link);
-
- const $ = cheerio.load(response.data);
-
- const dateDict = {};
- const list = $('.lm_list li')
- .slice(0, 10)
- .map((i, e) => {
- let aLink = $(e).children('a').attr('href');
- // aLink = aLink.slice(3);
- aLink = url.resolve(host, aLink);
- const date = $(e).children('span').text().trim();
- dateDict[aLink] = date;
- return aLink;
- })
- .get();
-
- const out = await Promise.all(
- list.map(async (itemUrl) => {
- const cache = await ctx.cache.get(itemUrl);
- if (cache) {
- return Promise.resolve(JSON.parse(cache));
- }
-
- const response = await got.get(itemUrl);
- const $ = cheerio.load(response.data);
-
- const single = {
- title: $('h1.c-title').text().trim(),
- link: itemUrl,
- author: '山东大学软件学院',
- description: $('.v_news_content').html(),
- pubDate: new Date(dateDict[itemUrl]),
- };
- ctx.cache.set(itemUrl, JSON.stringify(single));
- return Promise.resolve(single);
- })
- );
-
- ctx.state.data = {
- title: `山东大学软件学院${typelist[type]}`,
- link,
- item: out,
- };
-};
diff --git a/lib/utils/wechat-mp.js b/lib/utils/wechat-mp.js
index 96723029c3d60a..e24b64db073a9a 100644
--- a/lib/utils/wechat-mp.js
+++ b/lib/utils/wechat-mp.js
@@ -5,6 +5,7 @@
* lib/route/tencent/wechat
* lib/v2/wechat
* lib/v2/gzh360
+ * lib/v2/sdu/cs
*
* If your new route is not in the above folders, please add it to the list.
*
diff --git a/lib/v2/sdu/cmse.js b/lib/v2/sdu/cmse.js
new file mode 100644
index 00000000000000..98bb737db30001
--- /dev/null
+++ b/lib/v2/sdu/cmse.js
@@ -0,0 +1,59 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+const host = 'http://www.cmse.sdu.edu.cn/';
+const typelist = ['通知公告', '学院新闻', '本科生教育', '研究生教育', '学术动态'];
+const urlList = ['zxzx/tzgg.htm', 'zxzx/xyxw.htm', 'zxzx/bksjy.htm', 'zxzx/yjsjy.htm', 'zxzx/xsdt.htm'];
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type ? parseInt(ctx.params.type) : 0;
+ const link = new URL(urlList[type], host).href;
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ let item = $('.article_list li')
+ .map((_, e) => {
+ e = $(e);
+ const a = e.find('a');
+ return {
+ title: a.text().trim(),
+ link: a.attr('href'),
+ pubDate: parseDate(e.find('.date').text(), 'YYYY/MM/DD'),
+ };
+ })
+ .get();
+
+ item = await Promise.all(
+ item
+ .filter((e) => e.link.startsWith('../info'))
+ .map((item) => {
+ item.link = new URL(item.link.slice('3'), host).href;
+ return ctx.cache.tryGet(item.link, async () => {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ item.title = $('.contentTitle').text();
+ item.author =
+ $('.contentTitle2')
+ .find('span')
+ .eq(1)
+ .text()
+ .trim()
+ .match(/作者:(.*)/)[1] || '山东大学材料科学与工程学院';
+ $('.contentTitle, .contentTitle2').remove();
+ item.description = $('.content_detail').html();
+
+ return item;
+ });
+ })
+ );
+
+ ctx.state.data = {
+ title: `山东大学材料科学与工程学院${typelist[type]}`,
+ description: $('title').text(),
+ link,
+ item,
+ };
+};
diff --git a/lib/v2/sdu/cs.js b/lib/v2/sdu/cs.js
new file mode 100644
index 00000000000000..dac8f3a10e7929
--- /dev/null
+++ b/lib/v2/sdu/cs.js
@@ -0,0 +1,57 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const { finishArticleItem } = require('@/utils/wechat-mp');
+
+const host = 'https://www.cs.sdu.edu.cn/';
+const typelist = ['学院公告', '学术报告', '科技简讯'];
+const urlList = ['xygg.htm', 'xsbg.htm', 'kjjx.htm'];
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type ? parseInt(ctx.params.type) : 0;
+ const link = new URL(urlList[type], host).href;
+
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ let item = $('.dqlb ul li')
+ .map((_, e) => {
+ e = $(e);
+ const a = e.find('a');
+ return {
+ title: a.text().trim(),
+ link: a.attr('href').startsWith('info/') ? host + a.attr('href') : a.attr('href'),
+ pubDate: parseDate(e.find('.fr').text().trim(), 'YYYY-MM-DD'),
+ };
+ })
+ .get();
+
+ item = await Promise.all(
+ item.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ if (new URL(item.link).hostname === 'mp.weixin.qq.com') {
+ return finishArticleItem(ctx, item);
+ } else if (new URL(item.link).hostname !== 'www.cs.sdu.edu.cn') {
+ return item;
+ }
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ item.title = $('.xqnr_tit h2').text().trim();
+ item.author = $('.xqnr_tit span').eq(1).text().trim().replace('编辑:', '') || '山东大学计算机科学与技术学院';
+ $('.xqnr_tit').remove();
+ item.description = $('form[name=_newscontent_fromname]').html();
+
+ return item;
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: `山东大学计算机科学与技术学院${typelist[type]}通知`,
+ description: $('title').text(),
+ link,
+ item,
+ };
+};
diff --git a/lib/v2/sdu/data.js b/lib/v2/sdu/data.js
new file mode 100644
index 00000000000000..c9c1da95349aa6
--- /dev/null
+++ b/lib/v2/sdu/data.js
@@ -0,0 +1,61 @@
+module.exports = {
+ wh: {
+ news: {
+ name: '山东大学(威海)新闻网',
+ route: '/news',
+ source: ['/'],
+ titlePrefix: '(威海)新闻网|',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue-wei-hai',
+ getTarget(url) {
+ return this.route + '/' + url.replace(/\.htm$/, '');
+ },
+ url: 'https://xinwen.wh.sdu.edu.cn/',
+ columns: {
+ xyyw: {
+ name: '校园要闻',
+ url: 'xyyw.htm',
+ },
+ xsdt: {
+ name: '学生动态',
+ url: 'xsdt.htm',
+ },
+ zhxw: {
+ name: '综合新闻',
+ url: 'zhxw.htm',
+ },
+ sdsd: {
+ name: '山大视点',
+ url: 'sdsd.htm',
+ },
+ jjxy: {
+ name: '菁菁校园',
+ url: 'jjxy.htm',
+ },
+ xyjx: {
+ name: '校园简讯',
+ url: 'xyjx.htm',
+ },
+ mjzc: {
+ name: '玛珈之窗',
+ url: 'mjzc.htm',
+ },
+ rdzt: {
+ name: '热点专题',
+ url: 'rdzt.htm',
+ },
+ mtsj: {
+ name: '媒体视角',
+ url: 'mtsj.htm',
+ },
+ gjsy: {
+ name: '高教视野',
+ url: 'gjsy.htm',
+ },
+ llxx: {
+ name: '理论学习',
+ url: 'llxx.htm',
+ },
+ },
+ },
+ },
+};
diff --git a/lib/v2/sdu/epe.js b/lib/v2/sdu/epe.js
new file mode 100644
index 00000000000000..f77a03ef4b8473
--- /dev/null
+++ b/lib/v2/sdu/epe.js
@@ -0,0 +1,55 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+const host = 'https://www.epe.sdu.edu.cn/';
+const typelist = ['学院动态', '通知公告', '学术论坛'];
+const urlList = ['zxzx/xydt.htm', 'zxzx/tzgg.htm', 'zxzx/xslt.htm'];
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type ? parseInt(ctx.params.type) : 0;
+ const link = new URL(urlList[type], host).href;
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ let item = $('#page_right_main li a')
+ .map((_, e) => {
+ e = $(e);
+ return {
+ title: e.attr('title'),
+ link: e.attr('href'),
+ };
+ })
+ .get();
+
+ item = await Promise.all(
+ item
+ .filter((e) => e.link.startsWith('../info'))
+ .map((item) => {
+ item.link = new URL(item.link.slice('3'), host).href;
+ return ctx.cache.tryGet(item.link, async () => {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ const info = $('#show_info').text().split(/\s{4}/);
+ const date = info[0].split(':')[1];
+
+ item.title = $('#show_title').text().trim();
+ item.author = info[1].replace('编辑:', '') || '山东大学能源与动力工程学院';
+ item.description = $('#show_content').html();
+ item.pubDate = timezone(parseDate(date), +8);
+
+ return item;
+ });
+ })
+ );
+
+ ctx.state.data = {
+ title: `山东大学能源与动力工程学院${typelist[type]}`,
+ description: $('title').text(),
+ link,
+ item,
+ };
+};
diff --git a/lib/v2/sdu/extractor/index.js b/lib/v2/sdu/extractor/index.js
new file mode 100644
index 00000000000000..de1fc197936a9e
--- /dev/null
+++ b/lib/v2/sdu/extractor/index.js
@@ -0,0 +1,12 @@
+module.exports = async (link, ctx) => {
+ if (link.startsWith('https://xinwen.wh.sdu.edu.cn/')) {
+ return await require('./wh/news')(link, ctx);
+ }
+ if (link.startsWith('https://www.view.sdu.edu.cn/')) {
+ return await require('./view')(link, ctx);
+ }
+ if (link.startsWith('https://www.sdrj.sdu.edu.cn/')) {
+ return await require('./sdrj')(link, ctx);
+ }
+ return {};
+};
diff --git a/lib/v2/sdu/extractor/sdrj.js b/lib/v2/sdu/extractor/sdrj.js
new file mode 100644
index 00000000000000..07348411316e31
--- /dev/null
+++ b/lib/v2/sdu/extractor/sdrj.js
@@ -0,0 +1,21 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+module.exports = async (link, ctx) =>
+ await ctx.cache.tryGet(link, async () => {
+ let content, author, exactDate;
+ try {
+ const result = await got(link);
+ const $ = cheerio.load(result.data);
+ content = $('#vsb_content').html();
+ author = $("form[name='_newscontent_fromname'] > h1").text();
+ const exactDateLine = $("form[name='_newscontent_fromname'] > p.info").text().trim();
+ const exactDateText = exactDateLine.match(/^发布时间:(?<date>\d+\/\d+\/\d+\s\d{2}:\d{2}:\d{2})/).groups.date;
+ exactDate = timezone(parseDate(exactDateText, 'YYYY/MM/DD HH:mm:ss'), +8);
+ return { description: content, author, exactDate };
+ } catch (e) {
+ return { description: content, author, exactDate };
+ }
+ });
diff --git a/lib/v2/sdu/extractor/view.js b/lib/v2/sdu/extractor/view.js
new file mode 100644
index 00000000000000..35647e247bf2bf
--- /dev/null
+++ b/lib/v2/sdu/extractor/view.js
@@ -0,0 +1,21 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+module.exports = async (link, ctx) =>
+ await ctx.cache.tryGet(link, async () => {
+ let content, author, exactDate;
+ try {
+ const result = await got(link);
+ const $ = cheerio.load(result.data);
+ content = $('#vsb_content').html();
+ author = $("form[name='_newscontent_fromname'] > div > p:last-of-type").text();
+ const exactDateLine = $('.news_tit > p:last-child').text();
+ const exactDateText = exactDateLine.match(/^发布日期:(?<date>\d+年\d+月\d+日\s\d{2}:\d{2})/).groups.date;
+ exactDate = timezone(parseDate(exactDateText, 'YYYY年MM月DD日 HH:mm'), +8);
+ return { description: content, author, exactDate };
+ } catch (e) {
+ return { description: content, author, exactDate };
+ }
+ });
diff --git a/lib/v2/sdu/extractor/wh/news.js b/lib/v2/sdu/extractor/wh/news.js
new file mode 100644
index 00000000000000..d7e60416887665
--- /dev/null
+++ b/lib/v2/sdu/extractor/wh/news.js
@@ -0,0 +1,21 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+module.exports = async (link, ctx) =>
+ await ctx.cache.tryGet(link, async () => {
+ let content, author, exactDate;
+ try {
+ const result = await got(link);
+ const $ = cheerio.load(result.data);
+ content = $('#main-content').html();
+ author = $('#source').text();
+ const exactDateLine = $('.news_tit > p:last-child').text();
+ const exactDateText = exactDateLine.match(/^发布日期:(?<date>\d+年\d+月\d+日\s\d{2}:\d{2})/).groups.date;
+ exactDate = timezone(parseDate(exactDateText, 'YYYY年MM月DD日 HH:mm'), +8);
+ return { description: content, author, exactDate };
+ } catch (e) {
+ return { description: content, author, exactDate };
+ }
+ });
diff --git a/lib/v2/sdu/maintainer.js b/lib/v2/sdu/maintainer.js
new file mode 100644
index 00000000000000..db0b8798deb8dc
--- /dev/null
+++ b/lib/v2/sdu/maintainer.js
@@ -0,0 +1,8 @@
+module.exports = {
+ '/cmse/:type?': ['Ji4n1ng'],
+ '/cs/:type?': ['Ji4n1ng'],
+ '/epe/:type?': ['Ji4n1ng'],
+ '/mech/:type?': ['Ji4n1ng'],
+ '/sc/:type?': ['Ji4n1ng'],
+ '/wh/news/:column?': ['kxxt'],
+};
diff --git a/lib/v2/sdu/mech.js b/lib/v2/sdu/mech.js
new file mode 100644
index 00000000000000..428b7422fbd915
--- /dev/null
+++ b/lib/v2/sdu/mech.js
@@ -0,0 +1,60 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+const timezone = require('@/utils/timezone');
+
+const typelist = ['通知公告', '院所新闻', '教学信息', '学术动态', '学院简报'];
+const urlList = ['xwdt/tzgg.htm', 'xwdt/ysxw.htm', 'xwdt/jxxx.htm', 'xwdt/xsdt.htm', 'xwdt/xyjb.htm'];
+const host = 'https://www.mech.sdu.edu.cn/';
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type ? parseInt(ctx.params.type) : 0;
+ const link = new URL(urlList[type], host).href;
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ let item = $('#page_list li a')
+ .slice(0, 1)
+ .map((_, e) => {
+ e = $(e);
+ return {
+ title: e.attr('title'),
+ link: e.attr('href'),
+ };
+ })
+ .get();
+
+ item = await Promise.all(
+ item
+ .filter((e) => e.link.startsWith('../info') || e.link.startsWith('https://www.rd.sdu.edu.cn/'))
+ .map((item) => {
+ const isFromMech = item.link.startsWith('../info');
+ if (isFromMech) {
+ item.link = new URL(item.link.slice('3'), host).href;
+ }
+ return ctx.cache.tryGet(item.link, async () => {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ const info = $('#show_info').text().split(/\s{4}/);
+ const date = info[0].split(':')[1];
+
+ item.title = $('#show_title').text().trim();
+ item.author = info[1].replace('作者:', '') || '山东大学机械工程学院';
+ $('#show_title, #show_info').remove();
+ item.description = $('form[name=_newscontent_fromname] div').html();
+ item.pubDate = timezone(parseDate(date), +8);
+
+ return item;
+ });
+ })
+ );
+
+ ctx.state.data = {
+ title: `山东大学机械工程学院${typelist[type]}`,
+ description: $('title').text(),
+ link,
+ item,
+ };
+};
diff --git a/lib/v2/sdu/radar.js b/lib/v2/sdu/radar.js
new file mode 100644
index 00000000000000..0056e5ef4d5f1f
--- /dev/null
+++ b/lib/v2/sdu/radar.js
@@ -0,0 +1,153 @@
+const { wh } = require('./data');
+
+module.exports = {
+ 'sdu.edu.cn': {
+ _name: '山东大学',
+ 'xinwen.wh': Object.entries(wh.news.columns).map(([, value]) => ({
+ title: wh.news.titlePrefix + value.name,
+ docs: wh.news.docs,
+ source: wh.news.source,
+ target: '/sdu/wh' + wh.news.getTarget(value.url),
+ })),
+ 'www.cmse': [
+ {
+ title: '材料科学与工程学院通知',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue',
+ source: ['/*path', '/'],
+ target: (params) => {
+ let type;
+ switch (params.path) {
+ case 'zxzx/tzgg.htm':
+ type = '0';
+ break;
+ case 'zxzx/xyxw.htm':
+ type = '1';
+ break;
+ case 'zxzx/bksjy.htm':
+ type = '2';
+ break;
+ case 'zxzx/yjsjy.htm':
+ type = '3';
+ break;
+ case 'zxzx/xsdt.htm':
+ type = '4';
+ break;
+ default:
+ type = '0';
+ break;
+ }
+ return `/sdu/cmse/${type}`;
+ },
+ },
+ ],
+ 'www.cs': [
+ {
+ title: '计算机科学与技术学院通知',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue',
+ source: ['/*path', '/'],
+ target: (params) => {
+ let type;
+ switch (params.path) {
+ case 'xygg.htm':
+ type = '0';
+ break;
+ case 'xsbg.htm':
+ type = '1';
+ break;
+ case 'kjjx.htm':
+ type = '2';
+ break;
+ default:
+ type = '0';
+ break;
+ }
+ return `/sdu/cs/${type}`;
+ },
+ },
+ ],
+ 'www.epe': [
+ {
+ title: '能源与动力工程学院通知',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue',
+ source: ['/*path', '/'],
+ target: (params) => {
+ let type;
+ switch (params.path) {
+ case 'zxzx/xydt.htm':
+ type = '0';
+ break;
+ case 'zxzx/tzgg.htm':
+ type = '1';
+ break;
+ case 'zxzx/xslt.htm':
+ type = '2';
+ break;
+ default:
+ type = '0';
+ break;
+ }
+ return `/sdu/epe/${type}`;
+ },
+ },
+ ],
+ 'www.mech': [
+ {
+ title: '机械工程学院通知',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue',
+ source: ['/*path', '/'],
+ target: (params) => {
+ let type;
+ switch (params.path) {
+ case 'xwdt/tzgg.htm':
+ type = '0';
+ break;
+ case 'xwdt/ysxw.htm':
+ type = '1';
+ break;
+ case 'xwdt/jxxx.htm':
+ type = '2';
+ break;
+ case 'xwdt/xsdt.htm':
+ type = '3';
+ break;
+ case 'xwdt/xyjb.htm':
+ type = '4';
+ break;
+ default:
+ type = '0';
+ break;
+ }
+ return `/sdu/mech/${type}`;
+ },
+ },
+ ],
+ 'www.sc': [
+ {
+ title: '软件学院通知',
+ docs: 'https://docs.rsshub.app/university.html#shan-dong-da-xue',
+ source: ['/*path', '/'],
+ target: (params) => {
+ let type;
+ switch (params.path) {
+ case 'tzgg.htm':
+ type = '0';
+ break;
+ case 'kxyj/xsyg.htm':
+ type = '1';
+ break;
+ case 'rcpy/bkjy.htm':
+ type = '2';
+ break;
+ case 'rcpy/yjsjy.htm':
+ type = '3';
+ break;
+ default:
+ type = '0';
+ break;
+ }
+ return `/sdu/sc/${type}`;
+ },
+ },
+ ],
+ },
+};
diff --git a/lib/v2/sdu/router.js b/lib/v2/sdu/router.js
new file mode 100644
index 00000000000000..6913d656cb1bc2
--- /dev/null
+++ b/lib/v2/sdu/router.js
@@ -0,0 +1,8 @@
+module.exports = function (router) {
+ router.get('/cmse/:type?', require('./cmse'));
+ router.get('/cs/:type?', require('./cs'));
+ router.get('/epe/:type?', require('./epe'));
+ router.get('/mech/:type?', require('./mech'));
+ router.get('/sc/:type?', require('./sc'));
+ router.get('/wh/news/:column?', require('./wh/news'));
+};
diff --git a/lib/v2/sdu/sc.js b/lib/v2/sdu/sc.js
new file mode 100644
index 00000000000000..89cd9f2b8d08c0
--- /dev/null
+++ b/lib/v2/sdu/sc.js
@@ -0,0 +1,61 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const { parseDate } = require('@/utils/parse-date');
+
+const host = 'https://www.sc.sdu.edu.cn/';
+const typelist = ['通知公告', '学术动态', '本科教育', '研究生教育'];
+const urlList = ['tzgg.htm', 'kxyj/xsyg.htm', 'rcpy/bkjy.htm', 'rcpy/yjsjy.htm'];
+
+module.exports = async (ctx) => {
+ const type = ctx.params.type ? parseInt(ctx.params.type) : 0;
+ const link = new URL(urlList[type], host).href;
+ const response = await got(link);
+
+ const $ = cheerio.load(response.data);
+
+ let item = $('.newlist01 li')
+ .map((_, e) => {
+ e = $(e);
+ const a = e.find('a');
+ let link = a.attr('href');
+ link = new URL(link, host).href;
+ return {
+ title: a.text().trim(),
+ link,
+ pubDate: parseDate(e.find('.date').text().trim()),
+ };
+ })
+ .get();
+
+ item = await Promise.all(
+ item.map((item) =>
+ ctx.cache.tryGet(item.link, async () => {
+ try {
+ const response = await got(item.link);
+ const $ = cheerio.load(response.data);
+
+ item.title = $('h3').text();
+ item.author =
+ $('.pr')
+ .text()
+ .trim()
+ .match(/作者:(.*)/)[1] || '山东大学软件学院';
+ $('h3, .pr').remove();
+ item.description = $('.content').html();
+
+ return item;
+ } catch (e) {
+ // intranet oa.sdu.edu.cn
+ return item;
+ }
+ })
+ )
+ );
+
+ ctx.state.data = {
+ title: `山东大学软件学院${typelist[type]}`,
+ description: $('title').text(),
+ link,
+ item,
+ };
+};
diff --git a/lib/v2/sdu/wh/news.js b/lib/v2/sdu/wh/news.js
new file mode 100644
index 00000000000000..b1511f51651c0e
--- /dev/null
+++ b/lib/v2/sdu/wh/news.js
@@ -0,0 +1,38 @@
+const got = require('@/utils/got');
+const cheerio = require('cheerio');
+const data = require('../data').wh.news;
+const extractor = require('../extractor');
+const { parseDate } = require('@/utils/parse-date');
+
+module.exports = async (ctx) => {
+ const column = ctx.params.column ?? 'xyyw';
+ const baseUrl = data.url;
+ const response = await got(baseUrl + data.columns[column].url);
+ const $ = cheerio.load(response.data);
+ const items = $('.n_newslist li');
+ const out = await Promise.all(
+ items.map(async (index, item) => {
+ item = $(item);
+ const anchor = item.find('a');
+ const title = anchor.attr('title');
+ const href = anchor.attr('href');
+ const link = href.startsWith('http') ? href : baseUrl + href;
+ const { description, author, exactDate } = await ctx.cache.tryGet(link, async () => await extractor(link, ctx));
+ const span = item.find('span');
+ const pubDate = exactDate ?? parseDate(span.text(), 'YYYY/MM/DD');
+ return {
+ title,
+ link,
+ description,
+ pubDate,
+ author,
+ };
+ })
+ );
+
+ ctx.state.data = {
+ title: `${data.name} ${data.columns[column].name}`,
+ link: baseUrl + data.columns[column].url,
+ item: out,
+ };
+};
|
df5629d384a13c6268893565c65b13304bf5db40
|
2024-03-22 22:44:03
|
dependabot[bot]
|
chore(deps): bump @sentry/node from 7.107.0 to 7.108.0 (#14915)
| false
|
bump @sentry/node from 7.107.0 to 7.108.0 (#14915)
|
chore
|
diff --git a/package.json b/package.json
index e74d478e45c041..b683f73df9d0da 100644
--- a/package.json
+++ b/package.json
@@ -52,7 +52,7 @@
"@hono/zod-openapi": "0.9.9",
"@notionhq/client": "2.2.14",
"@postlight/parser": "2.2.3",
- "@sentry/node": "7.107.0",
+ "@sentry/node": "7.108.0",
"@tonyrl/rand-user-agent": "2.0.55",
"aes-js": "3.1.2",
"art-template": "4.13.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 774a1c6cca06cd..ed962c29fffa6e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -21,8 +21,8 @@ dependencies:
specifier: 2.2.3
version: 2.2.3
'@sentry/node':
- specifier: 7.107.0
- version: 7.107.0
+ specifier: 7.108.0
+ version: 7.108.0
'@tonyrl/rand-user-agent':
specifier: 2.0.55
version: 2.0.55
@@ -2288,43 +2288,43 @@ packages:
selderee: 0.11.0
dev: false
- /@sentry-internal/[email protected]:
- resolution: {integrity: sha512-le9wM8+OHBbq7m/8P7JUJ1UhSPIty+Z/HmRXc5Z64ODZcOwFV6TmDpYx729IXDdz36XUKmeI+BeM7yQdTTZPfQ==}
+ /@sentry-internal/[email protected]:
+ resolution: {integrity: sha512-zuK5XsTsb+U+hgn3SPetYDAogrXsM16U/LLoMW7+TlC6UjlHGYQvmX3o+M2vntejoU1QZS8m1bCAZSMWEypAEw==}
engines: {node: '>=8'}
dependencies:
- '@sentry/core': 7.107.0
- '@sentry/types': 7.107.0
- '@sentry/utils': 7.107.0
+ '@sentry/core': 7.108.0
+ '@sentry/types': 7.108.0
+ '@sentry/utils': 7.108.0
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-C7ogye6+KPyBi8NVL0P8Rxx3Ur7Td8ufnjxosVy678lqY+dcYPk/HONROrzUFYW5fMKWL4/KYnwP+x9uHnkDmw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-I/VNZCFgLASxHZaD0EtxZRM34WG9w2gozqgrKGNMzAymwmQ3K9g/1qmBy4e6iS3YRptb7J5UhQkZQHrcwBbjWQ==}
engines: {node: '>=8'}
dependencies:
- '@sentry/types': 7.107.0
- '@sentry/utils': 7.107.0
+ '@sentry/types': 7.108.0
+ '@sentry/utils': 7.108.0
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-UZXkG7uThT2YyPW8AOSKRXp1LbVcBHufa4r1XAwBukA2FKO6HHJPjMUgY6DYVQ6k+BmA56CNfVjYrdLbyjBYYA==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-pMxc9txnDDkU4Z8k2Uw/DPSLPehNtWV3mjJ3+my0AMORGYrXLkJI93tddlE5z/7k+GEJdj1HsOLgxUN0OU+HGA==}
engines: {node: '>=8'}
dependencies:
- '@sentry-internal/tracing': 7.107.0
- '@sentry/core': 7.107.0
- '@sentry/types': 7.107.0
- '@sentry/utils': 7.107.0
+ '@sentry-internal/tracing': 7.108.0
+ '@sentry/core': 7.108.0
+ '@sentry/types': 7.108.0
+ '@sentry/utils': 7.108.0
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-H7qcPjPSUWHE/Zf5bR1EE24G0pGVuJgrSx8Tvvl5nKEepswMYlbXHRVSDN0gTk/E5Z7cqf+hUBOpkQgZyps77w==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-bKtHITmBN3kqtqE5eVvL8mY8znM05vEodENwRpcm6TSrrBjC2RnwNWVwGstYDdHpNfFuKwC8mLY9bgMJcENo8g==}
engines: {node: '>=8'}
dev: false
- /@sentry/[email protected]:
- resolution: {integrity: sha512-C6PbN5gHh73MRHohnReeQ60N8rrLYa9LciHue3Ru2290eSThg4CzsPnx4SzkGpkSeVlhhptKtKZ+hp/ha3iVuw==}
+ /@sentry/[email protected]:
+ resolution: {integrity: sha512-a45yEFD5qtgZaIFRAcFkG8C8lnDzn6t4LfLXuV4OafGAy/3ZAN3XN8wDnrruHkiUezSSANGsLg3bXaLW/JLvJw==}
engines: {node: '>=8'}
dependencies:
- '@sentry/types': 7.107.0
+ '@sentry/types': 7.108.0
dev: false
/@sinclair/[email protected]:
|
6df109ad0e2664c1b83337c46626917820609e44
|
2024-04-30 21:13:11
|
Andvari
|
feat(route): Copernicium (#15389)
| false
|
Copernicium (#15389)
|
feat
|
diff --git a/lib/routes/copernicium/index.ts b/lib/routes/copernicium/index.ts
new file mode 100644
index 00000000000000..70433dc38b1ba9
--- /dev/null
+++ b/lib/routes/copernicium/index.ts
@@ -0,0 +1,66 @@
+import { Route } from '@/types';
+import ofetch from '@/utils/ofetch';
+
+import cache from '@/utils/cache';
+import { load } from 'cheerio';
+import { parseDate } from '@/utils/parse-date';
+
+export const route: Route = {
+ path: '/:category',
+ categories: ['new-media'],
+ radar: [{ source: ['www.copernicium.tw'] }],
+ name: '分类',
+ example: "/copernicium/环球视角",
+ parameters: {"category" : "分类名"},
+ maintainers: ['dzx-dzx'],
+ handler,
+};
+
+async function handler(ctx) {
+ const CATEGORY_TO_ARG_MAP = new Map([
+ ['环球视角', '4_1'],
+ ['人文叙述', '4_3'],
+ ['观点评论', '4_5'],
+ ]);
+ if (!CATEGORY_TO_ARG_MAP.get(ctx.req.param().category)) {
+ throw new Error("The requested category does not exist or is not supported.");
+ }
+ const reqArgs = {
+ args: {
+ _jcp: CATEGORY_TO_ARG_MAP.get(ctx.req.param().category),
+ m31pageno: 1,
+ },
+ type: 0,
+ };
+ const res = await ofetch(`https://www.copernicium.tw/nr.jsp`, {
+ query: { _reqArgs: reqArgs },
+ });
+ const $ = load(res);
+ const list = $('.J_newsResultLine a.mixNewsStyleTitle')
+ .toArray()
+ .map((e) => {
+ e = $(e);
+ return {
+ title: e.text(),
+ link: e.attr('href'),
+ };
+ });
+ const items = await Promise.all(
+ list.map((item) =>
+ cache.tryGet(item.link, async () => {
+ const detailResponse = await ofetch(item.link);
+ const content = load(detailResponse);
+ return {
+ pubDate: parseDate(content('span.newsInfo').text().substring(5)),
+ description: content('.richContent').html(),
+ ...item,
+ };
+ })
+ )
+ );
+ return {
+ title: `日新说 - ${ctx.req.param().category}`,
+ link: 'https://www.copernicium.tw',
+ item: items,
+ };
+}
diff --git a/lib/routes/copernicium/namespace.ts b/lib/routes/copernicium/namespace.ts
new file mode 100644
index 00000000000000..66ba8040fa32e7
--- /dev/null
+++ b/lib/routes/copernicium/namespace.ts
@@ -0,0 +1,6 @@
+import type { Namespace } from '@/types';
+
+export const namespace: Namespace = {
+ name: '日新说',
+ url: 'www.copernicium.tw',
+};
|
37ae90fc79b3704f6ad7bc5ef61979d9d6524a3c
|
2024-02-19 20:18:41
|
moppman
|
fix: Update metacritic API root URL (#14497)
| false
|
Update metacritic API root URL (#14497)
|
fix
|
diff --git a/lib/v2/metacritic/index.js b/lib/v2/metacritic/index.js
index 8052b87e07327b..208ceafaa85d79 100644
--- a/lib/v2/metacritic/index.js
+++ b/lib/v2/metacritic/index.js
@@ -11,7 +11,7 @@ module.exports = async (ctx) => {
const limit = ctx.query.limit ? Number.parseInt(ctx.query.limit, 10) : 50;
const rootUrl = 'https://www.metacritic.com';
- const rootApiUrl = 'https://fandom-prod.apigee.net';
+ const rootApiUrl = 'https://internal-prod.apigee.fandom.net';
const apiUrl = new URL('v1/xapi/finder/metacritic/web', rootApiUrl).href;
const currentUrlObject = new URL(`/browse/${type}/all/all/all-time/${sort}/${filter ? `?${filter}` : ''}`, rootUrl);
|
c113e3514155c1a60711752431ff248060ebba2e
|
2024-05-01 05:12:17
|
dependabot[bot]
|
chore(deps-dev): bump @stylistic/eslint-plugin from 1.7.2 to 1.8.0 (#15423)
| false
|
bump @stylistic/eslint-plugin from 1.7.2 to 1.8.0 (#15423)
|
chore
|
diff --git a/package.json b/package.json
index 8ed7574045c177..97ab494def1b2d 100644
--- a/package.json
+++ b/package.json
@@ -128,7 +128,7 @@
"@babel/preset-env": "7.24.5",
"@babel/preset-typescript": "7.24.1",
"@microsoft/eslint-formatter-sarif": "3.1.0",
- "@stylistic/eslint-plugin": "1.7.2",
+ "@stylistic/eslint-plugin": "1.8.0",
"@types/aes-js": "3.1.4",
"@types/babel__preset-env": "7.9.6",
"@types/crypto-js": "4.2.2",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ca7a77f2388b7c..700e88a828beec 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -236,8 +236,8 @@ devDependencies:
specifier: 3.1.0
version: 3.1.0
'@stylistic/eslint-plugin':
- specifier: 1.7.2
- version: 1.7.2([email protected])([email protected])
+ specifier: 1.8.0
+ version: 1.8.0([email protected])([email protected])
'@types/aes-js':
specifier: 3.1.4
version: 3.1.4
@@ -2771,8 +2771,8 @@ packages:
engines: {node: '>=16'}
dev: true
- /@stylistic/[email protected]([email protected]):
- resolution: {integrity: sha512-ZYX7C5p7zlHbACwFLU+lISVh6tdcRP/++PWegh2Sy0UgMT5kU0XkPa2tKWEtJYzZmPhJxu9LxbnWcnE/tTwSDQ==}
+ /@stylistic/[email protected]([email protected]):
+ resolution: {integrity: sha512-jdvnzt+pZPg8TfclZlTZPiUbbima93ylvQ+wNgHLNmup3obY6heQvgewSu9i2CfS61BnRByv+F9fxQLPoNeHag==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: '>=8.40.0'
@@ -2785,21 +2785,21 @@ packages:
espree: 9.6.1
dev: true
- /@stylistic/[email protected]([email protected]):
- resolution: {integrity: sha512-lNZR5PR0HLJPs+kY0y8fy6KroKlYqA5PwsYWpVYWzqZWiL5jgAeUo4s9yLFYjJjzildJ5MsTVMy/xP81Qz6GXg==}
+ /@stylistic/[email protected]([email protected]):
+ resolution: {integrity: sha512-PC7tYXipF03TTilGJva1amAham7qOAFXT5r5jLTY6iIxkFqyb6H7Ljx5pv8d7n98VyIVidOEKY/AP8vNzAFNKg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: '>=8.40.0'
dependencies:
- '@stylistic/eslint-plugin-js': 1.7.2([email protected])
+ '@stylistic/eslint-plugin-js': 1.8.0([email protected])
'@types/eslint': 8.56.10
eslint: 8.57.0
estraverse: 5.3.0
picomatch: 4.0.2
dev: true
- /@stylistic/[email protected]([email protected])([email protected]):
- resolution: {integrity: sha512-luUfRVbBVtt0+/FNt8/76BANJEzb/nHWasHD7UUjyMrch2U9xUKpObrkTCzqBuisKek+uFupwGjqXqDP07+fQw==}
+ /@stylistic/[email protected]([email protected])([email protected]):
+ resolution: {integrity: sha512-TkrjzzYmTuAaLvFwtxomsgMUD8g8PREOQOQzTfKmiJ6oc4XOyFW4q/L9ES1J3UFSLybNCwbhu36lhXJut1w2Sg==}
peerDependencies:
eslint: '*'
dependencies:
@@ -2811,13 +2811,13 @@ packages:
- typescript
dev: true
- /@stylistic/[email protected]([email protected])([email protected]):
- resolution: {integrity: sha512-szX89YPocwCe4T0eT3alj7MwEzDHt5+B+kb/vQfSSLIjI9CGgoWrgj50zU8PtaDctTh4ZieFBzU/lRmkSUo0RQ==}
+ /@stylistic/[email protected]([email protected])([email protected]):
+ resolution: {integrity: sha512-WuCIhz4JEHxzhAWjrBASMGj6Or1wAjDqTsRIck3DRRrw/FJ8C/8AAuHPk8ECHNSDI5PZ0OT72nF2uSUn0aQq1w==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: '>=8.40.0'
dependencies:
- '@stylistic/eslint-plugin-js': 1.7.2([email protected])
+ '@stylistic/eslint-plugin-js': 1.8.0([email protected])
'@types/eslint': 8.56.10
'@typescript-eslint/utils': 6.21.0([email protected])([email protected])
eslint: 8.57.0
@@ -2826,16 +2826,16 @@ packages:
- typescript
dev: true
- /@stylistic/[email protected]([email protected])([email protected]):
- resolution: {integrity: sha512-TesaPR4AOCeD4unwu9gZCdTe8SsUpykriICuwXV8GFBgESuVbfVp+S8g6xTWe9ntVR803bNMtnr2UhxHW0iFqg==}
+ /@stylistic/[email protected]([email protected])([email protected]):
+ resolution: {integrity: sha512-JRR0lCDU97AiE0X6qTc/uf8Hv0yETUdyJgoNzTLUIWdhVJVe/KGPnFmEsO1iXfNUIS6vhv3JJ5vaZ2qtXhZe1g==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: '>=8.40.0'
dependencies:
- '@stylistic/eslint-plugin-js': 1.7.2([email protected])
- '@stylistic/eslint-plugin-jsx': 1.7.2([email protected])
- '@stylistic/eslint-plugin-plus': 1.7.2([email protected])([email protected])
- '@stylistic/eslint-plugin-ts': 1.7.2([email protected])([email protected])
+ '@stylistic/eslint-plugin-js': 1.8.0([email protected])
+ '@stylistic/eslint-plugin-jsx': 1.8.0([email protected])
+ '@stylistic/eslint-plugin-plus': 1.8.0([email protected])([email protected])
+ '@stylistic/eslint-plugin-ts': 1.8.0([email protected])([email protected])
'@types/eslint': 8.56.10
eslint: 8.57.0
transitivePeerDependencies:
|
75b5a1945a166148bca97f4205db6db50c9c5d37
|
2024-03-12 09:48:09
|
Huntley
|
fix(route): 添加language字段 (#14759)
| false
|
添加language字段 (#14759)
|
fix
|
diff --git a/lib/routes/aeaweb/index.ts b/lib/routes/aeaweb/index.ts
index cf13dbb7067350..8c2f3ad6008b1e 100644
--- a/lib/routes/aeaweb/index.ts
+++ b/lib/routes/aeaweb/index.ts
@@ -108,5 +108,6 @@ async function handler(ctx) {
description,
link: currentUrl,
item: items,
+ language: $('html').attr('lang'),
};
}
diff --git a/lib/routes/annualreviews/index.ts b/lib/routes/annualreviews/index.ts
index 9bca7909ba9866..43d67fd0b19a05 100644
--- a/lib/routes/annualreviews/index.ts
+++ b/lib/routes/annualreviews/index.ts
@@ -92,5 +92,6 @@ async function handler(ctx) {
description: $('subtitle').first().text(),
link: currentUrl,
item: items,
+ language: $('html').attr('lang'),
};
}
diff --git a/lib/routes/nber/index.ts b/lib/routes/nber/index.ts
index c320c88995757d..04f1fbd4b793c9 100644
--- a/lib/routes/nber/index.ts
+++ b/lib/routes/nber/index.ts
@@ -74,5 +74,6 @@ async function handler(ctx) {
link: 'https://www.nber.org/papers',
item: items,
description: `National Bureau of Economic Research Working Papers articles`,
+ language: $('html').attr('lang'),
};
}
diff --git a/lib/routes/oup/index.ts b/lib/routes/oup/index.ts
index f4715e70e78b53..a3f67f06f0dce1 100644
--- a/lib/routes/oup/index.ts
+++ b/lib/routes/oup/index.ts
@@ -77,5 +77,6 @@ async function handler(ctx) {
title: `OUP - ${name}`,
link: url,
item: items,
+ language: $('html').attr('lang'),
};
}
diff --git a/lib/routes/trendingpapers/papers.ts b/lib/routes/trendingpapers/papers.ts
index 1c0c8de2f056ab..ba27dfa6ab2770 100644
--- a/lib/routes/trendingpapers/papers.ts
+++ b/lib/routes/trendingpapers/papers.ts
@@ -60,5 +60,6 @@ async function handler(ctx) {
title: `Trending Papers on arXiv.org | ${category} | ${time} | ${cited} | `,
link: currentUrl,
item: papers,
+ language: $('html').attr('lang'),
};
}
diff --git a/lib/routes/uchicago/current.ts b/lib/routes/uchicago/current.ts
index 04d4f2b9fc8b09..557b48397bd9c4 100644
--- a/lib/routes/uchicago/current.ts
+++ b/lib/routes/uchicago/current.ts
@@ -100,5 +100,6 @@ async function handler(ctx) {
link,
image: $('head meta[property="og:image"]').attr('content'),
item: items,
+ language: $('html').attr('lang'),
};
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.