rsshub 1.0.0-master.f5fb3ae → 1.0.0-master.f5fc827
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rsshub might be problematic. Click here for more details.
- package/README.md +27 -72
- package/lib/api/category/one.ts +81 -0
- package/lib/api/follow/config.ts +22 -0
- package/lib/api/index.ts +39 -0
- package/lib/api/namespace/all.ts +17 -0
- package/lib/api/namespace/one.ts +33 -0
- package/lib/api/radar/rules/all.ts +56 -0
- package/lib/api/radar/rules/one.ts +72 -0
- package/lib/app.test.ts +11 -0
- package/lib/app.tsx +57 -0
- package/lib/assets/logo.png +0 -0
- package/lib/config.test.ts +99 -0
- package/lib/config.ts +858 -0
- package/lib/errors/index.test.ts +88 -0
- package/lib/errors/index.tsx +81 -0
- package/lib/errors/types/config-not-found.ts +5 -0
- package/lib/errors/types/invalid-parameter.ts +5 -0
- package/lib/errors/types/not-found.ts +5 -0
- package/lib/errors/types/reject.ts +5 -0
- package/lib/errors/types/request-in-progress.ts +5 -0
- package/lib/index.ts +28 -0
- package/lib/middleware/access-control.test.ts +47 -0
- package/lib/middleware/access-control.ts +25 -0
- package/lib/middleware/anti-hotlink.test.ts +440 -0
- package/lib/middleware/anti-hotlink.ts +168 -0
- package/lib/middleware/cache.test.ts +189 -0
- package/lib/middleware/cache.ts +78 -0
- package/lib/middleware/debug.test.ts +40 -0
- package/lib/middleware/debug.ts +37 -0
- package/lib/middleware/filter-engine.test.ts +39 -0
- package/lib/middleware/header.test.ts +39 -0
- package/lib/middleware/header.ts +48 -0
- package/lib/middleware/logger.ts +44 -0
- package/lib/middleware/parameter.test.ts +462 -0
- package/lib/middleware/parameter.ts +423 -0
- package/lib/middleware/sentry.ts +27 -0
- package/lib/middleware/template.test.ts +117 -0
- package/lib/middleware/template.tsx +126 -0
- package/lib/middleware/templates/iframe.art +14 -0
- package/lib/middleware/trace.ts +25 -0
- package/lib/pkg.test.ts +68 -0
- package/lib/pkg.ts +21 -0
- package/lib/registry.test.ts +40 -0
- package/lib/registry.ts +118 -0
- package/lib/router.js +164 -2597
- package/lib/routes/005/index.ts +156 -0
- package/lib/routes/005/namespace.ts +9 -0
- package/lib/routes/005/templates/description.art +27 -0
- package/lib/routes/0818tuan/index.ts +70 -0
- package/lib/routes/0818tuan/namespace.ts +7 -0
- package/lib/routes/0x80/index.ts +87 -0
- package/lib/routes/0x80/namespace.ts +8 -0
- package/lib/routes/10jqka/namespace.ts +9 -0
- package/lib/routes/10jqka/realtimenews.ts +143 -0
- package/lib/routes/12306/index.ts +132 -0
- package/lib/routes/12306/namespace.ts +7 -0
- package/lib/routes/12306/templates/train.art +31 -0
- package/lib/routes/12306/zxdt.ts +85 -0
- package/lib/routes/12371/namespace.ts +8 -0
- package/lib/routes/12371/zxfb.ts +64 -0
- package/lib/routes/141jav/index.ts +121 -0
- package/lib/routes/141jav/namespace.ts +10 -0
- package/lib/routes/141jav/templates/description.art +47 -0
- package/lib/routes/141ppv/index.ts +124 -0
- package/lib/routes/141ppv/namespace.ts +10 -0
- package/lib/routes/141ppv/templates/description.art +47 -0
- package/lib/routes/163/ds.ts +60 -0
- package/lib/routes/163/dy.ts +51 -0
- package/lib/routes/163/dy2.ts +60 -0
- package/lib/routes/163/exclusive.ts +194 -0
- package/lib/routes/163/music/artist-songs.ts +61 -0
- package/lib/routes/163/music/artist.ts +61 -0
- package/lib/routes/163/music/djradio.ts +100 -0
- package/lib/routes/163/music/playlist.ts +77 -0
- package/lib/routes/163/music/userevents.ts +64 -0
- package/lib/routes/163/music/userplaylist.ts +78 -0
- package/lib/routes/163/music/userplayrecords.ts +83 -0
- package/lib/routes/163/namespace.ts +10 -0
- package/lib/routes/163/news/rank.ts +193 -0
- package/lib/routes/163/news/special.ts +138 -0
- package/lib/routes/163/open/vip.ts +92 -0
- package/lib/routes/163/renjian.ts +105 -0
- package/lib/routes/163/templates/ds.art +7 -0
- package/lib/routes/163/templates/dy.art +6 -0
- package/lib/routes/163/templates/exclusive.art +11 -0
- package/lib/routes/163/templates/music/djradio-content.art +11 -0
- package/lib/routes/163/templates/music/playlist.art +4 -0
- package/lib/routes/163/templates/music/userevents.art +7 -0
- package/lib/routes/163/templates/music/userplaylist.art +16 -0
- package/lib/routes/163/templates/music/userplayrecords.art +7 -0
- package/lib/routes/163/templates/open.art +12 -0
- package/lib/routes/163/today.ts +85 -0
- package/lib/routes/163/utils.ts +40 -0
- package/lib/routes/18comic/album.ts +107 -0
- package/lib/routes/18comic/blogs.ts +97 -0
- package/lib/routes/18comic/index.ts +61 -0
- package/lib/routes/18comic/namespace.ts +10 -0
- package/lib/routes/18comic/search.ts +50 -0
- package/lib/routes/18comic/templates/description.art +12 -0
- package/lib/routes/18comic/utils.ts +88 -0
- package/lib/routes/19lou/index.ts +114 -0
- package/lib/routes/19lou/namespace.ts +7 -0
- package/lib/routes/1lou/index.ts +147 -0
- package/lib/routes/1lou/namespace.ts +9 -0
- package/lib/routes/1point3acres/blog.ts +94 -0
- package/lib/routes/1point3acres/category.ts +57 -0
- package/lib/routes/1point3acres/namespace.ts +7 -0
- package/lib/routes/1point3acres/offer.ts +106 -0
- package/lib/routes/1point3acres/section.ts +77 -0
- package/lib/routes/1point3acres/templates/image.art +1 -0
- package/lib/routes/1point3acres/templates/offer.art +11 -0
- package/lib/routes/1point3acres/thread.ts +39 -0
- package/lib/routes/1point3acres/user/post.ts +45 -0
- package/lib/routes/1point3acres/user/thread.ts +45 -0
- package/lib/routes/1point3acres/utils.ts +143 -0
- package/lib/routes/1x/index.ts +121 -0
- package/lib/routes/1x/namespace.ts +9 -0
- package/lib/routes/1x/templates/description.art +17 -0
- package/lib/routes/2023game/index.ts +69 -0
- package/lib/routes/2023game/namespace.ts +7 -0
- package/lib/routes/2048/index.ts +173 -0
- package/lib/routes/2048/namespace.ts +7 -0
- package/lib/routes/2048/templates/download.art +1 -0
- package/lib/routes/2cycd/index.ts +66 -0
- package/lib/routes/2cycd/namespace.ts +7 -0
- package/lib/routes/36kr/hot-list.ts +93 -0
- package/lib/routes/36kr/index.ts +75 -0
- package/lib/routes/36kr/namespace.ts +7 -0
- package/lib/routes/36kr/utils.ts +35 -0
- package/lib/routes/3dmgame/game.ts +49 -0
- package/lib/routes/3dmgame/namespace.ts +7 -0
- package/lib/routes/3dmgame/news-center.ts +70 -0
- package/lib/routes/3dmgame/utils.ts +28 -0
- package/lib/routes/3kns/index.ts +121 -0
- package/lib/routes/3kns/namespace.ts +7 -0
- package/lib/routes/3kns/templates/description.art +9 -0
- package/lib/routes/423down/index.ts +280 -0
- package/lib/routes/423down/namespace.ts +9 -0
- package/lib/routes/423down/templates/description.art +21 -0
- package/lib/routes/4gamers/category.ts +47 -0
- package/lib/routes/4gamers/namespace.ts +7 -0
- package/lib/routes/4gamers/tag.ts +49 -0
- package/lib/routes/4gamers/templates/description.art +3 -0
- package/lib/routes/4gamers/templates/image.art +3 -0
- package/lib/routes/4gamers/topic.ts +48 -0
- package/lib/routes/4gamers/utils.ts +71 -0
- package/lib/routes/4ksj/forum.ts +230 -0
- package/lib/routes/4ksj/namespace.ts +7 -0
- package/lib/routes/4ksj/templates/description.art +59 -0
- package/lib/routes/500px/namespace.ts +7 -0
- package/lib/routes/500px/templates/tribeSet.art +6 -0
- package/lib/routes/500px/templates/user.art +3 -0
- package/lib/routes/500px/tribe-set.ts +44 -0
- package/lib/routes/500px/utils.ts +116 -0
- package/lib/routes/50forum/namespace.ts +7 -0
- package/lib/routes/50forum/zhuanjia.ts +67 -0
- package/lib/routes/51cto/namespace.ts +7 -0
- package/lib/routes/51cto/recommend.ts +90 -0
- package/lib/routes/51cto/utils.ts +21 -0
- package/lib/routes/51read/article.ts +82 -0
- package/lib/routes/51read/namespace.ts +7 -0
- package/lib/routes/52hrtt/index.ts +79 -0
- package/lib/routes/52hrtt/namespace.ts +7 -0
- package/lib/routes/52hrtt/symposium.ts +89 -0
- package/lib/routes/56kog/class.ts +37 -0
- package/lib/routes/56kog/namespace.ts +7 -0
- package/lib/routes/56kog/templates/description.art +32 -0
- package/lib/routes/56kog/top.ts +33 -0
- package/lib/routes/56kog/util.ts +111 -0
- package/lib/routes/591/list.ts +170 -0
- package/lib/routes/591/namespace.ts +7 -0
- package/lib/routes/591/templates/house.art +52 -0
- package/lib/routes/5eplay/index.ts +76 -0
- package/lib/routes/5eplay/namespace.ts +7 -0
- package/lib/routes/5eplay/utils.ts +34 -0
- package/lib/routes/69shu/article.ts +96 -0
- package/lib/routes/69shu/namespace.ts +7 -0
- package/lib/routes/6park/index.ts +80 -0
- package/lib/routes/6park/namespace.ts +7 -0
- package/lib/routes/6park/news.ts +89 -0
- package/lib/routes/6v123/latest-movies.ts +39 -0
- package/lib/routes/6v123/latest-tvseries.ts +39 -0
- package/lib/routes/6v123/namespace.ts +7 -0
- package/lib/routes/6v123/utils.ts +86 -0
- package/lib/routes/78dm/index.ts +473 -0
- package/lib/routes/78dm/namespace.ts +9 -0
- package/lib/routes/78dm/templates/description.art +17 -0
- package/lib/routes/7mmtv/index.ts +122 -0
- package/lib/routes/7mmtv/namespace.ts +7 -0
- package/lib/routes/7mmtv/templates/description.art +15 -0
- package/lib/routes/81/81rc/index.ts +108 -0
- package/lib/routes/81/namespace.ts +9 -0
- package/lib/routes/8264/list.ts +172 -0
- package/lib/routes/8264/namespace.ts +7 -0
- package/lib/routes/8264/templates/description.art +5 -0
- package/lib/routes/8kcos/article.ts +24 -0
- package/lib/routes/8kcos/cat.ts +38 -0
- package/lib/routes/8kcos/const.ts +4 -0
- package/lib/routes/8kcos/latest.ts +50 -0
- package/lib/routes/8kcos/namespace.ts +7 -0
- package/lib/routes/8kcos/tag.ts +49 -0
- package/lib/routes/8world/index.ts +67 -0
- package/lib/routes/8world/namespace.ts +7 -0
- package/lib/routes/91porn/author.ts +90 -0
- package/lib/routes/91porn/index.ts +93 -0
- package/lib/routes/91porn/namespace.ts +10 -0
- package/lib/routes/91porn/templates/index.art +1 -0
- package/lib/routes/91porn/utils.ts +11 -0
- package/lib/routes/95mm/category.ts +48 -0
- package/lib/routes/95mm/namespace.ts +7 -0
- package/lib/routes/95mm/tab.ts +36 -0
- package/lib/routes/95mm/tag.ts +34 -0
- package/lib/routes/95mm/templates/description.art +3 -0
- package/lib/routes/95mm/utils.ts +63 -0
- package/lib/routes/9to5/namespace.ts +7 -0
- package/lib/routes/9to5/subsite.ts +79 -0
- package/lib/routes/9to5/utils.ts +34 -0
- package/lib/routes/a9vg/index.ts +214 -0
- package/lib/routes/a9vg/namespace.ts +8 -0
- package/lib/routes/a9vg/templates/description.art +17 -0
- package/lib/routes/aamacau/index.ts +93 -0
- package/lib/routes/aamacau/namespace.ts +7 -0
- package/lib/routes/abc/index.ts +192 -0
- package/lib/routes/abc/namespace.ts +7 -0
- package/lib/routes/abc/templates/description.art +21 -0
- package/lib/routes/abmedia/category.ts +58 -0
- package/lib/routes/abmedia/index.ts +51 -0
- package/lib/routes/abmedia/namespace.ts +7 -0
- package/lib/routes/abskoop/index.ts +63 -0
- package/lib/routes/abskoop/namespace.ts +7 -0
- package/lib/routes/abskoop/nsfw.ts +46 -0
- package/lib/routes/academia/namespace.ts +7 -0
- package/lib/routes/academia/topics.ts +49 -0
- package/lib/routes/accessbriefing/index.ts +217 -0
- package/lib/routes/accessbriefing/namespace.ts +9 -0
- package/lib/routes/accessbriefing/templates/description.art +27 -0
- package/lib/routes/acfun/article.ts +158 -0
- package/lib/routes/acfun/bangumi.ts +52 -0
- package/lib/routes/acfun/namespace.ts +7 -0
- package/lib/routes/acfun/video.ts +65 -0
- package/lib/routes/acg17/namespace.ts +7 -0
- package/lib/routes/acg17/post.ts +45 -0
- package/lib/routes/acpaa/index.ts +77 -0
- package/lib/routes/acpaa/namespace.ts +7 -0
- package/lib/routes/acs/journal.ts +91 -0
- package/lib/routes/acs/namespace.ts +7 -0
- package/lib/routes/acs/templates/description.art +2 -0
- package/lib/routes/aeaweb/index.ts +115 -0
- package/lib/routes/aeaweb/namespace.ts +7 -0
- package/lib/routes/aeaweb/templates/description.art +3 -0
- package/lib/routes/aeon/category.ts +68 -0
- package/lib/routes/aeon/namespace.ts +7 -0
- package/lib/routes/aeon/templates/essay.art +9 -0
- package/lib/routes/aeon/templates/video.art +10 -0
- package/lib/routes/aeon/type.ts +68 -0
- package/lib/routes/aeon/utils.ts +85 -0
- package/lib/routes/afdian/dynamic.ts +47 -0
- package/lib/routes/afdian/explore.ts +78 -0
- package/lib/routes/afdian/namespace.ts +7 -0
- package/lib/routes/afr/latest.ts +69 -0
- package/lib/routes/afr/namespace.ts +7 -0
- package/lib/routes/afr/navigation.ts +75 -0
- package/lib/routes/afr/query.ts +349 -0
- package/lib/routes/afr/utils.ts +80 -0
- package/lib/routes/agefans/detail.ts +55 -0
- package/lib/routes/agefans/namespace.ts +7 -0
- package/lib/routes/agefans/update.ts +75 -0
- package/lib/routes/agefans/utils.ts +3 -0
- package/lib/routes/agirls/namespace.ts +7 -0
- package/lib/routes/agirls/topic-list.ts +56 -0
- package/lib/routes/agirls/topic.ts +56 -0
- package/lib/routes/agirls/utils.ts +28 -0
- package/lib/routes/agirls/z-index.ts +60 -0
- package/lib/routes/agora0/index.ts +83 -0
- package/lib/routes/agora0/namespace.ts +7 -0
- package/lib/routes/agora0/pen0.ts +69 -0
- package/lib/routes/agri/index.ts +307 -0
- package/lib/routes/agri/namespace.ts +9 -0
- package/lib/routes/agri/templates/description.art +21 -0
- package/lib/routes/ahjzu/namespace.ts +7 -0
- package/lib/routes/ahjzu/news.ts +83 -0
- package/lib/routes/aibase/discover.ts +388 -0
- package/lib/routes/aibase/namespace.ts +9 -0
- package/lib/routes/aibase/news.ts +118 -0
- package/lib/routes/aibase/templates/description.art +100 -0
- package/lib/routes/aibase/topic.ts +614 -0
- package/lib/routes/aibase/util.ts +114 -0
- package/lib/routes/aicaijing/index.ts +84 -0
- package/lib/routes/aicaijing/namespace.ts +7 -0
- package/lib/routes/aicaijing/templates/description.art +4 -0
- package/lib/routes/aiea/index.ts +63 -0
- package/lib/routes/aiea/namespace.ts +7 -0
- package/lib/routes/aijishu/index.ts +50 -0
- package/lib/routes/aijishu/namespace.ts +7 -0
- package/lib/routes/aijishu/utils.ts +35 -0
- package/lib/routes/ainvest/article.ts +67 -0
- package/lib/routes/ainvest/namespace.ts +7 -0
- package/lib/routes/ainvest/news.ts +65 -0
- package/lib/routes/ainvest/utils.ts +68 -0
- package/lib/routes/aip/journal-pupp.ts +62 -0
- package/lib/routes/aip/journal.ts +84 -0
- package/lib/routes/aip/namespace.ts +7 -0
- package/lib/routes/aip/templates/description.art +8 -0
- package/lib/routes/aip/utils.ts +29 -0
- package/lib/routes/air-level/index.ts +49 -0
- package/lib/routes/air-level/levelrank.ts +65 -0
- package/lib/routes/air-level/namespace.ts +12 -0
- package/lib/routes/airchina/index.ts +64 -0
- package/lib/routes/airchina/namespace.ts +7 -0
- package/lib/routes/aisixiang/column.ts +65 -0
- package/lib/routes/aisixiang/namespace.ts +7 -0
- package/lib/routes/aisixiang/thinktank.ts +72 -0
- package/lib/routes/aisixiang/toplist.ts +55 -0
- package/lib/routes/aisixiang/utils.ts +39 -0
- package/lib/routes/aisixiang/zhuanti.ts +68 -0
- package/lib/routes/ajcass/namespace.ts +11 -0
- package/lib/routes/ajcass/shxyj.ts +73 -0
- package/lib/routes/ajmide/index.ts +49 -0
- package/lib/routes/ajmide/namespace.ts +7 -0
- package/lib/routes/ali213/namespace.ts +9 -0
- package/lib/routes/ali213/news.ts +269 -0
- package/lib/routes/ali213/templates/description.art +21 -0
- package/lib/routes/alicesoft/infomation.ts +88 -0
- package/lib/routes/alicesoft/namespace.ts +7 -0
- package/lib/routes/alipan/files.ts +80 -0
- package/lib/routes/alipan/namespace.ts +8 -0
- package/lib/routes/alipan/types.ts +62 -0
- package/lib/routes/aliresearch/information.ts +86 -0
- package/lib/routes/aliresearch/namespace.ts +7 -0
- package/lib/routes/alistapart/index.ts +34 -0
- package/lib/routes/alistapart/namespace.ts +7 -0
- package/lib/routes/alistapart/topic.ts +93 -0
- package/lib/routes/alistapart/utils.ts +22 -0
- package/lib/routes/aliyun/database-month.ts +66 -0
- package/lib/routes/aliyun/developer/group.ts +73 -0
- package/lib/routes/aliyun/namespace.ts +7 -0
- package/lib/routes/aliyun/notice.ts +83 -0
- package/lib/routes/aljazeera/index.ts +103 -0
- package/lib/routes/aljazeera/namespace.ts +7 -0
- package/lib/routes/aljazeera/templates/description.art +8 -0
- package/lib/routes/ally/namespace.ts +7 -0
- package/lib/routes/ally/rail.ts +137 -0
- package/lib/routes/alpinelinux/namespace.ts +12 -0
- package/lib/routes/alpinelinux/pkgs.ts +104 -0
- package/lib/routes/alternativeto/namespace.ts +7 -0
- package/lib/routes/alternativeto/platform.ts +59 -0
- package/lib/routes/alternativeto/software.ts +59 -0
- package/lib/routes/alternativeto/utils.ts +21 -0
- package/lib/routes/amazon/awsblogs.ts +35 -0
- package/lib/routes/amazon/kindle-software-updates.ts +70 -0
- package/lib/routes/amazon/namespace.ts +7 -0
- package/lib/routes/amazon/templates/software-description.art +4 -0
- package/lib/routes/amz123/kx.ts +65 -0
- package/lib/routes/amz123/namespace.ts +9 -0
- package/lib/routes/android/namespace.ts +7 -0
- package/lib/routes/android/platform-tools-releases.ts +72 -0
- package/lib/routes/anime1/anime.ts +63 -0
- package/lib/routes/anime1/namespace.ts +7 -0
- package/lib/routes/anime1/search.ts +57 -0
- package/lib/routes/annualreviews/index.ts +99 -0
- package/lib/routes/annualreviews/namespace.ts +7 -0
- package/lib/routes/anquanke/category.ts +62 -0
- package/lib/routes/anquanke/namespace.ts +10 -0
- package/lib/routes/anquanke/vul.ts +36 -0
- package/lib/routes/apache/apisix/blog.ts +51 -0
- package/lib/routes/apache/namespace.ts +7 -0
- package/lib/routes/apiseven/blog.ts +68 -0
- package/lib/routes/apiseven/namespace.ts +7 -0
- package/lib/routes/apkpure/namespace.ts +7 -0
- package/lib/routes/apkpure/versions.ts +68 -0
- package/lib/routes/apnews/api.ts +77 -0
- package/lib/routes/apnews/namespace.ts +7 -0
- package/lib/routes/apnews/rss.ts +47 -0
- package/lib/routes/apnews/sitemap.ts +91 -0
- package/lib/routes/apnews/templates/description.art +14 -0
- package/lib/routes/apnews/topics.ts +63 -0
- package/lib/routes/apnews/utils.ts +74 -0
- package/lib/routes/apnic/index.ts +61 -0
- package/lib/routes/apnic/namespace.ts +8 -0
- package/lib/routes/app-center/namespace.ts +7 -0
- package/lib/routes/app-center/release.ts +151 -0
- package/lib/routes/app-center/templates/description.art +24 -0
- package/lib/routes/apple/apps.ts +159 -0
- package/lib/routes/apple/exchange-repair.ts +73 -0
- package/lib/routes/apple/namespace.ts +7 -0
- package/lib/routes/apple/podcast.ts +72 -0
- package/lib/routes/appleinsider/index.ts +88 -0
- package/lib/routes/appleinsider/namespace.ts +7 -0
- package/lib/routes/appstare/comments.ts +57 -0
- package/lib/routes/appstare/namespace.ts +7 -0
- package/lib/routes/appstore/in-app-purchase.ts +80 -0
- package/lib/routes/appstore/namespace.ts +7 -0
- package/lib/routes/appstore/price.ts +82 -0
- package/lib/routes/appstore/xianmian.ts +53 -0
- package/lib/routes/appstorrent/namespace.ts +7 -0
- package/lib/routes/appstorrent/programs.ts +91 -0
- package/lib/routes/appstorrent/templates/description.art +22 -0
- package/lib/routes/aqara/community.ts +51 -0
- package/lib/routes/aqara/namespace.ts +7 -0
- package/lib/routes/aqara/news.ts +62 -0
- package/lib/routes/aqara/post.ts +104 -0
- package/lib/routes/aqara/region.ts +18 -0
- package/lib/routes/aqara/templates/figure.art +3 -0
- package/lib/routes/aqicn/aqi.ts +82 -0
- package/lib/routes/aqicn/namespace.ts +7 -0
- package/lib/routes/arcteryx/namespace.ts +7 -0
- package/lib/routes/arcteryx/new-arrivals.ts +77 -0
- package/lib/routes/arcteryx/outlet.ts +79 -0
- package/lib/routes/arcteryx/regear-new-arrivals.ts +77 -0
- package/lib/routes/arcteryx/templates/product-description.art +12 -0
- package/lib/routes/arcteryx/templates/regear-product-description.art +16 -0
- package/lib/routes/arcteryx/utils.ts +21 -0
- package/lib/routes/artstation/namespace.ts +7 -0
- package/lib/routes/artstation/templates/description.art +17 -0
- package/lib/routes/artstation/user.ts +126 -0
- package/lib/routes/asiantolick/index.ts +132 -0
- package/lib/routes/asiantolick/namespace.ts +7 -0
- package/lib/routes/asiantolick/templates/description.art +9 -0
- package/lib/routes/asmr-200/index.ts +66 -0
- package/lib/routes/asmr-200/namespace.ts +7 -0
- package/lib/routes/asmr-200/templates/work.art +7 -0
- package/lib/routes/asmr-200/type.ts +96 -0
- package/lib/routes/asus/bios.ts +133 -0
- package/lib/routes/asus/gpu-tweak.ts +56 -0
- package/lib/routes/asus/namespace.ts +7 -0
- package/lib/routes/asus/templates/bios.art +13 -0
- package/lib/routes/atcoder/contest.ts +103 -0
- package/lib/routes/atcoder/namespace.ts +7 -0
- package/lib/routes/atcoder/post.ts +57 -0
- package/lib/routes/atptour/namespace.ts +8 -0
- package/lib/routes/atptour/news.ts +52 -0
- package/lib/routes/auto-stats/index.ts +88 -0
- package/lib/routes/auto-stats/namespace.ts +7 -0
- package/lib/routes/autocentre/index.ts +29 -0
- package/lib/routes/autocentre/namespace.ts +8 -0
- package/lib/routes/baai/events.ts +47 -0
- package/lib/routes/baai/hub.ts +98 -0
- package/lib/routes/baai/namespace.ts +7 -0
- package/lib/routes/baai/utils.ts +42 -0
- package/lib/routes/backlinko/blog.ts +70 -0
- package/lib/routes/backlinko/namespace.ts +7 -0
- package/lib/routes/bad/index.ts +67 -0
- package/lib/routes/bad/namespace.ts +7 -0
- package/lib/routes/baidu/gushitong/index.ts +57 -0
- package/lib/routes/baidu/namespace.ts +7 -0
- package/lib/routes/baidu/search.ts +77 -0
- package/lib/routes/baidu/templates/description.art +6 -0
- package/lib/routes/baidu/templates/forum.art +1 -0
- package/lib/routes/baidu/templates/gushitong.art +9 -0
- package/lib/routes/baidu/templates/post.art +4 -0
- package/lib/routes/baidu/templates/tieba_search.art +1 -0
- package/lib/routes/baidu/templates/top.art +9 -0
- package/lib/routes/baidu/tieba/forum.ts +86 -0
- package/lib/routes/baidu/tieba/post.ts +107 -0
- package/lib/routes/baidu/tieba/search.ts +93 -0
- package/lib/routes/baidu/tieba/user.ts +53 -0
- package/lib/routes/baidu/top.ts +59 -0
- package/lib/routes/baijing/index.ts +48 -0
- package/lib/routes/baijing/namespace.ts +8 -0
- package/lib/routes/bandcamp/live.ts +66 -0
- package/lib/routes/bandcamp/namespace.ts +7 -0
- package/lib/routes/bandcamp/tag.ts +72 -0
- package/lib/routes/bandcamp/templates/weekly.art +1 -0
- package/lib/routes/bandcamp/weekly.ts +57 -0
- package/lib/routes/bangumi.moe/index.ts +110 -0
- package/lib/routes/bangumi.moe/namespace.ts +7 -0
- package/lib/routes/bangumi.online/namespace.ts +7 -0
- package/lib/routes/bangumi.online/online.ts +56 -0
- package/lib/routes/bangumi.online/templates/image.art +1 -0
- package/lib/routes/bangumi.tv/calendar/_base.ts +38 -0
- package/lib/routes/bangumi.tv/calendar/today.ts +92 -0
- package/lib/routes/bangumi.tv/group/reply.ts +83 -0
- package/lib/routes/bangumi.tv/group/topic.ts +64 -0
- package/lib/routes/bangumi.tv/namespace.ts +7 -0
- package/lib/routes/bangumi.tv/other/followrank.ts +69 -0
- package/lib/routes/bangumi.tv/person/index.ts +62 -0
- package/lib/routes/bangumi.tv/subject/comments.ts +48 -0
- package/lib/routes/bangumi.tv/subject/ep.ts +30 -0
- package/lib/routes/bangumi.tv/subject/index.ts +57 -0
- package/lib/routes/bangumi.tv/subject/offcial-subject-api.ts +34 -0
- package/lib/routes/bangumi.tv/subject/utils.ts +3 -0
- package/lib/routes/bangumi.tv/templates/ep.art +2 -0
- package/lib/routes/bangumi.tv/templates/subject.art +6 -0
- package/lib/routes/bangumi.tv/templates/today.art +12 -0
- package/lib/routes/bangumi.tv/user/blog.ts +68 -0
- package/lib/routes/bangumi.tv/user/collections.ts +186 -0
- package/lib/routes/baoyu/index.ts +57 -0
- package/lib/routes/baoyu/namespace.ts +8 -0
- package/lib/routes/baozimh/index.ts +80 -0
- package/lib/routes/baozimh/namespace.ts +7 -0
- package/lib/routes/baozimh/templates/desc.art +3 -0
- package/lib/routes/barronschina/index.ts +100 -0
- package/lib/routes/barronschina/namespace.ts +7 -0
- package/lib/routes/bast/index.ts +84 -0
- package/lib/routes/bast/namespace.ts +7 -0
- package/lib/routes/bbc/index.ts +115 -0
- package/lib/routes/bbc/namespace.ts +7 -0
- package/lib/routes/bbc/utils.ts +35 -0
- package/lib/routes/bbcnewslabs/namespace.ts +7 -0
- package/lib/routes/bbcnewslabs/news.ts +56 -0
- package/lib/routes/bc3ts/list.ts +72 -0
- package/lib/routes/bc3ts/namespace.ts +8 -0
- package/lib/routes/bc3ts/templates/media.art +10 -0
- package/lib/routes/bc3ts/types.ts +118 -0
- package/lib/routes/bdys/index.ts +187 -0
- package/lib/routes/bdys/namespace.ts +10 -0
- package/lib/routes/bdys/templates/desc.art +21 -0
- package/lib/routes/behance/namespace.ts +7 -0
- package/lib/routes/behance/queries.ts +1015 -0
- package/lib/routes/behance/templates/description.art +21 -0
- package/lib/routes/behance/user.ts +122 -0
- package/lib/routes/beijingprice/index.ts +188 -0
- package/lib/routes/beijingprice/namespace.ts +9 -0
- package/lib/routes/bellroy/namespace.ts +7 -0
- package/lib/routes/bellroy/new-releases.ts +51 -0
- package/lib/routes/bendibao/namespace.ts +7 -0
- package/lib/routes/bendibao/news.ts +146 -0
- package/lib/routes/bestblogs/feeds.ts +107 -0
- package/lib/routes/bestblogs/namespace.ts +7 -0
- package/lib/routes/bgmlist/namespace.ts +7 -0
- package/lib/routes/bgmlist/onair.ts +54 -0
- package/lib/routes/bgmlist/templates/description.art +4 -0
- package/lib/routes/bigquant/collections.ts +62 -0
- package/lib/routes/bigquant/namespace.ts +7 -0
- package/lib/routes/bilibili/api-interface.d.ts +493 -0
- package/lib/routes/bilibili/app.ts +55 -0
- package/lib/routes/bilibili/article.ts +85 -0
- package/lib/routes/bilibili/audio.ts +61 -0
- package/lib/routes/bilibili/bangumi.ts +68 -0
- package/lib/routes/bilibili/bilibili-recommend.ts +42 -0
- package/lib/routes/bilibili/cache.ts +289 -0
- package/lib/routes/bilibili/coin.ts +60 -0
- package/lib/routes/bilibili/danmaku.ts +78 -0
- package/lib/routes/bilibili/dynamic.ts +391 -0
- package/lib/routes/bilibili/fav.ts +60 -0
- package/lib/routes/bilibili/followers.ts +87 -0
- package/lib/routes/bilibili/followings-article.ts +80 -0
- package/lib/routes/bilibili/followings-dynamic.ts +210 -0
- package/lib/routes/bilibili/followings-video.ts +84 -0
- package/lib/routes/bilibili/followings.ts +91 -0
- package/lib/routes/bilibili/hot-search.ts +54 -0
- package/lib/routes/bilibili/like.ts +60 -0
- package/lib/routes/bilibili/link-news.ts +61 -0
- package/lib/routes/bilibili/live-area.ts +86 -0
- package/lib/routes/bilibili/live-room.ts +65 -0
- package/lib/routes/bilibili/live-search.ts +67 -0
- package/lib/routes/bilibili/mall-ip.ts +53 -0
- package/lib/routes/bilibili/mall-new.ts +53 -0
- package/lib/routes/bilibili/manga-followings.ts +71 -0
- package/lib/routes/bilibili/manga-update.ts +60 -0
- package/lib/routes/bilibili/namespace.ts +7 -0
- package/lib/routes/bilibili/page.ts +56 -0
- package/lib/routes/bilibili/partion-ranking.ts +76 -0
- package/lib/routes/bilibili/partion.ts +168 -0
- package/lib/routes/bilibili/platform.ts +77 -0
- package/lib/routes/bilibili/popular.ts +50 -0
- package/lib/routes/bilibili/ranking.ts +222 -0
- package/lib/routes/bilibili/readlist.ts +51 -0
- package/lib/routes/bilibili/reply.ts +59 -0
- package/lib/routes/bilibili/templates/description.art +14 -0
- package/lib/routes/bilibili/types.ts +52 -0
- package/lib/routes/bilibili/user-bangumi.ts +61 -0
- package/lib/routes/bilibili/user-channel.ts +81 -0
- package/lib/routes/bilibili/user-collection.ts +72 -0
- package/lib/routes/bilibili/user-fav.ts +62 -0
- package/lib/routes/bilibili/utils.ts +316 -0
- package/lib/routes/bilibili/video-all.ts +89 -0
- package/lib/routes/bilibili/video.ts +78 -0
- package/lib/routes/bilibili/vsearch.ts +110 -0
- package/lib/routes/bilibili/watchlater.ts +76 -0
- package/lib/routes/bilibili/weekly-recommend.ts +55 -0
- package/lib/routes/binance/announcement.ts +169 -0
- package/lib/routes/binance/launchpool.ts +46 -0
- package/lib/routes/binance/namespace.ts +7 -0
- package/lib/routes/binance/types.ts +26 -0
- package/lib/routes/bing/daily-wallpaper.ts +84 -0
- package/lib/routes/bing/namespace.ts +7 -0
- package/lib/routes/bing/search.ts +54 -0
- package/lib/routes/biodiscover/index.ts +59 -0
- package/lib/routes/biodiscover/namespace.ts +7 -0
- package/lib/routes/bioone/featured.ts +78 -0
- package/lib/routes/bioone/journal.ts +86 -0
- package/lib/routes/bioone/namespace.ts +7 -0
- package/lib/routes/biquge/index.ts +110 -0
- package/lib/routes/biquge/namespace.ts +28 -0
- package/lib/routes/bit/cs/cs.ts +50 -0
- package/lib/routes/bit/cs/utils.ts +51 -0
- package/lib/routes/bit/jwc/jwc.ts +50 -0
- package/lib/routes/bit/jwc/utils.ts +47 -0
- package/lib/routes/bit/namespace.ts +7 -0
- package/lib/routes/bit/rszhaopin.ts +55 -0
- package/lib/routes/bit/yjs.ts +52 -0
- package/lib/routes/bitbucket/commits.ts +64 -0
- package/lib/routes/bitbucket/namespace.ts +7 -0
- package/lib/routes/bitbucket/tags.ts +59 -0
- package/lib/routes/bitget/announcement.ts +201 -0
- package/lib/routes/bitget/namespace.ts +7 -0
- package/lib/routes/bitget/type.ts +26 -0
- package/lib/routes/bitmovin/blog.ts +52 -0
- package/lib/routes/bitmovin/namespace.ts +7 -0
- package/lib/routes/bjfu/grs.ts +77 -0
- package/lib/routes/bjfu/it/index.ts +79 -0
- package/lib/routes/bjfu/it/utils.ts +71 -0
- package/lib/routes/bjfu/jwc/index.ts +78 -0
- package/lib/routes/bjfu/jwc/utils.ts +58 -0
- package/lib/routes/bjfu/kjc.ts +78 -0
- package/lib/routes/bjfu/namespace.ts +7 -0
- package/lib/routes/bjfu/news/index.ts +86 -0
- package/lib/routes/bjfu/news/utils.ts +59 -0
- package/lib/routes/bjnews/cat.ts +51 -0
- package/lib/routes/bjnews/column.ts +43 -0
- package/lib/routes/bjnews/namespace.ts +7 -0
- package/lib/routes/bjnews/utils.ts +19 -0
- package/lib/routes/bjp/apod.ts +72 -0
- package/lib/routes/bjp/namespace.ts +7 -0
- package/lib/routes/bjsk/index.ts +77 -0
- package/lib/routes/bjsk/keti.ts +84 -0
- package/lib/routes/bjsk/namespace.ts +7 -0
- package/lib/routes/bjtu/gs.ts +224 -0
- package/lib/routes/bjtu/namespace.ts +9 -0
- package/lib/routes/bjwxdxh/index.ts +75 -0
- package/lib/routes/bjwxdxh/namespace.ts +7 -0
- package/lib/routes/bjx/fd.ts +63 -0
- package/lib/routes/bjx/huanbao.ts +104 -0
- package/lib/routes/bjx/namespace.ts +7 -0
- package/lib/routes/bjx/types.ts +57 -0
- package/lib/routes/blizzard/namespace.ts +7 -0
- package/lib/routes/blizzard/news.ts +108 -0
- package/lib/routes/blogread/index.ts +45 -0
- package/lib/routes/blogread/namespace.ts +7 -0
- package/lib/routes/bloomberg/authors.ts +78 -0
- package/lib/routes/bloomberg/index.ts +69 -0
- package/lib/routes/bloomberg/namespace.ts +7 -0
- package/lib/routes/bloomberg/templates/audio_media.art +13 -0
- package/lib/routes/bloomberg/templates/chart_media.art +21 -0
- package/lib/routes/bloomberg/templates/image_figure.art +9 -0
- package/lib/routes/bloomberg/templates/lede_media.art +14 -0
- package/lib/routes/bloomberg/templates/video_media.art +25 -0
- package/lib/routes/bloomberg/utils.ts +618 -0
- package/lib/routes/bluearchive/namespace.ts +8 -0
- package/lib/routes/bluearchive/news.ts +88 -0
- package/lib/routes/bluestacks/namespace.ts +7 -0
- package/lib/routes/bluestacks/release.ts +90 -0
- package/lib/routes/bmkg/earthquake.ts +54 -0
- package/lib/routes/bmkg/namespace.ts +7 -0
- package/lib/routes/bmkg/news.ts +68 -0
- package/lib/routes/bnu/bs.ts +81 -0
- package/lib/routes/bnu/dwxgb.ts +78 -0
- package/lib/routes/bnu/fdy.ts +50 -0
- package/lib/routes/bnu/jwb.ts +56 -0
- package/lib/routes/bnu/lib.ts +55 -0
- package/lib/routes/bnu/mba.ts +202 -0
- package/lib/routes/bnu/namespace.ts +7 -0
- package/lib/routes/boc/namespace.ts +7 -0
- package/lib/routes/boc/whpj.ts +129 -0
- package/lib/routes/bookfere/category.ts +70 -0
- package/lib/routes/bookfere/namespace.ts +7 -0
- package/lib/routes/booru/mmda.ts +134 -0
- package/lib/routes/booru/namespace.ts +7 -0
- package/lib/routes/booru/templates/description.art +25 -0
- package/lib/routes/bossdesign/index.ts +64 -0
- package/lib/routes/bossdesign/namespace.ts +7 -0
- package/lib/routes/brave/latest.ts +65 -0
- package/lib/routes/brave/namespace.ts +7 -0
- package/lib/routes/brooklynmuseum/exhibitions.ts +46 -0
- package/lib/routes/brooklynmuseum/namespace.ts +7 -0
- package/lib/routes/bse/index.ts +216 -0
- package/lib/routes/bse/namespace.ts +7 -0
- package/lib/routes/bsky/keyword.ts +41 -0
- package/lib/routes/bsky/namespace.ts +7 -0
- package/lib/routes/bsky/posts.ts +90 -0
- package/lib/routes/bsky/templates/post.art +24 -0
- package/lib/routes/bsky/utils.ts +48 -0
- package/lib/routes/bt0/mv.ts +65 -0
- package/lib/routes/bt0/namespace.ts +10 -0
- package/lib/routes/bt0/tlist.ts +67 -0
- package/lib/routes/bt0/util.ts +51 -0
- package/lib/routes/btzj/index.ts +164 -0
- package/lib/routes/btzj/namespace.ts +7 -0
- package/lib/routes/btzj/templates/torrents.art +5 -0
- package/lib/routes/buaa/jiaowu.ts +124 -0
- package/lib/routes/buaa/lib/space/newbook.ts +171 -0
- package/lib/routes/buaa/lib/space/templates/newbook.art +44 -0
- package/lib/routes/buaa/namespace.ts +7 -0
- package/lib/routes/buaa/news/index.ts +71 -0
- package/lib/routes/buaa/sme.ts +101 -0
- package/lib/routes/bugzilla/bug.ts +59 -0
- package/lib/routes/bugzilla/namespace.ts +12 -0
- package/lib/routes/bulianglin/namespace.ts +7 -0
- package/lib/routes/bulianglin/rss.ts +48 -0
- package/lib/routes/bupt/jwc.ts +130 -0
- package/lib/routes/bupt/namespace.ts +7 -0
- package/lib/routes/bupt/rczp.ts +77 -0
- package/lib/routes/byau/namespace.ts +7 -0
- package/lib/routes/byau/xinwen/index.ts +72 -0
- package/lib/routes/byteclicks/index.ts +37 -0
- package/lib/routes/byteclicks/namespace.ts +7 -0
- package/lib/routes/byteclicks/tag.ts +55 -0
- package/lib/routes/byteclicks/utils.ts +11 -0
- package/lib/routes/bytes/bytes.ts +40 -0
- package/lib/routes/bytes/namespace.ts +7 -0
- package/lib/routes/c114/namespace.ts +9 -0
- package/lib/routes/c114/roll.ts +112 -0
- package/lib/routes/caai/index.ts +42 -0
- package/lib/routes/caai/namespace.ts +7 -0
- package/lib/routes/caai/templates/description.art +1 -0
- package/lib/routes/caai/utils.ts +49 -0
- package/lib/routes/caam/index.ts +73 -0
- package/lib/routes/caam/namespace.ts +7 -0
- package/lib/routes/caareviews/book.ts +39 -0
- package/lib/routes/caareviews/essay.ts +39 -0
- package/lib/routes/caareviews/exhibition.ts +39 -0
- package/lib/routes/caareviews/namespace.ts +7 -0
- package/lib/routes/caareviews/templates/utils.art +2 -0
- package/lib/routes/caareviews/utils.ts +49 -0
- package/lib/routes/cags/edu/index.ts +84 -0
- package/lib/routes/cags/namespace.ts +9 -0
- package/lib/routes/cahkms/index.ts +105 -0
- package/lib/routes/cahkms/namespace.ts +7 -0
- package/lib/routes/cahkms/templates/description.art +15 -0
- package/lib/routes/caijing/namespace.ts +7 -0
- package/lib/routes/caijing/roll.ts +72 -0
- package/lib/routes/caixin/article.ts +53 -0
- package/lib/routes/caixin/blog.ts +102 -0
- package/lib/routes/caixin/category.ts +94 -0
- package/lib/routes/caixin/database.ts +77 -0
- package/lib/routes/caixin/k.ts +59 -0
- package/lib/routes/caixin/latest.ts +72 -0
- package/lib/routes/caixin/namespace.ts +8 -0
- package/lib/routes/caixin/templates/article.art +38 -0
- package/lib/routes/caixin/utils-fulltext.ts +51 -0
- package/lib/routes/caixin/utils.ts +49 -0
- package/lib/routes/caixin/weekly.ts +77 -0
- package/lib/routes/caixinglobal/latest.ts +90 -0
- package/lib/routes/caixinglobal/namespace.ts +7 -0
- package/lib/routes/camchina/index.ts +80 -0
- package/lib/routes/camchina/namespace.ts +7 -0
- package/lib/routes/cankaoxiaoxi/index.ts +112 -0
- package/lib/routes/cankaoxiaoxi/namespace.ts +7 -0
- package/lib/routes/cankaoxiaoxi/templates/description.art +5 -0
- package/lib/routes/cara/constant.ts +5 -0
- package/lib/routes/cara/likes.ts +56 -0
- package/lib/routes/cara/namespace.ts +7 -0
- package/lib/routes/cara/portfolio.ts +40 -0
- package/lib/routes/cara/templates/post.art +6 -0
- package/lib/routes/cara/timeline.ts +56 -0
- package/lib/routes/cara/types.ts +45 -0
- package/lib/routes/cara/utils.ts +62 -0
- package/lib/routes/cartoonmad/comic.ts +98 -0
- package/lib/routes/cartoonmad/namespace.ts +7 -0
- package/lib/routes/cartoonmad/templates/chapter.art +1 -0
- package/lib/routes/cas/cg/index.ts +80 -0
- package/lib/routes/cas/genetics/index.ts +71 -0
- package/lib/routes/cas/ia/yjs.ts +50 -0
- package/lib/routes/cas/iee/kydt.ts +74 -0
- package/lib/routes/cas/is/index.ts +53 -0
- package/lib/routes/cas/mesalab/kb.ts +67 -0
- package/lib/routes/cas/namespace.ts +7 -0
- package/lib/routes/cas/sim/kyjz.ts +73 -0
- package/lib/routes/casssp/namespace.ts +7 -0
- package/lib/routes/casssp/news.ts +82 -0
- package/lib/routes/cast/index.ts +115 -0
- package/lib/routes/cast/namespace.ts +7 -0
- package/lib/routes/cau/ele.ts +68 -0
- package/lib/routes/cau/namespace.ts +7 -0
- package/lib/routes/cau/yjs.ts +67 -0
- package/lib/routes/caus/index.ts +111 -0
- package/lib/routes/caus/namespace.ts +7 -0
- package/lib/routes/cbaigui/index.ts +112 -0
- package/lib/routes/cbaigui/namespace.ts +7 -0
- package/lib/routes/cbaigui/templates/figure.art +3 -0
- package/lib/routes/cbaigui/utils.ts +14 -0
- package/lib/routes/cbc/namespace.ts +7 -0
- package/lib/routes/cbc/topics.ts +85 -0
- package/lib/routes/cbirc/index.ts +133 -0
- package/lib/routes/cbirc/namespace.ts +7 -0
- package/lib/routes/cbnweek/index.ts +62 -0
- package/lib/routes/cbnweek/namespace.ts +7 -0
- package/lib/routes/cbpanet/index.ts +380 -0
- package/lib/routes/cbpanet/namespace.ts +9 -0
- package/lib/routes/ccac/namespace.ts +7 -0
- package/lib/routes/ccac/news.ts +82 -0
- package/lib/routes/ccac/utils.ts +26 -0
- package/lib/routes/cccfna/index.ts +82 -0
- package/lib/routes/cccfna/namespace.ts +7 -0
- package/lib/routes/ccf/ccfcv/index.ts +94 -0
- package/lib/routes/ccf/namespace.ts +7 -0
- package/lib/routes/ccf/news.ts +74 -0
- package/lib/routes/ccf/templates/ccfcv/description.art +1 -0
- package/lib/routes/ccf/templates/tfbd/description.art +1 -0
- package/lib/routes/ccf/tfbd/index.ts +47 -0
- package/lib/routes/ccf/tfbd/utils.ts +50 -0
- package/lib/routes/ccfa/index.ts +216 -0
- package/lib/routes/ccfa/namespace.ts +9 -0
- package/lib/routes/ccfa/templates/description.art +7 -0
- package/lib/routes/ccnu/career.ts +56 -0
- package/lib/routes/ccnu/cs.ts +53 -0
- package/lib/routes/ccnu/namespace.ts +7 -0
- package/lib/routes/ccnu/wu.ts +52 -0
- package/lib/routes/ccnu/yjs.ts +52 -0
- package/lib/routes/ccreports/index.ts +67 -0
- package/lib/routes/ccreports/namespace.ts +7 -0
- package/lib/routes/cctv/category.ts +52 -0
- package/lib/routes/cctv/jx.ts +77 -0
- package/lib/routes/cctv/lm.ts +114 -0
- package/lib/routes/cctv/namespace.ts +7 -0
- package/lib/routes/cctv/utils/mzzlbg.ts +42 -0
- package/lib/routes/cctv/utils/news.ts +109 -0
- package/lib/routes/cctv/utils/xinwen1j1.ts +83 -0
- package/lib/routes/cctv/xwlb.ts +99 -0
- package/lib/routes/cde/index.ts +167 -0
- package/lib/routes/cde/namespace.ts +7 -0
- package/lib/routes/cde/templates/xxgk/breakthroughCure.art +18 -0
- package/lib/routes/cde/templates/xxgk/cliniCal.art +16 -0
- package/lib/routes/cde/templates/xxgk/priorityApproval.art +18 -0
- package/lib/routes/cde/utils.ts +17 -0
- package/lib/routes/cde/xxgk.ts +98 -0
- package/lib/routes/cde/zdyz.ts +100 -0
- package/lib/routes/cdi/index.ts +84 -0
- package/lib/routes/cdi/namespace.ts +7 -0
- package/lib/routes/cdu/jwgg.ts +79 -0
- package/lib/routes/cdu/namespace.ts +7 -0
- package/lib/routes/cdzjryb/namespace.ts +7 -0
- package/lib/routes/cdzjryb/project-list.ts +78 -0
- package/lib/routes/cdzjryb/templates/projectList.art +23 -0
- package/lib/routes/cebbank/all.ts +78 -0
- package/lib/routes/cebbank/history.ts +77 -0
- package/lib/routes/cebbank/namespace.ts +7 -0
- package/lib/routes/cebbank/templates/allDes.art +2 -0
- package/lib/routes/cebbank/templates/historyDes.art +3 -0
- package/lib/routes/cebbank/utils.ts +68 -0
- package/lib/routes/ceph/blog.ts +72 -0
- package/lib/routes/ceph/namespace.ts +8 -0
- package/lib/routes/cfachina/analygarden.ts +87 -0
- package/lib/routes/cfachina/namespace.ts +7 -0
- package/lib/routes/cffex/announcement.ts +73 -0
- package/lib/routes/cffex/namespace.ts +7 -0
- package/lib/routes/cfmmc/index.ts +81 -0
- package/lib/routes/cfmmc/namespace.ts +7 -0
- package/lib/routes/cfr/index.ts +58 -0
- package/lib/routes/cfr/namespace.ts +7 -0
- package/lib/routes/cfr/types.ts +30 -0
- package/lib/routes/cfr/utils.ts +284 -0
- package/lib/routes/cgtn/namespace.ts +7 -0
- package/lib/routes/cgtn/podcast.ts +61 -0
- package/lib/routes/chaincatcher/home.ts +69 -0
- package/lib/routes/chaincatcher/namespace.ts +7 -0
- package/lib/routes/chaincatcher/news.ts +65 -0
- package/lib/routes/chaincatcher/templates/home.art +4 -0
- package/lib/routes/changba/namespace.ts +7 -0
- package/lib/routes/changba/templates/work_description.art +2 -0
- package/lib/routes/changba/user.ts +113 -0
- package/lib/routes/chaoxing/namespace.ts +7 -0
- package/lib/routes/chaoxing/qk.ts +95 -0
- package/lib/routes/chaoxing/templates/description.art +3 -0
- package/lib/routes/chaping/banner.ts +66 -0
- package/lib/routes/chaping/namespace.ts +7 -0
- package/lib/routes/chaping/news.ts +83 -0
- package/lib/routes/chaping/newsflash.ts +48 -0
- package/lib/routes/chiculture/namespace.ts +7 -0
- package/lib/routes/chiculture/topic.ts +84 -0
- package/lib/routes/chikubi/category.ts +41 -0
- package/lib/routes/chikubi/index.ts +66 -0
- package/lib/routes/chikubi/namespace.ts +16 -0
- package/lib/routes/chikubi/navigation.ts +66 -0
- package/lib/routes/chikubi/nipple-video-category.ts +49 -0
- package/lib/routes/chikubi/nipple-video-maker.ts +49 -0
- package/lib/routes/chikubi/search.ts +39 -0
- package/lib/routes/chikubi/tag.ts +41 -0
- package/lib/routes/chikubi/utils.ts +135 -0
- package/lib/routes/china/finance/finance.ts +93 -0
- package/lib/routes/china/namespace.ts +7 -0
- package/lib/routes/china/news/highlights/news.ts +69 -0
- package/lib/routes/china/news/military/news.ts +55 -0
- package/lib/routes/chinacdc/index.ts +490 -0
- package/lib/routes/chinacdc/namespace.ts +9 -0
- package/lib/routes/chinacdc/templates/description.art +7 -0
- package/lib/routes/chinadegrees/namespace.ts +7 -0
- package/lib/routes/chinadegrees/province.ts +124 -0
- package/lib/routes/chinadegrees/templates/description.art +4 -0
- package/lib/routes/chinafactcheck/index.ts +53 -0
- package/lib/routes/chinafactcheck/namespace.ts +7 -0
- package/lib/routes/chinafactcheck/utils.ts +60 -0
- package/lib/routes/chinaisa/index.ts +251 -0
- package/lib/routes/chinaisa/namespace.ts +7 -0
- package/lib/routes/chinamoney/channels.ts +55 -0
- package/lib/routes/chinamoney/namespace.ts +7 -0
- package/lib/routes/chinamoney/notice.ts +112 -0
- package/lib/routes/chinanews/index.ts +82 -0
- package/lib/routes/chinanews/namespace.ts +7 -0
- package/lib/routes/chinania/index.ts +240 -0
- package/lib/routes/chinania/namespace.ts +9 -0
- package/lib/routes/chinathinktanks/namespace.ts +7 -0
- package/lib/routes/chinathinktanks/viewpoint.ts +119 -0
- package/lib/routes/chinaventure/index.ts +93 -0
- package/lib/routes/chinaventure/namespace.ts +7 -0
- package/lib/routes/chinawriter/index.ts +97 -0
- package/lib/routes/chinawriter/namespace.ts +7 -0
- package/lib/routes/chlinlearn/daily-blog.ts +55 -0
- package/lib/routes/chlinlearn/namespcae.ts +7 -0
- package/lib/routes/chongdiantou/index.ts +54 -0
- package/lib/routes/chongdiantou/namespace.ts +9 -0
- package/lib/routes/chsi/hotnews.ts +74 -0
- package/lib/routes/chsi/kydt.ts +72 -0
- package/lib/routes/chsi/kyzx.ts +79 -0
- package/lib/routes/chsi/namespace.ts +7 -0
- package/lib/routes/chuanliu/namespace.ts +7 -0
- package/lib/routes/chuanliu/nice.ts +105 -0
- package/lib/routes/chuanliu/templates/description.art +23 -0
- package/lib/routes/chub/characters.ts +64 -0
- package/lib/routes/chub/namespace.ts +7 -0
- package/lib/routes/cib/namespace.ts +7 -0
- package/lib/routes/cib/whpj.ts +115 -0
- package/lib/routes/ciidbnu/index.ts +80 -0
- package/lib/routes/ciidbnu/namespace.ts +7 -0
- package/lib/routes/cisia/index.ts +264 -0
- package/lib/routes/cisia/namespace.ts +9 -0
- package/lib/routes/civitai/discussions.ts +74 -0
- package/lib/routes/civitai/models.ts +51 -0
- package/lib/routes/civitai/namespace.ts +7 -0
- package/lib/routes/ciweimao/chapter.ts +86 -0
- package/lib/routes/ciweimao/namespace.ts +7 -0
- package/lib/routes/cjlu/namespace.ts +10 -0
- package/lib/routes/cjlu/yjsy/index.ts +107 -0
- package/lib/routes/clickme/index.ts +76 -0
- package/lib/routes/clickme/namespace.ts +7 -0
- package/lib/routes/cloudnative/blog.ts +53 -0
- package/lib/routes/cloudnative/namespace.ts +7 -0
- package/lib/routes/cls/depth.ts +108 -0
- package/lib/routes/cls/hot.ts +83 -0
- package/lib/routes/cls/namespace.ts +7 -0
- package/lib/routes/cls/subject.ts +153 -0
- package/lib/routes/cls/telegraph.ts +86 -0
- package/lib/routes/cls/templates/depth.art +10 -0
- package/lib/routes/cls/templates/description.art +21 -0
- package/lib/routes/cls/templates/telegraph.art +10 -0
- package/lib/routes/cls/utils.ts +18 -0
- package/lib/routes/cma/channel.ts +135 -0
- package/lib/routes/cma/namespace.ts +7 -0
- package/lib/routes/cma/templates/description.art +13 -0
- package/lib/routes/cmde/index.ts +82 -0
- package/lib/routes/cmde/namespace.ts +7 -0
- package/lib/routes/cmpxchg8b/articles.ts +69 -0
- package/lib/routes/cmpxchg8b/namespace.ts +7 -0
- package/lib/routes/cn-healthcare/index.ts +56 -0
- package/lib/routes/cn-healthcare/namespace.ts +7 -0
- package/lib/routes/cna/index.ts +87 -0
- package/lib/routes/cna/namespace.ts +7 -0
- package/lib/routes/cna/web/index.ts +76 -0
- package/lib/routes/cnbc/namespace.ts +7 -0
- package/lib/routes/cnbc/rss.ts +83 -0
- package/lib/routes/cnbeta/category.ts +23 -0
- package/lib/routes/cnbeta/common.ts +43 -0
- package/lib/routes/cnbeta/index.ts +16 -0
- package/lib/routes/cnbeta/namespace.ts +8 -0
- package/lib/routes/cnbeta/topics.ts +23 -0
- package/lib/routes/cnbeta/utils.ts +27 -0
- package/lib/routes/cnblogs/common.ts +58 -0
- package/lib/routes/cnblogs/namespace.ts +7 -0
- package/lib/routes/cncf/index.ts +66 -0
- package/lib/routes/cncf/namespace.ts +7 -0
- package/lib/routes/cncf/reports.ts +53 -0
- package/lib/routes/cneb/namespace.ts +7 -0
- package/lib/routes/cneb/yjxw.ts +100 -0
- package/lib/routes/cneb/yjxx.ts +66 -0
- package/lib/routes/cngal/entry.ts +52 -0
- package/lib/routes/cngal/namespace.ts +7 -0
- package/lib/routes/cngal/templates/entry-description.art +4 -0
- package/lib/routes/cngal/templates/weekly-description.art +4 -0
- package/lib/routes/cngal/weekly.ts +49 -0
- package/lib/routes/cngold/index.ts +195 -0
- package/lib/routes/cngold/namespace.ts +9 -0
- package/lib/routes/cnjxol/index.ts +110 -0
- package/lib/routes/cnjxol/namespace.ts +7 -0
- package/lib/routes/cnjxol/templates/description.art +2 -0
- package/lib/routes/cnki/author.ts +152 -0
- package/lib/routes/cnki/debut.ts +90 -0
- package/lib/routes/cnki/journals.ts +103 -0
- package/lib/routes/cnki/namespace.ts +7 -0
- package/lib/routes/cnki/templates/desc.art +5 -0
- package/lib/routes/cnki/utils.ts +27 -0
- package/lib/routes/cnljxh/index.ts +80 -0
- package/lib/routes/cnljxh/namespace.ts +7 -0
- package/lib/routes/cntheory/namespace.ts +7 -0
- package/lib/routes/cntheory/paper.ts +111 -0
- package/lib/routes/cntheory/templates/description.art +2 -0
- package/lib/routes/cntv/column.ts +67 -0
- package/lib/routes/cntv/namespace.ts +7 -0
- package/lib/routes/cntv/templates/column.art +4 -0
- package/lib/routes/codeforces/contests.ts +77 -0
- package/lib/routes/codeforces/namespace.ts +7 -0
- package/lib/routes/codeforces/recent-actions.ts +73 -0
- package/lib/routes/codeforces/templates/contest.art +5 -0
- package/lib/routes/cohere/index.ts +54 -0
- package/lib/routes/cohere/namespace.ts +7 -0
- package/lib/routes/coindesk/index.ts +59 -0
- package/lib/routes/coindesk/namespace.ts +7 -0
- package/lib/routes/colamanga/manga.ts +88 -0
- package/lib/routes/colamanga/namespace.ts +10 -0
- package/lib/routes/comicat/namespace.ts +7 -0
- package/lib/routes/comicat/search.ts +62 -0
- package/lib/routes/comicskingdom/index.ts +89 -0
- package/lib/routes/comicskingdom/namespace.ts +7 -0
- package/lib/routes/comicskingdom/templates/desc.art +1 -0
- package/lib/routes/consumer/index.ts +92 -0
- package/lib/routes/consumer/namespace.ts +7 -0
- package/lib/routes/consumer/shopping-guide.ts +89 -0
- package/lib/routes/cool18/index.ts +76 -0
- package/lib/routes/cool18/namespace.ts +7 -0
- package/lib/routes/coolapk/dyh.ts +66 -0
- package/lib/routes/coolapk/hot.ts +133 -0
- package/lib/routes/coolapk/huati.ts +50 -0
- package/lib/routes/coolapk/namespace.ts +13 -0
- package/lib/routes/coolapk/toutiao.ts +57 -0
- package/lib/routes/coolapk/tuwen.ts +64 -0
- package/lib/routes/coolapk/user-dynamic.ts +61 -0
- package/lib/routes/coolapk/utils.ts +144 -0
- package/lib/routes/coomer/artist.ts +33 -0
- package/lib/routes/coomer/namespace.ts +7 -0
- package/lib/routes/coomer/posts.ts +32 -0
- package/lib/routes/coomer/utils.ts +57 -0
- package/lib/routes/copernicium/index.ts +67 -0
- package/lib/routes/copernicium/namespace.ts +7 -0
- package/lib/routes/copymanga/comic.ts +148 -0
- package/lib/routes/copymanga/namespace.ts +7 -0
- package/lib/routes/copymanga/templates/comic.art +4 -0
- package/lib/routes/counter-strike/namespace.ts +8 -0
- package/lib/routes/counter-strike/news.ts +188 -0
- package/lib/routes/cpcaauto/index.ts +255 -0
- package/lib/routes/cpcaauto/namespace.ts +9 -0
- package/lib/routes/cpcey/index.ts +83 -0
- package/lib/routes/cpcey/namespace.ts +7 -0
- package/lib/routes/cpuid/namespace.ts +7 -0
- package/lib/routes/cpuid/news.ts +55 -0
- package/lib/routes/cqgas/namespace.ts +7 -0
- package/lib/routes/cqgas/tqtz.ts +62 -0
- package/lib/routes/cqwu/index.ts +72 -0
- package/lib/routes/cqwu/namespace.ts +7 -0
- package/lib/routes/crac/index.ts +69 -0
- package/lib/routes/crac/namespace.ts +7 -0
- package/lib/routes/creative-comic/book.ts +95 -0
- package/lib/routes/creative-comic/namespace.ts +7 -0
- package/lib/routes/creative-comic/templates/chapter.art +11 -0
- package/lib/routes/creative-comic/utils.ts +85 -0
- package/lib/routes/crossbell/feeds/following.ts +50 -0
- package/lib/routes/crossbell/namespace.ts +7 -0
- package/lib/routes/crossbell/notes/character.ts +48 -0
- package/lib/routes/crossbell/notes/index.ts +41 -0
- package/lib/routes/crossbell/notes/source.ts +45 -0
- package/lib/routes/crossbell/notes/utils.ts +16 -0
- package/lib/routes/cs/index.ts +140 -0
- package/lib/routes/cs/namespace.ts +8 -0
- package/lib/routes/cs/video.ts +91 -0
- package/lib/routes/cs/zzkx.ts +14 -0
- package/lib/routes/csdn/blog.ts +68 -0
- package/lib/routes/csdn/namespace.ts +7 -0
- package/lib/routes/cssn/iolaw.ts +57 -0
- package/lib/routes/cssn/namespace.ts +7 -0
- package/lib/routes/cste/index.ts +79 -0
- package/lib/routes/cste/namespace.ts +7 -0
- package/lib/routes/csu/career.ts +77 -0
- package/lib/routes/csu/cse.ts +64 -0
- package/lib/routes/csu/mail.ts +70 -0
- package/lib/routes/csu/namespace.ts +7 -0
- package/lib/routes/csu/utils.ts +15 -0
- package/lib/routes/cts/namespace.ts +7 -0
- package/lib/routes/cts/news.ts +68 -0
- package/lib/routes/cuc/namespace.ts +7 -0
- package/lib/routes/cuc/yz.ts +58 -0
- package/lib/routes/cuilingmag/index.ts +212 -0
- package/lib/routes/cuilingmag/namespace.ts +9 -0
- package/lib/routes/cuilingmag/templates/description.art +17 -0
- package/lib/routes/curiouscat/namespace.ts +7 -0
- package/lib/routes/curiouscat/user.ts +53 -0
- package/lib/routes/curius/links.ts +70 -0
- package/lib/routes/curius/namespace.ts +7 -0
- package/lib/routes/curius/templates/description.art +16 -0
- package/lib/routes/cw/author.ts +43 -0
- package/lib/routes/cw/master.ts +53 -0
- package/lib/routes/cw/namespace.ts +7 -0
- package/lib/routes/cw/sub.ts +38 -0
- package/lib/routes/cw/today.ts +44 -0
- package/lib/routes/cw/utils.ts +128 -0
- package/lib/routes/cybersecurityventures/namespace.ts +7 -0
- package/lib/routes/cybersecurityventures/news.ts +121 -0
- package/lib/routes/cybersecurityventures/types.ts +17 -0
- package/lib/routes/cyzone/author.ts +43 -0
- package/lib/routes/cyzone/index.ts +51 -0
- package/lib/routes/cyzone/label.ts +43 -0
- package/lib/routes/cyzone/namespace.ts +7 -0
- package/lib/routes/cyzone/util.ts +119 -0
- package/lib/routes/cztv/daily.ts +69 -0
- package/lib/routes/cztv/namespace.ts +7 -0
- package/lib/routes/cztv/templates/daily.art +4 -0
- package/lib/routes/cztv/templates/zjxwlb.art +3 -0
- package/lib/routes/cztv/zjxwlb.ts +66 -0
- package/lib/routes/dahecube/index.ts +85 -0
- package/lib/routes/dahecube/namespace.ts +7 -0
- package/lib/routes/dahecube/utils.ts +44 -0
- package/lib/routes/daily/discussed.ts +89 -0
- package/lib/routes/daily/index.ts +101 -0
- package/lib/routes/daily/namespace.ts +8 -0
- package/lib/routes/daily/source.ts +186 -0
- package/lib/routes/daily/templates/posts.art +7 -0
- package/lib/routes/daily/upvoted.ts +92 -0
- package/lib/routes/daily/user.ts +210 -0
- package/lib/routes/daily/utils.ts +51 -0
- package/lib/routes/damai/activity.ts +68 -0
- package/lib/routes/damai/namespace.ts +7 -0
- package/lib/routes/damai/templates/activity.art +5 -0
- package/lib/routes/dangdang/namespace.ts +7 -0
- package/lib/routes/dangdang/notice.ts +69 -0
- package/lib/routes/daoxuan/namespace.ts +7 -0
- package/lib/routes/daoxuan/rss.ts +43 -0
- package/lib/routes/dapenti/namespace.ts +7 -0
- package/lib/routes/dapenti/subject.ts +24 -0
- package/lib/routes/dapenti/tugua.ts +24 -0
- package/lib/routes/dapenti/utils.ts +76 -0
- package/lib/routes/darwinawards/index.ts +72 -0
- package/lib/routes/darwinawards/namespace.ts +8 -0
- package/lib/routes/dataguidance/index.ts +55 -0
- package/lib/routes/dataguidance/namespace.ts +8 -0
- package/lib/routes/dayanzai/index.ts +85 -0
- package/lib/routes/dayanzai/namespace.ts +7 -0
- package/lib/routes/dbaplus/namespace.ts +7 -0
- package/lib/routes/dbaplus/rss.ts +48 -0
- package/lib/routes/dblp/namespace.ts +7 -0
- package/lib/routes/dblp/publication.ts +87 -0
- package/lib/routes/dcard/namespace.ts +10 -0
- package/lib/routes/dcard/section.ts +87 -0
- package/lib/routes/dcard/utils.ts +48 -0
- package/lib/routes/dcfever/namespace.ts +7 -0
- package/lib/routes/dcfever/news.ts +54 -0
- package/lib/routes/dcfever/reviews.ts +50 -0
- package/lib/routes/dcfever/templates/trading.art +14 -0
- package/lib/routes/dcfever/trading-search.ts +48 -0
- package/lib/routes/dcfever/trading.ts +51 -0
- package/lib/routes/dcfever/utils.ts +94 -0
- package/lib/routes/ddosi/category.ts +68 -0
- package/lib/routes/ddosi/index.ts +56 -0
- package/lib/routes/ddosi/namespace.ts +7 -0
- package/lib/routes/deadbydaylight/index.ts +69 -0
- package/lib/routes/deadbydaylight/namespace.ts +13 -0
- package/lib/routes/deadline/namespace.ts +7 -0
- package/lib/routes/deadline/posts.ts +71 -0
- package/lib/routes/deadline/templates/desc.art +10 -0
- package/lib/routes/dealstreetasia/home.ts +72 -0
- package/lib/routes/dealstreetasia/namespace.ts +7 -0
- package/lib/routes/dealstreetasia/section.ts +57 -0
- package/lib/routes/dedao/articles.ts +149 -0
- package/lib/routes/dedao/index.ts +61 -0
- package/lib/routes/dedao/knowledge.ts +91 -0
- package/lib/routes/dedao/list.ts +92 -0
- package/lib/routes/dedao/namespace.ts +7 -0
- package/lib/routes/dedao/templates/knowledge.art +29 -0
- package/lib/routes/dedao/templates/user.art +38 -0
- package/lib/routes/dedao/user.ts +104 -0
- package/lib/routes/deepin/homepage.ts +43 -0
- package/lib/routes/deepin/namespace.ts +10 -0
- package/lib/routes/deepin/thread.ts +102 -0
- package/lib/routes/deeplearning/namespace.ts +9 -0
- package/lib/routes/deeplearning/templates/description.art +21 -0
- package/lib/routes/deeplearning/the-batch.ts +296 -0
- package/lib/routes/deepmind/blog.ts +58 -0
- package/lib/routes/deepmind/namespace.ts +7 -0
- package/lib/routes/dehenglaw/index.ts +128 -0
- package/lib/routes/dehenglaw/namespace.ts +9 -0
- package/lib/routes/dehenglaw/templates/description.art +7 -0
- package/lib/routes/deltaio/blog.ts +59 -0
- package/lib/routes/deltaio/namespace.ts +7 -0
- package/lib/routes/devolverdigital/blog.ts +93 -0
- package/lib/routes/devolverdigital/namespace.ts +7 -0
- package/lib/routes/devtrium/namespace.ts +7 -0
- package/lib/routes/devtrium/posts.ts +55 -0
- package/lib/routes/dewu/declaration.ts +86 -0
- package/lib/routes/dewu/namespace.ts +7 -0
- package/lib/routes/dgjyw/index.ts +77 -0
- package/lib/routes/dgjyw/namespace.ts +7 -0
- package/lib/routes/dhu/jiaowu/news.ts +86 -0
- package/lib/routes/dhu/namespace.ts +7 -0
- package/lib/routes/dhu/news/xsxx.ts +68 -0
- package/lib/routes/dhu/xxgk/news.ts +77 -0
- package/lib/routes/dhu/yjs/news.ts +70 -0
- package/lib/routes/dhu/yjs/zs.ts +69 -0
- package/lib/routes/diandong/namespace.ts +7 -0
- package/lib/routes/diandong/news.ts +82 -0
- package/lib/routes/dianping/namespace.ts +7 -0
- package/lib/routes/dianping/user.ts +148 -0
- package/lib/routes/diershoubing/namespace.ts +7 -0
- package/lib/routes/diershoubing/news.ts +78 -0
- package/lib/routes/diershoubing/templates/news.art +9 -0
- package/lib/routes/digitalcameraworld/namespace.ts +7 -0
- package/lib/routes/digitalcameraworld/news.ts +61 -0
- package/lib/routes/dingshao/namespace.ts +7 -0
- package/lib/routes/dingshao/share.ts +53 -0
- package/lib/routes/dingshao/types.ts +64 -0
- package/lib/routes/discord/channel.ts +72 -0
- package/lib/routes/discord/discord-api.ts +92 -0
- package/lib/routes/discord/namespace.ts +7 -0
- package/lib/routes/discord/search.ts +106 -0
- package/lib/routes/discord/templates/message.art +62 -0
- package/lib/routes/discourse/namespace.ts +9 -0
- package/lib/routes/discourse/notifications.ts +69 -0
- package/lib/routes/discourse/official.ts +55 -0
- package/lib/routes/discourse/posts.ts +49 -0
- package/lib/routes/discourse/utils.ts +11 -0
- package/lib/routes/discuz/discuz.ts +163 -0
- package/lib/routes/discuz/namespace.ts +7 -0
- package/lib/routes/disinfo/namespace.ts +7 -0
- package/lib/routes/disinfo/publications.ts +82 -0
- package/lib/routes/diskanalyzer/namespace.ts +7 -0
- package/lib/routes/diskanalyzer/whats-new.ts +74 -0
- package/lib/routes/distill/index.ts +80 -0
- package/lib/routes/distill/namespace.ts +7 -0
- package/lib/routes/dlnews/category.ts +109 -0
- package/lib/routes/dlnews/namespace.ts +7 -0
- package/lib/routes/dlnews/templates/description.art +24 -0
- package/lib/routes/dlnews/utils.ts +22 -0
- package/lib/routes/dlsite/campaign.ts +202 -0
- package/lib/routes/dlsite/ci-en/article.ts +90 -0
- package/lib/routes/dlsite/namespace.ts +7 -0
- package/lib/routes/dlsite/new.ts +136 -0
- package/lib/routes/dlsite/templates/description.art +158 -0
- package/lib/routes/dlsite/utils.ts +178 -0
- package/lib/routes/dlsite/z-index/index.ts +13 -0
- package/lib/routes/dmzj/namespace.ts +7 -0
- package/lib/routes/dmzj/news.ts +55 -0
- package/lib/routes/dn/namespace.ts +7 -0
- package/lib/routes/dn/news.ts +127 -0
- package/lib/routes/dn/templates/description.art +15 -0
- package/lib/routes/dnaindia/category.ts +0 -0
- package/lib/routes/dnaindia/common.ts +68 -0
- package/lib/routes/dnaindia/namespace.ts +8 -0
- package/lib/routes/dnaindia/news.ts +24 -0
- package/lib/routes/dnaindia/topic.ts +28 -0
- package/lib/routes/dockerhub/build.ts +58 -0
- package/lib/routes/dockerhub/namespace.ts +7 -0
- package/lib/routes/dockerhub/repositories.ts +42 -0
- package/lib/routes/dockerhub/tag.ts +61 -0
- package/lib/routes/dockerhub/utils.ts +11 -0
- package/lib/routes/docschina/namespace.ts +7 -0
- package/lib/routes/docschina/weekly.ts +66 -0
- package/lib/routes/dol/announce.ts +109 -0
- package/lib/routes/dol/namespace.ts +7 -0
- package/lib/routes/domp4/detail.ts +128 -0
- package/lib/routes/domp4/latest-movie-bt.ts +71 -0
- package/lib/routes/domp4/latest.ts +60 -0
- package/lib/routes/domp4/namespace.ts +16 -0
- package/lib/routes/domp4/utils.ts +96 -0
- package/lib/routes/dongqiudi/daily.ts +22 -0
- package/lib/routes/dongqiudi/namespace.ts +10 -0
- package/lib/routes/dongqiudi/player-news.ts +24 -0
- package/lib/routes/dongqiudi/result.ts +47 -0
- package/lib/routes/dongqiudi/special.ts +54 -0
- package/lib/routes/dongqiudi/team-news.ts +24 -0
- package/lib/routes/dongqiudi/top-news.ts +62 -0
- package/lib/routes/dongqiudi/utils.ts +165 -0
- package/lib/routes/dora-world/article.ts +88 -0
- package/lib/routes/dora-world/namespace.ts +7 -0
- package/lib/routes/dorohedoro/namespace.ts +7 -0
- package/lib/routes/dorohedoro/news.ts +97 -0
- package/lib/routes/douban/book/latest.ts +65 -0
- package/lib/routes/douban/book/rank.ts +56 -0
- package/lib/routes/douban/channel/subject.ts +82 -0
- package/lib/routes/douban/channel/topic.ts +85 -0
- package/lib/routes/douban/commercialpress/latest.ts +74 -0
- package/lib/routes/douban/event/hot.ts +49 -0
- package/lib/routes/douban/movie/coming.ts +68 -0
- package/lib/routes/douban/namespace.ts +7 -0
- package/lib/routes/douban/other/bookstore.ts +49 -0
- package/lib/routes/douban/other/celebrity.ts +60 -0
- package/lib/routes/douban/other/classification.ts +61 -0
- package/lib/routes/douban/other/discussion.ts +83 -0
- package/lib/routes/douban/other/doulist.ts +84 -0
- package/lib/routes/douban/other/explore-column.ts +64 -0
- package/lib/routes/douban/other/explore.ts +72 -0
- package/lib/routes/douban/other/group.ts +95 -0
- package/lib/routes/douban/other/jobs.ts +55 -0
- package/lib/routes/douban/other/later.ts +51 -0
- package/lib/routes/douban/other/latest-music.ts +96 -0
- package/lib/routes/douban/other/list.ts +125 -0
- package/lib/routes/douban/other/playing.ts +52 -0
- package/lib/routes/douban/other/recommended.ts +102 -0
- package/lib/routes/douban/other/replied.ts +106 -0
- package/lib/routes/douban/other/replies.ts +81 -0
- package/lib/routes/douban/other/topic.ts +119 -0
- package/lib/routes/douban/other/ustop.ts +41 -0
- package/lib/routes/douban/other/weekly-best.ts +78 -0
- package/lib/routes/douban/people/status.ts +522 -0
- package/lib/routes/douban/people/wish.ts +96 -0
- package/lib/routes/douban/templates/explore.art +7 -0
- package/lib/routes/douban/templates/list_description.art +25 -0
- package/lib/routes/douban/templates/movie_coming.art +27 -0
- package/lib/routes/douban/templates/weekly_best.art +10 -0
- package/lib/routes/douyin/hashtag.ts +122 -0
- package/lib/routes/douyin/live.ts +106 -0
- package/lib/routes/douyin/namespace.ts +21 -0
- package/lib/routes/douyin/templates/cover.art +15 -0
- package/lib/routes/douyin/templates/desc.art +3 -0
- package/lib/routes/douyin/templates/embed.art +13 -0
- package/lib/routes/douyin/templates/iframe.art +14 -0
- package/lib/routes/douyin/types.ts +795 -0
- package/lib/routes/douyin/user.ts +132 -0
- package/lib/routes/douyin/utils.ts +48 -0
- package/lib/routes/douyu/group.ts +76 -0
- package/lib/routes/douyu/namespace.ts +7 -0
- package/lib/routes/douyu/post.ts +85 -0
- package/lib/routes/douyu/room.ts +98 -0
- package/lib/routes/douyu/templates/description.art +14 -0
- package/lib/routes/dribbble/keyword.ts +29 -0
- package/lib/routes/dribbble/namespace.ts +7 -0
- package/lib/routes/dribbble/popular.ts +36 -0
- package/lib/routes/dribbble/templates/description.art +15 -0
- package/lib/routes/dribbble/user.ts +34 -0
- package/lib/routes/dribbble/utils.ts +156 -0
- package/lib/routes/dtcj/datahero.ts +73 -0
- package/lib/routes/dtcj/datainsight.ts +82 -0
- package/lib/routes/dtcj/namespace.ts +7 -0
- package/lib/routes/duckdb/namespace.ts +7 -0
- package/lib/routes/duckdb/news.ts +64 -0
- package/lib/routes/duozhuayu/namespace.ts +7 -0
- package/lib/routes/duozhuayu/search.ts +94 -0
- package/lib/routes/duozhuayu/templates/book.art +10 -0
- package/lib/routes/dushu/fuzhou/index.ts +69 -0
- package/lib/routes/dushu/fuzhou/templates/message.art +9 -0
- package/lib/routes/dushu/namespace.ts +7 -0
- package/lib/routes/dut/defaults.ts +57 -0
- package/lib/routes/dut/index.ts +104 -0
- package/lib/routes/dut/namespace.ts +7 -0
- package/lib/routes/dut/shortcuts.ts +82 -0
- package/lib/routes/dw/namespace.ts +6 -0
- package/lib/routes/dw/news.ts +89 -0
- package/lib/routes/dw/rss.ts +62 -0
- package/lib/routes/dw/templates/description.art +23 -0
- package/lib/routes/dw/templates/liveblog.art +13 -0
- package/lib/routes/dw/templates/video.art +14 -0
- package/lib/routes/dw/utils.ts +172 -0
- package/lib/routes/dx2025/index.ts +93 -0
- package/lib/routes/dx2025/namespace.ts +7 -0
- package/lib/routes/dxy/board.ts +96 -0
- package/lib/routes/dxy/namespace.ts +7 -0
- package/lib/routes/dxy/profile/thread.ts +107 -0
- package/lib/routes/dxy/special.ts +100 -0
- package/lib/routes/dxy/types.ts +195 -0
- package/lib/routes/dxy/utils.ts +75 -0
- package/lib/routes/dykszx/namespace.ts +9 -0
- package/lib/routes/dykszx/news.ts +88 -0
- package/lib/routes/e-hentai/index.ts +127 -0
- package/lib/routes/e-hentai/namespace.ts +7 -0
- package/lib/routes/e-hentai/templates/images.art +3 -0
- package/lib/routes/eagle/blog.ts +90 -0
- package/lib/routes/eagle/changelog.ts +101 -0
- package/lib/routes/eagle/namespace.ts +7 -0
- package/lib/routes/earthquake/ceic.ts +105 -0
- package/lib/routes/earthquake/index.ts +67 -0
- package/lib/routes/earthquake/namespace.ts +7 -0
- package/lib/routes/eastday/24.ts +124 -0
- package/lib/routes/eastday/namespace.ts +7 -0
- package/lib/routes/eastday/portrait.ts +73 -0
- package/lib/routes/eastday/sh.ts +75 -0
- package/lib/routes/eastmoney/namespace.ts +7 -0
- package/lib/routes/eastmoney/report/index.ts +147 -0
- package/lib/routes/eastmoney/search/index.ts +75 -0
- package/lib/routes/eastmoney/templates/stock_description.art +36 -0
- package/lib/routes/eastmoney/ttjj/user.ts +86 -0
- package/lib/routes/eastmoney/utils.ts +35 -0
- package/lib/routes/easynomad/joblist.ts +56 -0
- package/lib/routes/easynomad/namespace.ts +7 -0
- package/lib/routes/ecnu/contest.ts +70 -0
- package/lib/routes/ecnu/jwc.ts +71 -0
- package/lib/routes/ecnu/namespace.ts +7 -0
- package/lib/routes/ecnu/templates/description.art +3 -0
- package/lib/routes/ecnu/yjs.ts +63 -0
- package/lib/routes/economist/espresso.ts +67 -0
- package/lib/routes/economist/full.ts +72 -0
- package/lib/routes/economist/global-business-review.ts +123 -0
- package/lib/routes/economist/namespace.ts +7 -0
- package/lib/routes/ecust/e/news.ts +70 -0
- package/lib/routes/ecust/gschool/yjs.ts +52 -0
- package/lib/routes/ecust/jwc/notice.ts +89 -0
- package/lib/routes/ecust/namespace.ts +7 -0
- package/lib/routes/egsea/flash.ts +55 -0
- package/lib/routes/egsea/namespace.ts +7 -0
- package/lib/routes/ehentai/ehapi.ts +211 -0
- package/lib/routes/ehentai/favorites.ts +47 -0
- package/lib/routes/ehentai/namespace.ts +12 -0
- package/lib/routes/ehentai/search.ts +54 -0
- package/lib/routes/ehentai/tag.ts +42 -0
- package/lib/routes/ekantipur/issue.ts +95 -0
- package/lib/routes/ekantipur/namespace.ts +7 -0
- package/lib/routes/elasticsearch-cn/index.ts +86 -0
- package/lib/routes/elasticsearch-cn/namespace.ts +7 -0
- package/lib/routes/eleduck/jobs.ts +64 -0
- package/lib/routes/eleduck/namespace.ts +7 -0
- package/lib/routes/eleduck/posts.ts +79 -0
- package/lib/routes/elsevier/issue.ts +80 -0
- package/lib/routes/elsevier/journal.ts +90 -0
- package/lib/routes/elsevier/namespace.ts +7 -0
- package/lib/routes/elsevier/templates/description.art +11 -0
- package/lib/routes/embassy/index.ts +69 -0
- package/lib/routes/embassy/namespace.ts +115 -0
- package/lib/routes/embassy/supported-list.ts +257 -0
- package/lib/routes/enterprisecraftsmanship/index.ts +72 -0
- package/lib/routes/enterprisecraftsmanship/namespace.ts +7 -0
- package/lib/routes/epicgames/index.ts +125 -0
- package/lib/routes/epicgames/namespace.ts +7 -0
- package/lib/routes/epicgames/templates/description.art +3 -0
- package/lib/routes/eprice/namespace.ts +7 -0
- package/lib/routes/eprice/rss.ts +122 -0
- package/lib/routes/eprice/templates/image.art +4 -0
- package/lib/routes/eshukan/academic.ts +134 -0
- package/lib/routes/eshukan/namespace.ts +9 -0
- package/lib/routes/eshukan/templates/description.art +7 -0
- package/lib/routes/espn/namespace.ts +7 -0
- package/lib/routes/espn/news.ts +120 -0
- package/lib/routes/espn/templates/media.art +19 -0
- package/lib/routes/esquirehk/namespace.ts +7 -0
- package/lib/routes/esquirehk/tag.ts +104 -0
- package/lib/routes/esquirehk/templates/subpages.art +30 -0
- package/lib/routes/europechinese/latest.ts +66 -0
- package/lib/routes/europechinese/namespace.ts +7 -0
- package/lib/routes/eventernote/actors.ts +126 -0
- package/lib/routes/eventernote/namespace.ts +7 -0
- package/lib/routes/f-droid/apprelease.ts +57 -0
- package/lib/routes/f-droid/namespace.ts +7 -0
- package/lib/routes/famitsu/category.ts +152 -0
- package/lib/routes/famitsu/namespace.ts +7 -0
- package/lib/routes/famitsu/templates/description.art +7 -0
- package/lib/routes/famitsu/types.ts +117 -0
- package/lib/routes/fanbox/index.ts +62 -0
- package/lib/routes/fanbox/namespace.ts +7 -0
- package/lib/routes/fanbox/templates/fanbox-post.art +7 -0
- package/lib/routes/fanbox/types.ts +235 -0
- package/lib/routes/fanbox/utils.ts +188 -0
- package/lib/routes/fanqienovel/namespace.ts +8 -0
- package/lib/routes/fanqienovel/page.ts +100 -0
- package/lib/routes/fansly/namespace.ts +7 -0
- package/lib/routes/fansly/post.ts +53 -0
- package/lib/routes/fansly/tag.ts +54 -0
- package/lib/routes/fansly/templates/media.art +8 -0
- package/lib/routes/fansly/templates/poll.art +4 -0
- package/lib/routes/fansly/templates/tip-goal.art +2 -0
- package/lib/routes/fansly/utils.ts +167 -0
- package/lib/routes/fantia/namespace.ts +7 -0
- package/lib/routes/fantia/search.ts +209 -0
- package/lib/routes/fantia/user.ts +86 -0
- package/lib/routes/fanxinzhui/index.ts +127 -0
- package/lib/routes/fanxinzhui/namespace.ts +7 -0
- package/lib/routes/fanxinzhui/templates/description.art +13 -0
- package/lib/routes/farmatters/index.ts +115 -0
- package/lib/routes/farmatters/namespace.ts +8 -0
- package/lib/routes/farmatters/templates/description.art +9 -0
- package/lib/routes/fashionnetwork/index.ts +192 -0
- package/lib/routes/fashionnetwork/namespace.ts +9 -0
- package/lib/routes/fashionnetwork/templates/description.art +17 -0
- package/lib/routes/fastbull/express-news.ts +59 -0
- package/lib/routes/fastbull/namespace.ts +7 -0
- package/lib/routes/fastbull/news.ts +87 -0
- package/lib/routes/fastbull/templates/description.art +7 -0
- package/lib/routes/fda/cdrh.ts +78 -0
- package/lib/routes/fda/namespace.ts +7 -0
- package/lib/routes/fediverse/namespace.ts +7 -0
- package/lib/routes/fediverse/timeline.ts +116 -0
- package/lib/routes/feng/forum.ts +73 -0
- package/lib/routes/feng/namespace.ts +7 -0
- package/lib/routes/feng/templates/deleted.art +2 -0
- package/lib/routes/feng/templates/img.art +6 -0
- package/lib/routes/feng/utils.ts +76 -0
- package/lib/routes/ff14/ff14-global.ts +77 -0
- package/lib/routes/ff14/ff14-zh.ts +75 -0
- package/lib/routes/ff14/namespace.ts +7 -0
- package/lib/routes/ff14/templates/description.art +4 -0
- package/lib/routes/fffdm/manhua/manhua.ts +79 -0
- package/lib/routes/fffdm/namespace.ts +7 -0
- package/lib/routes/fffdm/templates/manhua.art +5 -0
- package/lib/routes/finology/bullets.ts +51 -0
- package/lib/routes/finology/category.ts +60 -0
- package/lib/routes/finology/most-viewed.ts +50 -0
- package/lib/routes/finology/namespace.ts +7 -0
- package/lib/routes/finology/tag.ts +55 -0
- package/lib/routes/finology/utils.ts +60 -0
- package/lib/routes/finviz/namespace.ts +7 -0
- package/lib/routes/finviz/news.ts +104 -0
- package/lib/routes/finviz/quote.ts +59 -0
- package/lib/routes/firecore/index.ts +56 -0
- package/lib/routes/firecore/namespace.ts +7 -0
- package/lib/routes/firefox/addons.ts +59 -0
- package/lib/routes/firefox/breaches.ts +63 -0
- package/lib/routes/firefox/namespace.ts +7 -0
- package/lib/routes/firefox/release.ts +44 -0
- package/lib/routes/firefox/templates/description.art +5 -0
- package/lib/routes/fisher-spb/namespace.ts +7 -0
- package/lib/routes/fisher-spb/news.ts +76 -0
- package/lib/routes/fisher-spb/templates/image.art +1 -0
- package/lib/routes/fisher-spb/templates/video.art +1 -0
- package/lib/routes/fishshell/index.ts +43 -0
- package/lib/routes/fishshell/namespace.ts +7 -0
- package/lib/routes/fjksbm/index.ts +81 -0
- package/lib/routes/fjksbm/namespace.ts +7 -0
- package/lib/routes/flashcat/blog.ts +61 -0
- package/lib/routes/flashcat/namespace.ts +7 -0
- package/lib/routes/flyert/creditcard.ts +136 -0
- package/lib/routes/flyert/forum.ts +99 -0
- package/lib/routes/flyert/namespace.ts +8 -0
- package/lib/routes/flyert/preferential.ts +74 -0
- package/lib/routes/flyert/templates/description.art +21 -0
- package/lib/routes/flyert/util.ts +188 -0
- package/lib/routes/flyert/utils.ts +72 -0
- package/lib/routes/focustaiwan/index.ts +102 -0
- package/lib/routes/focustaiwan/namespace.ts +7 -0
- package/lib/routes/focustaiwan/templates/article.art +1 -0
- package/lib/routes/follow/namespace.ts +7 -0
- package/lib/routes/follow/profile.ts +119 -0
- package/lib/routes/follow/types.ts +78 -0
- package/lib/routes/followin/index.ts +93 -0
- package/lib/routes/followin/kol.ts +50 -0
- package/lib/routes/followin/namespace.ts +7 -0
- package/lib/routes/followin/news.ts +58 -0
- package/lib/routes/followin/tag.ts +69 -0
- package/lib/routes/followin/templates/thread.art +15 -0
- package/lib/routes/followin/topic.ts +50 -0
- package/lib/routes/followin/utils.ts +76 -0
- package/lib/routes/foodtalks/index.ts +75 -0
- package/lib/routes/foodtalks/namespace.ts +9 -0
- package/lib/routes/foresightnews/article.ts +47 -0
- package/lib/routes/foresightnews/column.ts +53 -0
- package/lib/routes/foresightnews/index.ts +39 -0
- package/lib/routes/foresightnews/namespace.ts +7 -0
- package/lib/routes/foresightnews/news.ts +48 -0
- package/lib/routes/foresightnews/templates/description.art +13 -0
- package/lib/routes/foresightnews/util.ts +90 -0
- package/lib/routes/foreverblog/feeds.ts +59 -0
- package/lib/routes/foreverblog/namespace.ts +7 -0
- package/lib/routes/fortnite/namespace.ts +7 -0
- package/lib/routes/fortnite/news.ts +87 -0
- package/lib/routes/fortunechina/index.ts +108 -0
- package/lib/routes/fortunechina/namespace.ts +7 -0
- package/lib/routes/fosshub/index.ts +71 -0
- package/lib/routes/fosshub/namespace.ts +7 -0
- package/lib/routes/fosshub/templates/description.art +20 -0
- package/lib/routes/free/namespace.ts +7 -0
- package/lib/routes/free/rss.ts +35 -0
- package/lib/routes/freebuf/index.ts +68 -0
- package/lib/routes/freebuf/namespace.ts +7 -0
- package/lib/routes/freecomputerbooks/index.ts +117 -0
- package/lib/routes/freecomputerbooks/namespace.ts +7 -0
- package/lib/routes/freecomputerbooks/templates/desc.art +3 -0
- package/lib/routes/freewechat/namespace.ts +7 -0
- package/lib/routes/freewechat/profile.ts +88 -0
- package/lib/routes/freexcomic/book.ts +84 -0
- package/lib/routes/freexcomic/namespace.ts +8 -0
- package/lib/routes/ft/myft.ts +76 -0
- package/lib/routes/ft/namespace.ts +7 -0
- package/lib/routes/ftchinese/channel.ts +38 -0
- package/lib/routes/ftchinese/namespace.ts +7 -0
- package/lib/routes/ftchinese/utils.ts +90 -0
- package/lib/routes/ftm/index.ts +60 -0
- package/lib/routes/ftm/namespace.ts +7 -0
- package/lib/routes/fuliba/latest.ts +50 -0
- package/lib/routes/fuliba/namespace.ts +7 -0
- package/lib/routes/furaffinity/art.ts +85 -0
- package/lib/routes/furaffinity/browse.ts +58 -0
- package/lib/routes/furaffinity/commissions.ts +55 -0
- package/lib/routes/furaffinity/home.ts +80 -0
- package/lib/routes/furaffinity/journal-comments.ts +64 -0
- package/lib/routes/furaffinity/journals.ts +56 -0
- package/lib/routes/furaffinity/namespace.ts +7 -0
- package/lib/routes/furaffinity/search.ts +72 -0
- package/lib/routes/furaffinity/shouts.ts +56 -0
- package/lib/routes/furaffinity/status.ts +58 -0
- package/lib/routes/furaffinity/submission-comments.ts +64 -0
- package/lib/routes/furaffinity/user.ts +120 -0
- package/lib/routes/furaffinity/watchers.ts +62 -0
- package/lib/routes/furaffinity/watching.ts +62 -0
- package/lib/routes/furstar/archive.ts +53 -0
- package/lib/routes/furstar/artists.ts +58 -0
- package/lib/routes/furstar/index.ts +59 -0
- package/lib/routes/furstar/namespace.ts +7 -0
- package/lib/routes/furstar/templates/description.art +5 -0
- package/lib/routes/furstar/utils.ts +99 -0
- package/lib/routes/futunn/main.ts +80 -0
- package/lib/routes/futunn/namespace.ts +7 -0
- package/lib/routes/futunn/templates/description.art +6 -0
- package/lib/routes/fx-markets/channel.ts +79 -0
- package/lib/routes/fx-markets/namespace.ts +7 -0
- package/lib/routes/fx678/kx.ts +71 -0
- package/lib/routes/fx678/namespace.ts +7 -0
- package/lib/routes/fxiaoke/crm.ts +86 -0
- package/lib/routes/fxiaoke/namespace.ts +7 -0
- package/lib/routes/fzmtr/announcements.ts +57 -0
- package/lib/routes/fzmtr/namespace.ts +7 -0
- package/lib/routes/galxe/index.ts +94 -0
- package/lib/routes/galxe/namespace.ts +10 -0
- package/lib/routes/gameapps/index.ts +95 -0
- package/lib/routes/gameapps/namespace.ts +7 -0
- package/lib/routes/gameapps/templates/description.art +2 -0
- package/lib/routes/gamebase/namespace.ts +7 -0
- package/lib/routes/gamebase/news.ts +98 -0
- package/lib/routes/gamegene/namespace.ts +7 -0
- package/lib/routes/gamegene/news.ts +76 -0
- package/lib/routes/gamer/ani/anime.ts +59 -0
- package/lib/routes/gamer/ani/new-anime.ts +48 -0
- package/lib/routes/gamer/gnn-index.ts +174 -0
- package/lib/routes/gamer/hot.ts +77 -0
- package/lib/routes/gamer/namespace.ts +7 -0
- package/lib/routes/gamer520/index.ts +85 -0
- package/lib/routes/gamer520/namespace.ts +7 -0
- package/lib/routes/gamersecret/index.ts +106 -0
- package/lib/routes/gamersecret/namespace.ts +7 -0
- package/lib/routes/gamersky/ent.ts +57 -0
- package/lib/routes/gamersky/namespace.ts +11 -0
- package/lib/routes/gamersky/news.ts +91 -0
- package/lib/routes/gamersky/review.ts +80 -0
- package/lib/routes/gamersky/utils.ts +94 -0
- package/lib/routes/gamme/category.ts +60 -0
- package/lib/routes/gamme/namespace.ts +7 -0
- package/lib/routes/gamme/tag.ts +71 -0
- package/lib/routes/gcores/category.ts +171 -0
- package/lib/routes/gcores/collection.ts +161 -0
- package/lib/routes/gcores/namespace.ts +7 -0
- package/lib/routes/gcores/radio.ts +108 -0
- package/lib/routes/gcores/tag.ts +158 -0
- package/lib/routes/gcores/templates/content.art +16 -0
- package/lib/routes/gdsrx/index.ts +101 -0
- package/lib/routes/gdsrx/namespace.ts +7 -0
- package/lib/routes/gdufs/namespace.ts +7 -0
- package/lib/routes/gdufs/news.ts +94 -0
- package/lib/routes/gdufs/xwxy/xwxy-news.ts +90 -0
- package/lib/routes/gdut/namespace.ts +7 -0
- package/lib/routes/gdut/news.ts +168 -0
- package/lib/routes/gdut/oa-news.ts +221 -0
- package/lib/routes/geekpark/index.ts +219 -0
- package/lib/routes/geekpark/namespace.ts +9 -0
- package/lib/routes/geekpark/templates/description.art +21 -0
- package/lib/routes/gelonghui/home.ts +66 -0
- package/lib/routes/gelonghui/hot-article.ts +69 -0
- package/lib/routes/gelonghui/keyword.ts +55 -0
- package/lib/routes/gelonghui/live.ts +60 -0
- package/lib/routes/gelonghui/namespace.ts +7 -0
- package/lib/routes/gelonghui/subject.ts +62 -0
- package/lib/routes/gelonghui/templates/live.art +7 -0
- package/lib/routes/gelonghui/user.ts +59 -0
- package/lib/routes/gelonghui/utils.ts +25 -0
- package/lib/routes/geocaching/blogs.ts +55 -0
- package/lib/routes/geocaching/namespace.ts +7 -0
- package/lib/routes/geocaching/templates/blogs.art +6 -0
- package/lib/routes/getdr/index.ts +63 -0
- package/lib/routes/getdr/namespace.ts +7 -0
- package/lib/routes/getitfree/index.ts +59 -0
- package/lib/routes/getitfree/namespace.ts +7 -0
- package/lib/routes/getitfree/util.ts +315 -0
- package/lib/routes/gettr/namespace.ts +7 -0
- package/lib/routes/gettr/templates/post.art +13 -0
- package/lib/routes/gettr/user.ts +84 -0
- package/lib/routes/gf-cn/namespace.ts +7 -0
- package/lib/routes/gf-cn/news.ts +78 -0
- package/lib/routes/gihyo/group.ts +72 -0
- package/lib/routes/gihyo/namespace.ts +7 -0
- package/lib/routes/gisreportsonline/index.ts +60 -0
- package/lib/routes/gisreportsonline/namespace.ts +7 -0
- package/lib/routes/gitee/namespace.ts +7 -0
- package/lib/routes/gitee/repos/commits.ts +66 -0
- package/lib/routes/gitee/repos/events.ts +92 -0
- package/lib/routes/gitee/repos/releases.ts +58 -0
- package/lib/routes/gitee/users/events.ts +110 -0
- package/lib/routes/github/activity.ts +56 -0
- package/lib/routes/github/advisor.ts +97 -0
- package/lib/routes/github/branches.ts +55 -0
- package/lib/routes/github/comments.ts +208 -0
- package/lib/routes/github/contributors.ts +104 -0
- package/lib/routes/github/discussions.ts +194 -0
- package/lib/routes/github/file.ts +66 -0
- package/lib/routes/github/follower.ts +75 -0
- package/lib/routes/github/gist.ts +59 -0
- package/lib/routes/github/issue.ts +93 -0
- package/lib/routes/github/namespace.ts +16 -0
- package/lib/routes/github/notifications.ts +78 -0
- package/lib/routes/github/pulls.ts +72 -0
- package/lib/routes/github/pulse.ts +116 -0
- package/lib/routes/github/repos.ts +95 -0
- package/lib/routes/github/search.ts +68 -0
- package/lib/routes/github/star.ts +77 -0
- package/lib/routes/github/starred-repos.ts +62 -0
- package/lib/routes/github/templates/comments-description.art +1 -0
- package/lib/routes/github/templates/pulse-description.art +24 -0
- package/lib/routes/github/templates/trending-description.art +5 -0
- package/lib/routes/github/topic.ts +73 -0
- package/lib/routes/github/trending.ts +150 -0
- package/lib/routes/github/wiki.ts +65 -0
- package/lib/routes/gitpod/blog.ts +84 -0
- package/lib/routes/gitpod/changelog.ts +60 -0
- package/lib/routes/gitpod/namespace.ts +7 -0
- package/lib/routes/gitpod/templates/description.art +2 -0
- package/lib/routes/gitpod/utils.ts +3 -0
- package/lib/routes/globallawreview/index.ts +70 -0
- package/lib/routes/globallawreview/namespace.ts +7 -0
- package/lib/routes/gmcmonline/chinacustoms.ts +130 -0
- package/lib/routes/gmcmonline/namespace.ts +9 -0
- package/lib/routes/go/mhlw/pdf.ts +87 -0
- package/lib/routes/go/namespace.ts +9 -0
- package/lib/routes/go/niid/idwr-dl.ts +104 -0
- package/lib/routes/gocn/jobs.ts +53 -0
- package/lib/routes/gocn/namespace.ts +7 -0
- package/lib/routes/gocn/news.ts +40 -0
- package/lib/routes/gocn/topics.ts +56 -0
- package/lib/routes/gocn/utils.ts +36 -0
- package/lib/routes/gofans/index.ts +63 -0
- package/lib/routes/gofans/namespace.ts +7 -0
- package/lib/routes/gofans/templates/description.art +7 -0
- package/lib/routes/gogoanimehd/namespace.ts +7 -0
- package/lib/routes/gogoanimehd/recent-releases.ts +62 -0
- package/lib/routes/google/album.ts +55 -0
- package/lib/routes/google/alerts.ts +52 -0
- package/lib/routes/google/citations.ts +66 -0
- package/lib/routes/google/developers.ts +71 -0
- package/lib/routes/google/doodles.ts +55 -0
- package/lib/routes/google/extension.ts +53 -0
- package/lib/routes/google/fonts.ts +78 -0
- package/lib/routes/google/namespace.ts +7 -0
- package/lib/routes/google/news.ts +109 -0
- package/lib/routes/google/research.ts +45 -0
- package/lib/routes/google/scholar.ts +71 -0
- package/lib/routes/google/search.ts +85 -0
- package/lib/routes/google/templates/description.art +6 -0
- package/lib/routes/google/templates/fonts.art +15 -0
- package/lib/routes/google/templates/news.art +5 -0
- package/lib/routes/gov/ah/kjt.ts +229 -0
- package/lib/routes/gov/ah/namespace.ts +9 -0
- package/lib/routes/gov/beijing/bjedu/gh.ts +79 -0
- package/lib/routes/gov/beijing/bphc/index.ts +64 -0
- package/lib/routes/gov/beijing/jw/tzgg.ts +84 -0
- package/lib/routes/gov/beijing/kw/index.ts +53 -0
- package/lib/routes/gov/caac/cjwt.ts +87 -0
- package/lib/routes/gov/caac/templates/description.art +25 -0
- package/lib/routes/gov/cac/index.ts +73 -0
- package/lib/routes/gov/cbirc/index.ts +371 -0
- package/lib/routes/gov/ccdi/index.ts +27 -0
- package/lib/routes/gov/ccdi/utils.ts +91 -0
- package/lib/routes/gov/chinamine-safety/util.ts +72 -0
- package/lib/routes/gov/chinamine-safety/xw.ts +46 -0
- package/lib/routes/gov/chinamine-safety/zfxxgk.ts +45 -0
- package/lib/routes/gov/chinatax/latest.ts +74 -0
- package/lib/routes/gov/chongqing/gzw.ts +87 -0
- package/lib/routes/gov/chongqing/rsks.ts +55 -0
- package/lib/routes/gov/chongqing/sydwgkzp.ts +75 -0
- package/lib/routes/gov/cmse/fxrw.ts +68 -0
- package/lib/routes/gov/cmse/index.ts +79 -0
- package/lib/routes/gov/cmse/templates/description.art +11 -0
- package/lib/routes/gov/cn/namespace.ts +8 -0
- package/lib/routes/gov/cn/news/index.ts +132 -0
- package/lib/routes/gov/cnnic/index.ts +64 -0
- package/lib/routes/gov/csrc/auditstatus.ts +73 -0
- package/lib/routes/gov/csrc/csrc.ts +541 -0
- package/lib/routes/gov/csrc/news.ts +81 -0
- package/lib/routes/gov/csrc/templates/attachment.art +3 -0
- package/lib/routes/gov/customs/list.ts +114 -0
- package/lib/routes/gov/customs/namespace.ts +7 -0
- package/lib/routes/gov/customs/utils.ts +18 -0
- package/lib/routes/gov/dianbai/dianbai.ts +26 -0
- package/lib/routes/gov/forestry/gjlckjdjt.ts +127 -0
- package/lib/routes/gov/forestry/templates/description.art +15 -0
- package/lib/routes/gov/gaozhou/gaozhou.ts +27 -0
- package/lib/routes/gov/general/general.ts +240 -0
- package/lib/routes/gov/general/templates/zcjdpt.art +128 -0
- package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +65 -0
- package/lib/routes/gov/guangdong/tqyb/templates/sncsyjxh.art +5 -0
- package/lib/routes/gov/guangdong/tqyb/templates/tfxtq.art +1 -0
- package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +58 -0
- package/lib/routes/gov/gz/index.ts +46 -0
- package/lib/routes/gov/hebei/czt.ts +76 -0
- package/lib/routes/gov/huazhou/huazhou.ts +27 -0
- package/lib/routes/gov/huizhou/zwgk/index.ts +79 -0
- package/lib/routes/gov/hunan/changsha/major-email.ts +82 -0
- package/lib/routes/gov/immiau/news.ts +62 -0
- package/lib/routes/gov/jgjcndrc/index.ts +125 -0
- package/lib/routes/gov/jiangsu/wlt/index.ts +99 -0
- package/lib/routes/gov/jiangsu/wlt/templates/wlt.art +9 -0
- package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +74 -0
- package/lib/routes/gov/lswz/index.ts +289 -0
- package/lib/routes/gov/maoming/maoming.ts +382 -0
- package/lib/routes/gov/maonan/maonan.ts +123 -0
- package/lib/routes/gov/mee/ywdt.ts +109 -0
- package/lib/routes/gov/mem/sgcc.ts +93 -0
- package/lib/routes/gov/mfa/wjdt.ts +87 -0
- package/lib/routes/gov/mgs/mgs.ts +27 -0
- package/lib/routes/gov/miit/wjfb.ts +86 -0
- package/lib/routes/gov/miit/wjgs.ts +82 -0
- package/lib/routes/gov/miit/yjzj.ts +85 -0
- package/lib/routes/gov/miit/zcjd.ts +82 -0
- package/lib/routes/gov/miit/zcwj.ts +73 -0
- package/lib/routes/gov/mmht/mmht.ts +27 -0
- package/lib/routes/gov/moa/moa.ts +257 -0
- package/lib/routes/gov/moa/szcpxx.ts +115 -0
- package/lib/routes/gov/moa/zdscxx.ts +161 -0
- package/lib/routes/gov/moe/moe.ts +108 -0
- package/lib/routes/gov/moe/s78.ts +69 -0
- package/lib/routes/gov/mof/bond.ts +76 -0
- package/lib/routes/gov/mofcom/article.ts +77 -0
- package/lib/routes/gov/moj/aac/news.ts +72 -0
- package/lib/routes/gov/moj/lfyjzj.ts +79 -0
- package/lib/routes/gov/mot/index.ts +75 -0
- package/lib/routes/gov/ndrc/fggz.ts +706 -0
- package/lib/routes/gov/ndrc/namespace.ts +8 -0
- package/lib/routes/gov/ndrc/xwdt.ts +83 -0
- package/lib/routes/gov/ndrc/zfxxgk.ts +106 -0
- package/lib/routes/gov/nea/ghs.ts +84 -0
- package/lib/routes/gov/nifdc/index.ts +87 -0
- package/lib/routes/gov/nmpa/generic.ts +70 -0
- package/lib/routes/gov/nopss/index.ts +67 -0
- package/lib/routes/gov/npc/index.ts +75 -0
- package/lib/routes/gov/nrta/dsj.ts +82 -0
- package/lib/routes/gov/nrta/news.ts +85 -0
- package/lib/routes/gov/nsfc/index.ts +95 -0
- package/lib/routes/gov/nsfc/shortcuts.ts +52 -0
- package/lib/routes/gov/pbc/goutongjiaoliu.ts +85 -0
- package/lib/routes/gov/pbc/gzlw.ts +52 -0
- package/lib/routes/gov/pbc/namespace.ts +45 -0
- package/lib/routes/gov/pbc/trade-announcement.ts +78 -0
- package/lib/routes/gov/pbc/utils.ts +19 -0
- package/lib/routes/gov/pbc/zcyj.ts +43 -0
- package/lib/routes/gov/pudong/zwgk.ts +65 -0
- package/lib/routes/gov/safe/business.ts +27 -0
- package/lib/routes/gov/safe/complaint.ts +27 -0
- package/lib/routes/gov/safe/templates/message.art +25 -0
- package/lib/routes/gov/safe/util.ts +88 -0
- package/lib/routes/gov/samr/templates/description.art +26 -0
- package/lib/routes/gov/samr/xgzlyhd.ts +221 -0
- package/lib/routes/gov/sasac/generic.ts +51 -0
- package/lib/routes/gov/sdb/sdb.ts +27 -0
- package/lib/routes/gov/sh/fgw/index.ts +155 -0
- package/lib/routes/gov/sh/fgw/templates/description.art +17 -0
- package/lib/routes/gov/sh/namespace.ts +8 -0
- package/lib/routes/gov/sh/rsj/ksxm.ts +67 -0
- package/lib/routes/gov/sh/rsj/templates/ksxm.art +7 -0
- package/lib/routes/gov/sh/wgj/templates/wgj.art +15 -0
- package/lib/routes/gov/sh/wgj/wgj.ts +102 -0
- package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +58 -0
- package/lib/routes/gov/sh/yjj/index.ts +72 -0
- package/lib/routes/gov/shaanxi/kjt.ts +78 -0
- package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +69 -0
- package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +96 -0
- package/lib/routes/gov/shenzhen/zjj/index.ts +73 -0
- package/lib/routes/gov/shenzhen/zzb/index.ts +68 -0
- package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +118 -0
- package/lib/routes/gov/sichuan/deyang/mztoday.ts +167 -0
- package/lib/routes/gov/sichuan/deyang/templates/govPublicInfo.art +47 -0
- package/lib/routes/gov/sichuan/deyang/templates/mztoday.art +6 -0
- package/lib/routes/gov/stats/index.ts +144 -0
- package/lib/routes/gov/stats/templates/description.art +12 -0
- package/lib/routes/gov/suzhou/doc.ts +72 -0
- package/lib/routes/gov/suzhou/fg.ts +71 -0
- package/lib/routes/gov/suzhou/news.ts +167 -0
- package/lib/routes/gov/taiyuan/rsj.ts +69 -0
- package/lib/routes/gov/wuhan/whyw.ts +70 -0
- package/lib/routes/gov/xinyi/xinyi.ts +27 -0
- package/lib/routes/gov/xuzhou/hrss.ts +77 -0
- package/lib/routes/gov/zhejiang/gwy.ts +134 -0
- package/lib/routes/gov/zhengce/govall.ts +92 -0
- package/lib/routes/gov/zhengce/index.ts +122 -0
- package/lib/routes/gov/zhengce/wenjian.ts +74 -0
- package/lib/routes/gov/zhengce/zhengceku.ts +41 -0
- package/lib/routes/gov/zj/ningbogzw-notice.ts +50 -0
- package/lib/routes/gov/zj/ningborsjnotice.ts +50 -0
- package/lib/routes/gov/zj/search.ts +85 -0
- package/lib/routes/gq/namespace.ts +7 -0
- package/lib/routes/gq/news.ts +60 -0
- package/lib/routes/greasyfork/feedback.ts +55 -0
- package/lib/routes/greasyfork/namespace.ts +7 -0
- package/lib/routes/greasyfork/scripts.ts +76 -0
- package/lib/routes/greasyfork/versions.ts +53 -0
- package/lib/routes/grist/featured.ts +57 -0
- package/lib/routes/grist/index.ts +36 -0
- package/lib/routes/grist/namespace.ts +7 -0
- package/lib/routes/grist/series.ts +46 -0
- package/lib/routes/grist/topic.ts +91 -0
- package/lib/routes/grist/utils.ts +24 -0
- package/lib/routes/grubstreet/index.ts +24 -0
- package/lib/routes/grubstreet/namespace.ts +7 -0
- package/lib/routes/grubstreet/utils.ts +83 -0
- package/lib/routes/gs/developer/blog.ts +58 -0
- package/lib/routes/gs/namespace.ts +10 -0
- package/lib/routes/guancha/headline.ts +77 -0
- package/lib/routes/guancha/index.ts +189 -0
- package/lib/routes/guancha/member.ts +115 -0
- package/lib/routes/guancha/namespace.ts +7 -0
- package/lib/routes/guancha/personalpage.ts +91 -0
- package/lib/routes/guancha/topic.ts +72 -0
- package/lib/routes/guangdiu/cheaps.ts +47 -0
- package/lib/routes/guangdiu/index.ts +62 -0
- package/lib/routes/guangdiu/namespace.ts +7 -0
- package/lib/routes/guangdiu/rank.ts +64 -0
- package/lib/routes/guangdiu/search.ts +60 -0
- package/lib/routes/guangzhoumetro/namespace.ts +7 -0
- package/lib/routes/guangzhoumetro/news.ts +56 -0
- package/lib/routes/guanhai/index.ts +70 -0
- package/lib/routes/guanhai/namespace.ts +7 -0
- package/lib/routes/guduodata/daily.ts +92 -0
- package/lib/routes/guduodata/namespace.ts +7 -0
- package/lib/routes/guduodata/templates/daily.art +26 -0
- package/lib/routes/gumroad/index.ts +63 -0
- package/lib/routes/gumroad/namespace.ts +7 -0
- package/lib/routes/gumroad/templates/products.art +7 -0
- package/lib/routes/guokr/channel.ts +59 -0
- package/lib/routes/guokr/namespace.ts +7 -0
- package/lib/routes/guokr/scientific.ts +38 -0
- package/lib/routes/guokr/utils.ts +37 -0
- package/lib/routes/guozaoke/index.ts +99 -0
- package/lib/routes/guozaoke/namespace.ts +7 -0
- package/lib/routes/gxmzu/ai.ts +43 -0
- package/lib/routes/gxmzu/lib.ts +79 -0
- package/lib/routes/gxmzu/namespace.ts +7 -0
- package/lib/routes/gxmzu/utils/index.ts +68 -0
- package/lib/routes/gxmzu/yjs.ts +43 -0
- package/lib/routes/gzdaily/app.ts +89 -0
- package/lib/routes/gzdaily/namespace.ts +7 -0
- package/lib/routes/gzdaily/templates/description.art +3 -0
- package/lib/routes/gzhu/namespace.ts +7 -0
- package/lib/routes/gzhu/yjs.ts +56 -0
- package/lib/routes/hackernews/index.ts +149 -0
- package/lib/routes/hackernews/namespace.ts +7 -0
- package/lib/routes/hackertalk/index.ts +39 -0
- package/lib/routes/hackertalk/namespace.ts +7 -0
- package/lib/routes/hacking8/index.ts +72 -0
- package/lib/routes/hacking8/namespace.ts +7 -0
- package/lib/routes/hacking8/search.ts +73 -0
- package/lib/routes/hackmd/namespace.ts +7 -0
- package/lib/routes/hackmd/profile.ts +43 -0
- package/lib/routes/hackyournews/index.ts +65 -0
- package/lib/routes/hackyournews/namespace.ts +7 -0
- package/lib/routes/hafu/namespace.ts +7 -0
- package/lib/routes/hafu/news.ts +37 -0
- package/lib/routes/hafu/templates/hafu.art +3 -0
- package/lib/routes/hafu/utils.ts +210 -0
- package/lib/routes/hakkatv/namespace.ts +7 -0
- package/lib/routes/hakkatv/type.ts +94 -0
- package/lib/routes/hamel/index.ts +81 -0
- package/lib/routes/hamel/namespace.ts +7 -0
- package/lib/routes/hameln/chapter.ts +85 -0
- package/lib/routes/hameln/namespace.ts +7 -0
- package/lib/routes/harvard/health/blog.ts +78 -0
- package/lib/routes/harvard/namespace.ts +7 -0
- package/lib/routes/hashnode/blog.ts +93 -0
- package/lib/routes/hashnode/namespace.ts +7 -0
- package/lib/routes/hashnode/templates/description.art +2 -0
- package/lib/routes/hbooker/chapter.ts +71 -0
- package/lib/routes/hbooker/namespace.ts +7 -0
- package/lib/routes/hbr/namespace.ts +7 -0
- package/lib/routes/hbr/topic.ts +93 -0
- package/lib/routes/hdu/cs/notice.ts +80 -0
- package/lib/routes/hdu/cs/pg.ts +80 -0
- package/lib/routes/hdu/namespace.ts +7 -0
- package/lib/routes/healthz.ts +8 -0
- package/lib/routes/hebtv/namespace.ts +7 -0
- package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +138 -0
- package/lib/routes/hebtv/templates/description.art +24 -0
- package/lib/routes/hellobtc/information.ts +71 -0
- package/lib/routes/hellobtc/kepu.ts +87 -0
- package/lib/routes/hellobtc/namespace.ts +7 -0
- package/lib/routes/hellobtc/news.ts +54 -0
- package/lib/routes/hellogithub/article.ts +62 -0
- package/lib/routes/hellogithub/index.ts +78 -0
- package/lib/routes/hellogithub/namespace.ts +7 -0
- package/lib/routes/hellogithub/report.ts +71 -0
- package/lib/routes/hellogithub/templates/description.art +99 -0
- package/lib/routes/hellogithub/templates/report.art +118 -0
- package/lib/routes/hellogithub/templates/volume.art +36 -0
- package/lib/routes/hellogithub/volume.ts +80 -0
- package/lib/routes/hex-rays/index.ts +67 -0
- package/lib/routes/hex-rays/namespace.ts +7 -0
- package/lib/routes/hexun/index.ts +74 -0
- package/lib/routes/hexun/namespace.ts +8 -0
- package/lib/routes/hfut/hf/notice.ts +43 -0
- package/lib/routes/hfut/hf/utils.ts +80 -0
- package/lib/routes/hfut/namespace.ts +7 -0
- package/lib/routes/hfut/xc/notice.ts +43 -0
- package/lib/routes/hfut/xc/utils.ts +73 -0
- package/lib/routes/hicairo/namespace.ts +7 -0
- package/lib/routes/hicairo/rss.ts +48 -0
- package/lib/routes/hinatazaka46/blog.ts +96 -0
- package/lib/routes/hinatazaka46/namespace.ts +7 -0
- package/lib/routes/hinatazaka46/news.ts +77 -0
- package/lib/routes/hiring.cafe/jobs.ts +150 -0
- package/lib/routes/hiring.cafe/namespace.ts +10 -0
- package/lib/routes/hiring.cafe/templates/jobs.art +18 -0
- package/lib/routes/hit/hitgs.ts +72 -0
- package/lib/routes/hit/jwc.ts +86 -0
- package/lib/routes/hit/namespace.ts +10 -0
- package/lib/routes/hit/today.ts +92 -0
- package/lib/routes/hitcon/namespace.ts +7 -0
- package/lib/routes/hitcon/templates/zeroday.art +8 -0
- package/lib/routes/hitcon/zeroday.ts +109 -0
- package/lib/routes/hitsz/article.ts +64 -0
- package/lib/routes/hitsz/namespace.ts +7 -0
- package/lib/routes/hitwh/namespace.ts +7 -0
- package/lib/routes/hitwh/today.ts +80 -0
- package/lib/routes/hizu/index.ts +128 -0
- package/lib/routes/hizu/namespace.ts +7 -0
- package/lib/routes/hk01/channel.ts +37 -0
- package/lib/routes/hk01/hot.ts +46 -0
- package/lib/routes/hk01/issue.ts +36 -0
- package/lib/routes/hk01/latest.ts +46 -0
- package/lib/routes/hk01/namespace.ts +7 -0
- package/lib/routes/hk01/tag.ts +36 -0
- package/lib/routes/hk01/templates/description.art +53 -0
- package/lib/routes/hk01/utils.ts +44 -0
- package/lib/routes/hk01/zone.ts +37 -0
- package/lib/routes/hkej/index.ts +183 -0
- package/lib/routes/hkej/namespace.ts +7 -0
- package/lib/routes/hkej/templates/articleImg.art +3 -0
- package/lib/routes/hkej/templates/description.art +2 -0
- package/lib/routes/hkepc/data.ts +60 -0
- package/lib/routes/hkepc/index.ts +127 -0
- package/lib/routes/hkepc/namespace.ts +7 -0
- package/lib/routes/hket/index.ts +237 -0
- package/lib/routes/hket/namespace.ts +7 -0
- package/lib/routes/hket/templates/image.art +4 -0
- package/lib/routes/hkjunkcall/index.ts +69 -0
- package/lib/routes/hkjunkcall/namespace.ts +7 -0
- package/lib/routes/hko/earthquake.ts +56 -0
- package/lib/routes/hko/namespace.ts +9 -0
- package/lib/routes/hko/weather.ts +56 -0
- package/lib/routes/hljucm/namespace.ts +7 -0
- package/lib/routes/hljucm/yjsy.ts +79 -0
- package/lib/routes/hnrb/index.ts +124 -0
- package/lib/routes/hnrb/namespace.ts +7 -0
- package/lib/routes/hnu/careers.ts +58 -0
- package/lib/routes/hnu/namespace.ts +7 -0
- package/lib/routes/hongkong/chp.ts +118 -0
- package/lib/routes/hongkong/dh.ts +84 -0
- package/lib/routes/hongkong/namespace.ts +7 -0
- package/lib/routes/hostmonit/cloudflareyes.ts +116 -0
- package/lib/routes/hostmonit/cloudflareyesv6.ts +11 -0
- package/lib/routes/hostmonit/namespace.ts +7 -0
- package/lib/routes/hostmonit/templates/description.art +28 -0
- package/lib/routes/hostmonit/templates/title.art +1 -0
- package/lib/routes/hottoys/index.ts +63 -0
- package/lib/routes/hottoys/namespace.ts +7 -0
- package/lib/routes/hotukdeals/hottest.ts +50 -0
- package/lib/routes/hotukdeals/index.ts +53 -0
- package/lib/routes/hotukdeals/namespace.ts +7 -0
- package/lib/routes/houxu/events.ts +56 -0
- package/lib/routes/houxu/index.ts +55 -0
- package/lib/routes/houxu/lives.ts +60 -0
- package/lib/routes/houxu/memory.ts +56 -0
- package/lib/routes/houxu/namespace.ts +7 -0
- package/lib/routes/houxu/templates/events.art +5 -0
- package/lib/routes/houxu/templates/lives.art +5 -0
- package/lib/routes/houxu/templates/memory.art +3 -0
- package/lib/routes/howtoforge/namespace.ts +7 -0
- package/lib/routes/howtoforge/rss.ts +48 -0
- package/lib/routes/hoyolab/constant.ts +28 -0
- package/lib/routes/hoyolab/namespace.ts +7 -0
- package/lib/routes/hoyolab/news.ts +143 -0
- package/lib/routes/hoyolab/templates/post.art +7 -0
- package/lib/routes/hoyolab/utils.ts +29 -0
- package/lib/routes/hpoi/all.ts +45 -0
- package/lib/routes/hpoi/banner-item.ts +51 -0
- package/lib/routes/hpoi/character.ts +39 -0
- package/lib/routes/hpoi/info.ts +80 -0
- package/lib/routes/hpoi/namespace.ts +7 -0
- package/lib/routes/hpoi/user.ts +77 -0
- package/lib/routes/hpoi/utils.ts +80 -0
- package/lib/routes/hpoi/work.ts +39 -0
- package/lib/routes/hrbeu/gx/card.ts +45 -0
- package/lib/routes/hrbeu/gx/list.ts +69 -0
- package/lib/routes/hrbeu/job/bigemploy.ts +50 -0
- package/lib/routes/hrbeu/job/calendar.ts +81 -0
- package/lib/routes/hrbeu/job/list.ts +88 -0
- package/lib/routes/hrbeu/namespace.ts +7 -0
- package/lib/routes/hrbeu/sec/list.ts +80 -0
- package/lib/routes/hrbeu/uae/news.ts +94 -0
- package/lib/routes/hrbeu/ugs/news.ts +173 -0
- package/lib/routes/hrbeu/yjsy/list.ts +85 -0
- package/lib/routes/hrbust/jwzx.ts +65 -0
- package/lib/routes/hrbust/namespace.ts +8 -0
- package/lib/routes/hrbust/news.ts +81 -0
- package/lib/routes/hrbust/templates/description.art +1 -0
- package/lib/routes/hrbust/utils.ts +65 -0
- package/lib/routes/huanqiu/index.ts +103 -0
- package/lib/routes/huanqiu/namespace.ts +7 -0
- package/lib/routes/hubu/index.ts +124 -0
- package/lib/routes/hubu/namespace.ts +9 -0
- package/lib/routes/hubu/zhxy.ts +228 -0
- package/lib/routes/huggingface/blog-zh.ts +59 -0
- package/lib/routes/huggingface/daily-papers.ts +51 -0
- package/lib/routes/huggingface/namespace.ts +7 -0
- package/lib/routes/hunanpea/namespace.ts +7 -0
- package/lib/routes/hunanpea/rsks.ts +67 -0
- package/lib/routes/hunau/gfxy/index.ts +40 -0
- package/lib/routes/hunau/ied.ts +42 -0
- package/lib/routes/hunau/jwc.ts +39 -0
- package/lib/routes/hunau/namespace.ts +7 -0
- package/lib/routes/hunau/utils/category-title.ts +31 -0
- package/lib/routes/hunau/utils/common.ts +62 -0
- package/lib/routes/hunau/utils/index-page.ts +10 -0
- package/lib/routes/hunau/utils/news-content.ts +47 -0
- package/lib/routes/hunau/xky/index.ts +41 -0
- package/lib/routes/huoxian/namespace.ts +7 -0
- package/lib/routes/huoxian/zone.ts +38 -0
- package/lib/routes/hupu/all.ts +105 -0
- package/lib/routes/hupu/bbs.ts +117 -0
- package/lib/routes/hupu/index.ts +102 -0
- package/lib/routes/hupu/namespace.ts +7 -0
- package/lib/routes/hupu/templates/description.art +11 -0
- package/lib/routes/hupu/templates/match.art +22 -0
- package/lib/routes/hust/aia/news.ts +51 -0
- package/lib/routes/hust/aia/notice.ts +51 -0
- package/lib/routes/hust/gs.ts +282 -0
- package/lib/routes/hust/mse.ts +575 -0
- package/lib/routes/hust/namespace.ts +7 -0
- package/lib/routes/hust/yjs.ts +52 -0
- package/lib/routes/huxiu/brief-column.ts +49 -0
- package/lib/routes/huxiu/channel.ts +65 -0
- package/lib/routes/huxiu/club.ts +42 -0
- package/lib/routes/huxiu/collection.ts +48 -0
- package/lib/routes/huxiu/member.ts +42 -0
- package/lib/routes/huxiu/moment.ts +51 -0
- package/lib/routes/huxiu/namespace.ts +7 -0
- package/lib/routes/huxiu/search.ts +61 -0
- package/lib/routes/huxiu/tag.ts +47 -0
- package/lib/routes/huxiu/templates/description.art +46 -0
- package/lib/routes/huxiu/util.ts +446 -0
- package/lib/routes/hypergryph/arknights/announce.ts +89 -0
- package/lib/routes/hypergryph/arknights/arktca.ts +124 -0
- package/lib/routes/hypergryph/arknights/japan.ts +78 -0
- package/lib/routes/hypergryph/arknights/news.ts +118 -0
- package/lib/routes/hypergryph/namespace.ts +8 -0
- package/lib/routes/i-cable/namespace.ts +7 -0
- package/lib/routes/i-cable/news.ts +77 -0
- package/lib/routes/i-cable/templates/description.art +8 -0
- package/lib/routes/ianspriggs/index.ts +116 -0
- package/lib/routes/ianspriggs/namespace.ts +7 -0
- package/lib/routes/ianspriggs/templates/description.art +13 -0
- package/lib/routes/icac/namespace.ts +7 -0
- package/lib/routes/icac/news.ts +72 -0
- package/lib/routes/icac/utils.ts +13 -0
- package/lib/routes/icbc/namespace.ts +7 -0
- package/lib/routes/icbc/whpj.ts +86 -0
- package/lib/routes/idaily/index.ts +85 -0
- package/lib/routes/idaily/namespace.ts +7 -0
- package/lib/routes/idaily/templates/description.art +17 -0
- package/lib/routes/idolmaster/namespace.ts +7 -0
- package/lib/routes/idolmaster/news.ts +112 -0
- package/lib/routes/idolypride/namespace.ts +7 -0
- package/lib/routes/idolypride/news.ts +55 -0
- package/lib/routes/ieee/author.ts +95 -0
- package/lib/routes/ieee/journal.ts +73 -0
- package/lib/routes/ieee/namespace.ts +7 -0
- package/lib/routes/ieee/templates/description.art +11 -0
- package/lib/routes/ieee-security/namespace.ts +7 -0
- package/lib/routes/ieee-security/sp.ts +53 -0
- package/lib/routes/iehou/index.ts +125 -0
- package/lib/routes/iehou/namespace.ts +9 -0
- package/lib/routes/ielts/index.ts +81 -0
- package/lib/routes/ielts/namespace.ts +7 -0
- package/lib/routes/ifeng/feng.ts +92 -0
- package/lib/routes/ifeng/namespace.ts +7 -0
- package/lib/routes/ifeng/news.ts +67 -0
- package/lib/routes/ifeng/templates/description.art +16 -0
- package/lib/routes/ifeng/templates/video.art +5 -0
- package/lib/routes/ifeng/utils.ts +26 -0
- package/lib/routes/ifi-audio/download.ts +58 -0
- package/lib/routes/ifi-audio/namespace.ts +7 -0
- package/lib/routes/ifun/n/category.ts +102 -0
- package/lib/routes/ifun/n/search.ts +73 -0
- package/lib/routes/ifun/n/tag.ts +76 -0
- package/lib/routes/ifun/n/util.ts +34 -0
- package/lib/routes/ifun/namespace.ts +9 -0
- package/lib/routes/iguoguo/index.ts +95 -0
- package/lib/routes/iguoguo/namespace.ts +7 -0
- package/lib/routes/iheima/index.ts +44 -0
- package/lib/routes/iheima/namespace.ts +8 -0
- package/lib/routes/iiilab/index.ts +39 -0
- package/lib/routes/iiilab/namespace.ts +7 -0
- package/lib/routes/ikea/cn/family-offers.ts +95 -0
- package/lib/routes/ikea/cn/low-price.ts +48 -0
- package/lib/routes/ikea/cn/new.ts +64 -0
- package/lib/routes/ikea/cn/utils.ts +42 -0
- package/lib/routes/ikea/gb/new.ts +82 -0
- package/lib/routes/ikea/gb/offer.ts +97 -0
- package/lib/routes/ikea/namespace.ts +7 -0
- package/lib/routes/ikea/templates/cn/product.art +14 -0
- package/lib/routes/ikea/templates/new.art +7 -0
- package/lib/routes/ikea/templates/offer.art +3 -0
- package/lib/routes/imagemagick/changelog.ts +72 -0
- package/lib/routes/imagemagick/namespace.ts +7 -0
- package/lib/routes/imdb/chart.ts +73 -0
- package/lib/routes/imdb/namespace.ts +7 -0
- package/lib/routes/imdb/templates/chart.art +15 -0
- package/lib/routes/imdb/types.ts +103 -0
- package/lib/routes/imhcg/blog.ts +47 -0
- package/lib/routes/imhcg/namespace.ts +8 -0
- package/lib/routes/imiker/jinghua.ts +116 -0
- package/lib/routes/imiker/namespace.ts +7 -0
- package/lib/routes/imiker/templates/description.art +32 -0
- package/lib/routes/imop/namespace.ts +11 -0
- package/lib/routes/imop/tianshu.ts +53 -0
- package/lib/routes/index.tsx +10 -0
- package/lib/routes/indiansinkuwait/latest.ts +69 -0
- package/lib/routes/indiansinkuwait/namespace.ts +7 -0
- package/lib/routes/indienova/article.ts +44 -0
- package/lib/routes/indienova/column.ts +84 -0
- package/lib/routes/indienova/gamedb.ts +64 -0
- package/lib/routes/indienova/namespace.ts +7 -0
- package/lib/routes/indienova/usergames.ts +68 -0
- package/lib/routes/indienova/utils.ts +39 -0
- package/lib/routes/inewsweek/index.ts +83 -0
- package/lib/routes/inewsweek/namespace.ts +7 -0
- package/lib/routes/infoq/namespace.ts +7 -0
- package/lib/routes/infoq/presentations.ts +203 -0
- package/lib/routes/infoq/recommend.ts +51 -0
- package/lib/routes/infoq/templates/description.art +41 -0
- package/lib/routes/infoq/topic.ts +67 -0
- package/lib/routes/infoq/utils.ts +109 -0
- package/lib/routes/informedainews/docs.ts +78 -0
- package/lib/routes/informedainews/namespace.ts +19 -0
- package/lib/routes/informs/index.ts +97 -0
- package/lib/routes/informs/namespace.ts +7 -0
- package/lib/routes/informs/templates/content.art +3 -0
- package/lib/routes/infzm/hot.ts +39 -0
- package/lib/routes/infzm/index.ts +48 -0
- package/lib/routes/infzm/namespace.ts +7 -0
- package/lib/routes/infzm/types.ts +17 -0
- package/lib/routes/infzm/utils.ts +34 -0
- package/lib/routes/inoreader/index.ts +56 -0
- package/lib/routes/inoreader/namespace.ts +7 -0
- package/lib/routes/inoreader/rss.ts +67 -0
- package/lib/routes/inspirehep/author.ts +54 -0
- package/lib/routes/inspirehep/literature.ts +42 -0
- package/lib/routes/inspirehep/namespace.ts +8 -0
- package/lib/routes/inspirehep/types.ts +210 -0
- package/lib/routes/inspirehep/utils.ts +15 -0
- package/lib/routes/instagram/common-utils.ts +63 -0
- package/lib/routes/instagram/namespace.ts +10 -0
- package/lib/routes/instagram/private-api/index.ts +146 -0
- package/lib/routes/instagram/private-api/utils.ts +38 -0
- package/lib/routes/instagram/templates/images.art +12 -0
- package/lib/routes/instagram/templates/video.art +8 -0
- package/lib/routes/instagram/web-api/index.ts +118 -0
- package/lib/routes/instagram/web-api/utils.ts +218 -0
- package/lib/routes/instructables/namespace.ts +7 -0
- package/lib/routes/instructables/projects.ts +85 -0
- package/lib/routes/investor/index.ts +213 -0
- package/lib/routes/investor/namespace.ts +9 -0
- package/lib/routes/iplaysoft/index.ts +68 -0
- package/lib/routes/iplaysoft/namespace.ts +7 -0
- package/lib/routes/ippa/namespace.ts +7 -0
- package/lib/routes/ippa/rss.ts +35 -0
- package/lib/routes/ipsw/index.ts +109 -0
- package/lib/routes/ipsw/namespace.ts +7 -0
- package/lib/routes/ipsw.dev/index.ts +64 -0
- package/lib/routes/ipsw.dev/namespace.ts +8 -0
- package/lib/routes/ipsw.dev/templates/description.art +20 -0
- package/lib/routes/iqilu/namespace.ts +7 -0
- package/lib/routes/iqilu/program.ts +110 -0
- package/lib/routes/iqilu/templates/description.art +24 -0
- package/lib/routes/iqiyi/album.ts +88 -0
- package/lib/routes/iqiyi/namespace.ts +7 -0
- package/lib/routes/iqiyi/templates/album.art +1 -0
- package/lib/routes/iqiyi/video.ts +79 -0
- package/lib/routes/iqnew/latest.ts +83 -0
- package/lib/routes/iqnew/namespace.ts +7 -0
- package/lib/routes/iresearch/chart.ts +375 -0
- package/lib/routes/iresearch/namespace.ts +7 -0
- package/lib/routes/iresearch/report.ts +89 -0
- package/lib/routes/iresearch/templates/chart.art +13 -0
- package/lib/routes/iresearch/templates/report.art +5 -0
- package/lib/routes/iresearch/templates/weekly.art +11 -0
- package/lib/routes/iresearch/weekly.ts +63 -0
- package/lib/routes/isct/namespace.ts +15 -0
- package/lib/routes/isct/news.ts +81 -0
- package/lib/routes/issuehunt/funded.ts +47 -0
- package/lib/routes/issuehunt/namespace.ts +7 -0
- package/lib/routes/itc/collection.ts +66 -0
- package/lib/routes/itc/namespace.ts +7 -0
- package/lib/routes/itch/devlog.ts +95 -0
- package/lib/routes/itch/index.ts +69 -0
- package/lib/routes/itch/namespace.ts +7 -0
- package/lib/routes/itch/posts.ts +65 -0
- package/lib/routes/itch/templates/description.art +4 -0
- package/lib/routes/ithome/index.ts +109 -0
- package/lib/routes/ithome/namespace.ts +7 -0
- package/lib/routes/ithome/ranking.ts +93 -0
- package/lib/routes/ithome/tag.ts +84 -0
- package/lib/routes/ithome/templates/description.art +13 -0
- package/lib/routes/ithome/tw/feeds.ts +66 -0
- package/lib/routes/ithome/zt.ts +150 -0
- package/lib/routes/iwara/index.ts +64 -0
- package/lib/routes/iwara/namespace.ts +7 -0
- package/lib/routes/iwara/subscriptions.ts +186 -0
- package/lib/routes/iwara/templates/subscriptions.art +1 -0
- package/lib/routes/ixigua/namespace.ts +7 -0
- package/lib/routes/ixigua/templates/userVideo.art +5 -0
- package/lib/routes/ixigua/user-video.ts +76 -0
- package/lib/routes/j-test/namespace.ts +7 -0
- package/lib/routes/j-test/news.ts +64 -0
- package/lib/routes/jandan/index.ts +46 -0
- package/lib/routes/jandan/namespace.ts +7 -0
- package/lib/routes/jandan/section.ts +59 -0
- package/lib/routes/jandan/templates/description.art +4 -0
- package/lib/routes/japanpost/namespace.ts +13 -0
- package/lib/routes/japanpost/router.ts +40 -0
- package/lib/routes/japanpost/templates/track_item_desc.art +14 -0
- package/lib/routes/japanpost/track.ts +115 -0
- package/lib/routes/japanpost/utils.ts +89 -0
- package/lib/routes/javbus/index.ts +209 -0
- package/lib/routes/javbus/namespace.ts +24 -0
- package/lib/routes/javbus/templates/description.art +29 -0
- package/lib/routes/javdb/actors.ts +60 -0
- package/lib/routes/javdb/index.ts +65 -0
- package/lib/routes/javdb/lists.ts +43 -0
- package/lib/routes/javdb/makers.ts +58 -0
- package/lib/routes/javdb/namespace.ts +20 -0
- package/lib/routes/javdb/rankings.ts +55 -0
- package/lib/routes/javdb/search.ts +76 -0
- package/lib/routes/javdb/series.ts +58 -0
- package/lib/routes/javdb/tags.ts +55 -0
- package/lib/routes/javdb/utils.ts +104 -0
- package/lib/routes/javdb/videocodes.ts +56 -0
- package/lib/routes/javlibrary/bestrated.ts +21 -0
- package/lib/routes/javlibrary/bestreviews.ts +32 -0
- package/lib/routes/javlibrary/genre.ts +26 -0
- package/lib/routes/javlibrary/maker.ts +33 -0
- package/lib/routes/javlibrary/mostwanted.ts +21 -0
- package/lib/routes/javlibrary/namespace.ts +7 -0
- package/lib/routes/javlibrary/newentries.ts +17 -0
- package/lib/routes/javlibrary/newrelease.ts +21 -0
- package/lib/routes/javlibrary/star.ts +39 -0
- package/lib/routes/javlibrary/templates/description.art +17 -0
- package/lib/routes/javlibrary/update.ts +17 -0
- package/lib/routes/javlibrary/user.ts +22 -0
- package/lib/routes/javlibrary/utils.ts +97 -0
- package/lib/routes/javtiful/actress.ts +37 -0
- package/lib/routes/javtiful/channel.ts +37 -0
- package/lib/routes/javtiful/namespace.ts +7 -0
- package/lib/routes/javtiful/templates/description.art +7 -0
- package/lib/routes/javtiful/utils.ts +18 -0
- package/lib/routes/javtrailers/casts.ts +41 -0
- package/lib/routes/javtrailers/categories.ts +40 -0
- package/lib/routes/javtrailers/namespace.ts +7 -0
- package/lib/routes/javtrailers/studios.ts +39 -0
- package/lib/routes/javtrailers/templates/description.art +31 -0
- package/lib/routes/javtrailers/types.ts +59 -0
- package/lib/routes/javtrailers/utils.ts +48 -0
- package/lib/routes/jd/namespace.ts +7 -0
- package/lib/routes/jd/price.ts +67 -0
- package/lib/routes/jd/templates/description.art +3 -0
- package/lib/routes/jewishmuseum/exhibitions.ts +35 -0
- package/lib/routes/jewishmuseum/namespace.ts +7 -0
- package/lib/routes/jianshu/collection.ts +55 -0
- package/lib/routes/jianshu/home.ts +54 -0
- package/lib/routes/jianshu/namespace.ts +7 -0
- package/lib/routes/jianshu/user.ts +55 -0
- package/lib/routes/jianshu/utils.ts +56 -0
- package/lib/routes/jiaoliudao/index.ts +41 -0
- package/lib/routes/jiaoliudao/namespace.ts +7 -0
- package/lib/routes/jiemian/list.ts +14 -0
- package/lib/routes/jiemian/lists.ts +112 -0
- package/lib/routes/jiemian/namespace.ts +7 -0
- package/lib/routes/jiemian/templates/description.art +39 -0
- package/lib/routes/jike/namespace.ts +7 -0
- package/lib/routes/jike/topic-text.ts +47 -0
- package/lib/routes/jike/topic.ts +79 -0
- package/lib/routes/jike/user.ts +184 -0
- package/lib/routes/jike/utils.ts +197 -0
- package/lib/routes/jin10/index.ts +89 -0
- package/lib/routes/jin10/namespace.ts +7 -0
- package/lib/routes/jin10/templates/description.art +2 -0
- package/lib/routes/jin10/topic.ts +77 -0
- package/lib/routes/jingzhengu/namespace.ts +7 -0
- package/lib/routes/jingzhengu/news.ts +77 -0
- package/lib/routes/jingzhengu/types.ts +39 -0
- package/lib/routes/jingzhengu/utils.ts +35 -0
- package/lib/routes/jinritemai/docs.ts +74 -0
- package/lib/routes/jinritemai/namespace.ts +7 -0
- package/lib/routes/jinse/catalogue.ts +131 -0
- package/lib/routes/jinse/lives.ts +119 -0
- package/lib/routes/jinse/namespace.ts +7 -0
- package/lib/routes/jinse/templates/description.art +34 -0
- package/lib/routes/jinse/timeline.ts +145 -0
- package/lib/routes/jisilu/index.ts +133 -0
- package/lib/routes/jisilu/namespace.ts +7 -0
- package/lib/routes/jiuyangongshe/community.ts +149 -0
- package/lib/routes/jiuyangongshe/namespace.ts +8 -0
- package/lib/routes/jiuyangongshe/templates/community-description.art +4 -0
- package/lib/routes/jjwxc/author.ts +90 -0
- package/lib/routes/jjwxc/book.ts +134 -0
- package/lib/routes/jjwxc/namespace.ts +7 -0
- package/lib/routes/jjwxc/templates/author.art +28 -0
- package/lib/routes/jjwxc/templates/book.art +44 -0
- package/lib/routes/jlu/ccst/xwzx/index.ts +63 -0
- package/lib/routes/jlu/jwc.ts +55 -0
- package/lib/routes/jlu/namespace.ts +7 -0
- package/lib/routes/jlu/phy/index.ts +55 -0
- package/lib/routes/joins/chinese.ts +218 -0
- package/lib/routes/joins/namespace.ts +9 -0
- package/lib/routes/joins/templates/description.art +17 -0
- package/lib/routes/joneslanglasalle/index.ts +311 -0
- package/lib/routes/joneslanglasalle/namespace.ts +13 -0
- package/lib/routes/joneslanglasalle/templates/description.art +21 -0
- package/lib/routes/jornada/index.ts +93 -0
- package/lib/routes/jornada/namespace.ts +7 -0
- package/lib/routes/jou/home.ts +43 -0
- package/lib/routes/jou/namespace.ts +7 -0
- package/lib/routes/jou/utils/index.ts +69 -0
- package/lib/routes/jou/yz.ts +43 -0
- package/lib/routes/jpxgmn/namespace.ts +7 -0
- package/lib/routes/jpxgmn/search.ts +45 -0
- package/lib/routes/jpxgmn/tab.ts +57 -0
- package/lib/routes/jpxgmn/templates/description.art +3 -0
- package/lib/routes/jpxgmn/utils.ts +36 -0
- package/lib/routes/jpxgmn/weekly.ts +54 -0
- package/lib/routes/jseea/namespace.ts +7 -0
- package/lib/routes/jseea/news.ts +79 -0
- package/lib/routes/jsu/cxzx.ts +84 -0
- package/lib/routes/jsu/jwc.ts +82 -0
- package/lib/routes/jsu/math.ts +61 -0
- package/lib/routes/jsu/namespace.ts +7 -0
- package/lib/routes/jsu/rjxy.ts +63 -0
- package/lib/routes/jsu/universityindex.ts +68 -0
- package/lib/routes/jsu/utils/index.ts +50 -0
- package/lib/routes/juejin/books.ts +56 -0
- package/lib/routes/juejin/category.ts +62 -0
- package/lib/routes/juejin/collection.ts +51 -0
- package/lib/routes/juejin/column.ts +56 -0
- package/lib/routes/juejin/dynamic.ts +114 -0
- package/lib/routes/juejin/favorites.ts +65 -0
- package/lib/routes/juejin/namespace.ts +7 -0
- package/lib/routes/juejin/pins.ts +89 -0
- package/lib/routes/juejin/posts.ts +50 -0
- package/lib/routes/juejin/tag.ts +65 -0
- package/lib/routes/juejin/trending.ts +118 -0
- package/lib/routes/juejin/utils.ts +55 -0
- package/lib/routes/jump/discount.ts +157 -0
- package/lib/routes/jump/namespace.ts +7 -0
- package/lib/routes/jump/templates/discount.art +111 -0
- package/lib/routes/junhe/legal-updates.ts +98 -0
- package/lib/routes/junhe/namespace.ts +9 -0
- package/lib/routes/kadokawa/blog.ts +134 -0
- package/lib/routes/kadokawa/namespace.ts +9 -0
- package/lib/routes/kadokawa/templates/description.art +21 -0
- package/lib/routes/kakuyomu/namespace.ts +7 -0
- package/lib/routes/kakuyomu/types.ts +6 -0
- package/lib/routes/kakuyomu/works.ts +73 -0
- package/lib/routes/kamen-rider-official/namespace.ts +7 -0
- package/lib/routes/kamen-rider-official/news.ts +165 -0
- package/lib/routes/kamen-rider-official/templates/description.art +10 -0
- package/lib/routes/kantarworldpanel/index.ts +108 -0
- package/lib/routes/kantarworldpanel/namespace.ts +7 -0
- package/lib/routes/kantarworldpanel/templates/description.art +9 -0
- package/lib/routes/kanxue/namespace.ts +7 -0
- package/lib/routes/kanxue/topic.ts +153 -0
- package/lib/routes/kaopu/namespace.ts +7 -0
- package/lib/routes/kaopu/news.ts +51 -0
- package/lib/routes/kbs/namespace.ts +7 -0
- package/lib/routes/kbs/news.ts +97 -0
- package/lib/routes/kbs/today.ts +86 -0
- package/lib/routes/kcna/namespace.ts +7 -0
- package/lib/routes/kcna/news.ts +126 -0
- package/lib/routes/kcna/templates/news.art +9 -0
- package/lib/routes/kcna/utils.ts +60 -0
- package/lib/routes/ke/namespace.ts +7 -0
- package/lib/routes/ke/results.ts +61 -0
- package/lib/routes/keep/namespace.ts +7 -0
- package/lib/routes/keep/templates/user.art +16 -0
- package/lib/routes/keep/user.ts +84 -0
- package/lib/routes/keepass/namespace.ts +7 -0
- package/lib/routes/keepass/news.ts +55 -0
- package/lib/routes/kelownacapnews/namespace.ts +7 -0
- package/lib/routes/kelownacapnews/news.ts +93 -0
- package/lib/routes/kemono/index.ts +190 -0
- package/lib/routes/kemono/namespace.ts +7 -0
- package/lib/routes/kemono/templates/discord.art +22 -0
- package/lib/routes/kemono/templates/source.art +24 -0
- package/lib/routes/kepu/live.ts +118 -0
- package/lib/routes/kepu/namespace.ts +7 -0
- package/lib/routes/kepu/templates/description.art +33 -0
- package/lib/routes/keylol/index.ts +213 -0
- package/lib/routes/keylol/namespace.ts +7 -0
- package/lib/routes/kimlaw/namespace.ts +7 -0
- package/lib/routes/kimlaw/thesis.ts +70 -0
- package/lib/routes/kisskiss/blog.ts +74 -0
- package/lib/routes/kisskiss/namespace.ts +7 -0
- package/lib/routes/konachan/namespace.ts +8 -0
- package/lib/routes/konachan/post.ts +94 -0
- package/lib/routes/konghq/blog-posts.ts +78 -0
- package/lib/routes/konghq/namespace.ts +8 -0
- package/lib/routes/kpmg/insights.ts +143 -0
- package/lib/routes/kpmg/namespace.ts +11 -0
- package/lib/routes/kpmg/templates/description.art +11 -0
- package/lib/routes/ktown4u/artist-brandlist.ts +61 -0
- package/lib/routes/ktown4u/namespace.ts +7 -0
- package/lib/routes/kuaidi100/index.ts +72 -0
- package/lib/routes/kuaidi100/namespace.ts +7 -0
- package/lib/routes/kuaidi100/supported-company.ts +41 -0
- package/lib/routes/kuaidi100/utils.ts +260 -0
- package/lib/routes/kuaishou/namespace.ts +8 -0
- package/lib/routes/kuaishou/profile.ts +92 -0
- package/lib/routes/kunchengblog/essay.ts +91 -0
- package/lib/routes/kunchengblog/namespace.ts +7 -0
- package/lib/routes/kurogames/namespace.ts +8 -0
- package/lib/routes/kurogames/wutheringwaves/news.ts +59 -0
- package/lib/routes/kuwaitlocal/index.ts +75 -0
- package/lib/routes/kuwaitlocal/namespace.ts +7 -0
- package/lib/routes/kyodonews/index.ts +149 -0
- package/lib/routes/kyodonews/namespace.ts +7 -0
- package/lib/routes/kyodonews/templates/article.art +4 -0
- package/lib/routes/laimanhua/index.ts +65 -0
- package/lib/routes/laimanhua/namespace.ts +7 -0
- package/lib/routes/lala/namespace.ts +7 -0
- package/lib/routes/lala/rss.ts +48 -0
- package/lib/routes/lang/namespace.ts +7 -0
- package/lib/routes/lang/room.ts +67 -0
- package/lib/routes/lang/templates/room.art +1 -0
- package/lib/routes/langchain/index.ts +74 -0
- package/lib/routes/langchain/namespace.ts +7 -0
- package/lib/routes/lanqiao/author.ts +86 -0
- package/lib/routes/lanqiao/courses.ts +82 -0
- package/lib/routes/lanqiao/namespace.ts +7 -0
- package/lib/routes/lanqiao/questions.ts +80 -0
- package/lib/routes/lanqiao/templates/courseDesc.art +1 -0
- package/lib/routes/lanqiao/utils.ts +13 -0
- package/lib/routes/laohu8/namespace.ts +7 -0
- package/lib/routes/laohu8/personal.ts +58 -0
- package/lib/routes/last-origin/namespace.ts +7 -0
- package/lib/routes/last-origin/news.ts +65 -0
- package/lib/routes/latepost/index.ts +132 -0
- package/lib/routes/latepost/namespace.ts +7 -0
- package/lib/routes/layoffs/index.ts +150 -0
- package/lib/routes/layoffs/namespace.ts +7 -0
- package/lib/routes/learnblockchain/namespace.ts +7 -0
- package/lib/routes/learnblockchain/posts.ts +81 -0
- package/lib/routes/learnku/namespace.ts +7 -0
- package/lib/routes/learnku/templates/topic.art +14 -0
- package/lib/routes/learnku/topic.ts +104 -0
- package/lib/routes/leetcode/articles.ts +109 -0
- package/lib/routes/leetcode/dailyquestion-cn.ts +132 -0
- package/lib/routes/leetcode/dailyquestion-en.ts +133 -0
- package/lib/routes/leetcode/dailyquestion-solution-cn.ts +201 -0
- package/lib/routes/leetcode/dailyquestion-solution-en.ts +231 -0
- package/lib/routes/leetcode/namespace.ts +7 -0
- package/lib/routes/leetcode/templates/question-description.art +6 -0
- package/lib/routes/leiphone/index.ts +41 -0
- package/lib/routes/leiphone/namespace.ts +7 -0
- package/lib/routes/leiphone/newsflash.ts +45 -0
- package/lib/routes/leiphone/utils.ts +39 -0
- package/lib/routes/lemmy/index.ts +116 -0
- package/lib/routes/lemmy/namespace.ts +7 -0
- package/lib/routes/lfsyd/home.ts +68 -0
- package/lib/routes/lfsyd/namespace.ts +7 -0
- package/lib/routes/lfsyd/old-home.ts +55 -0
- package/lib/routes/lfsyd/tag.ts +79 -0
- package/lib/routes/lfsyd/templates/card.art +1 -0
- package/lib/routes/lfsyd/templates/video.art +1 -0
- package/lib/routes/lfsyd/user.ts +63 -0
- package/lib/routes/lfsyd/utils.ts +103 -0
- package/lib/routes/lianxh/index.ts +116 -0
- package/lib/routes/lianxh/namespace.ts +8 -0
- package/lib/routes/lifeweek/channel.ts +40 -0
- package/lib/routes/lifeweek/namespace.ts +7 -0
- package/lib/routes/lifeweek/tag.ts +39 -0
- package/lib/routes/lifeweek/utils.ts +18 -0
- package/lib/routes/lightnovel/light-novel.ts +78 -0
- package/lib/routes/lightnovel/namespace.ts +7 -0
- package/lib/routes/line/namespace.ts +7 -0
- package/lib/routes/line/publisher.ts +68 -0
- package/lib/routes/line/today.ts +66 -0
- package/lib/routes/line/utils.ts +56 -0
- package/lib/routes/link3/events.ts +86 -0
- package/lib/routes/link3/namespace.ts +7 -0
- package/lib/routes/link3/profile.ts +143 -0
- package/lib/routes/linkedin/cn/index.ts +46 -0
- package/lib/routes/linkedin/cn/renderer.ts +177 -0
- package/lib/routes/linkedin/cn/utils.ts +123 -0
- package/lib/routes/linkedin/jobs.ts +140 -0
- package/lib/routes/linkedin/models.ts +13 -0
- package/lib/routes/linkedin/namespace.ts +7 -0
- package/lib/routes/linkedin/templates/cn/posting.art +25 -0
- package/lib/routes/linkedin/utils.ts +126 -0
- package/lib/routes/linkresearcher/index.ts +138 -0
- package/lib/routes/linkresearcher/namespace.ts +13 -0
- package/lib/routes/linkresearcher/templates/bilingual.art +7 -0
- package/lib/routes/linkresearcher/types.ts +103 -0
- package/lib/routes/linovelib/namespace.ts +7 -0
- package/lib/routes/linovelib/novel.ts +52 -0
- package/lib/routes/linovelib/volume.ts +36 -0
- package/lib/routes/liquipedia/cs-matches.ts +60 -0
- package/lib/routes/liquipedia/dota2-matches.ts +71 -0
- package/lib/routes/liquipedia/namespace.ts +7 -0
- package/lib/routes/literotica/category.ts +69 -0
- package/lib/routes/literotica/namespace.ts +7 -0
- package/lib/routes/literotica/new.ts +85 -0
- package/lib/routes/liulinblog/index.ts +107 -0
- package/lib/routes/liulinblog/itnews.ts +13 -0
- package/lib/routes/liulinblog/namespace.ts +7 -0
- package/lib/routes/liveuamap/index.ts +63 -0
- package/lib/routes/liveuamap/namespace.ts +7 -0
- package/lib/routes/lkong/forum.ts +72 -0
- package/lib/routes/lkong/namespace.ts +7 -0
- package/lib/routes/lkong/query.ts +83 -0
- package/lib/routes/lkong/templates/content.art +18 -0
- package/lib/routes/lkong/templates/quote.art +23 -0
- package/lib/routes/lkong/thread.ts +73 -0
- package/lib/routes/lmu/jobs.ts +96 -0
- package/lib/routes/lmu/namespace.ts +18 -0
- package/lib/routes/lmu/templates/jobPosting.art +11 -0
- package/lib/routes/lofter/collection.ts +87 -0
- package/lib/routes/lofter/namespace.ts +7 -0
- package/lib/routes/lofter/tag.ts +116 -0
- package/lib/routes/lofter/user.ts +82 -0
- package/lib/routes/logclub/index.ts +144 -0
- package/lib/routes/logclub/namespace.ts +7 -0
- package/lib/routes/logclub/report.ts +124 -0
- package/lib/routes/logclub/templates/description.art +33 -0
- package/lib/routes/logonews/index.ts +96 -0
- package/lib/routes/logonews/namespace.ts +7 -0
- package/lib/routes/logonews/templates/description.art +4 -0
- package/lib/routes/logrocket/index.ts +71 -0
- package/lib/routes/logrocket/namespace.ts +7 -0
- package/lib/routes/loltw/namespace.ts +7 -0
- package/lib/routes/loltw/news.ts +62 -0
- package/lib/routes/loltw/templates/news.art +6 -0
- package/lib/routes/loongarch/namespace.ts +7 -0
- package/lib/routes/loongarch/post.ts +59 -0
- package/lib/routes/lorientlejour/index.ts +186 -0
- package/lib/routes/lorientlejour/namespace.ts +8 -0
- package/lib/routes/lorientlejour/templates/description.art +18 -0
- package/lib/routes/lovelive-anime/namespace.ts +7 -0
- package/lib/routes/lovelive-anime/news.ts +116 -0
- package/lib/routes/lovelive-anime/schedules.ts +78 -0
- package/lib/routes/lovelive-anime/templates/description.art +1 -0
- package/lib/routes/lovelive-anime/templates/scheduleDesc.art +2 -0
- package/lib/routes/lovelive-anime/topics.ts +164 -0
- package/lib/routes/lrepacks/index.ts +201 -0
- package/lib/routes/lrepacks/namespace.ts +9 -0
- package/lib/routes/lrepacks/templates/description.art +21 -0
- package/lib/routes/lsnu/jiaowc/tzgg.ts +82 -0
- package/lib/routes/lsnu/namespace.ts +7 -0
- package/lib/routes/luma/index.ts +92 -0
- package/lib/routes/luma/namespace.ts +7 -0
- package/lib/routes/luogu/contest.ts +99 -0
- package/lib/routes/luogu/daily.ts +64 -0
- package/lib/routes/luogu/namespace.ts +7 -0
- package/lib/routes/luogu/user-article.ts +75 -0
- package/lib/routes/luogu/user-blog.ts +76 -0
- package/lib/routes/luogu/user-feed.ts +56 -0
- package/lib/routes/luogu/utils.ts +17 -0
- package/lib/routes/luolei/index.ts +149 -0
- package/lib/routes/luolei/namespace.ts +9 -0
- package/lib/routes/luolei/templates/description.art +19 -0
- package/lib/routes/luxiangdong/archive.ts +53 -0
- package/lib/routes/luxiangdong/namespace.ts +7 -0
- package/lib/routes/lvv2/namespace.ts +7 -0
- package/lib/routes/lvv2/news.ts +104 -0
- package/lib/routes/lvv2/templates/outlink.art +1 -0
- package/lib/routes/lvv2/top.ts +106 -0
- package/lib/routes/lxixsxa/discography.ts +82 -0
- package/lib/routes/lxixsxa/information.ts +76 -0
- package/lib/routes/lxixsxa/jsonp-helper.ts +17 -0
- package/lib/routes/lxixsxa/namespace.ts +7 -0
- package/lib/routes/lxixsxa/templates/disco.art +5 -0
- package/lib/routes/lxixsxa/templates/info.art +4 -0
- package/lib/routes/m-78/namespace.ts +7 -0
- package/lib/routes/m-78/news.ts +115 -0
- package/lib/routes/m-78/types.ts +13 -0
- package/lib/routes/m4/index.ts +99 -0
- package/lib/routes/m4/namespace.ts +7 -0
- package/lib/routes/m4/templates/description.art +21 -0
- package/lib/routes/maccms/index.ts +72 -0
- package/lib/routes/maccms/namespace.ts +10 -0
- package/lib/routes/maccms/templates/vod.art +12 -0
- package/lib/routes/maccms/type.ts +102 -0
- package/lib/routes/macfilos/blog.ts +87 -0
- package/lib/routes/macfilos/namespace.ts +7 -0
- package/lib/routes/macmenubar/namespace.ts +7 -0
- package/lib/routes/macmenubar/recently.ts +66 -0
- package/lib/routes/macupdate/app.ts +63 -0
- package/lib/routes/macupdate/namespace.ts +7 -0
- package/lib/routes/magazinelib/latest-magazine.ts +78 -0
- package/lib/routes/magazinelib/namespace.ts +7 -0
- package/lib/routes/magazinelib/templates/magazine-description.art +3 -0
- package/lib/routes/magnumphotos/magazine.ts +64 -0
- package/lib/routes/magnumphotos/namespace.ts +7 -0
- package/lib/routes/mail/imap.ts +109 -0
- package/lib/routes/mail/namespace.ts +6 -0
- package/lib/routes/malaysiakini/index.ts +179 -0
- package/lib/routes/malaysiakini/namespace.ts +12 -0
- package/lib/routes/mangadex/index.ts +84 -0
- package/lib/routes/mangadex/namespace.ts +7 -0
- package/lib/routes/manhuagui/comic.ts +139 -0
- package/lib/routes/manhuagui/namespace.ts +7 -0
- package/lib/routes/manhuagui/subscribe.ts +92 -0
- package/lib/routes/manhuagui/templates/manga.art +2 -0
- package/lib/routes/manyvids/namespace.ts +8 -0
- package/lib/routes/manyvids/templates/video.art +3 -0
- package/lib/routes/manyvids/types.ts +89 -0
- package/lib/routes/manyvids/video.ts +51 -0
- package/lib/routes/mastodon/account-id.ts +53 -0
- package/lib/routes/mastodon/acct.ts +51 -0
- package/lib/routes/mastodon/namespace.ts +15 -0
- package/lib/routes/mastodon/timeline-local.ts +54 -0
- package/lib/routes/mastodon/timeline-remote.ts +54 -0
- package/lib/routes/mastodon/utils.ts +135 -0
- package/lib/routes/matters/author.ts +63 -0
- package/lib/routes/matters/latest.ts +74 -0
- package/lib/routes/matters/namespace.ts +8 -0
- package/lib/routes/matters/tags.ts +85 -0
- package/lib/routes/matters/utils.ts +30 -0
- package/lib/routes/mckinsey/cn/category-map.ts +77 -0
- package/lib/routes/mckinsey/cn/index.ts +80 -0
- package/lib/routes/mckinsey/namespace.ts +7 -0
- package/lib/routes/mcmod/index.ts +105 -0
- package/lib/routes/mcmod/namespace.ts +7 -0
- package/lib/routes/mcmod/templates/mod.art +13 -0
- package/lib/routes/mdpi/journal.ts +92 -0
- package/lib/routes/mdpi/namespace.ts +7 -0
- package/lib/routes/mdpi/templates/description.art +12 -0
- package/lib/routes/medieval-china/namespace.ts +7 -0
- package/lib/routes/medieval-china/post.ts +60 -0
- package/lib/routes/medium/following.ts +59 -0
- package/lib/routes/medium/for-you.ts +59 -0
- package/lib/routes/medium/graphql.ts +185 -0
- package/lib/routes/medium/list.ts +58 -0
- package/lib/routes/medium/namespace.ts +7 -0
- package/lib/routes/medium/parse-article.ts +61 -0
- package/lib/routes/medium/tag.ts +62 -0
- package/lib/routes/medsci/index.ts +128 -0
- package/lib/routes/medsci/namespace.ts +7 -0
- package/lib/routes/meishichina/index.ts +1997 -0
- package/lib/routes/meishichina/namespace.ts +9 -0
- package/lib/routes/meituan/namespace.ts +7 -0
- package/lib/routes/meituan/tech.ts +67 -0
- package/lib/routes/metacritic/index.ts +142 -0
- package/lib/routes/metacritic/namespace.ts +7 -0
- package/lib/routes/metacritic/release.ts +54 -0
- package/lib/routes/metacritic/templates/description.art +19 -0
- package/lib/routes/metacritic/util.ts +39 -0
- package/lib/routes/meteor/boards.ts +37 -0
- package/lib/routes/meteor/index.ts +65 -0
- package/lib/routes/meteor/namespace.ts +7 -0
- package/lib/routes/meteor/templates/desc.art +7 -0
- package/lib/routes/meteor/utils.ts +89 -0
- package/lib/routes/metmuseum/exhibitions.ts +39 -0
- package/lib/routes/metmuseum/namespace.ts +7 -0
- package/lib/routes/metrics.ts +12 -0
- package/lib/routes/mi/crowdfunding.ts +58 -0
- package/lib/routes/mi/golden.ts +32 -0
- package/lib/routes/mi/namespace.ts +7 -0
- package/lib/routes/mi/templates/crowdfunding.art +28 -0
- package/lib/routes/mi/types.ts +40 -0
- package/lib/routes/mi/utils.ts +80 -0
- package/lib/routes/microsoft/addon.ts +56 -0
- package/lib/routes/microsoft/mcr.ts +63 -0
- package/lib/routes/microsoft/namespace.ts +7 -0
- package/lib/routes/mihoyo/bbs/cache.ts +42 -0
- package/lib/routes/mihoyo/bbs/follow-list.ts +72 -0
- package/lib/routes/mihoyo/bbs/img-ranking.ts +144 -0
- package/lib/routes/mihoyo/bbs/official.ts +167 -0
- package/lib/routes/mihoyo/bbs/static-data.ts +141 -0
- package/lib/routes/mihoyo/bbs/timeline.ts +74 -0
- package/lib/routes/mihoyo/bbs/user-post.ts +51 -0
- package/lib/routes/mihoyo/bbs/utils.ts +37 -0
- package/lib/routes/mihoyo/namespace.ts +7 -0
- package/lib/routes/mihoyo/sr/news.ts +100 -0
- package/lib/routes/mihoyo/templates/description.art +6 -0
- package/lib/routes/mihoyo/templates/official.art +7 -0
- package/lib/routes/mihoyo/templates/ys.art +4 -0
- package/lib/routes/mihoyo/ys/news.ts +195 -0
- package/lib/routes/mindmeister/example.ts +95 -0
- package/lib/routes/mindmeister/namespace.ts +7 -0
- package/lib/routes/mindmeister/templates/image.art +1 -0
- package/lib/routes/minecraft/blockedservers.ts +52 -0
- package/lib/routes/minecraft/java-runtime.ts +127 -0
- package/lib/routes/minecraft/namespace.ts +7 -0
- package/lib/routes/minecraft/version.ts +137 -0
- package/lib/routes/mingpao/index.ts +178 -0
- package/lib/routes/mingpao/namespace.ts +7 -0
- package/lib/routes/mingpao/templates/description.art +2 -0
- package/lib/routes/mingpao/templates/fancybox.art +7 -0
- package/lib/routes/miniflux/entry.ts +315 -0
- package/lib/routes/miniflux/namespace.ts +7 -0
- package/lib/routes/miniflux/subscription.ts +129 -0
- package/lib/routes/mirror/index.ts +62 -0
- package/lib/routes/mirror/namespace.ts +7 -0
- package/lib/routes/mirrormedia/category.ts +101 -0
- package/lib/routes/mirrormedia/index.ts +43 -0
- package/lib/routes/mirrormedia/namespace.ts +7 -0
- package/lib/routes/mirrormedia/utils.ts +19 -0
- package/lib/routes/missav/namespace.ts +7 -0
- package/lib/routes/missav/new.ts +64 -0
- package/lib/routes/missav/templates/preview.art +3 -0
- package/lib/routes/misskey/featured-notes.ts +50 -0
- package/lib/routes/misskey/namespace.ts +7 -0
- package/lib/routes/misskey/templates/note.art +29 -0
- package/lib/routes/misskey/types.ts +111 -0
- package/lib/routes/misskey/user-timeline.ts +70 -0
- package/lib/routes/misskey/utils.ts +112 -0
- package/lib/routes/misskon/namespace.ts +7 -0
- package/lib/routes/misskon/posts.ts +33 -0
- package/lib/routes/misskon/tag.ts +38 -0
- package/lib/routes/misskon/top.ts +67 -0
- package/lib/routes/misskon/utils.ts +41 -0
- package/lib/routes/mittrchina/index.ts +127 -0
- package/lib/routes/mittrchina/namespace.ts +7 -0
- package/lib/routes/mittrchina/templates/movie.art +5 -0
- package/lib/routes/miui/community/user.ts +69 -0
- package/lib/routes/miui/firmware/index.ts +55 -0
- package/lib/routes/miui/namespace.ts +7 -0
- package/lib/routes/mixcloud/index.ts +156 -0
- package/lib/routes/mixcloud/namespace.ts +7 -0
- package/lib/routes/mixcloud/queries.ts +2274 -0
- package/lib/routes/modb/namespace.ts +7 -0
- package/lib/routes/modb/topic.ts +78 -0
- package/lib/routes/modelscope/community.ts +84 -0
- package/lib/routes/modelscope/datasets.ts +85 -0
- package/lib/routes/modelscope/models.ts +72 -0
- package/lib/routes/modelscope/namespace.ts +7 -0
- package/lib/routes/modelscope/studios.ts +87 -0
- package/lib/routes/modelscope/templates/community.art +11 -0
- package/lib/routes/modelscope/templates/desc.art +9 -0
- package/lib/routes/modian/namespace.ts +7 -0
- package/lib/routes/modian/zhongchou.ts +101 -0
- package/lib/routes/modrinth/api.d.ts +101 -0
- package/lib/routes/modrinth/namespace.ts +7 -0
- package/lib/routes/modrinth/templates/version.art +8 -0
- package/lib/routes/modrinth/versions.ts +127 -0
- package/lib/routes/mohw/clarification.ts +76 -0
- package/lib/routes/mohw/namespace.ts +7 -0
- package/lib/routes/mox/index.ts +117 -0
- package/lib/routes/mox/namespace.ts +7 -0
- package/lib/routes/mpaypass/main.ts +79 -0
- package/lib/routes/mpaypass/namespace.ts +7 -0
- package/lib/routes/mpaypass/news.ts +65 -0
- package/lib/routes/mrdx/daily.ts +105 -0
- package/lib/routes/mrdx/namespace.ts +7 -0
- package/lib/routes/mrdx/utils.ts +15 -0
- package/lib/routes/mrm/index.ts +65 -0
- package/lib/routes/mrm/namespace.ts +7 -0
- package/lib/routes/mwm/index.ts +86 -0
- package/lib/routes/mwm/namespace.ts +7 -0
- package/lib/routes/my-formosa/index.ts +78 -0
- package/lib/routes/my-formosa/namespace.ts +7 -0
- package/lib/routes/mydrivers/cid.ts +47 -0
- package/lib/routes/mydrivers/index.ts +73 -0
- package/lib/routes/mydrivers/namespace.ts +7 -0
- package/lib/routes/mydrivers/rank.ts +70 -0
- package/lib/routes/mydrivers/templates/description.art +5 -0
- package/lib/routes/mydrivers/util.ts +116 -0
- package/lib/routes/myfans/namespace.ts +7 -0
- package/lib/routes/myfans/post.ts +64 -0
- package/lib/routes/myfans/templates/post.art +8 -0
- package/lib/routes/myfans/types.ts +104 -0
- package/lib/routes/myfans/utils.ts +39 -0
- package/lib/routes/myfigurecollection/activity.ts +124 -0
- package/lib/routes/myfigurecollection/index.ts +115 -0
- package/lib/routes/myfigurecollection/namespace.ts +7 -0
- package/lib/routes/myfigurecollection/templates/activity.art +8 -0
- package/lib/routes/myfigurecollection/templates/description.art +24 -0
- package/lib/routes/mygopen/index.ts +55 -0
- package/lib/routes/mygopen/namespace.ts +7 -0
- package/lib/routes/mymusicsheet/namespace.ts +7 -0
- package/lib/routes/mymusicsheet/templates/description.art +41 -0
- package/lib/routes/mymusicsheet/usersheets.ts +149 -0
- package/lib/routes/mysql/namespace.ts +7 -0
- package/lib/routes/mysql/release.ts +84 -0
- package/lib/routes/nasa/apod-cn.ts +52 -0
- package/lib/routes/nasa/apod-ncku.ts +77 -0
- package/lib/routes/nasa/apod.ts +78 -0
- package/lib/routes/nasa/namespace.ts +7 -0
- package/lib/routes/natgeo/dailyphoto.ts +62 -0
- package/lib/routes/natgeo/dailyselection.ts +64 -0
- package/lib/routes/natgeo/namespace.ts +7 -0
- package/lib/routes/natgeo/natgeo.ts +83 -0
- package/lib/routes/natgeo/templates/dailyPhoto.art +5 -0
- package/lib/routes/nationalgeographic/latest-stories.ts +85 -0
- package/lib/routes/nationalgeographic/namespace.ts +7 -0
- package/lib/routes/nationalgeographic/templates/stories.art +44 -0
- package/lib/routes/nature/cover.ts +96 -0
- package/lib/routes/nature/highlight.ts +50 -0
- package/lib/routes/nature/namespace.ts +10 -0
- package/lib/routes/nature/news-and-comment.ts +52 -0
- package/lib/routes/nature/news.ts +56 -0
- package/lib/routes/nature/research.ts +80 -0
- package/lib/routes/nature/siteindex.ts +82 -0
- package/lib/routes/nature/utils.ts +1091 -0
- package/lib/routes/nautil/namespace.ts +7 -0
- package/lib/routes/nautil/templates/description.art +6 -0
- package/lib/routes/nautil/topics.ts +86 -0
- package/lib/routes/nbd/daily.ts +28 -0
- package/lib/routes/nbd/index.ts +84 -0
- package/lib/routes/nbd/namespace.ts +7 -0
- package/lib/routes/nber/all.ts +19 -0
- package/lib/routes/nber/common.ts +52 -0
- package/lib/routes/nber/namespace.ts +8 -0
- package/lib/routes/nber/new.ts +20 -0
- package/lib/routes/nber/template/description.art +6 -0
- package/lib/routes/ncc-cma/cmdp.ts +349 -0
- package/lib/routes/ncc-cma/namespace.ts +9 -0
- package/lib/routes/ncc-cma/templates/description.art +9 -0
- package/lib/routes/ncepu/master/masterinfo.ts +96 -0
- package/lib/routes/ncepu/namespace.ts +7 -0
- package/lib/routes/ncku/csie.ts +83 -0
- package/lib/routes/ncku/namespace.ts +7 -0
- package/lib/routes/ncku/phys.ts +96 -0
- package/lib/routes/ncpssd/namespace.ts +7 -0
- package/lib/routes/ncpssd/newlist.ts +98 -0
- package/lib/routes/ncu/jwc.ts +69 -0
- package/lib/routes/ncu/namespace.ts +7 -0
- package/lib/routes/ncwu/namespace.ts +7 -0
- package/lib/routes/ncwu/notice.ts +52 -0
- package/lib/routes/ndss-symposium/namespace.ts +7 -0
- package/lib/routes/ndss-symposium/ndss.ts +107 -0
- package/lib/routes/neatdownloadmanager/download.ts +71 -0
- package/lib/routes/neatdownloadmanager/namespace.ts +7 -0
- package/lib/routes/neea/index.ts +147 -0
- package/lib/routes/neea/jlpt.ts +75 -0
- package/lib/routes/neea/namespace.ts +7 -0
- package/lib/routes/nenu/namespace.ts +7 -0
- package/lib/routes/nenu/sohac.ts +70 -0
- package/lib/routes/nenu/yjsy.ts +74 -0
- package/lib/routes/netflav/index.ts +57 -0
- package/lib/routes/netflav/namespace.ts +7 -0
- package/lib/routes/netflav/templates/description.art +8 -0
- package/lib/routes/neu/bmie.ts +131 -0
- package/lib/routes/neu/namespace.ts +7 -0
- package/lib/routes/neu/news.ts +86 -0
- package/lib/routes/newmuseum/exhibitions.ts +46 -0
- package/lib/routes/newmuseum/namespace.ts +7 -0
- package/lib/routes/newrank/douyin.ts +91 -0
- package/lib/routes/newrank/namespace.ts +11 -0
- package/lib/routes/newrank/utils.ts +106 -0
- package/lib/routes/newrank/wechat.ts +95 -0
- package/lib/routes/news/namespace.ts +7 -0
- package/lib/routes/news/templates/description.art +21 -0
- package/lib/routes/news/xhsxw.ts +110 -0
- package/lib/routes/newseed/index.ts +73 -0
- package/lib/routes/newseed/namespace.ts +8 -0
- package/lib/routes/newsmarket/index.ts +95 -0
- package/lib/routes/newsmarket/namespace.ts +7 -0
- package/lib/routes/newyorker/namespace.ts +7 -0
- package/lib/routes/newyorker/news.ts +70 -0
- package/lib/routes/newzmz/index.ts +96 -0
- package/lib/routes/newzmz/namespace.ts +7 -0
- package/lib/routes/newzmz/templates/description.art +59 -0
- package/lib/routes/newzmz/util.ts +163 -0
- package/lib/routes/nextapple/namespace.ts +7 -0
- package/lib/routes/nextapple/realtime.ts +77 -0
- package/lib/routes/nextjs/blog.ts +63 -0
- package/lib/routes/nextjs/namespace.ts +7 -0
- package/lib/routes/nga/forum.ts +92 -0
- package/lib/routes/nga/namespace.ts +7 -0
- package/lib/routes/nga/post.ts +141 -0
- package/lib/routes/ngocn2/index.ts +85 -0
- package/lib/routes/ngocn2/namespace.ts +7 -0
- package/lib/routes/nhentai/index.ts +56 -0
- package/lib/routes/nhentai/namespace.ts +8 -0
- package/lib/routes/nhentai/search.ts +47 -0
- package/lib/routes/nhentai/templates/desc.art +4 -0
- package/lib/routes/nhentai/util.ts +146 -0
- package/lib/routes/nhk/namespace.ts +7 -0
- package/lib/routes/nhk/news-web-easy.ts +78 -0
- package/lib/routes/nhk/news.ts +98 -0
- package/lib/routes/nhk/templates/news.art +5 -0
- package/lib/routes/nhk/templates/news_web_easy.art +7 -0
- package/lib/routes/niaogebiji/cat.ts +79 -0
- package/lib/routes/niaogebiji/index.ts +57 -0
- package/lib/routes/niaogebiji/namespace.ts +7 -0
- package/lib/routes/niaogebiji/today.ts +60 -0
- package/lib/routes/nicovideo/namespace.ts +8 -0
- package/lib/routes/nicovideo/templates/video.art +7 -0
- package/lib/routes/nicovideo/types.ts +54 -0
- package/lib/routes/nicovideo/utils.ts +37 -0
- package/lib/routes/nicovideo/video.ts +47 -0
- package/lib/routes/nielsberglund/index.ts +78 -0
- package/lib/routes/nielsberglund/namespace.ts +7 -0
- package/lib/routes/nifd/namespace.ts +7 -0
- package/lib/routes/nifd/research.ts +75 -0
- package/lib/routes/nikkei/asia/index.ts +70 -0
- package/lib/routes/nikkei/cn/index.ts +148 -0
- package/lib/routes/nikkei/index.ts +46 -0
- package/lib/routes/nikkei/namespace.ts +7 -0
- package/lib/routes/nikkei/news.ts +111 -0
- package/lib/routes/nikkei/templates/news.art +4 -0
- package/lib/routes/nintendo/direct.ts +59 -0
- package/lib/routes/nintendo/eshop-cn.ts +60 -0
- package/lib/routes/nintendo/eshop-hk.ts +97 -0
- package/lib/routes/nintendo/eshop-jp.ts +51 -0
- package/lib/routes/nintendo/eshop-us.ts +49 -0
- package/lib/routes/nintendo/namespace.ts +7 -0
- package/lib/routes/nintendo/news-china.ts +62 -0
- package/lib/routes/nintendo/news.ts +49 -0
- package/lib/routes/nintendo/system-update.ts +63 -0
- package/lib/routes/nintendo/templates/direct.art +6 -0
- package/lib/routes/nintendo/templates/eshop_cn.art +21 -0
- package/lib/routes/nintendo/templates/eshop_hk.art +61 -0
- package/lib/routes/nintendo/templates/eshop_jp.art +3 -0
- package/lib/routes/nintendo/templates/eshop_us.art +24 -0
- package/lib/routes/nintendo/utils.ts +166 -0
- package/lib/routes/nippon/index.ts +59 -0
- package/lib/routes/nippon/namespace.ts +7 -0
- package/lib/routes/njglyy/namespace.ts +7 -0
- package/lib/routes/njglyy/utils/index.ts +49 -0
- package/lib/routes/njglyy/ygbjypx.ts +43 -0
- package/lib/routes/njit/jwc.ts +129 -0
- package/lib/routes/njit/namespace.ts +7 -0
- package/lib/routes/njit/tzgg.ts +100 -0
- package/lib/routes/njnu/ceai/ceai.ts +67 -0
- package/lib/routes/njnu/ceai/utils.ts +53 -0
- package/lib/routes/njnu/jwc/jwc.ts +66 -0
- package/lib/routes/njnu/jwc/utils.ts +57 -0
- package/lib/routes/njnu/namespace.ts +7 -0
- package/lib/routes/nju/admission.ts +64 -0
- package/lib/routes/nju/dafls.ts +62 -0
- package/lib/routes/nju/exchangesys.ts +68 -0
- package/lib/routes/nju/gra.ts +64 -0
- package/lib/routes/nju/hosptial.ts +64 -0
- package/lib/routes/nju/hqjt.ts +62 -0
- package/lib/routes/nju/itsc.ts +69 -0
- package/lib/routes/nju/jjc.ts +65 -0
- package/lib/routes/nju/jw.ts +88 -0
- package/lib/routes/nju/namespace.ts +7 -0
- package/lib/routes/nju/rczp.ts +76 -0
- package/lib/routes/nju/scit.ts +58 -0
- package/lib/routes/nju/zbb.ts +101 -0
- package/lib/routes/nju/zcc.ts +63 -0
- package/lib/routes/njucm/grabs.ts +43 -0
- package/lib/routes/njucm/namespace.ts +7 -0
- package/lib/routes/njucm/utils/index.ts +46 -0
- package/lib/routes/njuferret/blog.ts +41 -0
- package/lib/routes/njuferret/namespace.ts +11 -0
- package/lib/routes/njupt/jwc.ts +113 -0
- package/lib/routes/njupt/namespace.ts +7 -0
- package/lib/routes/njust/cwc.ts +62 -0
- package/lib/routes/njust/dgxg.ts +63 -0
- package/lib/routes/njust/eo.ts +83 -0
- package/lib/routes/njust/eoe.ts +62 -0
- package/lib/routes/njust/gs.ts +69 -0
- package/lib/routes/njust/jwc.ts +64 -0
- package/lib/routes/njust/namespace.ts +7 -0
- package/lib/routes/njust/utils.ts +35 -0
- package/lib/routes/njxzc/home.ts +51 -0
- package/lib/routes/njxzc/lib.ts +51 -0
- package/lib/routes/njxzc/namespace.ts +7 -0
- package/lib/routes/njxzc/utils/index.ts +65 -0
- package/lib/routes/nlc/namespace.ts +7 -0
- package/lib/routes/nlc/read.ts +95 -0
- package/lib/routes/nlc/templates/description.art +17 -0
- package/lib/routes/nltimes/namespace.ts +7 -0
- package/lib/routes/nltimes/news.ts +118 -0
- package/lib/routes/nmc/namespace.ts +7 -0
- package/lib/routes/nmc/weatheralarm.ts +75 -0
- package/lib/routes/nmtv/column.ts +78 -0
- package/lib/routes/nmtv/namespace.ts +7 -0
- package/lib/routes/nmtv/templates/description.art +9 -0
- package/lib/routes/nodejs/blog.ts +100 -0
- package/lib/routes/nodejs/namespace.ts +7 -0
- package/lib/routes/nogizaka46/blog.ts +103 -0
- package/lib/routes/nogizaka46/namespace.ts +7 -0
- package/lib/routes/nogizaka46/news.ts +58 -0
- package/lib/routes/nosec/index.ts +100 -0
- package/lib/routes/nosec/namespace.ts +7 -0
- package/lib/routes/notateslaapp/namespace.ts +7 -0
- package/lib/routes/notateslaapp/update.ts +61 -0
- package/lib/routes/notefolio/namespace.ts +7 -0
- package/lib/routes/notefolio/search.ts +229 -0
- package/lib/routes/notefolio/templates/search.art +9 -0
- package/lib/routes/notion/database.ts +206 -0
- package/lib/routes/notion/namespace.ts +14 -0
- package/lib/routes/notion/release.ts +81 -0
- package/lib/routes/now/namespace.ts +7 -0
- package/lib/routes/now/news.ts +104 -0
- package/lib/routes/nowcoder/discuss.ts +80 -0
- package/lib/routes/nowcoder/experience.ts +80 -0
- package/lib/routes/nowcoder/jobcenter.ts +103 -0
- package/lib/routes/nowcoder/namespace.ts +7 -0
- package/lib/routes/nowcoder/recommend.ts +45 -0
- package/lib/routes/nowcoder/schedule.ts +58 -0
- package/lib/routes/npm/namespace.ts +7 -0
- package/lib/routes/npm/package.ts +61 -0
- package/lib/routes/npm/templates/package.art +10 -0
- package/lib/routes/npr/full.ts +108 -0
- package/lib/routes/npr/namespace.ts +7 -0
- package/lib/routes/ntdm/namespace.ts +7 -0
- package/lib/routes/ntdm/utils.ts +3 -0
- package/lib/routes/ntdm/video.ts +57 -0
- package/lib/routes/ntdtv/channel.ts +72 -0
- package/lib/routes/ntdtv/namespace.ts +7 -0
- package/lib/routes/nua/dc.ts +96 -0
- package/lib/routes/nua/gra.ts +50 -0
- package/lib/routes/nua/index.ts +50 -0
- package/lib/routes/nua/lib.ts +70 -0
- package/lib/routes/nua/namespace.ts +7 -0
- package/lib/routes/nua/sxw.ts +53 -0
- package/lib/routes/nua/utils.ts +73 -0
- package/lib/routes/nuaa/college/cae.ts +88 -0
- package/lib/routes/nuaa/college/cs.ts +101 -0
- package/lib/routes/nuaa/jwc/jwc.ts +99 -0
- package/lib/routes/nuaa/namespace.ts +7 -0
- package/lib/routes/nuaa/utils/pypasswaf.ts +23 -0
- package/lib/routes/nuaa/yjsy/yjsy.ts +97 -0
- package/lib/routes/nudt/namespace.ts +7 -0
- package/lib/routes/nudt/yjszs.ts +88 -0
- package/lib/routes/nuist/bulletin.ts +97 -0
- package/lib/routes/nuist/cas.ts +94 -0
- package/lib/routes/nuist/jwc.ts +66 -0
- package/lib/routes/nuist/library/lib.ts +58 -0
- package/lib/routes/nuist/namespace.ts +20 -0
- package/lib/routes/nuist/scs.ts +78 -0
- package/lib/routes/nuist/sese.ts +68 -0
- package/lib/routes/nuist/xgc.ts +75 -0
- package/lib/routes/nuist/yjs.ts +70 -0
- package/lib/routes/nwafu/all.ts +68 -0
- package/lib/routes/nwafu/namespace.ts +7 -0
- package/lib/routes/nwafu/utils.ts +33 -0
- package/lib/routes/nyaa/main.ts +63 -0
- package/lib/routes/nyaa/namespace.ts +17 -0
- package/lib/routes/nymity/censorbib.ts +51 -0
- package/lib/routes/nymity/namespace.ts +7 -0
- package/lib/routes/nytimes/book.ts +107 -0
- package/lib/routes/nytimes/daily-briefing-chinese.ts +98 -0
- package/lib/routes/nytimes/index.ts +162 -0
- package/lib/routes/nytimes/namespace.ts +7 -0
- package/lib/routes/nytimes/rss.ts +57 -0
- package/lib/routes/nytimes/templates/image.art +3 -0
- package/lib/routes/nytimes/utils.ts +111 -0
- package/lib/routes/obsidian/namespace.ts +7 -0
- package/lib/routes/obsidian/publish.ts +83 -0
- package/lib/routes/obsidian/utils.ts +8 -0
- package/lib/routes/oceanengine/arithmetic-index.ts +159 -0
- package/lib/routes/oceanengine/namespace.ts +7 -0
- package/lib/routes/oceanengine/templates/content.art +14 -0
- package/lib/routes/oct0pu5/namespace.ts +11 -0
- package/lib/routes/oct0pu5/rss.ts +48 -0
- package/lib/routes/odaily/activity.ts +78 -0
- package/lib/routes/odaily/namespace.ts +7 -0
- package/lib/routes/odaily/newsflash.ts +51 -0
- package/lib/routes/odaily/post.ts +92 -0
- package/lib/routes/odaily/search-news.ts +50 -0
- package/lib/routes/odaily/user.ts +83 -0
- package/lib/routes/odaily/utils.ts +3 -0
- package/lib/routes/oeeee/app/channel.ts +48 -0
- package/lib/routes/oeeee/app/reporter.ts +54 -0
- package/lib/routes/oeeee/namespace.ts +7 -0
- package/lib/routes/oeeee/templates/description.art +7 -0
- package/lib/routes/oeeee/utils.ts +39 -0
- package/lib/routes/oeeee/web.ts +61 -0
- package/lib/routes/oilchem/index.ts +93 -0
- package/lib/routes/oilchem/namespace.ts +7 -0
- package/lib/routes/oilchem/routes.ts +671 -0
- package/lib/routes/olevod/namespace.ts +7 -0
- package/lib/routes/olevod/vod.ts +49 -0
- package/lib/routes/olevod/vodlist.ts +48 -0
- package/lib/routes/ollama/blog.ts +39 -0
- package/lib/routes/ollama/models.ts +42 -0
- package/lib/routes/ollama/namespace.ts +7 -0
- package/lib/routes/oncc/index.ts +111 -0
- package/lib/routes/oncc/money18.ts +141 -0
- package/lib/routes/oncc/namespace.ts +7 -0
- package/lib/routes/oncc/templates/article.art +2 -0
- package/lib/routes/oncc/templates/money18.art +6 -0
- package/lib/routes/onehu/common.ts +36 -0
- package/lib/routes/onehu/namespace.ts +7 -0
- package/lib/routes/onet/namespace.ts +7 -0
- package/lib/routes/onet/news.ts +86 -0
- package/lib/routes/onet/templates/article.art +5 -0
- package/lib/routes/onet/templates/image.art +9 -0
- package/lib/routes/onet/utils.ts +51 -0
- package/lib/routes/oo-software/changelog.ts +65 -0
- package/lib/routes/oo-software/namespace.ts +7 -0
- package/lib/routes/openai/blog.ts +66 -0
- package/lib/routes/openai/chatgpt.ts +119 -0
- package/lib/routes/openai/common.ts +73 -0
- package/lib/routes/openai/cookbook.ts +77 -0
- package/lib/routes/openai/namespace.ts +7 -0
- package/lib/routes/openai/research.ts +51 -0
- package/lib/routes/openai/templates/article.art +2 -0
- package/lib/routes/openrice/chart.ts +68 -0
- package/lib/routes/openrice/namespace.ts +9 -0
- package/lib/routes/openrice/offers.ts +80 -0
- package/lib/routes/openrice/promos.ts +74 -0
- package/lib/routes/openrice/templates/chart.art +9 -0
- package/lib/routes/openrice/templates/description.art +4 -0
- package/lib/routes/openrice/voting.ts +84 -0
- package/lib/routes/openwrt/namespace.ts +7 -0
- package/lib/routes/openwrt/releases.ts +39 -0
- package/lib/routes/orcid/index.ts +74 -0
- package/lib/routes/orcid/namespace.ts +7 -0
- package/lib/routes/orcid/templates/description.art +3 -0
- package/lib/routes/oreno3d/get-sec-page-data.ts +75 -0
- package/lib/routes/oreno3d/main.ts +183 -0
- package/lib/routes/oreno3d/namespace.ts +10 -0
- package/lib/routes/oreno3d/templates/description.art +13 -0
- package/lib/routes/oschina/namespace.ts +7 -0
- package/lib/routes/oschina/news.ts +158 -0
- package/lib/routes/oschina/topic.ts +78 -0
- package/lib/routes/oschina/user.ts +75 -0
- package/lib/routes/oshwhub/explore.ts +145 -0
- package/lib/routes/oshwhub/namespace.ts +7 -0
- package/lib/routes/oshwhub/templates/description.art +58 -0
- package/lib/routes/osu/beatmaps/packs.ts +54 -0
- package/lib/routes/osu/namespace.ts +7 -0
- package/lib/routes/otobanana/cast.ts +54 -0
- package/lib/routes/otobanana/livestream.ts +54 -0
- package/lib/routes/otobanana/namespace.ts +7 -0
- package/lib/routes/otobanana/templates/description.art +11 -0
- package/lib/routes/otobanana/timeline.ts +54 -0
- package/lib/routes/otobanana/utils.ts +63 -0
- package/lib/routes/ouc/hqsz.ts +90 -0
- package/lib/routes/ouc/it-postgraduate.ts +52 -0
- package/lib/routes/ouc/it-tx.ts +74 -0
- package/lib/routes/ouc/it.ts +73 -0
- package/lib/routes/ouc/jwc.ts +65 -0
- package/lib/routes/ouc/jwgl.ts +71 -0
- package/lib/routes/ouc/namespace.ts +7 -0
- package/lib/routes/ouc/yjs.ts +52 -0
- package/lib/routes/oup/index.ts +85 -0
- package/lib/routes/oup/namespace.ts +7 -0
- package/lib/routes/oup/templates/article.art +2 -0
- package/lib/routes/outagereport/index.ts +71 -0
- package/lib/routes/outagereport/namespace.ts +7 -0
- package/lib/routes/p-articles/contributors.ts +53 -0
- package/lib/routes/p-articles/namespace.ts +14 -0
- package/lib/routes/p-articles/section.ts +60 -0
- package/lib/routes/p-articles/utils.ts +21 -0
- package/lib/routes/panewslab/author.ts +74 -0
- package/lib/routes/panewslab/namespace.ts +7 -0
- package/lib/routes/panewslab/news.ts +44 -0
- package/lib/routes/panewslab/profundity.ts +83 -0
- package/lib/routes/panewslab/topic.ts +74 -0
- package/lib/routes/papers/index.ts +136 -0
- package/lib/routes/papers/namespace.ts +9 -0
- package/lib/routes/papers/templates/description.art +19 -0
- package/lib/routes/paradigm/namespace.ts +7 -0
- package/lib/routes/paradigm/writing.ts +70 -0
- package/lib/routes/parliament/namespace.ts +7 -0
- package/lib/routes/parliament/section77.ts +190 -0
- package/lib/routes/parliament.uk/commonslibrary.ts +55 -0
- package/lib/routes/parliament.uk/lordslibrary.ts +55 -0
- package/lib/routes/parliament.uk/namespace.ts +9 -0
- package/lib/routes/parliament.uk/petitions.ts +191 -0
- package/lib/routes/parliament.uk/templates/description.art +7 -0
- package/lib/routes/patagonia/namespace.ts +7 -0
- package/lib/routes/patagonia/new-arrivals.ts +86 -0
- package/lib/routes/patagonia/templates/product-description.art +4 -0
- package/lib/routes/patreon/feed.ts +126 -0
- package/lib/routes/patreon/namespace.ts +7 -0
- package/lib/routes/patreon/templates/description.art +39 -0
- package/lib/routes/patreon/types.ts +387 -0
- package/lib/routes/paulgraham/article.ts +88 -0
- package/lib/routes/paulgraham/namespace.ts +7 -0
- package/lib/routes/pconline/focus.ts +143 -0
- package/lib/routes/pconline/namespace.ts +11 -0
- package/lib/routes/penguin-random-house/articles.ts +52 -0
- package/lib/routes/penguin-random-house/namespace.ts +7 -0
- package/lib/routes/penguin-random-house/templates/articleHeader.art +5 -0
- package/lib/routes/penguin-random-house/templates/book.art +4 -0
- package/lib/routes/penguin-random-house/thereaddown.ts +52 -0
- package/lib/routes/penguin-random-house/utils.ts +119 -0
- package/lib/routes/people/index.ts +94 -0
- package/lib/routes/people/liuyan.ts +83 -0
- package/lib/routes/people/namespace.ts +7 -0
- package/lib/routes/people/xjpjh.ts +95 -0
- package/lib/routes/peopo/namespace.ts +7 -0
- package/lib/routes/peopo/topic.ts +91 -0
- package/lib/routes/phoronix/index.ts +264 -0
- package/lib/routes/phoronix/namespace.ts +7 -0
- package/lib/routes/pianyivps/namespace.ts +7 -0
- package/lib/routes/pianyivps/rss.ts +35 -0
- package/lib/routes/pianyuan/app.ts +69 -0
- package/lib/routes/pianyuan/namespace.ts +7 -0
- package/lib/routes/pianyuan/search.ts +61 -0
- package/lib/routes/pianyuan/utils.ts +86 -0
- package/lib/routes/picnob/namespace.ts +7 -0
- package/lib/routes/picnob/templates/desc.art +20 -0
- package/lib/routes/picnob/user.ts +155 -0
- package/lib/routes/picnob/utils.ts +18 -0
- package/lib/routes/picuki/namespace.ts +7 -0
- package/lib/routes/picuki/profile.ts +226 -0
- package/lib/routes/picuki/templates/post.art +7 -0
- package/lib/routes/picuki/templates/video.art +5 -0
- package/lib/routes/picuki/utils.ts +24 -0
- package/lib/routes/pikabu/community.ts +45 -0
- package/lib/routes/pikabu/namespace.ts +7 -0
- package/lib/routes/pikabu/templates/video.art +8 -0
- package/lib/routes/pikabu/user.ts +70 -0
- package/lib/routes/pikabu/utils.ts +42 -0
- package/lib/routes/pincong/hot.ts +48 -0
- package/lib/routes/pincong/index.ts +57 -0
- package/lib/routes/pincong/namespace.ts +7 -0
- package/lib/routes/pincong/topic.ts +39 -0
- package/lib/routes/pincong/utils.ts +21 -0
- package/lib/routes/pingwest/namespace.ts +7 -0
- package/lib/routes/pingwest/status.ts +72 -0
- package/lib/routes/pingwest/tag.ts +76 -0
- package/lib/routes/pingwest/user.ts +94 -0
- package/lib/routes/pingwest/utils.ts +89 -0
- package/lib/routes/pinterest/namespace.ts +7 -0
- package/lib/routes/pinterest/types.ts +330 -0
- package/lib/routes/pinterest/user.ts +104 -0
- package/lib/routes/pixabay/namespace.ts +7 -0
- package/lib/routes/pixabay/search.ts +96 -0
- package/lib/routes/pixabay/templates/img.art +1 -0
- package/lib/routes/pixiv/api/get-bookmarks.ts +23 -0
- package/lib/routes/pixiv/api/get-illust-detail.ts +22 -0
- package/lib/routes/pixiv/api/get-illust-follows.ts +20 -0
- package/lib/routes/pixiv/api/get-illusts.ts +22 -0
- package/lib/routes/pixiv/api/get-ranking.ts +30 -0
- package/lib/routes/pixiv/api/get-user-detail.ts +27 -0
- package/lib/routes/pixiv/api/search-illust.ts +24 -0
- package/lib/routes/pixiv/api/search-popular-illust.ts +23 -0
- package/lib/routes/pixiv/bookmarks.ts +66 -0
- package/lib/routes/pixiv/constants.ts +8 -0
- package/lib/routes/pixiv/illustfollow.ts +70 -0
- package/lib/routes/pixiv/namespace.ts +7 -0
- package/lib/routes/pixiv/novel-api/content/nsfw.ts +73 -0
- package/lib/routes/pixiv/novel-api/content/sfw.ts +63 -0
- package/lib/routes/pixiv/novel-api/content/types.ts +254 -0
- package/lib/routes/pixiv/novel-api/content/utils.ts +133 -0
- package/lib/routes/pixiv/novel-api/series/nsfw.ts +84 -0
- package/lib/routes/pixiv/novel-api/series/sfw.ts +70 -0
- package/lib/routes/pixiv/novel-api/series/types.ts +94 -0
- package/lib/routes/pixiv/novel-api/user-novels/nsfw.ts +82 -0
- package/lib/routes/pixiv/novel-api/user-novels/sfw.ts +74 -0
- package/lib/routes/pixiv/novel-api/user-novels/types.ts +133 -0
- package/lib/routes/pixiv/novel-series.ts +52 -0
- package/lib/routes/pixiv/novels.ts +96 -0
- package/lib/routes/pixiv/pixiv-got.ts +65 -0
- package/lib/routes/pixiv/ranking.ts +185 -0
- package/lib/routes/pixiv/search.ts +121 -0
- package/lib/routes/pixiv/token.ts +77 -0
- package/lib/routes/pixiv/user.ts +67 -0
- package/lib/routes/pixiv/utils.ts +20 -0
- package/lib/routes/pixivision/index.ts +85 -0
- package/lib/routes/pixivision/namespace.ts +7 -0
- package/lib/routes/pixivision/utils.ts +86 -0
- package/lib/routes/piyao/jrpy.ts +65 -0
- package/lib/routes/piyao/namespace.ts +7 -0
- package/lib/routes/pkmer/namespace.ts +7 -0
- package/lib/routes/pkmer/recent.ts +61 -0
- package/lib/routes/pku/bbs/hot.ts +85 -0
- package/lib/routes/pku/cls/announcement.ts +68 -0
- package/lib/routes/pku/cls/lecture.ts +50 -0
- package/lib/routes/pku/eecs.ts +73 -0
- package/lib/routes/pku/hr.ts +85 -0
- package/lib/routes/pku/namespace.ts +7 -0
- package/lib/routes/pku/nsd.ts +95 -0
- package/lib/routes/pku/pkuyjs.ts +54 -0
- package/lib/routes/pku/rccp/mzyt.ts +48 -0
- package/lib/routes/pku/scc/recruit.ts +80 -0
- package/lib/routes/pku/ss/admission.ts +41 -0
- package/lib/routes/pku/ss/common.ts +33 -0
- package/lib/routes/pku/ss/notice.ts +30 -0
- package/lib/routes/pku/ss/pg-admin.ts +41 -0
- package/lib/routes/pku/utils.ts +13 -0
- package/lib/routes/playno1/av.ts +68 -0
- package/lib/routes/playno1/namespace.ts +7 -0
- package/lib/routes/playno1/st.ts +65 -0
- package/lib/routes/playno1/utils.ts +29 -0
- package/lib/routes/playpcesor/namespace.ts +7 -0
- package/lib/routes/playpcesor/rss.ts +48 -0
- package/lib/routes/plurk/anonymous.ts +49 -0
- package/lib/routes/plurk/hotlinks.ts +46 -0
- package/lib/routes/plurk/namespace.ts +7 -0
- package/lib/routes/plurk/news.ts +50 -0
- package/lib/routes/plurk/search.ts +47 -0
- package/lib/routes/plurk/top.ts +58 -0
- package/lib/routes/plurk/topic.ts +59 -0
- package/lib/routes/plurk/user.ts +52 -0
- package/lib/routes/plurk/utils.ts +52 -0
- package/lib/routes/pnas/index.ts +121 -0
- package/lib/routes/pnas/namespace.ts +7 -0
- package/lib/routes/pnas/templates/article.art +8 -0
- package/lib/routes/podwise/collections.ts +47 -0
- package/lib/routes/podwise/episodes.ts +119 -0
- package/lib/routes/podwise/namespace.ts +10 -0
- package/lib/routes/pornhub/category-url.ts +52 -0
- package/lib/routes/pornhub/category.ts +65 -0
- package/lib/routes/pornhub/model.ts +54 -0
- package/lib/routes/pornhub/namespace.ts +7 -0
- package/lib/routes/pornhub/pornstar.ts +108 -0
- package/lib/routes/pornhub/search.ts +43 -0
- package/lib/routes/pornhub/templates/description.art +11 -0
- package/lib/routes/pornhub/users.ts +54 -0
- package/lib/routes/pornhub/utils.ts +33 -0
- package/lib/routes/postman/namespace.ts +7 -0
- package/lib/routes/postman/release-notes.ts +53 -0
- package/lib/routes/priconne-redive/namespace.ts +7 -0
- package/lib/routes/priconne-redive/news.ts +181 -0
- package/lib/routes/producthunt/namespace.ts +8 -0
- package/lib/routes/producthunt/templates/descImg.art +5 -0
- package/lib/routes/producthunt/today.ts +73 -0
- package/lib/routes/ps/monthly-games.ts +60 -0
- package/lib/routes/ps/namespace.ts +7 -0
- package/lib/routes/ps/templates/monthly-games.art +1 -0
- package/lib/routes/ps/trophy.ts +105 -0
- package/lib/routes/psyche/namespace.ts +7 -0
- package/lib/routes/psyche/templates/essay.art +3 -0
- package/lib/routes/psyche/templates/video.art +10 -0
- package/lib/routes/psyche/topic.ts +46 -0
- package/lib/routes/psyche/type.ts +53 -0
- package/lib/routes/psyche/utils.ts +107 -0
- package/lib/routes/pts/curations.ts +72 -0
- package/lib/routes/pts/index.ts +81 -0
- package/lib/routes/pts/live.ts +77 -0
- package/lib/routes/pts/namespace.ts +7 -0
- package/lib/routes/pts/projects.ts +72 -0
- package/lib/routes/pts/templates/description.art +6 -0
- package/lib/routes/pts/templates/live.art +6 -0
- package/lib/routes/pubmed/namespace.ts +7 -0
- package/lib/routes/pubmed/templates/description.art +7 -0
- package/lib/routes/pubmed/trending.ts +70 -0
- package/lib/routes/pubscholar/explore.ts +62 -0
- package/lib/routes/pubscholar/namespace.ts +8 -0
- package/lib/routes/pubscholar/types.ts +41 -0
- package/lib/routes/pubscholar/utils.ts +44 -0
- package/lib/routes/pumc/mdadmission.ts +88 -0
- package/lib/routes/pumc/namespace.ts +7 -0
- package/lib/routes/putty/changes.ts +61 -0
- package/lib/routes/putty/namespace.ts +7 -0
- package/lib/routes/pwc/namespace.ts +7 -0
- package/lib/routes/pwc/sustainability.ts +88 -0
- package/lib/routes/qbitai/category.ts +68 -0
- package/lib/routes/qbitai/namespace.ts +7 -0
- package/lib/routes/qbitai/tag.ts +51 -0
- package/lib/routes/qbittorrent/namespace.ts +7 -0
- package/lib/routes/qbittorrent/news.ts +82 -0
- package/lib/routes/qdu/houqin.ts +89 -0
- package/lib/routes/qdu/jwc.ts +78 -0
- package/lib/routes/qdu/namespace.ts +7 -0
- package/lib/routes/qianp/namespace.ts +7 -0
- package/lib/routes/qianp/news.ts +66 -0
- package/lib/routes/qianp/utils.ts +17 -0
- package/lib/routes/qianzhan/column.ts +73 -0
- package/lib/routes/qianzhan/namespace.ts +7 -0
- package/lib/routes/qianzhan/rank.ts +70 -0
- package/lib/routes/qiche365/namespace.ts +6 -0
- package/lib/routes/qiche365/recall.ts +53 -0
- package/lib/routes/qidian/author.ts +68 -0
- package/lib/routes/qidian/chapter.ts +58 -0
- package/lib/routes/qidian/forum.ts +62 -0
- package/lib/routes/qidian/free-next.ts +68 -0
- package/lib/routes/qidian/free.ts +71 -0
- package/lib/routes/qidian/namespace.ts +7 -0
- package/lib/routes/qidian/templates/description.art +5 -0
- package/lib/routes/qingting/channel.ts +52 -0
- package/lib/routes/qingting/namespace.ts +7 -0
- package/lib/routes/qingting/podcast.ts +115 -0
- package/lib/routes/qipamaijia/index.ts +58 -0
- package/lib/routes/qipamaijia/namespace.ts +7 -0
- package/lib/routes/qiyoujiage/namespace.ts +7 -0
- package/lib/routes/qiyoujiage/price.ts +36 -0
- package/lib/routes/qlu/namespace.ts +7 -0
- package/lib/routes/qlu/notice.ts +75 -0
- package/lib/routes/qm120/namespace.ts +7 -0
- package/lib/routes/qm120/news.ts +87 -0
- package/lib/routes/qoo-app/apps/card.ts +57 -0
- package/lib/routes/qoo-app/apps/comment.ts +68 -0
- package/lib/routes/qoo-app/apps/note.ts +67 -0
- package/lib/routes/qoo-app/apps/post.ts +71 -0
- package/lib/routes/qoo-app/namespace.ts +7 -0
- package/lib/routes/qoo-app/news.ts +63 -0
- package/lib/routes/qoo-app/notes/note.ts +65 -0
- package/lib/routes/qoo-app/notes/topic.ts +28 -0
- package/lib/routes/qoo-app/notes/user.ts +39 -0
- package/lib/routes/qoo-app/templates/comment.art +3 -0
- package/lib/routes/qoo-app/templates/note.art +5 -0
- package/lib/routes/qoo-app/user/app-comment.ts +63 -0
- package/lib/routes/qoo-app/utils.ts +48 -0
- package/lib/routes/qq/ac/comic.ts +57 -0
- package/lib/routes/qq/ac/rank.ts +51 -0
- package/lib/routes/qq/ac/templates/description.art +9 -0
- package/lib/routes/qq/ac/utils.ts +72 -0
- package/lib/routes/qq/cfhd/index.ts +140 -0
- package/lib/routes/qq/fact/index.ts +90 -0
- package/lib/routes/qq/kg/cache.ts +29 -0
- package/lib/routes/qq/kg/reply.ts +40 -0
- package/lib/routes/qq/kg/user.ts +69 -0
- package/lib/routes/qq/namespace.ts +9 -0
- package/lib/routes/qq/pd/guild.ts +146 -0
- package/lib/routes/qq/pd/types.ts +82 -0
- package/lib/routes/qq/pd/utils.ts +119 -0
- package/lib/routes/qq/templates/article.art +19 -0
- package/lib/routes/qq/weread/category.ts +120 -0
- package/lib/routes/qq88/index.ts +83 -0
- package/lib/routes/qq88/namespace.ts +7 -0
- package/lib/routes/qqorw/index.ts +105 -0
- package/lib/routes/qqorw/namespace.ts +7 -0
- package/lib/routes/qstheory/index.ts +121 -0
- package/lib/routes/qstheory/magazine.ts +64 -0
- package/lib/routes/qstheory/namespace.ts +7 -0
- package/lib/routes/qstheory/utils.ts +25 -0
- package/lib/routes/questmobile/namespace.ts +7 -0
- package/lib/routes/questmobile/report.ts +260 -0
- package/lib/routes/questmobile/templates/description.art +17 -0
- package/lib/routes/questn/community.ts +76 -0
- package/lib/routes/questn/events.ts +101 -0
- package/lib/routes/questn/namespace.ts +7 -0
- package/lib/routes/questn/util.ts +16 -0
- package/lib/routes/quicker/namespace.ts +7 -0
- package/lib/routes/quicker/qa.ts +104 -0
- package/lib/routes/quicker/share.ts +93 -0
- package/lib/routes/quicker/user.ts +85 -0
- package/lib/routes/quicker/versions.ts +45 -0
- package/lib/routes/qust/jw.ts +55 -0
- package/lib/routes/qust/namespace.ts +7 -0
- package/lib/routes/qweather/3days.ts +104 -0
- package/lib/routes/qweather/namespace.ts +7 -0
- package/lib/routes/qweather/now.ts +77 -0
- package/lib/routes/qweather/templates/3days.art +22 -0
- package/lib/routes/qweather/templates/now.art +16 -0
- package/lib/routes/qztc/home/index.ts +100 -0
- package/lib/routes/qztc/jwc/index.ts +120 -0
- package/lib/routes/qztc/namespace.ts +7 -0
- package/lib/routes/qztc/sjxy/index.ts +120 -0
- package/lib/routes/radio/album.ts +119 -0
- package/lib/routes/radio/index.ts +86 -0
- package/lib/routes/radio/namespace.ts +7 -0
- package/lib/routes/radio/templates/description.art +8 -0
- package/lib/routes/radio/zhibo.ts +109 -0
- package/lib/routes/radio-canada/latest.ts +78 -0
- package/lib/routes/radio-canada/namespace.ts +7 -0
- package/lib/routes/rarehistoricalphotos/index.ts +43 -0
- package/lib/routes/rarehistoricalphotos/namespace.ts +7 -0
- package/lib/routes/rattibha/namespace.ts +7 -0
- package/lib/routes/rattibha/user.ts +70 -0
- package/lib/routes/rawkuma/manga.ts +109 -0
- package/lib/routes/rawkuma/namespace.ts +7 -0
- package/lib/routes/rawkuma/templates/description.art +3 -0
- package/lib/routes/raycast/changelog.ts +54 -0
- package/lib/routes/raycast/namespace.ts +8 -0
- package/lib/routes/react/blog.ts +57 -0
- package/lib/routes/react/namespace.ts +7 -0
- package/lib/routes/reactiflux/namespace.ts +8 -0
- package/lib/routes/reactiflux/transcripts.ts +103 -0
- package/lib/routes/reactnewsletter/namespace.ts +7 -0
- package/lib/routes/reactnewsletter/reactnewsletter.ts +40 -0
- package/lib/routes/readhub/daily.ts +72 -0
- package/lib/routes/readhub/index.ts +88 -0
- package/lib/routes/readhub/namespace.ts +7 -0
- package/lib/routes/readhub/templates/description.art +40 -0
- package/lib/routes/readhub/util.ts +67 -0
- package/lib/routes/readwise/list.ts +152 -0
- package/lib/routes/readwise/namespace.ts +7 -0
- package/lib/routes/rebase/geekdaily.ts +35 -0
- package/lib/routes/rebase/namespace.ts +7 -0
- package/lib/routes/remnote/changelog.ts +57 -0
- package/lib/routes/remnote/namespace.ts +7 -0
- package/lib/routes/researchgate/namespace.ts +7 -0
- package/lib/routes/researchgate/publications.ts +86 -0
- package/lib/routes/resonac/namespace.ts +7 -0
- package/lib/routes/resonac/products.ts +85 -0
- package/lib/routes/reuters/common.ts +255 -0
- package/lib/routes/reuters/investigates.ts +60 -0
- package/lib/routes/reuters/namespace.ts +10 -0
- package/lib/routes/reuters/templates/description.art +44 -0
- package/lib/routes/rfa/index.ts +78 -0
- package/lib/routes/rfa/namespace.ts +7 -0
- package/lib/routes/rfi/namespace.ts +7 -0
- package/lib/routes/rfi/news.ts +85 -0
- package/lib/routes/right/forum.ts +85 -0
- package/lib/routes/right/namespace.ts +7 -0
- package/lib/routes/robots.txt.ts +13 -0
- package/lib/routes/rodong/namespace.ts +7 -0
- package/lib/routes/rodong/news.ts +75 -0
- package/lib/routes/routledge/book-series.ts +95 -0
- package/lib/routes/routledge/namespace.ts +7 -0
- package/lib/routes/routledge/templates/description.art +7 -0
- package/lib/routes/rsc/journal.ts +136 -0
- package/lib/routes/rsc/namespace.ts +7 -0
- package/lib/routes/rsc/templates/image.art +5 -0
- package/lib/routes/rss3/index.ts +162 -0
- package/lib/routes/rss3/interfaces/metadata.ts +67 -0
- package/lib/routes/rss3/namespace.ts +8 -0
- package/lib/routes/rsshub/namespace.ts +7 -0
- package/lib/routes/rsshub/referer-map.ts +14 -0
- package/lib/routes/rsshub/routes.ts +105 -0
- package/lib/routes/rsshub/transform/html.ts +158 -0
- package/lib/routes/rsshub/transform/json.ts +119 -0
- package/lib/routes/rsshub/transform/sitemap.ts +59 -0
- package/lib/routes/ruancan/category.ts +34 -0
- package/lib/routes/ruancan/index.ts +22 -0
- package/lib/routes/ruancan/namespace.ts +7 -0
- package/lib/routes/ruancan/search.ts +34 -0
- package/lib/routes/ruancan/user.ts +22 -0
- package/lib/routes/ruancan/utils.ts +68 -0
- package/lib/routes/ruc/ai.ts +87 -0
- package/lib/routes/ruc/hr.ts +89 -0
- package/lib/routes/ruc/namespace.ts +10 -0
- package/lib/routes/runtrail/namespace.ts +7 -0
- package/lib/routes/runtrail/posts.ts +49 -0
- package/lib/routes/rustcc/jobs.ts +64 -0
- package/lib/routes/rustcc/namespace.ts +7 -0
- package/lib/routes/rustcc/news.ts +55 -0
- package/lib/routes/sakurazaka46/blog.ts +114 -0
- package/lib/routes/sakurazaka46/namespace.ts +7 -0
- package/lib/routes/sakurazaka46/news.ts +77 -0
- package/lib/routes/samd/namespace.ts +7 -0
- package/lib/routes/samd/news.ts +74 -0
- package/lib/routes/samsung/namespace.ts +7 -0
- package/lib/routes/samsung/research/blog.ts +75 -0
- package/lib/routes/sara/index.ts +66 -0
- package/lib/routes/sara/namespace.ts +7 -0
- package/lib/routes/saraba1st/digest.ts +115 -0
- package/lib/routes/saraba1st/namespace.ts +7 -0
- package/lib/routes/saraba1st/templates/digest.art +5 -0
- package/lib/routes/saraba1st/thread.ts +83 -0
- package/lib/routes/sass/gs/index.ts +74 -0
- package/lib/routes/sass/namespace.ts +7 -0
- package/lib/routes/scau/namespace.ts +7 -0
- package/lib/routes/scau/yjs.ts +52 -0
- package/lib/routes/scau/yjsy.ts +52 -0
- package/lib/routes/science/blogs.ts +96 -0
- package/lib/routes/science/cover.ts +100 -0
- package/lib/routes/science/current.ts +80 -0
- package/lib/routes/science/early.ts +61 -0
- package/lib/routes/science/namespace.ts +7 -0
- package/lib/routes/science/templates/article.art +2 -0
- package/lib/routes/science/templates/cover.art +2 -0
- package/lib/routes/science/utils.ts +63 -0
- package/lib/routes/sciencedirect/cf-email.ts +39 -0
- package/lib/routes/sciencedirect/journal.ts +94 -0
- package/lib/routes/sciencedirect/namespace.ts +7 -0
- package/lib/routes/sciencenet/blog.ts +98 -0
- package/lib/routes/sciencenet/namespace.ts +7 -0
- package/lib/routes/sciencenet/user.ts +92 -0
- package/lib/routes/scmp/coronavirus.ts +22 -0
- package/lib/routes/scmp/index.ts +87 -0
- package/lib/routes/scmp/namespace.ts +7 -0
- package/lib/routes/scmp/topic.ts +91 -0
- package/lib/routes/scmp/utils.ts +87 -0
- package/lib/routes/scnu/announcements-router.ts +1 -0
- package/lib/routes/scnu/cs/match.ts +61 -0
- package/lib/routes/scnu/jw.ts +58 -0
- package/lib/routes/scnu/library.ts +58 -0
- package/lib/routes/scnu/namespace.ts +7 -0
- package/lib/routes/scnu/news-router.ts +1 -0
- package/lib/routes/scnu/physics-school-announcements-and-news.ts +95 -0
- package/lib/routes/scnu/research-news-router.ts +1 -0
- package/lib/routes/scnu/ss.ts +53 -0
- package/lib/routes/scnu/yjs.ts +49 -0
- package/lib/routes/sctv/namespace.ts +7 -0
- package/lib/routes/sctv/programme.ts +156 -0
- package/lib/routes/sctv/templates/description.art +3 -0
- package/lib/routes/scu/jwc/tzgg.ts +75 -0
- package/lib/routes/scu/namespace.ts +7 -0
- package/lib/routes/scu/scupi/_utils.ts +62 -0
- package/lib/routes/scu/scupi/notice.ts +41 -0
- package/lib/routes/scut/gzic/media.ts +71 -0
- package/lib/routes/scut/gzic/news.ts +65 -0
- package/lib/routes/scut/gzic/notice.ts +88 -0
- package/lib/routes/scut/jwc/news.ts +131 -0
- package/lib/routes/scut/jwc/notice.ts +146 -0
- package/lib/routes/scut/jwc/school.ts +144 -0
- package/lib/routes/scut/namespace.ts +7 -0
- package/lib/routes/scut/scet/notice.ts +50 -0
- package/lib/routes/scut/seie/news-ccenter.ts +81 -0
- package/lib/routes/scut/smae/notice.ts +77 -0
- package/lib/routes/scut/yjs.ts +55 -0
- package/lib/routes/scvtc/namespace.ts +7 -0
- package/lib/routes/scvtc/xygg.ts +66 -0
- package/lib/routes/sdu/cmse.ts +82 -0
- package/lib/routes/sdu/cs/index.ts +114 -0
- package/lib/routes/sdu/cs/yjsgz.ts +85 -0
- package/lib/routes/sdu/data.ts +110 -0
- package/lib/routes/sdu/epe.ts +78 -0
- package/lib/routes/sdu/extractor/index.ts +21 -0
- package/lib/routes/sdu/extractor/sdrj.ts +23 -0
- package/lib/routes/sdu/extractor/view.ts +23 -0
- package/lib/routes/sdu/extractor/wh/jwc.ts +26 -0
- package/lib/routes/sdu/extractor/wh/news.ts +23 -0
- package/lib/routes/sdu/gjsw.ts +80 -0
- package/lib/routes/sdu/mech.ts +83 -0
- package/lib/routes/sdu/namespace.ts +7 -0
- package/lib/routes/sdu/qd/xszxqd.ts +98 -0
- package/lib/routes/sdu/qd/xyb.ts +82 -0
- package/lib/routes/sdu/sc.ts +84 -0
- package/lib/routes/sdu/wh/jwc.ts +65 -0
- package/lib/routes/sdu/wh/news.ts +61 -0
- package/lib/routes/sdu/ygb.ts +90 -0
- package/lib/routes/sdust/namespace.ts +7 -0
- package/lib/routes/sdust/yjsy/zhaosheng.ts +81 -0
- package/lib/routes/sdzk/index.ts +80 -0
- package/lib/routes/sdzk/namespace.ts +7 -0
- package/lib/routes/sec-in/index.ts +27 -0
- package/lib/routes/sec-in/namespace.ts +7 -0
- package/lib/routes/sec-wiki/namespace.ts +7 -0
- package/lib/routes/sec-wiki/weekly.ts +35 -0
- package/lib/routes/secrss/author.ts +55 -0
- package/lib/routes/secrss/category.ts +57 -0
- package/lib/routes/secrss/namespace.ts +7 -0
- package/lib/routes/seekingalpha/index.ts +120 -0
- package/lib/routes/seekingalpha/namespace.ts +7 -0
- package/lib/routes/seekingalpha/templates/summary.art +4 -0
- package/lib/routes/sega/maimaidx.ts +64 -0
- package/lib/routes/sega/namespace.ts +7 -0
- package/lib/routes/sega/pjsekai.ts +75 -0
- package/lib/routes/segmentfault/blogs.ts +46 -0
- package/lib/routes/segmentfault/channel.ts +59 -0
- package/lib/routes/segmentfault/namespace.ts +7 -0
- package/lib/routes/segmentfault/user.ts +48 -0
- package/lib/routes/segmentfault/utils.ts +57 -0
- package/lib/routes/sehuatang/index.ts +164 -0
- package/lib/routes/sehuatang/namespace.ts +7 -0
- package/lib/routes/sehuatang/user.ts +138 -0
- package/lib/routes/sensortower/blog.ts +102 -0
- package/lib/routes/sensortower/namespace.ts +7 -0
- package/lib/routes/sensortower/templates/description.art +9 -0
- package/lib/routes/setn/index.ts +138 -0
- package/lib/routes/setn/namespace.ts +7 -0
- package/lib/routes/seu/cse/index.ts +91 -0
- package/lib/routes/seu/namespace.ts +7 -0
- package/lib/routes/seu/radio/academic.ts +69 -0
- package/lib/routes/seu/yjs.ts +63 -0
- package/lib/routes/seu/yzb/index.ts +79 -0
- package/lib/routes/sfacg/namespace.ts +7 -0
- package/lib/routes/sfacg/novel-chapter.ts +76 -0
- package/lib/routes/shcstheatre/namespace.ts +7 -0
- package/lib/routes/shcstheatre/programs.ts +68 -0
- package/lib/routes/shcstheatre/templates/description.art +65 -0
- package/lib/routes/shiep/config.ts +61 -0
- package/lib/routes/shiep/index.ts +121 -0
- package/lib/routes/shiep/namespace.ts +7 -0
- package/lib/routes/shiep/radar.ts +317 -0
- package/lib/routes/shiep/templates/description.art +1 -0
- package/lib/routes/shisu/en.ts +75 -0
- package/lib/routes/shisu/namespace.ts +7 -0
- package/lib/routes/shisu/news.ts +92 -0
- package/lib/routes/shmeea/index.ts +80 -0
- package/lib/routes/shmeea/namespace.ts +8 -0
- package/lib/routes/shmeea/self-study.ts +87 -0
- package/lib/routes/shmtu/jwc.ts +85 -0
- package/lib/routes/shmtu/namespace.ts +7 -0
- package/lib/routes/shmtu/portal.ts +112 -0
- package/lib/routes/shmtu/templates/portal.art +30 -0
- package/lib/routes/shmtu/www.ts +86 -0
- package/lib/routes/shoac/namespace.ts +7 -0
- package/lib/routes/shoac/recent-show.ts +101 -0
- package/lib/routes/shoac/templates/detail.art +25 -0
- package/lib/routes/shopback/namespace.ts +7 -0
- package/lib/routes/shopback/store.ts +61 -0
- package/lib/routes/shopify/apps/[handle].reviews.ts +78 -0
- package/lib/routes/shopify/apps/const.ts +1 -0
- package/lib/routes/shopify/apps/search.ts +82 -0
- package/lib/routes/shopify/namespace.ts +7 -0
- package/lib/routes/shoppingdesign/namespace.ts +7 -0
- package/lib/routes/shoppingdesign/posts.ts +69 -0
- package/lib/routes/showstart/artist.ts +43 -0
- package/lib/routes/showstart/brand.ts +43 -0
- package/lib/routes/showstart/const.ts +4 -0
- package/lib/routes/showstart/event.ts +43 -0
- package/lib/routes/showstart/namespace.ts +7 -0
- package/lib/routes/showstart/search.ts +104 -0
- package/lib/routes/showstart/service.ts +186 -0
- package/lib/routes/showstart/site.ts +41 -0
- package/lib/routes/showstart/utils.ts +87 -0
- package/lib/routes/shu/global.ts +94 -0
- package/lib/routes/shu/gs.ts +106 -0
- package/lib/routes/shu/index.ts +94 -0
- package/lib/routes/shu/jwb.ts +63 -0
- package/lib/routes/shu/namespace.ts +8 -0
- package/lib/routes/shu/society.ts +62 -0
- package/lib/routes/shu/xykd.ts +98 -0
- package/lib/routes/shuiguopai/index.ts +105 -0
- package/lib/routes/shuiguopai/namespace.ts +7 -0
- package/lib/routes/shuiguopai/templates/description.art +8 -0
- package/lib/routes/sicau/dky.ts +81 -0
- package/lib/routes/sicau/jiaowu.ts +77 -0
- package/lib/routes/sicau/jk.ts +210 -0
- package/lib/routes/sicau/namespace.ts +7 -0
- package/lib/routes/sicau/yan.ts +81 -0
- package/lib/routes/sicau/zsjy.ts +82 -0
- package/lib/routes/sigsac/ccs.ts +77 -0
- package/lib/routes/sigsac/namespace.ts +7 -0
- package/lib/routes/simpleinfo/index.ts +90 -0
- package/lib/routes/simpleinfo/namespace.ts +7 -0
- package/lib/routes/simpleinfo/templates/description.art +6 -0
- package/lib/routes/sina/chuangshiji.ts +43 -0
- package/lib/routes/sina/discovery.ts +55 -0
- package/lib/routes/sina/finance/china.ts +55 -0
- package/lib/routes/sina/finance/stock/usstock.ts +67 -0
- package/lib/routes/sina/namespace.ts +7 -0
- package/lib/routes/sina/rollnews.ts +54 -0
- package/lib/routes/sina/sports.ts +55 -0
- package/lib/routes/sina/templates/slide.art +3 -0
- package/lib/routes/sina/templates/video.art +5 -0
- package/lib/routes/sina/utils.ts +103 -0
- package/lib/routes/sinchew/index.ts +88 -0
- package/lib/routes/sinchew/namespace.ts +7 -0
- package/lib/routes/sinchew/templates/images.art +4 -0
- package/lib/routes/sis001/author.ts +55 -0
- package/lib/routes/sis001/common.ts +73 -0
- package/lib/routes/sis001/forum.ts +57 -0
- package/lib/routes/sis001/namespace.ts +10 -0
- package/lib/routes/sjtu/gs.ts +101 -0
- package/lib/routes/sjtu/jwc.ts +146 -0
- package/lib/routes/sjtu/namespace.ts +7 -0
- package/lib/routes/sjtu/seiee/academic.ts +17 -0
- package/lib/routes/sjtu/seiee/bjwb.ts +44 -0
- package/lib/routes/sjtu/seiee/index.ts +97 -0
- package/lib/routes/sjtu/seiee/utils.ts +41 -0
- package/lib/routes/sjtu/seiee/xsb.ts +52 -0
- package/lib/routes/sjtu/templates/activity.art +6 -0
- package/lib/routes/sjtu/tongqu/activity.ts +69 -0
- package/lib/routes/sjtu/yzb/zkxx.ts +74 -0
- package/lib/routes/skeb/following-creators.ts +52 -0
- package/lib/routes/skeb/following-works.ts +52 -0
- package/lib/routes/skeb/friend-works.ts +52 -0
- package/lib/routes/skeb/index.ts +131 -0
- package/lib/routes/skeb/namespace.ts +7 -0
- package/lib/routes/skeb/search.ts +77 -0
- package/lib/routes/skeb/templates/creator.art +8 -0
- package/lib/routes/skeb/templates/work.art +10 -0
- package/lib/routes/skeb/utils.ts +155 -0
- package/lib/routes/skeb/works.ts +88 -0
- package/lib/routes/skebetter/illust.ts +83 -0
- package/lib/routes/skebetter/index.ts +83 -0
- package/lib/routes/skebetter/manga.ts +65 -0
- package/lib/routes/skebetter/namespace.ts +7 -0
- package/lib/routes/skebetter/utils.ts +72 -0
- package/lib/routes/sketis/isabelle-dev/blog/index.ts +77 -0
- package/lib/routes/sketis/namespace.ts +7 -0
- package/lib/routes/skysports/namespace.ts +7 -0
- package/lib/routes/skysports/news.ts +75 -0
- package/lib/routes/slowmist/namespace.ts +7 -0
- package/lib/routes/slowmist/slowmist.ts +77 -0
- package/lib/routes/smashingmagazine/category.ts +125 -0
- package/lib/routes/smashingmagazine/namespace.ts +7 -0
- package/lib/routes/smzdm/article.ts +68 -0
- package/lib/routes/smzdm/baoliao.ts +68 -0
- package/lib/routes/smzdm/haowen-fenlei.ts +80 -0
- package/lib/routes/smzdm/haowen.ts +84 -0
- package/lib/routes/smzdm/keyword.ts +62 -0
- package/lib/routes/smzdm/namespace.ts +10 -0
- package/lib/routes/smzdm/product.ts +85 -0
- package/lib/routes/smzdm/ranking.ts +252 -0
- package/lib/routes/snowpeak/namespace.ts +7 -0
- package/lib/routes/snowpeak/templates/new-arrivals.art +11 -0
- package/lib/routes/snowpeak/us-new-arrivals.ts +73 -0
- package/lib/routes/sobooks/date.ts +32 -0
- package/lib/routes/sobooks/index.ts +42 -0
- package/lib/routes/sobooks/namespace.ts +7 -0
- package/lib/routes/sobooks/tag.ts +41 -0
- package/lib/routes/sobooks/utils.ts +52 -0
- package/lib/routes/sogou/doodles.ts +45 -0
- package/lib/routes/sogou/namespace.ts +7 -0
- package/lib/routes/sogou/search.ts +77 -0
- package/lib/routes/sogou/templates/description.art +6 -0
- package/lib/routes/sohu/mp.ts +227 -0
- package/lib/routes/sohu/namespace.ts +7 -0
- package/lib/routes/sohu/templates/video.art +7 -0
- package/lib/routes/solidot/_article.ts +50 -0
- package/lib/routes/solidot/main.ts +87 -0
- package/lib/routes/solidot/namespace.ts +7 -0
- package/lib/routes/sony/downloads.ts +75 -0
- package/lib/routes/sony/namespace.ts +7 -0
- package/lib/routes/sony/templates/software-description.art +4 -0
- package/lib/routes/sorrycc/index.ts +85 -0
- package/lib/routes/sorrycc/namespace.ts +7 -0
- package/lib/routes/sorrycc/types.ts +13 -0
- package/lib/routes/soundofhope/channel.ts +70 -0
- package/lib/routes/soundofhope/namespace.ts +7 -0
- package/lib/routes/soundon/namespace.ts +7 -0
- package/lib/routes/soundon/podcast.ts +80 -0
- package/lib/routes/soundon/types.ts +67 -0
- package/lib/routes/sourceforge/index.ts +55 -0
- package/lib/routes/sourceforge/namespace.ts +7 -0
- package/lib/routes/southcn/namespace.ts +7 -0
- package/lib/routes/southcn/nfapp/column.ts +75 -0
- package/lib/routes/southcn/nfapp/reporter.ts +57 -0
- package/lib/routes/southcn/nfapp/utils.ts +21 -0
- package/lib/routes/southcn/templates/description.art +6 -0
- package/lib/routes/spankbang/namespace.ts +7 -0
- package/lib/routes/spankbang/new-videos.ts +90 -0
- package/lib/routes/spankbang/templates/video.art +7 -0
- package/lib/routes/spglobal/namespace.ts +7 -0
- package/lib/routes/spglobal/ratings.ts +64 -0
- package/lib/routes/spotify/artist.ts +69 -0
- package/lib/routes/spotify/artists-top.ts +57 -0
- package/lib/routes/spotify/namespace.ts +7 -0
- package/lib/routes/spotify/playlist.ts +61 -0
- package/lib/routes/spotify/saved.ts +68 -0
- package/lib/routes/spotify/show.ts +73 -0
- package/lib/routes/spotify/tracks-top.ts +57 -0
- package/lib/routes/spotify/utils.ts +58 -0
- package/lib/routes/springer/journal.ts +98 -0
- package/lib/routes/springer/namespace.ts +7 -0
- package/lib/routes/springer/templates/description.art +12 -0
- package/lib/routes/sputniknews/index.ts +160 -0
- package/lib/routes/sputniknews/namespace.ts +7 -0
- package/lib/routes/sqmc/namespace.ts +7 -0
- package/lib/routes/sqmc/www.ts +77 -0
- package/lib/routes/sse/convert.ts +58 -0
- package/lib/routes/sse/disclosure.ts +66 -0
- package/lib/routes/sse/inquire.ts +73 -0
- package/lib/routes/sse/namespace.ts +7 -0
- package/lib/routes/sse/renewal.ts +85 -0
- package/lib/routes/sse/sselawsrules.ts +370 -0
- package/lib/routes/sse/templates/inquire.art +7 -0
- package/lib/routes/sse/templates/renewal.art +13 -0
- package/lib/routes/ssm/namespace.ts +7 -0
- package/lib/routes/ssm/news.ts +66 -0
- package/lib/routes/ssm/templates/news.art +1 -0
- package/lib/routes/sspai/activity.ts +108 -0
- package/lib/routes/sspai/author.ts +89 -0
- package/lib/routes/sspai/bookmarks.ts +65 -0
- package/lib/routes/sspai/column.ts +87 -0
- package/lib/routes/sspai/index.ts +69 -0
- package/lib/routes/sspai/matrix.ts +70 -0
- package/lib/routes/sspai/namespace.ts +7 -0
- package/lib/routes/sspai/prime-community.ts +83 -0
- package/lib/routes/sspai/series-update.ts +61 -0
- package/lib/routes/sspai/series.ts +73 -0
- package/lib/routes/sspai/shortcuts-gallery.ts +54 -0
- package/lib/routes/sspai/tag.ts +73 -0
- package/lib/routes/sspai/topic.ts +81 -0
- package/lib/routes/sspai/topics.ts +64 -0
- package/lib/routes/sspu/jwc.ts +58 -0
- package/lib/routes/sspu/namespace.ts +7 -0
- package/lib/routes/sspu/pe.ts +80 -0
- package/lib/routes/startuplatte/index.ts +84 -0
- package/lib/routes/startuplatte/namespace.ts +7 -0
- package/lib/routes/stbu/jsjxy.ts +83 -0
- package/lib/routes/stbu/namespace.ts +7 -0
- package/lib/routes/stbu/xyxw.ts +78 -0
- package/lib/routes/stcn/index.ts +159 -0
- package/lib/routes/stcn/namespace.ts +7 -0
- package/lib/routes/stdaily/digitalpaper.ts +148 -0
- package/lib/routes/stdaily/namespace.ts +7 -0
- package/lib/routes/stdaily/templates/description.art +16 -0
- package/lib/routes/steam/appcommunityfeed.ts +92 -0
- package/lib/routes/steam/namespace.ts +7 -0
- package/lib/routes/steam/search.ts +71 -0
- package/lib/routes/steam/sharefile-changelog.ts +65 -0
- package/lib/routes/steam/templates/appcommunityfeed-description.art +4 -0
- package/lib/routes/steam/templates/workshop-search-description.art +5 -0
- package/lib/routes/steam/workshop-search.ts +109 -0
- package/lib/routes/stheadline/namespace.ts +7 -0
- package/lib/routes/stheadline/std/realtime.ts +57 -0
- package/lib/routes/stockedge/daily-news.ts +56 -0
- package/lib/routes/stockedge/namespace.ts +7 -0
- package/lib/routes/stockedge/utils.ts +30 -0
- package/lib/routes/storm/index.ts +91 -0
- package/lib/routes/storm/namespace.ts +7 -0
- package/lib/routes/storyfm/episodes.ts +92 -0
- package/lib/routes/storyfm/index.ts +69 -0
- package/lib/routes/storyfm/namespace.ts +7 -0
- package/lib/routes/storyfm/templates/description.art +6 -0
- package/lib/routes/straitstimes/index.ts +135 -0
- package/lib/routes/straitstimes/namespace.ts +8 -0
- package/lib/routes/straitstimes/templates/description.art +27 -0
- package/lib/routes/stratechery/index.ts +28 -0
- package/lib/routes/stratechery/namespace.ts +7 -0
- package/lib/routes/stream-capital/namespace.ts +7 -0
- package/lib/routes/stream-capital/search.ts +79 -0
- package/lib/routes/stream-capital/types.ts +44 -0
- package/lib/routes/stream-capital/utils.ts +18 -0
- package/lib/routes/studygolang/go.ts +29 -0
- package/lib/routes/studygolang/jobs.ts +24 -0
- package/lib/routes/studygolang/namespace.ts +7 -0
- package/lib/routes/studygolang/utils.ts +76 -0
- package/lib/routes/studygolang/weekly.ts +24 -0
- package/lib/routes/subhd/index.ts +88 -0
- package/lib/routes/subhd/namespace.ts +7 -0
- package/lib/routes/supchina/index.ts +83 -0
- package/lib/routes/supchina/namespace.ts +7 -0
- package/lib/routes/supchina/podcasts.ts +94 -0
- package/lib/routes/surfshark/blog.ts +103 -0
- package/lib/routes/surfshark/namespace.ts +7 -0
- package/lib/routes/surfshark/templates/description.art +5 -0
- package/lib/routes/sustainabilitymag/articles.ts +146 -0
- package/lib/routes/sustainabilitymag/namespace.ts +7 -0
- package/lib/routes/sustech/bidding.ts +59 -0
- package/lib/routes/sustech/namespace.ts +7 -0
- package/lib/routes/sustech/newshub-zh.ts +64 -0
- package/lib/routes/sustech/yjs.ts +54 -0
- package/lib/routes/swissinfo/index.ts +98 -0
- package/lib/routes/swissinfo/namespace.ts +7 -0
- package/lib/routes/swjtu/gsee/yjs.ts +76 -0
- package/lib/routes/swjtu/jtys/yjs.ts +76 -0
- package/lib/routes/swjtu/jwc.ts +93 -0
- package/lib/routes/swjtu/jyzpxx.ts +54 -0
- package/lib/routes/swjtu/namespace.ts +7 -0
- package/lib/routes/swjtu/scai/bks.ts +76 -0
- package/lib/routes/swjtu/templates/job_desc.art +19 -0
- package/lib/routes/swjtu/templates/job_detail.art +21 -0
- package/lib/routes/swjtu/utils.ts +32 -0
- package/lib/routes/swjtu/xg.ts +112 -0
- package/lib/routes/swpu/bgw.ts +86 -0
- package/lib/routes/swpu/cjxy.ts +83 -0
- package/lib/routes/swpu/dean.ts +87 -0
- package/lib/routes/swpu/dxy.ts +89 -0
- package/lib/routes/swpu/is.ts +83 -0
- package/lib/routes/swpu/namespace.ts +7 -0
- package/lib/routes/swpu/scs.ts +86 -0
- package/lib/routes/swpu/utils.ts +20 -0
- package/lib/routes/sycl/feeds.ts +47 -0
- package/lib/routes/sycl/namespace.ts +7 -0
- package/lib/routes/syosetu/dev.ts +67 -0
- package/lib/routes/syosetu/index.ts +85 -0
- package/lib/routes/syosetu/namespace.ts +7 -0
- package/lib/routes/syosetu/ranking-isekai.ts +93 -0
- package/lib/routes/syosetu/ranking-r18.ts +192 -0
- package/lib/routes/syosetu/ranking.ts +285 -0
- package/lib/routes/syosetu/search.ts +161 -0
- package/lib/routes/syosetu/templates/description.art +73 -0
- package/lib/routes/syosetu/types/ranking-r18.ts +60 -0
- package/lib/routes/syosetu/types/ranking.ts +67 -0
- package/lib/routes/syosetu/types/search.ts +138 -0
- package/lib/routes/syosetu/utils.ts +50 -0
- package/lib/routes/sysu/cse.ts +128 -0
- package/lib/routes/sysu/namespace.ts +7 -0
- package/lib/routes/sysu/ygafz.ts +102 -0
- package/lib/routes/szftedu/dongtai.ts +62 -0
- package/lib/routes/szftedu/gonggao.ts +62 -0
- package/lib/routes/szftedu/namespace.ts +7 -0
- package/lib/routes/szse/inquire.ts +80 -0
- package/lib/routes/szse/namespace.ts +7 -0
- package/lib/routes/szse/notice.ts +97 -0
- package/lib/routes/szse/projectdynamic.ts +152 -0
- package/lib/routes/szse/rule.ts +350 -0
- package/lib/routes/szse/templates/description.art +19 -0
- package/lib/routes/szse/templates/inquire.art +6 -0
- package/lib/routes/szu/namespace.ts +7 -0
- package/lib/routes/szu/yz/index.ts +74 -0
- package/lib/routes/szu/yz/utils.ts +72 -0
- package/lib/routes/t66y/index.ts +109 -0
- package/lib/routes/t66y/namespace.ts +7 -0
- package/lib/routes/t66y/post.ts +99 -0
- package/lib/routes/t66y/utils.ts +57 -0
- package/lib/routes/tableau/namespace.ts +7 -0
- package/lib/routes/tableau/viz-of-the-day.ts +45 -0
- package/lib/routes/taiwanmobile/namespace.ts +7 -0
- package/lib/routes/taiwanmobile/rate-plans.ts +64 -0
- package/lib/routes/taiwannews/hot.ts +79 -0
- package/lib/routes/taiwannews/namespace.ts +7 -0
- package/lib/routes/tangshufang/index.ts +95 -0
- package/lib/routes/tangshufang/namespace.ts +7 -0
- package/lib/routes/taobao/namespace.ts +7 -0
- package/lib/routes/taobao/templates/zhongchou.art +4 -0
- package/lib/routes/taobao/zhongchou.ts +71 -0
- package/lib/routes/taoguba/blog.ts +109 -0
- package/lib/routes/taoguba/index.ts +94 -0
- package/lib/routes/taoguba/namespace.ts +7 -0
- package/lib/routes/taptap/changelog-cn.ts +29 -0
- package/lib/routes/taptap/changelog-intl.ts +34 -0
- package/lib/routes/taptap/common/changelog.ts +40 -0
- package/lib/routes/taptap/common/review.ts +126 -0
- package/lib/routes/taptap/namespace.ts +11 -0
- package/lib/routes/taptap/review-cn.ts +33 -0
- package/lib/routes/taptap/review-intl.ts +41 -0
- package/lib/routes/taptap/templates/imagePost.art +3 -0
- package/lib/routes/taptap/templates/videoPost.art +2 -0
- package/lib/routes/taptap/topic.ts +120 -0
- package/lib/routes/taptap/types.ts +363 -0
- package/lib/routes/taptap/utils.ts +50 -0
- package/lib/routes/tass/namespace.ts +7 -0
- package/lib/routes/tass/news.ts +87 -0
- package/lib/routes/techcrunch/namespace.ts +7 -0
- package/lib/routes/techcrunch/news.ts +57 -0
- package/lib/routes/techcrunch/templates/description.art +7 -0
- package/lib/routes/techflowpost/express.ts +48 -0
- package/lib/routes/techflowpost/index.ts +47 -0
- package/lib/routes/techflowpost/namespace.ts +7 -0
- package/lib/routes/techpowerup/index.ts +85 -0
- package/lib/routes/techpowerup/namespace.ts +7 -0
- package/lib/routes/techpowerup/review.ts +96 -0
- package/lib/routes/techpowerup/utils.ts +76 -0
- package/lib/routes/techsir/index.ts +67 -0
- package/lib/routes/techsir/namespace.ts +8 -0
- package/lib/routes/telecompaper/namespace.ts +7 -0
- package/lib/routes/telecompaper/news.ts +137 -0
- package/lib/routes/telecompaper/search.ts +107 -0
- package/lib/routes/telegram/blog.ts +62 -0
- package/lib/routes/telegram/channel.ts +762 -0
- package/lib/routes/telegram/namespace.ts +7 -0
- package/lib/routes/telegram/scripts/get-telegram-session.mjs +51 -0
- package/lib/routes/telegram/stickerpack.ts +46 -0
- package/lib/routes/telegram/templates/video.art +7 -0
- package/lib/routes/telegram/tglib/channel.ts +166 -0
- package/lib/routes/telegram/tglib/client.ts +193 -0
- package/lib/routes/tencent/cloud/developer/column.ts +81 -0
- package/lib/routes/tencent/namespace.ts +7 -0
- package/lib/routes/tencent/news/author.ts +105 -0
- package/lib/routes/tencent/news/coronavirus/data.ts +83 -0
- package/lib/routes/tencent/news/coronavirus/total.ts +51 -0
- package/lib/routes/tencent/news/coronavirus/utils.ts +15 -0
- package/lib/routes/tencent/pvp/newsindex.ts +88 -0
- package/lib/routes/tencent/qq/sdk/changelog.ts +76 -0
- package/lib/routes/tencent/templates/coronavirus/chinaTotal.art +6 -0
- package/lib/routes/tencent/templates/coronavirus/data.art +4 -0
- package/lib/routes/tencent/templates/news/image.art +4 -0
- package/lib/routes/tesla/cx.ts +218 -0
- package/lib/routes/tesla/namespace.ts +7 -0
- package/lib/routes/tesla/price/get-price.ts +23 -0
- package/lib/routes/tesla/price/index.ts +66 -0
- package/lib/routes/tesla/templates/description.art +140 -0
- package/lib/routes/test/index.ts +421 -0
- package/lib/routes/test/namespace.ts +6 -0
- package/lib/routes/tfc-taiwan/common.ts +38 -0
- package/lib/routes/tfc-taiwan/index.ts +17 -0
- package/lib/routes/tfc-taiwan/namespace.ts +7 -0
- package/lib/routes/tfc-taiwan/templates/article.art +7 -0
- package/lib/routes/tfc-taiwan/topic.ts +17 -0
- package/lib/routes/tfc-taiwan/utils.ts +55 -0
- package/lib/routes/tgbus/list.ts +67 -0
- package/lib/routes/tgbus/namespace.ts +7 -0
- package/lib/routes/tgbus/utils.ts +19 -0
- package/lib/routes/the/index.ts +214 -0
- package/lib/routes/the/namespace.ts +9 -0
- package/lib/routes/the/templates/description.art +27 -0
- package/lib/routes/the/util.ts +307 -0
- package/lib/routes/theatlantic/namespace.ts +7 -0
- package/lib/routes/theatlantic/news.ts +58 -0
- package/lib/routes/theatlantic/templates/article-description.art +19 -0
- package/lib/routes/theatlantic/utils.ts +60 -0
- package/lib/routes/theblockbeats/index.ts +132 -0
- package/lib/routes/theblockbeats/namespace.ts +7 -0
- package/lib/routes/theblockbeats/templates/description.art +5 -0
- package/lib/routes/thecover/channel.ts +89 -0
- package/lib/routes/thecover/namespace.ts +7 -0
- package/lib/routes/thegradient/index.ts +80 -0
- package/lib/routes/thegradient/namespace.ts +7 -0
- package/lib/routes/thehindu/namespace.ts +7 -0
- package/lib/routes/thehindu/topic.ts +82 -0
- package/lib/routes/theinitium/app.ts +163 -0
- package/lib/routes/theinitium/author.ts +23 -0
- package/lib/routes/theinitium/channel.ts +28 -0
- package/lib/routes/theinitium/follow.ts +43 -0
- package/lib/routes/theinitium/namespace.ts +12 -0
- package/lib/routes/theinitium/tags.ts +23 -0
- package/lib/routes/theinitium/templates/description.art +17 -0
- package/lib/routes/theinitium/utils.ts +167 -0
- package/lib/routes/themoviedb/api-key.ts +24 -0
- package/lib/routes/themoviedb/collection.ts +40 -0
- package/lib/routes/themoviedb/episodes.ts +46 -0
- package/lib/routes/themoviedb/namespace.ts +10 -0
- package/lib/routes/themoviedb/seasons.ts +51 -0
- package/lib/routes/themoviedb/sheet.ts +75 -0
- package/lib/routes/themoviedb/templates/description.art +6 -0
- package/lib/routes/themoviedb/trending.ts +43 -0
- package/lib/routes/themoviedb/utils.ts +37 -0
- package/lib/routes/thenewslens/index.ts +92 -0
- package/lib/routes/thenewslens/namespace.ts +7 -0
- package/lib/routes/thenewslens/templates/description.art +6 -0
- package/lib/routes/thepaper/839studio/category.ts +54 -0
- package/lib/routes/thepaper/839studio/studio.ts +41 -0
- package/lib/routes/thepaper/channel.ts +60 -0
- package/lib/routes/thepaper/factpaper.ts +91 -0
- package/lib/routes/thepaper/featured.ts +43 -0
- package/lib/routes/thepaper/list.ts +145 -0
- package/lib/routes/thepaper/namespace.ts +8 -0
- package/lib/routes/thepaper/sidebar.ts +42 -0
- package/lib/routes/thepaper/templates/factpaper.art +12 -0
- package/lib/routes/thepaper/templates/image_detail.art +6 -0
- package/lib/routes/thepaper/templates/video_detail.art +13 -0
- package/lib/routes/thepaper/user.ts +174 -0
- package/lib/routes/thepaper/utils.ts +88 -0
- package/lib/routes/thepetcity/index.ts +69 -0
- package/lib/routes/thepetcity/namespace.ts +7 -0
- package/lib/routes/thepetcity/terms-map.ts +28 -0
- package/lib/routes/theverge/index.ts +133 -0
- package/lib/routes/theverge/namespace.ts +7 -0
- package/lib/routes/thoughtco/index.ts +413 -0
- package/lib/routes/thoughtco/namespace.ts +7 -0
- package/lib/routes/thoughtco/templates/description.art +16 -0
- package/lib/routes/thoughtworks/index.ts +71 -0
- package/lib/routes/thoughtworks/namespace.ts +7 -0
- package/lib/routes/threads/index.ts +116 -0
- package/lib/routes/threads/namespace.ts +7 -0
- package/lib/routes/threads/utils.ts +184 -0
- package/lib/routes/thwiki/index.ts +58 -0
- package/lib/routes/thwiki/namespace.ts +7 -0
- package/lib/routes/tiktok/namespace.ts +7 -0
- package/lib/routes/tiktok/templates/user.art +7 -0
- package/lib/routes/tiktok/user.ts +90 -0
- package/lib/routes/timednews/namespace.ts +7 -0
- package/lib/routes/timednews/news.ts +127 -0
- package/lib/routes/tingshuitz/changsha.ts +68 -0
- package/lib/routes/tingshuitz/dalian.ts +54 -0
- package/lib/routes/tingshuitz/dongguan.ts +53 -0
- package/lib/routes/tingshuitz/guangzhou.ts +42 -0
- package/lib/routes/tingshuitz/hangzhou.ts +59 -0
- package/lib/routes/tingshuitz/namespace.ts +8 -0
- package/lib/routes/tingshuitz/nanjing.ts +58 -0
- package/lib/routes/tingshuitz/shenzhen.ts +58 -0
- package/lib/routes/tingshuitz/templates/shenzhen.art +8 -0
- package/lib/routes/tingshuitz/wuhan.ts +47 -0
- package/lib/routes/tingshuitz/xian.ts +50 -0
- package/lib/routes/tingshuitz/xiaoshan.ts +59 -0
- package/lib/routes/tingshuitz/yangjiang.ts +54 -0
- package/lib/routes/tingtingfm/namespace.ts +7 -0
- package/lib/routes/tingtingfm/program.ts +133 -0
- package/lib/routes/tingtingfm/templates/audio.art +5 -0
- package/lib/routes/tingtingfm/utils.ts +29 -0
- package/lib/routes/tisi/index.ts +58 -0
- package/lib/routes/tisi/namespace.ts +7 -0
- package/lib/routes/tju/cic/index.ts +132 -0
- package/lib/routes/tju/namespace.ts +7 -0
- package/lib/routes/tju/news/index.ts +150 -0
- package/lib/routes/tju/oaa/index.ts +135 -0
- package/lib/routes/tju/yzb/index.ts +140 -0
- package/lib/routes/tkww/index.ts +83 -0
- package/lib/routes/tkww/namespace.ts +7 -0
- package/lib/routes/tokeninsight/blog.ts +78 -0
- package/lib/routes/tokeninsight/bulletin.ts +70 -0
- package/lib/routes/tokeninsight/namespace.ts +10 -0
- package/lib/routes/tokeninsight/report.ts +83 -0
- package/lib/routes/tongji/bks.ts +55 -0
- package/lib/routes/tongji/namespace.ts +7 -0
- package/lib/routes/tongji/sem/_utils.ts +65 -0
- package/lib/routes/tongji/sem/notice.ts +58 -0
- package/lib/routes/tongji/sse/_article.ts +25 -0
- package/lib/routes/tongji/sse/notice.ts +71 -0
- package/lib/routes/tongji/yjs.ts +52 -0
- package/lib/routes/tongli/namespace.ts +7 -0
- package/lib/routes/tongli/news.ts +75 -0
- package/lib/routes/toodaylab/index.ts +108 -0
- package/lib/routes/toodaylab/namespace.ts +7 -0
- package/lib/routes/tophub/index.ts +64 -0
- package/lib/routes/tophub/list.ts +76 -0
- package/lib/routes/tophub/namespace.ts +10 -0
- package/lib/routes/tophub/templates/rank.art +22 -0
- package/lib/routes/topys/index.ts +93 -0
- package/lib/routes/topys/namespace.ts +7 -0
- package/lib/routes/toutiao/a-bogus.ts +540 -0
- package/lib/routes/toutiao/namespace.ts +7 -0
- package/lib/routes/toutiao/templates/video.art +7 -0
- package/lib/routes/toutiao/types.ts +443 -0
- package/lib/routes/toutiao/user.ts +127 -0
- package/lib/routes/towardsdatascience/latest.ts +67 -0
- package/lib/routes/towardsdatascience/namespace.ts +7 -0
- package/lib/routes/tradingview/blog.ts +115 -0
- package/lib/routes/tradingview/desktop.ts +86 -0
- package/lib/routes/tradingview/namespace.ts +7 -0
- package/lib/routes/tradingview/pine.ts +68 -0
- package/lib/routes/tradingview/templates/description.art +13 -0
- package/lib/routes/transcriptforest/index.ts +135 -0
- package/lib/routes/transcriptforest/namespace.ts +7 -0
- package/lib/routes/transcriptforest/templates/description.art +23 -0
- package/lib/routes/trending/all-trending.ts +228 -0
- package/lib/routes/trending/namespace.ts +7 -0
- package/lib/routes/trending/templates/content.art +25 -0
- package/lib/routes/trendingpapers/namespace.ts +7 -0
- package/lib/routes/trendingpapers/papers.ts +59 -0
- package/lib/routes/tribalfootball/latest.ts +87 -0
- package/lib/routes/tribalfootball/namespace.ts +7 -0
- package/lib/routes/tribalfootball/templates/plus_header.art +6 -0
- package/lib/routes/trow/namespace.ts +7 -0
- package/lib/routes/trow/portal.ts +71 -0
- package/lib/routes/tsdm39/bd.ts +101 -0
- package/lib/routes/tsdm39/namespace.ts +8 -0
- package/lib/routes/tsinghua/lib/zydt.ts +129 -0
- package/lib/routes/tsinghua/namespace.ts +9 -0
- package/lib/routes/ttv/index.ts +78 -0
- package/lib/routes/ttv/namespace.ts +7 -0
- package/lib/routes/tvb/namespace.ts +7 -0
- package/lib/routes/tvb/news.ts +120 -0
- package/lib/routes/tvb/templates/description.art +6 -0
- package/lib/routes/tvtropes/featured.ts +98 -0
- package/lib/routes/tvtropes/namespace.ts +7 -0
- package/lib/routes/tvtropes/templates/description.art +23 -0
- package/lib/routes/twitch/live.ts +108 -0
- package/lib/routes/twitch/namespace.ts +7 -0
- package/lib/routes/twitch/schedule.ts +101 -0
- package/lib/routes/twitch/video.ts +109 -0
- package/lib/routes/twitter/api/developer-api/search.ts +23 -0
- package/lib/routes/twitter/api/developer-api/user.ts +38 -0
- package/lib/routes/twitter/api/index.ts +47 -0
- package/lib/routes/twitter/api/mobile-api/api.ts +308 -0
- package/lib/routes/twitter/api/mobile-api/constants.ts +86 -0
- package/lib/routes/twitter/api/mobile-api/login.ts +211 -0
- package/lib/routes/twitter/api/mobile-api/token.ts +38 -0
- package/lib/routes/twitter/api/web-api/api.ts +223 -0
- package/lib/routes/twitter/api/web-api/constants.ts +117 -0
- package/lib/routes/twitter/api/web-api/login.ts +75 -0
- package/lib/routes/twitter/api/web-api/utils.ts +329 -0
- package/lib/routes/twitter/home-latest.ts +63 -0
- package/lib/routes/twitter/home.ts +63 -0
- package/lib/routes/twitter/keyword.ts +59 -0
- package/lib/routes/twitter/likes.ts +49 -0
- package/lib/routes/twitter/list.ts +59 -0
- package/lib/routes/twitter/media.ts +71 -0
- package/lib/routes/twitter/namespace.ts +50 -0
- package/lib/routes/twitter/trends.ts +44 -0
- package/lib/routes/twitter/tweet.ts +66 -0
- package/lib/routes/twitter/user.ts +91 -0
- package/lib/routes/twitter/utils.ts +510 -0
- package/lib/routes/twreporter/category.ts +116 -0
- package/lib/routes/twreporter/fetch-article.ts +110 -0
- package/lib/routes/twreporter/namespace.ts +7 -0
- package/lib/routes/twreporter/newest.ts +52 -0
- package/lib/routes/twreporter/templates/image.art +3 -0
- package/lib/routes/twreporter/templates/youtube.art +1 -0
- package/lib/routes/txrjy/fornumtopic.ts +98 -0
- package/lib/routes/txrjy/namespace.ts +7 -0
- package/lib/routes/txrjy/templates/fornumtopic.art +6 -0
- package/lib/routes/tynu/namespace.ts +7 -0
- package/lib/routes/tynu/tynu.ts +55 -0
- package/lib/routes/typora/changelog-dev.ts +57 -0
- package/lib/routes/typora/changelog.ts +66 -0
- package/lib/routes/typora/namespace.ts +7 -0
- package/lib/routes/typst/namespace.ts +14 -0
- package/lib/routes/typst/universe.ts +108 -0
- package/lib/routes/u3c3/index.ts +93 -0
- package/lib/routes/u3c3/namespace.ts +7 -0
- package/lib/routes/u9a9/index.ts +83 -0
- package/lib/routes/u9a9/namespace.ts +7 -0
- package/lib/routes/uber/blog.ts +85 -0
- package/lib/routes/uber/namespace.ts +7 -0
- package/lib/routes/ucas/ai.ts +53 -0
- package/lib/routes/ucas/index.ts +82 -0
- package/lib/routes/ucas/namespace.ts +7 -0
- package/lib/routes/ucas/rader.ts +47 -0
- package/lib/routes/uchicago/current.ts +107 -0
- package/lib/routes/uchicago/namespace.ts +7 -0
- package/lib/routes/udn/breaking-news.ts +134 -0
- package/lib/routes/udn/global/index.ts +91 -0
- package/lib/routes/udn/global/tag.ts +78 -0
- package/lib/routes/udn/namespace.ts +7 -0
- package/lib/routes/udn/templates/figure.art +4 -0
- package/lib/routes/uestc/auto.ts +71 -0
- package/lib/routes/uestc/bbs.ts +97 -0
- package/lib/routes/uestc/cqe.ts +91 -0
- package/lib/routes/uestc/gr.ts +102 -0
- package/lib/routes/uestc/jwc.ts +103 -0
- package/lib/routes/uestc/namespace.ts +7 -0
- package/lib/routes/uestc/news.ts +81 -0
- package/lib/routes/uestc/scse.ts +116 -0
- package/lib/routes/uestc/sice.ts +72 -0
- package/lib/routes/uestc/sise.ts +111 -0
- package/lib/routes/uibe/hr.ts +88 -0
- package/lib/routes/uibe/namespace.ts +7 -0
- package/lib/routes/ulapia/index.ts +69 -0
- package/lib/routes/ulapia/namespace.ts +7 -0
- package/lib/routes/ulapia/research.ts +64 -0
- package/lib/routes/uniqlo/namespace.ts +7 -0
- package/lib/routes/uniqlo/new.ts +81 -0
- package/lib/routes/unraid/community-apps.ts +60 -0
- package/lib/routes/unraid/namespace.ts +7 -0
- package/lib/routes/unusualwhales/namespace.ts +7 -0
- package/lib/routes/unusualwhales/news.ts +49 -0
- package/lib/routes/upc/jsj.ts +100 -0
- package/lib/routes/upc/jwc.ts +121 -0
- package/lib/routes/upc/main.ts +95 -0
- package/lib/routes/upc/namespace.ts +7 -0
- package/lib/routes/upc/yjs.ts +53 -0
- package/lib/routes/uptimerobot/namespace.ts +7 -0
- package/lib/routes/uptimerobot/rss.ts +161 -0
- package/lib/routes/uptimerobot/templates/rss.art +20 -0
- package/lib/routes/uraaka-joshi/namespace.ts +7 -0
- package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +132 -0
- package/lib/routes/uraaka-joshi/uraaka-joshi.ts +105 -0
- package/lib/routes/urbandictionary/namespace.ts +7 -0
- package/lib/routes/urbandictionary/random.ts +52 -0
- package/lib/routes/urbandictionary/templates/definition.art +11 -0
- package/lib/routes/usenix/loginonline.ts +63 -0
- package/lib/routes/usenix/namespace.ts +7 -0
- package/lib/routes/usenix/usenix.ts +78 -0
- package/lib/routes/usepanda/index.ts +48 -0
- package/lib/routes/usepanda/namespace.ts +7 -0
- package/lib/routes/ustb/namespace.ts +7 -0
- package/lib/routes/ustb/tj/news.ts +83 -0
- package/lib/routes/ustb/yjsy/news.ts +484 -0
- package/lib/routes/ustb/yzxc/tzgg.ts +75 -0
- package/lib/routes/ustc/eeis.ts +91 -0
- package/lib/routes/ustc/gs.ts +90 -0
- package/lib/routes/ustc/index.ts +108 -0
- package/lib/routes/ustc/job.ts +223 -0
- package/lib/routes/ustc/jwc.ts +86 -0
- package/lib/routes/ustc/math.ts +94 -0
- package/lib/routes/ustc/namespace.ts +7 -0
- package/lib/routes/ustc/scms.ts +97 -0
- package/lib/routes/ustc/sist.ts +91 -0
- package/lib/routes/usts/jwch.ts +76 -0
- package/lib/routes/usts/namespace.ts +7 -0
- package/lib/routes/utgd/category.ts +61 -0
- package/lib/routes/utgd/namespace.ts +7 -0
- package/lib/routes/utgd/templates/description.art +11 -0
- package/lib/routes/utgd/timeline.ts +49 -0
- package/lib/routes/utgd/topic.ts +65 -0
- package/lib/routes/utgd/utils.ts +41 -0
- package/lib/routes/uw/gix/news.ts +95 -0
- package/lib/routes/uw/namespace.ts +7 -0
- package/lib/routes/v1tx/index.ts +71 -0
- package/lib/routes/v1tx/namespace.ts +7 -0
- package/lib/routes/v2ex/namespace.ts +7 -0
- package/lib/routes/v2ex/post.ts +59 -0
- package/lib/routes/v2ex/tab.ts +77 -0
- package/lib/routes/v2ex/topics.ts +66 -0
- package/lib/routes/v2ex/xna.ts +55 -0
- package/lib/routes/v2rayshare/index.ts +37 -0
- package/lib/routes/v2rayshare/namespace.ts +7 -0
- package/lib/routes/vcb-s/category.ts +83 -0
- package/lib/routes/vcb-s/index.ts +57 -0
- package/lib/routes/vcb-s/namespace.ts +7 -0
- package/lib/routes/vcb-s/templates/post.art +9 -0
- package/lib/routes/verfghbw/namespace.ts +7 -0
- package/lib/routes/verfghbw/press.ts +84 -0
- package/lib/routes/vertikal/latest.ts +73 -0
- package/lib/routes/vertikal/namespace.ts +7 -0
- package/lib/routes/vice/namespace.ts +7 -0
- package/lib/routes/vice/templates/article.art +19 -0
- package/lib/routes/vice/topic.ts +103 -0
- package/lib/routes/vimeo/category.ts +91 -0
- package/lib/routes/vimeo/channel.ts +100 -0
- package/lib/routes/vimeo/namespace.ts +7 -0
- package/lib/routes/vimeo/templates/description.art +4 -0
- package/lib/routes/vimeo/usr-videos.ts +105 -0
- package/lib/routes/vocus/namespace.ts +7 -0
- package/lib/routes/vocus/publication.ts +67 -0
- package/lib/routes/vocus/user.ts +63 -0
- package/lib/routes/vocus/utils.ts +46 -0
- package/lib/routes/vom/featured.ts +79 -0
- package/lib/routes/vom/namespace.ts +7 -0
- package/lib/routes/voronoiapp/author.ts +41 -0
- package/lib/routes/voronoiapp/common.ts +247 -0
- package/lib/routes/voronoiapp/editors-pick.ts +28 -0
- package/lib/routes/voronoiapp/home.ts +29 -0
- package/lib/routes/voronoiapp/latest.ts +28 -0
- package/lib/routes/voronoiapp/namespace.ts +7 -0
- package/lib/routes/voronoiapp/popular.ts +49 -0
- package/lib/routes/voronoiapp/search.ts +33 -0
- package/lib/routes/voronoiapp/types.d.ts +78 -0
- package/lib/routes/wabei/index.ts +75 -0
- package/lib/routes/wabei/namespace.ts +8 -0
- package/lib/routes/wallhaven/index.ts +86 -0
- package/lib/routes/wallhaven/namespace.ts +14 -0
- package/lib/routes/wallpaperhub/index.ts +46 -0
- package/lib/routes/wallpaperhub/namespace.ts +7 -0
- package/lib/routes/wallpaperhub/templates/description.art +1 -0
- package/lib/routes/wallstreetcn/calendar.ts +90 -0
- package/lib/routes/wallstreetcn/hot.ts +82 -0
- package/lib/routes/wallstreetcn/live.ts +80 -0
- package/lib/routes/wallstreetcn/namespace.ts +7 -0
- package/lib/routes/wallstreetcn/news.ts +114 -0
- package/lib/routes/wallstreetcn/templates/description.art +11 -0
- package/lib/routes/wanqu/namespace.ts +7 -0
- package/lib/routes/wanqu/news.ts +52 -0
- package/lib/routes/warthunder/namespace.ts +7 -0
- package/lib/routes/warthunder/news.ts +79 -0
- package/lib/routes/warthunder/templates/description.art +1 -0
- package/lib/routes/washingtonpost/app.ts +118 -0
- package/lib/routes/washingtonpost/namespace.ts +7 -0
- package/lib/routes/washingtonpost/templates/description.art +59 -0
- package/lib/routes/watasuke/blog.ts +42 -0
- package/lib/routes/watasuke/namespace.ts +8 -0
- package/lib/routes/wchscu/namespace.ts +7 -0
- package/lib/routes/wchscu/recruit.ts +73 -0
- package/lib/routes/wdc/download.ts +56 -0
- package/lib/routes/wdc/namespace.ts +7 -0
- package/lib/routes/web/articles.ts +25 -0
- package/lib/routes/web/blog.ts +25 -0
- package/lib/routes/web/namespace.ts +7 -0
- package/lib/routes/web/series.ts +32 -0
- package/lib/routes/web/utils.ts +68 -0
- package/lib/routes/web3caff/index.ts +73 -0
- package/lib/routes/web3caff/namespace.ts +7 -0
- package/lib/routes/wechat/_README +1 -0
- package/lib/routes/wechat/announce.ts +58 -0
- package/lib/routes/wechat/ce.ts +94 -0
- package/lib/routes/wechat/data258.ts +148 -0
- package/lib/routes/wechat/ershcimi.ts +54 -0
- package/lib/routes/wechat/feeddd.ts +43 -0
- package/lib/routes/wechat/mp.ts +81 -0
- package/lib/routes/wechat/msgalbum.ts +61 -0
- package/lib/routes/wechat/namespace.ts +10 -0
- package/lib/routes/wechat/sogou.ts +77 -0
- package/lib/routes/wechat/tgchannel.ts +185 -0
- package/lib/routes/wechat/uread.ts +71 -0
- package/lib/routes/wechat/wechat2rss.ts +47 -0
- package/lib/routes/weekendhk/namespace.ts +7 -0
- package/lib/routes/weekendhk/posts.ts +44 -0
- package/lib/routes/weibo/friends.ts +163 -0
- package/lib/routes/weibo/group.ts +119 -0
- package/lib/routes/weibo/keyword.ts +70 -0
- package/lib/routes/weibo/namespace.ts +43 -0
- package/lib/routes/weibo/oasis/user.ts +46 -0
- package/lib/routes/weibo/search/hot.ts +178 -0
- package/lib/routes/weibo/search/template/digest.art +17 -0
- package/lib/routes/weibo/super-index.ts +99 -0
- package/lib/routes/weibo/timeline.ts +189 -0
- package/lib/routes/weibo/user-bookmarks.ts +191 -0
- package/lib/routes/weibo/user.ts +203 -0
- package/lib/routes/weibo/utils.ts +494 -0
- package/lib/routes/wellcee/namespace.ts +8 -0
- package/lib/routes/wellcee/rent.ts +81 -0
- package/lib/routes/wellcee/support-city.ts +46 -0
- package/lib/routes/wellcee/templates/house.art +18 -0
- package/lib/routes/wellcee/types.ts +58 -0
- package/lib/routes/wellcee/utils.ts +45 -0
- package/lib/routes/wenku8/chapter.ts +54 -0
- package/lib/routes/wenku8/index.ts +60 -0
- package/lib/routes/wenku8/namespace.ts +7 -0
- package/lib/routes/wenku8/volume.ts +60 -0
- package/lib/routes/wfdf/namespace.ts +7 -0
- package/lib/routes/wfdf/news.ts +54 -0
- package/lib/routes/wfu/jwc.ts +79 -0
- package/lib/routes/wfu/namespace.ts +7 -0
- package/lib/routes/wfu/news.ts +128 -0
- package/lib/routes/whitehouse/briefing-room.ts +79 -0
- package/lib/routes/whitehouse/namespace.ts +7 -0
- package/lib/routes/whitehouse/ostp.ts +76 -0
- package/lib/routes/who/namespace.ts +7 -0
- package/lib/routes/who/news-room.ts +113 -0
- package/lib/routes/who/news.ts +74 -0
- package/lib/routes/who/speeches.ts +77 -0
- package/lib/routes/whu/cs.ts +117 -0
- package/lib/routes/whu/gs/index.ts +116 -0
- package/lib/routes/whu/hyxt.ts +59 -0
- package/lib/routes/whu/namespace.ts +7 -0
- package/lib/routes/whu/news.ts +107 -0
- package/lib/routes/whu/rsgis.ts +277 -0
- package/lib/routes/whu/swrh.ts +115 -0
- package/lib/routes/whu/templates/description.art +39 -0
- package/lib/routes/whu/util.ts +143 -0
- package/lib/routes/wikinews/index.ts +68 -0
- package/lib/routes/wikinews/namespace.ts +7 -0
- package/lib/routes/winstall/namespace.ts +7 -0
- package/lib/routes/winstall/templates/desc.art +5 -0
- package/lib/routes/winstall/update.ts +71 -0
- package/lib/routes/wired/namespace.ts +8 -0
- package/lib/routes/wired/tag.ts +97 -0
- package/lib/routes/wired/types.ts +81 -0
- package/lib/routes/wise/namespace.ts +7 -0
- package/lib/routes/wise/pair.ts +89 -0
- package/lib/routes/wise/templates/description.art +17 -0
- package/lib/routes/withgoogle/explorables.ts +54 -0
- package/lib/routes/withgoogle/namespace.ts +7 -0
- package/lib/routes/wizfile/index.ts +66 -0
- package/lib/routes/wizfile/namespace.ts +7 -0
- package/lib/routes/wmc-bj/namespace.ts +7 -0
- package/lib/routes/wmc-bj/publish.ts +69 -0
- package/lib/routes/wmc-bj/templates/description.art +5 -0
- package/lib/routes/wmpvp/index.ts +69 -0
- package/lib/routes/wmpvp/namespace.ts +7 -0
- package/lib/routes/wnacg/category.ts +17 -0
- package/lib/routes/wnacg/common.ts +111 -0
- package/lib/routes/wnacg/index.ts +16 -0
- package/lib/routes/wnacg/namespace.ts +7 -0
- package/lib/routes/wnacg/tag.ts +17 -0
- package/lib/routes/wnacg/templates/manga.art +9 -0
- package/lib/routes/wordpress/index.ts +172 -0
- package/lib/routes/wordpress/namespace.ts +9 -0
- package/lib/routes/wordpress/util.ts +307 -0
- package/lib/routes/worldjournal/index.ts +76 -0
- package/lib/routes/worldjournal/namespace.ts +7 -0
- package/lib/routes/worldofwarships/devblog.ts +76 -0
- package/lib/routes/worldofwarships/namespace.ts +14 -0
- package/lib/routes/woshipm/namespace.ts +7 -0
- package/lib/routes/woshipm/popular.ts +63 -0
- package/lib/routes/woshipm/user-article.ts +62 -0
- package/lib/routes/woshipm/utils.ts +18 -0
- package/lib/routes/woshipm/wen.ts +62 -0
- package/lib/routes/wsj/namespace.ts +7 -0
- package/lib/routes/wsj/news.ts +83 -0
- package/lib/routes/wsj/templates/article-description.art +6 -0
- package/lib/routes/wsj/utils.ts +124 -0
- package/lib/routes/wsyu/namespace.ts +7 -0
- package/lib/routes/wsyu/news.ts +108 -0
- package/lib/routes/wtu/index.ts +59 -0
- package/lib/routes/wtu/job.ts +108 -0
- package/lib/routes/wtu/namespace.ts +7 -0
- package/lib/routes/wufazhuce/namespace.ts +7 -0
- package/lib/routes/wufazhuce/one.ts +90 -0
- package/lib/routes/wyzxwk/article.ts +130 -0
- package/lib/routes/wyzxwk/namespace.ts +7 -0
- package/lib/routes/wzu/namespace.ts +7 -0
- package/lib/routes/wzu/news.ts +93 -0
- package/lib/routes/x-mol/namespace.ts +7 -0
- package/lib/routes/x-mol/news.ts +93 -0
- package/lib/routes/x-mol/paper.ts +93 -0
- package/lib/routes/x-mol/templates/description.art +6 -0
- package/lib/routes/x-mol/utils.ts +3 -0
- package/lib/routes/x6d/index.ts +141 -0
- package/lib/routes/x6d/namespace.ts +7 -0
- package/lib/routes/xaufe/jiaowu.ts +92 -0
- package/lib/routes/xaufe/namespace.ts +7 -0
- package/lib/routes/xaut/index.ts +88 -0
- package/lib/routes/xaut/jwc.ts +92 -0
- package/lib/routes/xaut/namespace.ts +7 -0
- package/lib/routes/xaut/rsc.ts +94 -0
- package/lib/routes/xbookcn/blog.ts +66 -0
- package/lib/routes/xbookcn/namespace.ts +7 -0
- package/lib/routes/xboxfan/namespace.ts +7 -0
- package/lib/routes/xboxfan/news.ts +70 -0
- package/lib/routes/xianbao/index.ts +142 -0
- package/lib/routes/xianbao/namespace.ts +7 -0
- package/lib/routes/xiaoheihe/add2cart.ts +63 -0
- package/lib/routes/xiaoheihe/discount.ts +146 -0
- package/lib/routes/xiaoheihe/namespace.ts +7 -0
- package/lib/routes/xiaoheihe/news.ts +61 -0
- package/lib/routes/xiaoheihe/user.ts +69 -0
- package/lib/routes/xiaoheihe/util.ts +75 -0
- package/lib/routes/xiaohongshu/board.ts +55 -0
- package/lib/routes/xiaohongshu/namespace.ts +7 -0
- package/lib/routes/xiaohongshu/user.ts +133 -0
- package/lib/routes/xiaohongshu/util.ts +266 -0
- package/lib/routes/xiaomiyoupin/crowdfunding.ts +71 -0
- package/lib/routes/xiaomiyoupin/latest.ts +40 -0
- package/lib/routes/xiaomiyoupin/namespace.ts +7 -0
- package/lib/routes/xiaomiyoupin/templates/goods.art +27 -0
- package/lib/routes/xiaomiyoupin/utils.ts +21 -0
- package/lib/routes/xiaote/index.ts +73 -0
- package/lib/routes/xiaote/namespace.ts +7 -0
- package/lib/routes/xiaoyuzhou/namespace.ts +7 -0
- package/lib/routes/xiaoyuzhou/pickup.ts +112 -0
- package/lib/routes/xiaoyuzhou/podcast.ts +90 -0
- package/lib/routes/xiaozhuanlan/column.ts +78 -0
- package/lib/routes/xiaozhuanlan/namespace.ts +7 -0
- package/lib/routes/xidian/cs.ts +143 -0
- package/lib/routes/xidian/gr.ts +289 -0
- package/lib/routes/xidian/jwc.ts +78 -0
- package/lib/routes/xidian/namespace.ts +7 -0
- package/lib/routes/ximalaya/album.ts +260 -0
- package/lib/routes/ximalaya/namespace.ts +7 -0
- package/lib/routes/ximalaya/types.ts +68 -0
- package/lib/routes/ximalaya/utils.ts +166 -0
- package/lib/routes/xinhuanet/app.ts +109 -0
- package/lib/routes/xinhuanet/namespace.ts +9 -0
- package/lib/routes/xinpianchang/index.ts +44 -0
- package/lib/routes/xinpianchang/namespace.ts +7 -0
- package/lib/routes/xinpianchang/rank.ts +61 -0
- package/lib/routes/xinpianchang/templates/description.art +13 -0
- package/lib/routes/xinpianchang/util.ts +108 -0
- package/lib/routes/xjtu/2yuan/news.ts +93 -0
- package/lib/routes/xjtu/dean.ts +91 -0
- package/lib/routes/xjtu/dyyy/index.ts +53 -0
- package/lib/routes/xjtu/ee.ts +70 -0
- package/lib/routes/xjtu/gs/tzgg.ts +65 -0
- package/lib/routes/xjtu/international.ts +60 -0
- package/lib/routes/xjtu/job.ts +109 -0
- package/lib/routes/xjtu/namespace.ts +7 -0
- package/lib/routes/xjtu/std.ts +84 -0
- package/lib/routes/xjtu/templates/attachments.art +3 -0
- package/lib/routes/xjtu/templates/std.art +4 -0
- package/lib/routes/xkb/index.ts +86 -0
- package/lib/routes/xkb/namespace.ts +7 -0
- package/lib/routes/xkb/templates/description.art +3 -0
- package/lib/routes/xmanhua/index.ts +88 -0
- package/lib/routes/xmanhua/namespace.ts +7 -0
- package/lib/routes/xmnn/epaper.ts +114 -0
- package/lib/routes/xmnn/namespace.ts +7 -0
- package/lib/routes/xmnn/news.ts +74 -0
- package/lib/routes/xmut/jwc/bkjw.ts +71 -0
- package/lib/routes/xmut/jwc/yjs.ts +60 -0
- package/lib/routes/xmut/namespace.ts +7 -0
- package/lib/routes/xsijishe/forum.ts +99 -0
- package/lib/routes/xsijishe/namespace.ts +7 -0
- package/lib/routes/xsijishe/rank.ts +127 -0
- package/lib/routes/xueqiu/column.ts +75 -0
- package/lib/routes/xueqiu/cookies.ts +25 -0
- package/lib/routes/xueqiu/favorite.ts +73 -0
- package/lib/routes/xueqiu/fund.ts +69 -0
- package/lib/routes/xueqiu/hots.ts +67 -0
- package/lib/routes/xueqiu/namespace.ts +7 -0
- package/lib/routes/xueqiu/snb.ts +71 -0
- package/lib/routes/xueqiu/stock-comments.ts +73 -0
- package/lib/routes/xueqiu/stock-info.ts +93 -0
- package/lib/routes/xueqiu/templates/comments_description.art +10 -0
- package/lib/routes/xueqiu/timeline.ts +94 -0
- package/lib/routes/xueqiu/today.ts +86 -0
- package/lib/routes/xueqiu/user-stock.ts +78 -0
- package/lib/routes/xueqiu/user.ts +102 -0
- package/lib/routes/xunhupay/index.ts +49 -0
- package/lib/routes/xunhupay/namespace.ts +7 -0
- package/lib/routes/xys/namespace.ts +7 -0
- package/lib/routes/xys/new.ts +103 -0
- package/lib/routes/xys/templates/desc.art +3 -0
- package/lib/routes/xyzrank/index.ts +129 -0
- package/lib/routes/xyzrank/namespace.ts +14 -0
- package/lib/routes/xyzrank/templates/description.art +12 -0
- package/lib/routes/yahoo/namespace.ts +7 -0
- package/lib/routes/yahoo/news/index.ts +149 -0
- package/lib/routes/yahoo/news/listid.ts +70 -0
- package/lib/routes/yahoo/news/provider-helper.ts +51 -0
- package/lib/routes/yahoo/news/provider.ts +66 -0
- package/lib/routes/yahoo/news/utils.ts +134 -0
- package/lib/routes/yahoo/templates/youtube.art +1 -0
- package/lib/routes/yamap/articles.ts +62 -0
- package/lib/routes/yamap/namespace.ts +7 -0
- package/lib/routes/yamibo/bbs/forum.ts +116 -0
- package/lib/routes/yamibo/bbs/thread.ts +84 -0
- package/lib/routes/yamibo/namespace.ts +7 -0
- package/lib/routes/yamibo/utils.ts +114 -0
- package/lib/routes/yande/namespace.ts +8 -0
- package/lib/routes/yande/post.ts +94 -0
- package/lib/routes/yangtzeu/dongke.ts +70 -0
- package/lib/routes/yangtzeu/namespace.ts +7 -0
- package/lib/routes/ycwb/index.ts +116 -0
- package/lib/routes/ycwb/namespace.ts +7 -0
- package/lib/routes/ycwb/templates/description.art +7 -0
- package/lib/routes/yenpress/namespace.ts +8 -0
- package/lib/routes/yenpress/series.ts +115 -0
- package/lib/routes/yenpress/templates/series.art +25 -0
- package/lib/routes/ygkkk/namespace.ts +7 -0
- package/lib/routes/ygkkk/rss.ts +48 -0
- package/lib/routes/yicai/author.ts +52 -0
- package/lib/routes/yicai/brief.ts +53 -0
- package/lib/routes/yicai/carousel.ts +48 -0
- package/lib/routes/yicai/dt.ts +174 -0
- package/lib/routes/yicai/feed.ts +55 -0
- package/lib/routes/yicai/headline.ts +39 -0
- package/lib/routes/yicai/latest.ts +39 -0
- package/lib/routes/yicai/namespace.ts +7 -0
- package/lib/routes/yicai/news.ts +92 -0
- package/lib/routes/yicai/templates/description.art +39 -0
- package/lib/routes/yicai/utils.ts +65 -0
- package/lib/routes/yicai/video.ts +102 -0
- package/lib/routes/yicai/vip.ts +52 -0
- package/lib/routes/yilinzazhi/index.ts +59 -0
- package/lib/routes/yilinzazhi/latest.ts +104 -0
- package/lib/routes/yilinzazhi/namespace.ts +9 -0
- package/lib/routes/ymgal/article.ts +84 -0
- package/lib/routes/ymgal/game.ts +69 -0
- package/lib/routes/ymgal/namespace.ts +7 -0
- package/lib/routes/ymgal/templates/description.art +7 -0
- package/lib/routes/yna/index.ts +92 -0
- package/lib/routes/yna/namespace.ts +10 -0
- package/lib/routes/yoasobi-music/info.ts +97 -0
- package/lib/routes/yoasobi-music/jsonp-helper.ts +17 -0
- package/lib/routes/yoasobi-music/live.ts +80 -0
- package/lib/routes/yoasobi-music/media.ts +87 -0
- package/lib/routes/yoasobi-music/namespace.ts +7 -0
- package/lib/routes/yoasobi-music/templates/info.art +7 -0
- package/lib/routes/yoasobi-music/templates/live.art +12 -0
- package/lib/routes/yoasobi-music/templates/media.art +2 -0
- package/lib/routes/yomiuri/namespace.ts +7 -0
- package/lib/routes/yomiuri/news.ts +124 -0
- package/lib/routes/yomujp/level.ts +127 -0
- package/lib/routes/yomujp/namespace.ts +7 -0
- package/lib/routes/youku/channel.ts +84 -0
- package/lib/routes/youku/namespace.ts +7 -0
- package/lib/routes/youku/templates/channel.art +5 -0
- package/lib/routes/youtube/channel.ts +76 -0
- package/lib/routes/youtube/charts.ts +151 -0
- package/lib/routes/youtube/community.ts +70 -0
- package/lib/routes/youtube/custom.ts +79 -0
- package/lib/routes/youtube/live.ts +76 -0
- package/lib/routes/youtube/namespace.ts +7 -0
- package/lib/routes/youtube/playlist.ts +61 -0
- package/lib/routes/youtube/subscriptions.ts +97 -0
- package/lib/routes/youtube/templates/community.art +17 -0
- package/lib/routes/youtube/templates/description.art +7 -0
- package/lib/routes/youtube/user.ts +103 -0
- package/lib/routes/youtube/utils.ts +168 -0
- package/lib/routes/youzhiyouxing/materials.ts +101 -0
- package/lib/routes/youzhiyouxing/namespace.ts +7 -0
- package/lib/routes/yuque/book.ts +126 -0
- package/lib/routes/yuque/namespace.ts +7 -0
- package/lib/routes/yuque/utils.ts +79 -0
- package/lib/routes/yxdown/namespace.ts +7 -0
- package/lib/routes/yxdown/news.ts +80 -0
- package/lib/routes/yxdown/recommend.ts +80 -0
- package/lib/routes/yxdown/utils.ts +14 -0
- package/lib/routes/yxdzqb/index.ts +84 -0
- package/lib/routes/yxdzqb/namespace.ts +7 -0
- package/lib/routes/yxdzqb/templates/description.art +2 -0
- package/lib/routes/yxrb/home.ts +90 -0
- package/lib/routes/yxrb/namespace.ts +7 -0
- package/lib/routes/yyets/article.ts +83 -0
- package/lib/routes/yyets/namespace.ts +7 -0
- package/lib/routes/yyets/today.ts +63 -0
- package/lib/routes/yystv/category.ts +86 -0
- package/lib/routes/yystv/docs.ts +68 -0
- package/lib/routes/yystv/namespace.ts +7 -0
- package/lib/routes/zagg/namespace.ts +7 -0
- package/lib/routes/zagg/new-arrivals.ts +75 -0
- package/lib/routes/zagg/templates/new-arrivals.art +3 -0
- package/lib/routes/zaker/index.ts +80 -0
- package/lib/routes/zaker/namespace.ts +7 -0
- package/lib/routes/zaobao/interactive.ts +25 -0
- package/lib/routes/zaobao/namespace.ts +10 -0
- package/lib/routes/zaobao/other.ts +29 -0
- package/lib/routes/zaobao/realtime.ts +59 -0
- package/lib/routes/zaobao/templates/zaobao.art +17 -0
- package/lib/routes/zaobao/util.ts +189 -0
- package/lib/routes/zaobao/znews.ts +71 -0
- package/lib/routes/zaozao/article.ts +64 -0
- package/lib/routes/zaozao/namespace.ts +7 -0
- package/lib/routes/zcmu/jwc/index.ts +63 -0
- package/lib/routes/zcmu/namespace.ts +7 -0
- package/lib/routes/zcmu/yxy/index.ts +64 -0
- package/lib/routes/zcool/discover.ts +302 -0
- package/lib/routes/zcool/locations.ts +6829 -0
- package/lib/routes/zcool/namespace.ts +7 -0
- package/lib/routes/zcool/templates/description.art +8 -0
- package/lib/routes/zcool/templates/work.art +11 -0
- package/lib/routes/zcool/top.ts +80 -0
- package/lib/routes/zcool/user.ts +85 -0
- package/lib/routes/zcool/utils.ts +14 -0
- package/lib/routes/zhibo8/forum.ts +66 -0
- package/lib/routes/zhibo8/luxiang.ts +52 -0
- package/lib/routes/zhibo8/more.ts +104 -0
- package/lib/routes/zhibo8/namespace.ts +7 -0
- package/lib/routes/zhibo8/post.ts +68 -0
- package/lib/routes/zhihu/activities.ts +157 -0
- package/lib/routes/zhihu/answers.ts +96 -0
- package/lib/routes/zhihu/bookstore/newest.ts +49 -0
- package/lib/routes/zhihu/collection.ts +103 -0
- package/lib/routes/zhihu/daily-section.ts +78 -0
- package/lib/routes/zhihu/daily.ts +72 -0
- package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +127 -0
- package/lib/routes/zhihu/hot.ts +109 -0
- package/lib/routes/zhihu/namespace.ts +10 -0
- package/lib/routes/zhihu/pin/daily.ts +44 -0
- package/lib/routes/zhihu/pin/hotlist.ts +43 -0
- package/lib/routes/zhihu/pin/people.ts +43 -0
- package/lib/routes/zhihu/pin/utils.ts +68 -0
- package/lib/routes/zhihu/posts.ts +87 -0
- package/lib/routes/zhihu/question.ts +78 -0
- package/lib/routes/zhihu/timeline.ts +152 -0
- package/lib/routes/zhihu/topic.ts +117 -0
- package/lib/routes/zhihu/types.ts +104 -0
- package/lib/routes/zhihu/utils.ts +117 -0
- package/lib/routes/zhihu/weekly.ts +56 -0
- package/lib/routes/zhihu/xhu/activities.ts +162 -0
- package/lib/routes/zhihu/xhu/answers.ts +56 -0
- package/lib/routes/zhihu/xhu/auth.ts +31 -0
- package/lib/routes/zhihu/xhu/collection.ts +100 -0
- package/lib/routes/zhihu/xhu/posts.ts +53 -0
- package/lib/routes/zhihu/xhu/question.ts +69 -0
- package/lib/routes/zhihu/xhu/topic.ts +94 -0
- package/lib/routes/zhihu/xhu/zhuanlan.ts +116 -0
- package/lib/routes/zhihu/zhuanlan.ts +131 -0
- package/lib/routes/zhitongcaijing/index.ts +158 -0
- package/lib/routes/zhitongcaijing/namespace.ts +7 -0
- package/lib/routes/zhitongcaijing/templates/description.art +6 -0
- package/lib/routes/zhiy/letter.ts +58 -0
- package/lib/routes/zhiy/namespace.ts +7 -0
- package/lib/routes/zhiy/post.ts +97 -0
- package/lib/routes/zhiy/templates/post.art +12 -0
- package/lib/routes/zhiy/utils.ts +10 -0
- package/lib/routes/zhonglun/index.ts +134 -0
- package/lib/routes/zhonglun/namespace.ts +9 -0
- package/lib/routes/zhonglun/templates/description.art +7 -0
- package/lib/routes/zhubai/index.ts +56 -0
- package/lib/routes/zhubai/namespace.ts +7 -0
- package/lib/routes/zhubai/templates/description.art +59 -0
- package/lib/routes/zhubai/top20.ts +95 -0
- package/lib/routes/zhujiceping/namespace.ts +7 -0
- package/lib/routes/zhujiceping/rss.ts +48 -0
- package/lib/routes/zhuwang/index.ts +71 -0
- package/lib/routes/zhuwang/namespace.ts +7 -0
- package/lib/routes/zimuxia/index.ts +87 -0
- package/lib/routes/zimuxia/namespace.ts +7 -0
- package/lib/routes/zimuxia/portfolio.ts +79 -0
- package/lib/routes/zjgtjy/index.ts +46 -0
- package/lib/routes/zjgtjy/namespace.ts +7 -0
- package/lib/routes/zjol/namespace.ts +7 -0
- package/lib/routes/zjol/paper.ts +117 -0
- package/lib/routes/zju/career/index.ts +65 -0
- package/lib/routes/zju/cst/custom.ts +71 -0
- package/lib/routes/zju/cst/index.ts +107 -0
- package/lib/routes/zju/grs/index.ts +66 -0
- package/lib/routes/zju/list.ts +82 -0
- package/lib/routes/zju/namespace.ts +7 -0
- package/lib/routes/zju/physics/index.ts +74 -0
- package/lib/routes/zjut/cs/index.ts +105 -0
- package/lib/routes/zjut/da/index.ts +92 -0
- package/lib/routes/zjut/jwc/index.ts +117 -0
- package/lib/routes/zjut/namespace.ts +7 -0
- package/lib/routes/zjut/news.ts +82 -0
- package/lib/routes/zjut/www/index.ts +120 -0
- package/lib/routes/zjuvag/blog.ts +52 -0
- package/lib/routes/zjuvag/namespace.ts +7 -0
- package/lib/routes/zodgame/forum.ts +121 -0
- package/lib/routes/zodgame/namespace.ts +7 -0
- package/lib/routes/zodgame/templates/forum.art +1 -0
- package/lib/routes/zotero/namespace.ts +7 -0
- package/lib/routes/zotero/versions.ts +57 -0
- package/lib/routes/zrblog/namespace.ts +7 -0
- package/lib/routes/zrblog/rss.ts +48 -0
- package/lib/routes/zsxq/group.ts +63 -0
- package/lib/routes/zsxq/namespace.ts +7 -0
- package/lib/routes/zsxq/types.ts +158 -0
- package/lib/routes/zsxq/user.ts +58 -0
- package/lib/routes/zsxq/utils.ts +71 -0
- package/lib/routes/zuel/namespace.ts +7 -0
- package/lib/routes/zuel/notice.ts +78 -0
- package/lib/routes/zuvio/boards.ts +34 -0
- package/lib/routes/zuvio/namespace.ts +7 -0
- package/lib/routes/zuvio/student5.ts +78 -0
- package/lib/routes/zuvio/templates/img.art +2 -0
- package/lib/routes/zuvio/templates/link.art +7 -0
- package/lib/routes/zuvio/templates/ref_article.art +8 -0
- package/lib/routes/zuvio/templates/rss.art +1 -0
- package/lib/routes/zuvio/templates/youtube.art +2 -0
- package/lib/routes/zuvio/utils.ts +72 -0
- package/lib/routes/zyshow/index.ts +58 -0
- package/lib/routes/zyshow/namespace.ts +7 -0
- package/lib/routes/zyshow/templates/description.art +16 -0
- package/lib/routes/zyw/hot.ts +88 -0
- package/lib/routes/zyw/namespace.ts +7 -0
- package/lib/routes-deprecated/10000link/news.js +59 -0
- package/lib/routes-deprecated/12379/index.js +23 -0
- package/lib/routes-deprecated/199it/category.js +10 -0
- package/lib/routes-deprecated/199it/tag.js +10 -0
- package/lib/routes-deprecated/199it/utils.js +44 -0
- package/lib/routes-deprecated/21caijing/channel.js +76 -0
- package/lib/routes-deprecated/60s-science/transcript.js +60 -0
- package/lib/routes-deprecated/755/user.js +71 -0
- package/lib/routes-deprecated/99percentinvisible/transcript.js +46 -0
- package/lib/routes-deprecated/acm/amturingaward.js +68 -0
- package/lib/routes-deprecated/acwifi/index.js +48 -0
- package/lib/routes-deprecated/adquan/index.js +67 -0
- package/lib/routes-deprecated/aiyanxishe/home.js +134 -0
- package/lib/routes-deprecated/amazfitwatchfaces/search.js +7 -0
- package/lib/routes-deprecated/amd/graphicsdrivers.js +114 -0
- package/lib/routes-deprecated/aozora/newbook.js +93 -0
- package/lib/routes-deprecated/appsales/index.js +66 -0
- package/lib/routes-deprecated/archdaily/home.js +47 -0
- package/lib/routes-deprecated/asahi/index.js +90 -0
- package/lib/routes-deprecated/autotrader/index.js +69 -0
- package/lib/routes-deprecated/avgle/videos.js +46 -0
- package/lib/routes-deprecated/axis-studios/work.js +75 -0
- package/lib/routes-deprecated/babykingdom/index.js +64 -0
- package/lib/routes-deprecated/bahamut/creation-index.js +73 -0
- package/lib/routes-deprecated/bahamut/utils.js +65 -0
- package/lib/routes-deprecated/bandisoft/index.js +42 -0
- package/lib/routes-deprecated/banyuetan/index.js +56 -0
- package/lib/routes-deprecated/benedictevans/recent.js +41 -0
- package/lib/routes-deprecated/bibgame/category.js +56 -0
- package/lib/routes-deprecated/blogs/hedwig.js +42 -0
- package/lib/routes-deprecated/blogs/wangyin.js +50 -0
- package/lib/routes-deprecated/blow-studio/work.js +71 -0
- package/lib/routes-deprecated/blur-studio/index.js +79 -0
- package/lib/routes-deprecated/bookwalkertw/news.js +32 -0
- package/lib/routes-deprecated/booth-pm/shop.js +58 -0
- package/lib/routes-deprecated/ccg/index.js +49 -0
- package/lib/routes-deprecated/cell/cell/index.js +113 -0
- package/lib/routes-deprecated/cell/cover.js +106 -0
- package/lib/routes-deprecated/cfan/news.js +49 -0
- package/lib/routes-deprecated/cgtn/most.js +48 -0
- package/lib/routes-deprecated/cgtn/opinions.js +50 -0
- package/lib/routes-deprecated/chaoli/index.js +50 -0
- package/lib/routes-deprecated/checkee/index.js +57 -0
- package/lib/routes-deprecated/chicagotribune/index.js +77 -0
- package/lib/routes-deprecated/chiphell/forum.js +67 -0
- package/lib/routes-deprecated/chocolatey/software.js +55 -0
- package/lib/routes-deprecated/chouti/top.js +28 -0
- package/lib/routes-deprecated/chsi/zszcgd.js +51 -0
- package/lib/routes-deprecated/citavi/index.js +52 -0
- package/lib/routes-deprecated/cnu/discovery.js +59 -0
- package/lib/routes-deprecated/cnu/selected.js +52 -0
- package/lib/routes-deprecated/cnu/utils.js +28 -0
- package/lib/routes-deprecated/cpython/index.js +30 -0
- package/lib/routes-deprecated/csc/notice.js +99 -0
- package/lib/routes-deprecated/daxiaamu/home.js +45 -0
- package/lib/routes-deprecated/dbaplus/activity.js +35 -0
- package/lib/routes-deprecated/ddrk/index.js +32 -0
- package/lib/routes-deprecated/ddrk/list.js +37 -0
- package/lib/routes-deprecated/deepl/blog.js +34 -0
- package/lib/routes-deprecated/dekudeals/index.js +44 -0
- package/lib/routes-deprecated/dev.to/top.js +40 -0
- package/lib/routes-deprecated/dgtle/index.js +57 -0
- package/lib/routes-deprecated/dgtle/keyword.js +30 -0
- package/lib/routes-deprecated/dgtle/trade.js +42 -0
- package/lib/routes-deprecated/dida365/habit-checkins.js +84 -0
- package/lib/routes-deprecated/digitaling/article.js +71 -0
- package/lib/routes-deprecated/digitaling/index.js +42 -0
- package/lib/routes-deprecated/digitaling/project.js +55 -0
- package/lib/routes-deprecated/discuss/index.js +71 -0
- package/lib/routes-deprecated/disqus/posts.js +53 -0
- package/lib/routes-deprecated/dongmanmanhua/comic.js +45 -0
- package/lib/routes-deprecated/duozhi/index.js +45 -0
- package/lib/routes-deprecated/edrawsoft/mindmap.js +95 -0
- package/lib/routes-deprecated/eeo/index.js +79 -0
- package/lib/routes-deprecated/eleme/open/announce.js +32 -0
- package/lib/routes-deprecated/emi-nitta/home.js +69 -0
- package/lib/routes-deprecated/enclavebooks/category.js +76 -0
- package/lib/routes-deprecated/enclavebooks/collection.js +44 -0
- package/lib/routes-deprecated/enclavebooks/user.js +44 -0
- package/lib/routes-deprecated/engadget/home.js +67 -0
- package/lib/routes-deprecated/etherscan/transactions.js +37 -0
- package/lib/routes-deprecated/everything/changes.js +33 -0
- package/lib/routes-deprecated/fanfou/favorites.js +36 -0
- package/lib/routes-deprecated/fanfou/home-timeline.js +32 -0
- package/lib/routes-deprecated/fanfou/public-timeline.js +34 -0
- package/lib/routes-deprecated/fanfou/user-timeline.js +35 -0
- package/lib/routes-deprecated/fanfou/utils.js +40 -0
- package/lib/routes-deprecated/fashionnetwork/headline.js +56 -0
- package/lib/routes-deprecated/fashionnetwork/news.js +74 -0
- package/lib/routes-deprecated/galaxylab/index.js +35 -0
- package/lib/routes-deprecated/gameres/utils.js +58 -0
- package/lib/routes-deprecated/gaoqing/utils.js +57 -0
- package/lib/routes-deprecated/gitlab/common.js +5 -0
- package/lib/routes-deprecated/gitlab/explore.js +43 -0
- package/lib/routes-deprecated/gitlab/release.js +35 -0
- package/lib/routes-deprecated/gitlab/tag.js +35 -0
- package/lib/routes-deprecated/go.jp/mofa/main.js +94 -0
- package/lib/routes-deprecated/gocomics/index.js +64 -0
- package/lib/routes-deprecated/gov/beijing/eea.js +92 -0
- package/lib/routes-deprecated/gov/beijing/mhc.js +68 -0
- package/lib/routes-deprecated/gov/chongqing/ljxq/zwgk.js +67 -0
- package/lib/routes-deprecated/gov/city/nanjing/get-content.js +69 -0
- package/lib/routes-deprecated/gov/city/nanjing/index.js +32 -0
- package/lib/routes-deprecated/gov/cnca/hydt.js +54 -0
- package/lib/routes-deprecated/gov/cnca/jgdt.js +54 -0
- package/lib/routes-deprecated/gov/cnca/zxtz.js +63 -0
- package/lib/routes-deprecated/gov/cppcc/index.js +48 -0
- package/lib/routes-deprecated/gov/guangdong/edu.js +83 -0
- package/lib/routes-deprecated/gov/guangdong/eea.js +59 -0
- package/lib/routes-deprecated/gov/harbin/kjj.js +39 -0
- package/lib/routes-deprecated/gov/hubei/hbsia.js +101 -0
- package/lib/routes-deprecated/gov/hunan/notice.js +80 -0
- package/lib/routes-deprecated/gov/mohrss/sbjm.js +59 -0
- package/lib/routes-deprecated/gov/mohurd/policy.js +39 -0
- package/lib/routes-deprecated/gov/ngd/index.js +51 -0
- package/lib/routes-deprecated/gov/nppa/channels.js +58 -0
- package/lib/routes-deprecated/gov/nppa/contents.js +38 -0
- package/lib/routes-deprecated/gov/province/jiangsu/get-content.js +77 -0
- package/lib/routes-deprecated/gov/province/jiangsu/index.js +66 -0
- package/lib/routes-deprecated/gov/sapprft/7026.js +98 -0
- package/lib/routes-deprecated/gov/shanghai/sthj.js +26 -0
- package/lib/routes-deprecated/gov/taiwan/mnd.js +63 -0
- package/lib/routes-deprecated/gov/veterans/china.js +76 -0
- package/lib/routes-deprecated/gov/veterans/hebei.js +69 -0
- package/lib/routes-deprecated/gov/wuhan/kjj.js +63 -0
- package/lib/routes-deprecated/gov/wuhan/wehdz.js +63 -0
- package/lib/routes-deprecated/gov/xinwen/tujie.js +75 -0
- package/lib/routes-deprecated/guanggoo/index.js +81 -0
- package/lib/routes-deprecated/guardian/guardian.js +45 -0
- package/lib/routes-deprecated/guat/news.js +68 -0
- package/lib/routes-deprecated/guet/news.js +95 -0
- package/lib/routes-deprecated/gwern/category.js +58 -0
- package/lib/routes-deprecated/hackerone/hacktivity.js +47 -0
- package/lib/routes-deprecated/hackerone/search.js +48 -0
- package/lib/routes-deprecated/haohaozhu/discover.js +42 -0
- package/lib/routes-deprecated/haohaozhu/whole-house.js +75 -0
- package/lib/routes-deprecated/hdx/explore.js +57 -0
- package/lib/routes-deprecated/hentai-cosplays/utils.js +52 -0
- package/lib/routes-deprecated/hentaimama/videos.js +32 -0
- package/lib/routes-deprecated/hexo/fluid.js +49 -0
- package/lib/routes-deprecated/hexo/next.js +49 -0
- package/lib/routes-deprecated/hexo/yilia.js +34 -0
- package/lib/routes-deprecated/hkej/index.js +138 -0
- package/lib/routes-deprecated/huya/live.js +33 -0
- package/lib/routes-deprecated/icourse163/newest.js +77 -0
- package/lib/routes-deprecated/idownloadblog/index.js +51 -0
- package/lib/routes-deprecated/ifanr/index.js +71 -0
- package/lib/routes-deprecated/ifnews/column.js +76 -0
- package/lib/routes-deprecated/im2maker/index.js +60 -0
- package/lib/routes-deprecated/index.js +100 -0
- package/lib/routes-deprecated/jpmorganchase/research.js +52 -0
- package/lib/routes-deprecated/jx3/news.js +52 -0
- package/lib/routes-deprecated/kaiyan/index.js +53 -0
- package/lib/routes-deprecated/kongfz/shop.js +58 -0
- package/lib/routes-deprecated/kuai/id.js +38 -0
- package/lib/routes-deprecated/kuai/index.js +38 -0
- package/lib/routes-deprecated/laosiji/feed.js +24 -0
- package/lib/routes-deprecated/laosiji/hotshow.js +33 -0
- package/lib/routes-deprecated/lastfm/loved.js +27 -0
- package/lib/routes-deprecated/lastfm/recent.js +27 -0
- package/lib/routes-deprecated/lastfm/top.js +27 -0
- package/lib/routes-deprecated/law/dh.js +39 -0
- package/lib/routes-deprecated/law/gf.js +41 -0
- package/lib/routes-deprecated/law/hq.js +39 -0
- package/lib/routes-deprecated/law/hw.js +39 -0
- package/lib/routes-deprecated/law/jctd.js +41 -0
- package/lib/routes-deprecated/law/jh.js +41 -0
- package/lib/routes-deprecated/law/jtc.js +41 -0
- package/lib/routes-deprecated/law/ts.js +41 -0
- package/lib/routes-deprecated/law/zl.js +40 -0
- package/lib/routes-deprecated/letterboxd/utils.js +140 -0
- package/lib/routes-deprecated/lifetimes/index.js +99 -0
- package/lib/routes-deprecated/liyuan-forums/threads.js +76 -0
- package/lib/routes-deprecated/lizhi/user.js +46 -0
- package/lib/routes-deprecated/lol/newsindex.js +87 -0
- package/lib/routes-deprecated/lolapp/article.js +53 -0
- package/lib/routes-deprecated/lwn/alerts.js +57 -0
- package/lib/routes-deprecated/mafengwo/note.js +53 -0
- package/lib/routes-deprecated/magireco/announcements.js +27 -0
- package/lib/routes-deprecated/magireco/event-banner.js +35 -0
- package/lib/routes-deprecated/maoyan/hot-complete.js +83 -0
- package/lib/routes-deprecated/mcdonalds/news.js +53 -0
- package/lib/routes-deprecated/mediadigest/category.js +130 -0
- package/lib/routes-deprecated/meihua/article.js +54 -0
- package/lib/routes-deprecated/meihua/shots.js +58 -0
- package/lib/routes-deprecated/meituan/open/announce.js +45 -0
- package/lib/routes-deprecated/method-studios/index.js +60 -0
- package/lib/routes-deprecated/mhw/news.js +47 -0
- package/lib/routes-deprecated/mhw/update.js +65 -0
- package/lib/routes-deprecated/micmicidol/article.js +28 -0
- package/lib/routes-deprecated/micmicidol/latest.js +3 -0
- package/lib/routes-deprecated/micmicidol/parse.js +22 -0
- package/lib/routes-deprecated/micmicidol/search.js +7 -0
- package/lib/routes-deprecated/microsoft-store/updates.js +30 -0
- package/lib/routes-deprecated/mihoyo/bh2.js +43 -0
- package/lib/routes-deprecated/mihoyo/bh3.js +60 -0
- package/lib/routes-deprecated/missevan/drama.js +40 -0
- package/lib/routes-deprecated/missevan/latest.js +47 -0
- package/lib/routes-deprecated/mofish/index.js +41 -0
- package/lib/routes-deprecated/mofish/templates/description.art +4 -0
- package/lib/routes-deprecated/moxingfans/index.js +50 -0
- package/lib/routes-deprecated/muchong/journal.js +52 -0
- package/lib/routes-deprecated/netflix/newsroom.js +82 -0
- package/lib/routes-deprecated/nobelprize/index.js +79 -0
- package/lib/routes-deprecated/noi/index.js +40 -0
- package/lib/routes-deprecated/noi/province-news.js +40 -0
- package/lib/routes-deprecated/noi/rg-news.js +47 -0
- package/lib/routes-deprecated/noi/winners-list.js +41 -0
- package/lib/routes-deprecated/novel/biquge.js +66 -0
- package/lib/routes-deprecated/novel/biqugeinfo.js +66 -0
- package/lib/routes-deprecated/novel/uukanshu.js +39 -0
- package/lib/routes-deprecated/now/rank.js +31 -0
- package/lib/routes-deprecated/one/index.js +48 -0
- package/lib/routes-deprecated/owspace/read.js +141 -0
- package/lib/routes-deprecated/paidai/utils.js +26 -0
- package/lib/routes-deprecated/patchwork.kernel.org/comments.js +33 -0
- package/lib/routes-deprecated/piapro/public.js +54 -0
- package/lib/routes-deprecated/piapro/user.js +47 -0
- package/lib/routes-deprecated/piapro/utils.js +45 -0
- package/lib/routes-deprecated/pmcaff/feed.js +51 -0
- package/lib/routes-deprecated/pmcaff/list.js +67 -0
- package/lib/routes-deprecated/potplayer/update.js +42 -0
- package/lib/routes-deprecated/project-zero-issues/index.js +48 -0
- package/lib/routes-deprecated/psnine/game.js +32 -0
- package/lib/routes-deprecated/psnine/index.js +33 -0
- package/lib/routes-deprecated/psnine/shuzhe.js +33 -0
- package/lib/routes-deprecated/psnine/trade.js +39 -0
- package/lib/routes-deprecated/ptpress/book.js +34 -0
- package/lib/routes-deprecated/quantamagazine/archive.js +81 -0
- package/lib/routes-deprecated/qutoutiao/category.js +42 -0
- package/lib/routes-deprecated/react/react-native-weekly.js +35 -0
- package/lib/routes-deprecated/remote-work/index.js +88 -0
- package/lib/routes-deprecated/rescuetime/release-notes.js +37 -0
- package/lib/routes-deprecated/rthk-news/index.js +60 -0
- package/lib/routes-deprecated/scboy/thread.js +50 -0
- package/lib/routes-deprecated/sexinsex/index.js +101 -0
- package/lib/routes-deprecated/shanbay/checkin.js +48 -0
- package/lib/routes-deprecated/shanbay/footprints.js +42 -0
- package/lib/routes-deprecated/simonsfoundation/articles.js +48 -0
- package/lib/routes-deprecated/simpread/changelog.js +79 -0
- package/lib/routes-deprecated/sketch/updates.js +40 -0
- package/lib/routes-deprecated/socialbeta/home.js +42 -0
- package/lib/routes-deprecated/socialclub/events.js +28 -0
- package/lib/routes-deprecated/soul/hot.js +86 -0
- package/lib/routes-deprecated/soundcloud/utils.js +47 -0
- package/lib/routes-deprecated/technologyreview/topic.js +35 -0
- package/lib/routes-deprecated/tencent/tucaoqq/post.js +39 -0
- package/lib/routes-deprecated/tencent/wechat/miniprogram/devtools.js +37 -0
- package/lib/routes-deprecated/tencent/wechat/miniprogram/framework.js +35 -0
- package/lib/routes-deprecated/tencent/wechat/miniprogram/wxcloud.js +47 -0
- package/lib/routes-deprecated/tencent/wechat/wechat-open/pay/announce.js +30 -0
- package/lib/routes-deprecated/tianyancha/hot.js +48 -0
- package/lib/routes-deprecated/tingdiantz/95598.js +41 -0
- package/lib/routes-deprecated/titsguru/model.js +16 -0
- package/lib/routes-deprecated/titsguru/util.js +68 -0
- package/lib/routes-deprecated/totalcommander/whatsnew.js +32 -0
- package/lib/routes-deprecated/touhougarakuta/index.js +68 -0
- package/lib/routes-deprecated/touhougarakuta/json2html.js +113 -0
- package/lib/routes-deprecated/tprtc/cqzr.js +80 -0
- package/lib/routes-deprecated/tprtc/news.js +71 -0
- package/lib/routes-deprecated/tprtc/qyzc.js +84 -0
- package/lib/routes-deprecated/ui-cn/article.js +44 -0
- package/lib/routes-deprecated/unit-image/films.js +141 -0
- package/lib/routes-deprecated/universities/ahau/cs_news/utils.js +50 -0
- package/lib/routes-deprecated/universities/ahau/jwc/utils.js +50 -0
- package/lib/routes-deprecated/universities/ahau/main/utils.js +50 -0
- package/lib/routes-deprecated/universities/ahmu/news.js +51 -0
- package/lib/routes-deprecated/universities/ahut/cstzgg.js +45 -0
- package/lib/routes-deprecated/universities/ahut/jwc.js +43 -0
- package/lib/routes-deprecated/universities/ahut/news.js +44 -0
- package/lib/routes-deprecated/universities/bupt/funbox.js +40 -0
- package/lib/routes-deprecated/universities/bupt/grs.js +64 -0
- package/lib/routes-deprecated/universities/bupt/news.js +34 -0
- package/lib/routes-deprecated/universities/bupt/portal.js +34 -0
- package/lib/routes-deprecated/universities/bupt/utils.js +67 -0
- package/lib/routes-deprecated/universities/bupt/yz.js +154 -0
- package/lib/routes-deprecated/universities/bwu/news.js +29 -0
- package/lib/routes-deprecated/universities/bwu/utils.js +50 -0
- package/lib/routes-deprecated/universities/cpu/home.js +52 -0
- package/lib/routes-deprecated/universities/cpu/jwc.js +52 -0
- package/lib/routes-deprecated/universities/cpu/yjsy.js +52 -0
- package/lib/routes-deprecated/universities/cqu/jwc/announcement.js +53 -0
- package/lib/routes-deprecated/universities/cqu/net/info.js +60 -0
- package/lib/routes-deprecated/universities/cqu/news/tz.js +71 -0
- package/lib/routes-deprecated/universities/cqu/news/utils.js +48 -0
- package/lib/routes-deprecated/universities/cqu/sci/info.js +62 -0
- package/lib/routes-deprecated/universities/cqu/youth/info.js +65 -0
- package/lib/routes-deprecated/universities/cug/gcxy/index.js +114 -0
- package/lib/routes-deprecated/universities/cug/news.js +63 -0
- package/lib/routes-deprecated/universities/cuit/cxxww.js +63 -0
- package/lib/routes-deprecated/universities/dlmu/news.js +42 -0
- package/lib/routes-deprecated/universities/dlu/jiaowu/news.js +36 -0
- package/lib/routes-deprecated/universities/fudan/cce.js +52 -0
- package/lib/routes-deprecated/universities/fzu/news-min.js +44 -0
- package/lib/routes-deprecated/universities/fzu/news.js +61 -0
- package/lib/routes-deprecated/universities/gdou/jwc/utils.js +72 -0
- package/lib/routes-deprecated/universities/gzmtu/jwc/utils.js +86 -0
- package/lib/routes-deprecated/universities/gzmtu/tsg/utils.js +86 -0
- package/lib/routes-deprecated/universities/hhu/lib-news.js +57 -0
- package/lib/routes-deprecated/universities/hhu/lib-newsc.js +75 -0
- package/lib/routes-deprecated/universities/hnust/graduate/index.js +40 -0
- package/lib/routes-deprecated/universities/jnu/yw/index.js +81 -0
- package/lib/routes-deprecated/universities/kmust/job/careers.js +33 -0
- package/lib/routes-deprecated/universities/kmust/job/jobfairs.js +32 -0
- package/lib/routes-deprecated/universities/kmust/jwc.js +44 -0
- package/lib/routes-deprecated/universities/lit/jwc.js +50 -0
- package/lib/routes-deprecated/universities/lit/tw.js +56 -0
- package/lib/routes-deprecated/universities/lit/xwzx.js +73 -0
- package/lib/routes-deprecated/universities/lntu/jwnews.js +46 -0
- package/lib/routes-deprecated/universities/lyu/news/utils.js +42 -0
- package/lib/routes-deprecated/universities/mit/graduateadmissions.js +63 -0
- package/lib/routes-deprecated/universities/nciae/news.js +58 -0
- package/lib/routes-deprecated/universities/nciae/tzgg.js +58 -0
- package/lib/routes-deprecated/universities/nciae/xsxx.js +58 -0
- package/lib/routes-deprecated/universities/njfu/jwc.js +47 -0
- package/lib/routes-deprecated/universities/njtech/jwc.js +54 -0
- package/lib/routes-deprecated/universities/nuc/index.js +91 -0
- package/lib/routes-deprecated/universities/nudt/yjszs.js +60 -0
- package/lib/routes-deprecated/universities/shanghaitech/activity.js +34 -0
- package/lib/routes-deprecated/universities/shanghaitech/sist/activity.js +51 -0
- package/lib/routes-deprecated/universities/shou/www.js +64 -0
- package/lib/routes-deprecated/universities/slu/utils.js +74 -0
- package/lib/routes-deprecated/universities/swufe/seie/index.js +71 -0
- package/lib/routes-deprecated/universities/swust/cs.js +77 -0
- package/lib/routes-deprecated/universities/swust/helper.js +47 -0
- package/lib/routes-deprecated/universities/swust/jwc-news.js +45 -0
- package/lib/routes-deprecated/universities/swust/jwc-notice.js +51 -0
- package/lib/routes-deprecated/universities/thu/index.js +102 -0
- package/lib/routes-deprecated/universities/usst/jwc.js +62 -0
- package/lib/routes-deprecated/universities/utdallas/isso.js +54 -0
- package/lib/routes-deprecated/universities/ynnu/edu/base64.js +354 -0
- package/lib/routes-deprecated/universities/ynnu/edu/news.js +109 -0
- package/lib/routes-deprecated/universities/ynu/utils.js +64 -0
- package/lib/routes-deprecated/universities/yzu/home.js +83 -0
- package/lib/routes-deprecated/universities/yzu/yjszs.js +81 -0
- package/lib/routes-deprecated/universities/zjgsu/tzgg/utils.js +54 -0
- package/lib/routes-deprecated/universities/zjut/design.js +59 -0
- package/lib/routes-deprecated/universities/zjut/index.js +59 -0
- package/lib/routes-deprecated/universities/zucc/cssearch/index.js +47 -0
- package/lib/routes-deprecated/universities/zucc/news/index.js +66 -0
- package/lib/routes-deprecated/universities/zzu/news.js +80 -0
- package/lib/routes-deprecated/universities/zzu/soft/news.js +68 -0
- package/lib/routes-deprecated/us/supremecourt/argument-audio.js +61 -0
- package/lib/routes-deprecated/uwants/index.js +70 -0
- package/lib/routes-deprecated/vgn/index.js +27 -0
- package/lib/routes-deprecated/voa/index.js +54 -0
- package/lib/routes-deprecated/vol/lastupdate.js +51 -0
- package/lib/routes-deprecated/vulture/utils.js +113 -0
- package/lib/routes-deprecated/watchface/update.js +42 -0
- package/lib/routes-deprecated/webtoons/comic.js +54 -0
- package/lib/routes-deprecated/webtoons/naver.js +50 -0
- package/lib/routes-deprecated/weexcn/index.js +69 -0
- package/lib/routes-deprecated/wegene/column.js +25 -0
- package/lib/routes-deprecated/weidian/goods.js +37 -0
- package/lib/routes-deprecated/whb/zhuzhan.js +76 -0
- package/lib/routes-deprecated/wto/dispute-settlement.js +37 -0
- package/lib/routes-deprecated/xiachufang/utils.js +95 -0
- package/lib/routes-deprecated/xuangubao/subject.js +42 -0
- package/lib/routes-deprecated/xuetangx/course-list.js +54 -0
- package/lib/routes-deprecated/xyplorer/whatsnew.js +32 -0
- package/lib/routes-deprecated/yinxiang/card.js +41 -0
- package/lib/routes-deprecated/yinxiang/category.js +42 -0
- package/lib/routes-deprecated/yinxiang/note.js +37 -0
- package/lib/routes-deprecated/yinxiang/personal.js +43 -0
- package/lib/routes-deprecated/yinxiang/tag.js +42 -0
- package/lib/routes-deprecated/youdao/latest.js +47 -0
- package/lib/routes-deprecated/youdao/xueba.js +64 -0
- package/lib/routes-deprecated/yuzu-emu/entry.js +52 -0
- package/lib/routes-deprecated/zhishifenzi/depth.js +54 -0
- package/lib/routes-deprecated/zhishifenzi/innovation.js +61 -0
- package/lib/routes-deprecated/zhishifenzi/news.js +66 -0
- package/lib/routes-deprecated/zhuixinfan/list.js +51 -0
- package/lib/routes-deprecated/zimuku/index.js +41 -0
- package/lib/routes-deprecated/zreading/home.js +50 -0
- package/lib/routes-deprecated/zsnews/index.js +31 -0
- package/lib/routes.test.ts +84 -0
- package/lib/setup.test.ts +249 -0
- package/lib/types.ts +301 -0
- package/lib/utils/cache/base.ts +17 -0
- package/lib/utils/cache/index.ts +99 -0
- package/lib/utils/cache/memory.ts +42 -0
- package/lib/utils/cache/redis.ts +75 -0
- package/lib/utils/cache.test.ts +91 -0
- package/lib/utils/camelcase-keys.spec.ts +127 -0
- package/lib/utils/camelcase-keys.ts +27 -0
- package/lib/utils/common-config.test.ts +78 -0
- package/lib/utils/common-config.ts +75 -0
- package/lib/utils/common-utils.test.ts +41 -0
- package/lib/utils/common-utils.ts +46 -0
- package/lib/utils/debug-info.ts +24 -0
- package/lib/utils/git-hash.ts +14 -0
- package/lib/utils/got-deprecated.ts +79 -0
- package/lib/utils/got.test.ts +77 -0
- package/lib/utils/got.ts +87 -0
- package/lib/utils/helpers.test.ts +20 -0
- package/lib/utils/helpers.ts +42 -0
- package/lib/utils/logger.ts +46 -0
- package/lib/utils/md5.test.ts +8 -0
- package/lib/utils/md5.ts +5 -0
- package/lib/utils/ofetch.test.ts +51 -0
- package/lib/utils/ofetch.ts +39 -0
- package/lib/utils/otel/index.ts +2 -0
- package/lib/utils/otel/metric.ts +67 -0
- package/lib/utils/otel/trace.ts +28 -0
- package/lib/utils/parse-date.test.ts +163 -0
- package/lib/utils/parse-date.ts +207 -0
- package/lib/utils/proxy/index.ts +56 -0
- package/lib/utils/proxy/pac-proxy.test.ts +80 -0
- package/lib/utils/proxy/pac-proxy.ts +72 -0
- package/lib/utils/proxy/unify-proxy.test.ts +141 -0
- package/lib/utils/proxy/unify-proxy.ts +113 -0
- package/lib/utils/puppeteer-utils.test.ts +101 -0
- package/lib/utils/puppeteer-utils.ts +58 -0
- package/lib/utils/puppeteer.test.ts +144 -0
- package/lib/utils/puppeteer.ts +64 -0
- package/lib/utils/rand-user-agent.test.ts +37 -0
- package/lib/utils/rand-user-agent.ts +30 -0
- package/lib/utils/readable-social.ts +42 -0
- package/lib/utils/render.ts +5 -0
- package/lib/utils/request-rewriter/fetch.test.ts +94 -0
- package/lib/utils/request-rewriter/fetch.ts +82 -0
- package/lib/utils/request-rewriter/get.ts +77 -0
- package/lib/utils/request-rewriter/index.ts +19 -0
- package/lib/utils/request-rewriter.test.ts +151 -0
- package/lib/utils/rss-parser.test.ts +9 -0
- package/lib/utils/rss-parser.ts +13 -0
- package/lib/utils/timezone.test.ts +9 -0
- package/lib/utils/timezone.ts +14 -0
- package/lib/utils/valid-host.test.ts +21 -0
- package/lib/utils/valid-host.ts +14 -0
- package/lib/utils/wait.test.ts +14 -0
- package/lib/utils/wait.ts +7 -0
- package/lib/utils/wechat-mp.test.ts +503 -0
- package/lib/utils/wechat-mp.ts +647 -0
- package/lib/views/atom.tsx +49 -0
- package/lib/views/error.tsx +144 -0
- package/lib/views/index.tsx +204 -0
- package/lib/views/json.ts +48 -0
- package/lib/views/layout.tsx +50 -0
- package/lib/views/rss.tsx +62 -0
- package/lib/views/rss3.test.ts +100 -0
- package/lib/views/rss3.ts +63 -0
- package/package.json +184 -138
- package/lib/api_router.js +0 -26
- package/lib/app.js +0 -92
- package/lib/config.js +0 -214
- package/lib/core_router.js +0 -17
- package/lib/errors/RequestInProgress.js +0 -3
- package/lib/errors/index.js +0 -3
- package/lib/index.js +0 -35
- package/lib/maintainer.js +0 -27
- package/lib/middleware/access-control.js +0 -55
- package/lib/middleware/anti-hotlink.js +0 -54
- package/lib/middleware/api-response-handler.js +0 -147
- package/lib/middleware/api-template.js +0 -9
- package/lib/middleware/cache/index.js +0 -129
- package/lib/middleware/cache/memory.js +0 -42
- package/lib/middleware/cache/redis.js +0 -48
- package/lib/middleware/debug.js +0 -25
- package/lib/middleware/header.js +0 -45
- package/lib/middleware/load-on-demand.js +0 -36
- package/lib/middleware/onerror.js +0 -104
- package/lib/middleware/parameter.js +0 -267
- package/lib/middleware/template.js +0 -82
- package/lib/middleware/utf8.js +0 -6
- package/lib/pkg.js +0 -39
- package/lib/protected_router.js +0 -11
- package/lib/radar-rules.js +0 -3119
- package/lib/radar.js +0 -22
- package/lib/routes/005tv/zx.js +0 -24
- package/lib/routes/10000link/news.js +0 -59
- package/lib/routes/12306/zxdt.js +0 -67
- package/lib/routes/12379/index.js +0 -23
- package/lib/routes/141jav/141jav.js +0 -37
- package/lib/routes/141ppv/141ppv.js +0 -37
- package/lib/routes/199it/category.js +0 -10
- package/lib/routes/199it/tag.js +0 -10
- package/lib/routes/199it/utils.js +0 -44
- package/lib/routes/1draw/index.js +0 -44
- package/lib/routes/1point3acres/blog.js +0 -52
- package/lib/routes/1point3acres/offer.js +0 -211
- package/lib/routes/1point3acres/post.js +0 -50
- package/lib/routes/1point3acres/posts.js +0 -21
- package/lib/routes/1point3acres/threads.js +0 -21
- package/lib/routes/1x/index.js +0 -69
- package/lib/routes/2048/bbs.js +0 -100
- package/lib/routes/21caijing/channel.js +0 -75
- package/lib/routes/36kr/motif.js +0 -35
- package/lib/routes/36kr/news.js +0 -94
- package/lib/routes/36kr/newsflashes.js +0 -36
- package/lib/routes/36kr/search/article.js +0 -69
- package/lib/routes/36kr/user.js +0 -35
- package/lib/routes/3dm/game.js +0 -42
- package/lib/routes/3dm/news_center.js +0 -54
- package/lib/routes/3k8/latest.js +0 -50
- package/lib/routes/3ycy/home.js +0 -58
- package/lib/routes/4gamers/category.js +0 -20
- package/lib/routes/4gamers/tag.js +0 -20
- package/lib/routes/4gamers/topic.js +0 -20
- package/lib/routes/51voa/channel.js +0 -158
- package/lib/routes/60s-science/transcript.js +0 -60
- package/lib/routes/6park/index.js +0 -57
- package/lib/routes/755/user.js +0 -71
- package/lib/routes/8btc/author.js +0 -49
- package/lib/routes/8btc/news/flash.js +0 -41
- package/lib/routes/8kcos/article.js +0 -17
- package/lib/routes/8kcos/cat.js +0 -28
- package/lib/routes/8kcos/const.js +0 -4
- package/lib/routes/8kcos/latest.js +0 -27
- package/lib/routes/91ddcc/stage.js +0 -48
- package/lib/routes/91ddcc/user.js +0 -45
- package/lib/routes/93/index.js +0 -50
- package/lib/routes/95mm/category.js +0 -18
- package/lib/routes/95mm/tab.js +0 -9
- package/lib/routes/95mm/tag.js +0 -7
- package/lib/routes/95mm/utils.js +0 -51
- package/lib/routes/99percentinvisible/transcript.js +0 -46
- package/lib/routes/9to5/subsite.js +0 -67
- package/lib/routes/9to5/utils.js +0 -33
- package/lib/routes/a9vg/a9vg.js +0 -36
- package/lib/routes/abc/documentId.js +0 -7272
- package/lib/routes/abc/id.js +0 -7272
- package/lib/routes/abc/index.js +0 -74
- package/lib/routes/acfun/bangumi.js +0 -28
- package/lib/routes/acfun/video.js +0 -44
- package/lib/routes/acm/amturingaward.js +0 -68
- package/lib/routes/acwifi/index.js +0 -48
- package/lib/routes/adnmb/index.js +0 -69
- package/lib/routes/adquan/index.js +0 -72
- package/lib/routes/aeon/category.js +0 -79
- package/lib/routes/afdian/dynamic.js +0 -35
- package/lib/routes/afdian/explore.js +0 -57
- package/lib/routes/agefans/detail.js +0 -29
- package/lib/routes/agefans/update.js +0 -46
- package/lib/routes/aisixiang/column.js +0 -37
- package/lib/routes/aisixiang/ranking.js +0 -37
- package/lib/routes/aisixiang/thinktank.js +0 -40
- package/lib/routes/aisixiang/utils.js +0 -39
- package/lib/routes/aiyanxishe/home.js +0 -130
- package/lib/routes/aliyun/database_month.js +0 -45
- package/lib/routes/aliyun/developer/group.js +0 -44
- package/lib/routes/aliyun/notice.js +0 -64
- package/lib/routes/aliyun-kernel/index.js +0 -60
- package/lib/routes/aljazeera/news.js +0 -38
- package/lib/routes/allnow/column.js +0 -7
- package/lib/routes/allnow/index.js +0 -5
- package/lib/routes/allnow/tag.js +0 -7
- package/lib/routes/allnow/user.js +0 -7
- package/lib/routes/allnow/utils.js +0 -67
- package/lib/routes/alter-cn/news.js +0 -44
- package/lib/routes/amazfitwatchfaces/search.js +0 -7
- package/lib/routes/amazon/ku.js +0 -57
- package/lib/routes/amd/graphicsdrivers.js +0 -114
- package/lib/routes/andyt/index.js +0 -36
- package/lib/routes/anigamer/anime.js +0 -14
- package/lib/routes/anigamer/new_anime.js +0 -22
- package/lib/routes/anime1/anime.js +0 -25
- package/lib/routes/anime1/search.js +0 -25
- package/lib/routes/animen/news.js +0 -84
- package/lib/routes/anitama/channel.js +0 -64
- package/lib/routes/anki/changes.js +0 -39
- package/lib/routes/aom/journal.js +0 -107
- package/lib/routes/aozora/newbook.js +0 -93
- package/lib/routes/apkpure/versions.js +0 -23
- package/lib/routes/apnews/topics.js +0 -43
- package/lib/routes/apple/appstore/gofans.js +0 -34
- package/lib/routes/apple/appstore/in-app-purchase.js +0 -58
- package/lib/routes/apple/appstore/price.js +0 -53
- package/lib/routes/apple/appstore/update.js +0 -37
- package/lib/routes/apple/appstore/xianmian.js +0 -27
- package/lib/routes/apple/exchange_repair.js +0 -47
- package/lib/routes/appsales/index.js +0 -66
- package/lib/routes/aptonic/action.js +0 -38
- package/lib/routes/aqk/category.js +0 -22
- package/lib/routes/aqk/vul.js +0 -33
- package/lib/routes/archdaily/home.js +0 -47
- package/lib/routes/arknights/news.js +0 -41
- package/lib/routes/asahi/area.js +0 -57
- package/lib/routes/asahi/index.js +0 -94
- package/lib/routes/atfd/index.js +0 -46
- package/lib/routes/autotrader/index.js +0 -69
- package/lib/routes/avgle/videos.js +0 -46
- package/lib/routes/axis-studios/work.js +0 -82
- package/lib/routes/babehub/index.js +0 -30
- package/lib/routes/babehub/search.js +0 -15
- package/lib/routes/babehub/utils.js +0 -71
- package/lib/routes/babykingdom/index.js +0 -46
- package/lib/routes/bahamut/creation_index.js +0 -73
- package/lib/routes/bahamut/utils.js +0 -65
- package/lib/routes/baidu/daily.js +0 -55
- package/lib/routes/baidu/doodles.js +0 -27
- package/lib/routes/baidu/topwords.js +0 -38
- package/lib/routes/baijing/index.js +0 -34
- package/lib/routes/bandcamp/tag.js +0 -46
- package/lib/routes/bandisoft/index.js +0 -38
- package/lib/routes/bangumi/calendar/_base.js +0 -43
- package/lib/routes/bangumi/calendar/today.js +0 -75
- package/lib/routes/bangumi/group/reply.js +0 -36
- package/lib/routes/bangumi/group/topic.js +0 -26
- package/lib/routes/bangumi/person/index.js +0 -34
- package/lib/routes/bangumi/subject/comments.js +0 -54
- package/lib/routes/bangumi/subject/ep.js +0 -26
- package/lib/routes/bangumi/subject/index.js +0 -27
- package/lib/routes/bangumi/subject/offcial-subject-api.js +0 -30
- package/lib/routes/bangumi/user/blog.js +0 -42
- package/lib/routes/banyuetan/index.js +0 -56
- package/lib/routes/bbc/index.js +0 -91
- package/lib/routes/bbc/utils.js +0 -37
- package/lib/routes/behance/index.js +0 -58
- package/lib/routes/bell-labs/events-news.js +0 -70
- package/lib/routes/bendibao/news.js +0 -84
- package/lib/routes/benedictevans/recent.js +0 -41
- package/lib/routes/bibgame/category.js +0 -56
- package/lib/routes/bihu/activaties.js +0 -76
- package/lib/routes/bilibili/app.js +0 -33
- package/lib/routes/bilibili/article.js +0 -30
- package/lib/routes/bilibili/audio.js +0 -42
- package/lib/routes/bilibili/bangumi.js +0 -50
- package/lib/routes/bilibili/blackboard.js +0 -31
- package/lib/routes/bilibili/cache.js +0 -104
- package/lib/routes/bilibili/coin.js +0 -35
- package/lib/routes/bilibili/danmaku.js +0 -56
- package/lib/routes/bilibili/dynamic.js +0 -205
- package/lib/routes/bilibili/fav.js +0 -39
- package/lib/routes/bilibili/followers.js +0 -38
- package/lib/routes/bilibili/followings.js +0 -37
- package/lib/routes/bilibili/followings_article.js +0 -57
- package/lib/routes/bilibili/followings_dynamic.js +0 -137
- package/lib/routes/bilibili/followings_video.js +0 -46
- package/lib/routes/bilibili/linkNews.js +0 -42
- package/lib/routes/bilibili/liveArea.js +0 -74
- package/lib/routes/bilibili/liveRoom.js +0 -41
- package/lib/routes/bilibili/liveSearch.js +0 -40
- package/lib/routes/bilibili/mallIP.js +0 -34
- package/lib/routes/bilibili/mallNew.js +0 -31
- package/lib/routes/bilibili/manga_followings.js +0 -39
- package/lib/routes/bilibili/manga_update.js +0 -33
- package/lib/routes/bilibili/page.js +0 -37
- package/lib/routes/bilibili/partion-ranking.js +0 -59
- package/lib/routes/bilibili/partion.js +0 -36
- package/lib/routes/bilibili/ranking.js +0 -43
- package/lib/routes/bilibili/readlist.js +0 -31
- package/lib/routes/bilibili/reply.js +0 -38
- package/lib/routes/bilibili/topic.js +0 -50
- package/lib/routes/bilibili/userChannel.js +0 -73
- package/lib/routes/bilibili/userFav.js +0 -35
- package/lib/routes/bilibili/user_bangumi.js +0 -36
- package/lib/routes/bilibili/utils.js +0 -9
- package/lib/routes/bilibili/video.js +0 -35
- package/lib/routes/bilibili/vsearch.js +0 -51
- package/lib/routes/bilibili/weekly_recommend.js +0 -41
- package/lib/routes/bing/index.js +0 -26
- package/lib/routes/biobio/index.js +0 -40
- package/lib/routes/biobio/others.js +0 -40
- package/lib/routes/biodiscover/index.js +0 -43
- package/lib/routes/bioon/latest.js +0 -51
- package/lib/routes/bioone/featured.js +0 -49
- package/lib/routes/bishijie/kuaixun.js +0 -21
- package/lib/routes/bjnews/epaper.js +0 -80
- package/lib/routes/bjnews/news.js +0 -43
- package/lib/routes/bjp/apod.js +0 -48
- package/lib/routes/bjx/huanbao.js +0 -78
- package/lib/routes/blizzard/news.js +0 -51
- package/lib/routes/blogread/newest.js +0 -30
- package/lib/routes/blogs/diygod/animal-crossing.js +0 -39
- package/lib/routes/blogs/diygod/gk.js +0 -33
- package/lib/routes/blogs/hedwig.js +0 -38
- package/lib/routes/blogs/jianning.js +0 -45
- package/lib/routes/blogs/paulgraham.js +0 -46
- package/lib/routes/blogs/wangyin.js +0 -50
- package/lib/routes/blogs/wordpress.js +0 -45
- package/lib/routes/blow-studio/work.js +0 -71
- package/lib/routes/blur-studio/index.js +0 -81
- package/lib/routes/boc/whpj.js +0 -99
- package/lib/routes/bof/home.js +0 -43
- package/lib/routes/bookscomtw/newbooks.js +0 -37
- package/lib/routes/booksource/index.js +0 -22
- package/lib/routes/bookwalkertw/news.js +0 -32
- package/lib/routes/booth-pm/shop.js +0 -57
- package/lib/routes/boston/index.js +0 -73
- package/lib/routes/btzj/index.js +0 -77
- package/lib/routes/buaq/index.js +0 -31
- package/lib/routes/caixin/article.js +0 -46
- package/lib/routes/caixin/blog.js +0 -58
- package/lib/routes/caixin/category.js +0 -44
- package/lib/routes/caixin/database.js +0 -48
- package/lib/routes/caixin/latest.js +0 -71
- package/lib/routes/caixin/yxnews.js +0 -30
- package/lib/routes/cartoonmad/comic.js +0 -69
- package/lib/routes/caus/index.js +0 -87
- package/lib/routes/cbc/topics.js +0 -71
- package/lib/routes/ccdi/scdc.js +0 -47
- package/lib/routes/ccf/news.js +0 -51
- package/lib/routes/ccg/index.js +0 -49
- package/lib/routes/ccreports/index.js +0 -40
- package/lib/routes/cctv/category.js +0 -20
- package/lib/routes/cctv/jx.js +0 -46
- package/lib/routes/cctv/special.js +0 -108
- package/lib/routes/cctv/utils/mzzlbg.js +0 -39
- package/lib/routes/cctv/utils/news.js +0 -102
- package/lib/routes/cctv/utils/xinwen1j1.js +0 -78
- package/lib/routes/cctv/xwlb.js +0 -48
- package/lib/routes/cell/cell/index.js +0 -113
- package/lib/routes/cell/cover.js +0 -106
- package/lib/routes/cfan/news.js +0 -49
- package/lib/routes/cfd/gbp_div.js +0 -28
- package/lib/routes/cgtn/most.js +0 -48
- package/lib/routes/cgtn/opinions.js +0 -50
- package/lib/routes/cgtn/pick.js +0 -45
- package/lib/routes/cgtn/top.js +0 -45
- package/lib/routes/changba/user.js +0 -71
- package/lib/routes/changku/index.js +0 -39
- package/lib/routes/chaoli/index.js +0 -50
- package/lib/routes/chaping/banner.js +0 -39
- package/lib/routes/chaping/news.js +0 -54
- package/lib/routes/checkee/index.js +0 -56
- package/lib/routes/chicagotribune/index.js +0 -77
- package/lib/routes/chiculture/topic.js +0 -59
- package/lib/routes/chinadialogue/column.js +0 -58
- package/lib/routes/chinadialogue/topics.js +0 -55
- package/lib/routes/chinalaborwatch/reports.js +0 -53
- package/lib/routes/chinatimes/index.js +0 -115
- package/lib/routes/chiphell/forum.js +0 -67
- package/lib/routes/chocolatey/software.js +0 -55
- package/lib/routes/chouti/top.js +0 -28
- package/lib/routes/chrome/extensions.js +0 -30
- package/lib/routes/chsi/zszcgd.js +0 -51
- package/lib/routes/chuiniu/column.js +0 -89
- package/lib/routes/chuiniu/column_list.js +0 -36
- package/lib/routes/citavi/index.js +0 -52
- package/lib/routes/ciweimao/chapter.js +0 -34
- package/lib/routes/cktest/app.js +0 -34
- package/lib/routes/cktest/policy.js +0 -43
- package/lib/routes/clickme/index.js +0 -76
- package/lib/routes/cls/depth.js +0 -63
- package/lib/routes/cls/telegraph.js +0 -34
- package/lib/routes/cmes/news.js +0 -64
- package/lib/routes/cna/index.js +0 -54
- package/lib/routes/cnbeta/home.js +0 -53
- package/lib/routes/cneb/guoneinews.js +0 -27
- package/lib/routes/cneb/yjxx.js +0 -36
- package/lib/routes/cntv/cntv.js +0 -24
- package/lib/routes/cnu/discovery.js +0 -59
- package/lib/routes/cnu/selected.js +0 -52
- package/lib/routes/cnu/utils.js +0 -28
- package/lib/routes/codeceo/category.js +0 -51
- package/lib/routes/codeceo/home.js +0 -49
- package/lib/routes/comicskingdom/index.js +0 -61
- package/lib/routes/commonapp/blog.js +0 -42
- package/lib/routes/cool18/index.js +0 -57
- package/lib/routes/coolapk/dyh.js +0 -41
- package/lib/routes/coolapk/hot.js +0 -99
- package/lib/routes/coolapk/huati.js +0 -26
- package/lib/routes/coolapk/toutiao.js +0 -31
- package/lib/routes/coolapk/tuwen.js +0 -33
- package/lib/routes/coolapk/userDynamic.js +0 -37
- package/lib/routes/coolapk/utils.js +0 -149
- package/lib/routes/coronavirus/caixin.js +0 -34
- package/lib/routes/coronavirus/dxy-data.js +0 -86
- package/lib/routes/coronavirus/dxy.js +0 -27
- package/lib/routes/coronavirus/mogov-2019ncov.js +0 -49
- package/lib/routes/coronavirus/nhc.js +0 -30
- package/lib/routes/coronavirus/scmp.js +0 -32
- package/lib/routes/coronavirus/sg-moh.js +0 -40
- package/lib/routes/cpta/notice.js +0 -36
- package/lib/routes/cpython/index.js +0 -32
- package/lib/routes/craigslist/search.js +0 -46
- package/lib/routes/cria/news.js +0 -57
- package/lib/routes/cs/news.js +0 -69
- package/lib/routes/csc/notice.js +0 -99
- package/lib/routes/csrc/auditstatus.js +0 -61
- package/lib/routes/csrc/fashenwei.js +0 -42
- package/lib/routes/csrc/news.js +0 -45
- package/lib/routes/curiouscat/user.js +0 -40
- package/lib/routes/curseforge/files.js +0 -52
- package/lib/routes/curseforge/generalfiles.js +0 -42
- package/lib/routes/cve/search.js +0 -26
- package/lib/routes/cyzone/author.js +0 -55
- package/lib/routes/cyzone/label.js +0 -53
- package/lib/routes/d1bz/novel.js +0 -72
- package/lib/routes/d2/daily.js +0 -49
- package/lib/routes/damai/activity.js +0 -28
- package/lib/routes/dapenti/subject.js +0 -5
- package/lib/routes/dapenti/tugua.js +0 -5
- package/lib/routes/dapenti/utils.js +0 -73
- package/lib/routes/darwinawards/articles.js +0 -42
- package/lib/routes/daxiaamu/home.js +0 -45
- package/lib/routes/dayone/blog.js +0 -56
- package/lib/routes/dbmv/index.js +0 -45
- package/lib/routes/dcard/section.js +0 -47
- package/lib/routes/dcard/utils.js +0 -54
- package/lib/routes/ddrk/index.js +0 -32
- package/lib/routes/ddrk/list.js +0 -37
- package/lib/routes/dedao/index.js +0 -43
- package/lib/routes/dedao/knowledge.js +0 -78
- package/lib/routes/dedao/list.js +0 -60
- package/lib/routes/deepl/blog.js +0 -34
- package/lib/routes/deeplearningai/thebatch.js +0 -29
- package/lib/routes/deepmind/blog.js +0 -43
- package/lib/routes/dekudeals/index.js +0 -44
- package/lib/routes/dengekionline/new.js +0 -133
- package/lib/routes/dev.to/top.js +0 -40
- package/lib/routes/dgjyw/index.js +0 -66
- package/lib/routes/dgtle/index.js +0 -57
- package/lib/routes/dgtle/keyword.js +0 -29
- package/lib/routes/dgtle/trade.js +0 -42
- package/lib/routes/dhl/shipment-tracking.js +0 -56
- package/lib/routes/dianping/user.js +0 -98
- package/lib/routes/dida365/habit-checkins.js +0 -83
- package/lib/routes/digic-pictures/index.js +0 -72
- package/lib/routes/digitaling/article.js +0 -71
- package/lib/routes/digitaling/index.js +0 -42
- package/lib/routes/digitaling/project.js +0 -55
- package/lib/routes/dilbert/strip.js +0 -51
- package/lib/routes/dilidili/fanju.js +0 -78
- package/lib/routes/discuz/discuz.js +0 -148
- package/lib/routes/disqus/posts.js +0 -53
- package/lib/routes/dlsite/campaign.js +0 -176
- package/lib/routes/dlsite/new.js +0 -109
- package/lib/routes/dockerhub/build.js +0 -29
- package/lib/routes/dockone/weekly.js +0 -60
- package/lib/routes/docschina/jsweekly.js +0 -47
- package/lib/routes/donews/index.js +0 -59
- package/lib/routes/donews/utils.js +0 -19
- package/lib/routes/dongmanmanhua/comic.js +0 -45
- package/lib/routes/dongqiudi/daily.js +0 -50
- package/lib/routes/dongqiudi/player_news.js +0 -8
- package/lib/routes/dongqiudi/result.js +0 -41
- package/lib/routes/dongqiudi/special.js +0 -48
- package/lib/routes/dongqiudi/team_news.js +0 -8
- package/lib/routes/dongqiudi/top_news.js +0 -42
- package/lib/routes/dongqiudi/utils.js +0 -136
- package/lib/routes/douban/book/rank.js +0 -34
- package/lib/routes/douban/bookstore.js +0 -30
- package/lib/routes/douban/celebrity.js +0 -41
- package/lib/routes/douban/channel/subject.js +0 -60
- package/lib/routes/douban/channel/topic.js +0 -63
- package/lib/routes/douban/classification.js +0 -39
- package/lib/routes/douban/commercialpress/latest.js +0 -55
- package/lib/routes/douban/doulist.js +0 -63
- package/lib/routes/douban/event/hot.js +0 -30
- package/lib/routes/douban/explore.js +0 -33
- package/lib/routes/douban/explore_column.js +0 -56
- package/lib/routes/douban/group.js +0 -48
- package/lib/routes/douban/later.js +0 -32
- package/lib/routes/douban/latest_book.js +0 -19
- package/lib/routes/douban/latest_music.js +0 -74
- package/lib/routes/douban/people/status.js +0 -483
- package/lib/routes/douban/people/wish.js +0 -79
- package/lib/routes/douban/playing.js +0 -35
- package/lib/routes/douban/replied.js +0 -86
- package/lib/routes/douban/replies.js +0 -61
- package/lib/routes/douban/topic.js +0 -80
- package/lib/routes/douban/ustop.js +0 -22
- package/lib/routes/douban/weekly_best.js +0 -44
- package/lib/routes/douyu/room.js +0 -34
- package/lib/routes/dribbble/keyword.js +0 -10
- package/lib/routes/dribbble/popular.js +0 -10
- package/lib/routes/dribbble/user.js +0 -10
- package/lib/routes/dribbble/utils.js +0 -94
- package/lib/routes/dsb/area.js +0 -33
- package/lib/routes/dsndsht23/index.js +0 -119
- package/lib/routes/dtcj/datahero.js +0 -49
- package/lib/routes/duozhi/index.js +0 -48
- package/lib/routes/duozhuayu/search.js +0 -76
- package/lib/routes/dwnews/rank.js +0 -42
- package/lib/routes/dwnews/utils.js +0 -65
- package/lib/routes/dwnews/yaowen.js +0 -73
- package/lib/routes/dx2025/index.js +0 -51
- package/lib/routes/dxy/vaccine.js +0 -109
- package/lib/routes/dysfz/index.js +0 -20
- package/lib/routes/eagle/changelog.js +0 -75
- package/lib/routes/earthquake/ceic.js +0 -66
- package/lib/routes/earthquake/index.js +0 -38
- package/lib/routes/eastday/sh.js +0 -62
- package/lib/routes/eastmoney/user.js +0 -30
- package/lib/routes/edge/addon.js +0 -32
- package/lib/routes/edrawsoft/mindmap.js +0 -99
- package/lib/routes/eeo/index.js +0 -83
- package/lib/routes/egsea/flash.js +0 -40
- package/lib/routes/ehentai/ehapi.js +0 -134
- package/lib/routes/ehentai/favorites.js +0 -19
- package/lib/routes/ehentai/search.js +0 -20
- package/lib/routes/ehentai/tag.js +0 -13
- package/lib/routes/eleduck/jobs.js +0 -38
- package/lib/routes/eleme/open/announce.js +0 -35
- package/lib/routes/eleme/open-be/announce.js +0 -21
- package/lib/routes/elife/index.js +0 -67
- package/lib/routes/elitebabes/index.js +0 -30
- package/lib/routes/elitebabes/search.js +0 -15
- package/lib/routes/elitebabes/utils.js +0 -88
- package/lib/routes/elitebabes/videos.js +0 -26
- package/lib/routes/embassy/index.js +0 -64
- package/lib/routes/embassy/supportedList.js +0 -257
- package/lib/routes/emi-nitta/home.js +0 -74
- package/lib/routes/ems/news.js +0 -21
- package/lib/routes/enclavebooks/category.js +0 -77
- package/lib/routes/enclavebooks/collection.js +0 -44
- package/lib/routes/enclavebooks/user.js +0 -44
- package/lib/routes/engadget/home.js +0 -63
- package/lib/routes/erbingapp/news.js +0 -51
- package/lib/routes/esquirehk/tag.js +0 -71
- package/lib/routes/everything/changes.js +0 -33
- package/lib/routes/everything/eventernote/actors.js +0 -103
- package/lib/routes/ezone/index.js +0 -60
- package/lib/routes/facebook/page.js +0 -128
- package/lib/routes/fanbox/conv.js +0 -227
- package/lib/routes/fanbox/header.js +0 -13
- package/lib/routes/fanbox/main.js +0 -42
- package/lib/routes/fanfou/favorites.js +0 -36
- package/lib/routes/fanfou/home_timeline.js +0 -32
- package/lib/routes/fanfou/public_timeline.js +0 -34
- package/lib/routes/fanfou/user_timeline.js +0 -35
- package/lib/routes/fanfou/utils.js +0 -40
- package/lib/routes/fantia/search.js +0 -66
- package/lib/routes/fantia/user.js +0 -39
- package/lib/routes/fdroid/apprelease.js +0 -33
- package/lib/routes/feed-the-beast/modpack.js +0 -31
- package/lib/routes/feixuew/index.js +0 -63
- package/lib/routes/ff14/ff14_global.js +0 -31
- package/lib/routes/ff14/ff14_zh.js +0 -36
- package/lib/routes/finviz/news.js +0 -40
- package/lib/routes/fir/update.js +0 -31
- package/lib/routes/firefox/addons.js +0 -33
- package/lib/routes/firefox/release.js +0 -30
- package/lib/routes/fitchratings/site.js +0 -33
- package/lib/routes/fjnews/fznews.js +0 -55
- package/lib/routes/fjnews/jjnews.js +0 -43
- package/lib/routes/flyertea/creditcard.js +0 -85
- package/lib/routes/flyertea/preferential.js +0 -33
- package/lib/routes/flyertea/utils.js +0 -66
- package/lib/routes/fontstory/tw.js +0 -48
- package/lib/routes/ft/channel.js +0 -8
- package/lib/routes/ft/myft.js +0 -46
- package/lib/routes/ft/utils.js +0 -88
- package/lib/routes/fulinian/index.js +0 -50
- package/lib/routes/furaffinity/browse.js +0 -44
- package/lib/routes/furaffinity/commissions.js +0 -39
- package/lib/routes/furaffinity/favorites.js +0 -56
- package/lib/routes/furaffinity/gallery.js +0 -56
- package/lib/routes/furaffinity/home.js +0 -59
- package/lib/routes/furaffinity/journal_comments.js +0 -50
- package/lib/routes/furaffinity/journals.js +0 -49
- package/lib/routes/furaffinity/scraps.js +0 -56
- package/lib/routes/furaffinity/search.js +0 -56
- package/lib/routes/furaffinity/shouts.js +0 -40
- package/lib/routes/furaffinity/status.js +0 -39
- package/lib/routes/furaffinity/submission_comments.js +0 -50
- package/lib/routes/furaffinity/user.js +0 -96
- package/lib/routes/furaffinity/watchers.js +0 -47
- package/lib/routes/furaffinity/watching.js +0 -47
- package/lib/routes/futunn/highlights.js +0 -56
- package/lib/routes/fx678/kx.js +0 -44
- package/lib/routes/fzdm/manhua.js +0 -62
- package/lib/routes/gab/explore.js +0 -31
- package/lib/routes/galaxylab/index.js +0 -35
- package/lib/routes/galgame/hhgal.js +0 -70
- package/lib/routes/galgame/sayhuahuo.js +0 -22
- package/lib/routes/galgame/zdfx.js +0 -30
- package/lib/routes/gamegrape/index.js +0 -73
- package/lib/routes/gamer/gnn_index.js +0 -131
- package/lib/routes/gamer/hot.js +0 -48
- package/lib/routes/gameres/utils.js +0 -55
- package/lib/routes/gamersky/ent.js +0 -89
- package/lib/routes/gamersky/news.js +0 -34
- package/lib/routes/gaoqing/utils.js +0 -57
- package/lib/routes/gaoqingla/latest.js +0 -37
- package/lib/routes/gbcc/trust.js +0 -28
- package/lib/routes/gcores/category.js +0 -127
- package/lib/routes/geekpark/breakingnews.js +0 -25
- package/lib/routes/geektime/news.js +0 -54
- package/lib/routes/gelonghui/keyword.js +0 -36
- package/lib/routes/gelonghui/subject.js +0 -42
- package/lib/routes/gelonghui/user.js +0 -46
- package/lib/routes/getitfree/category.js +0 -59
- package/lib/routes/getitfree/search.js +0 -25
- package/lib/routes/getitfree/utils.js +0 -47
- package/lib/routes/gf-cn/news.js +0 -39
- package/lib/routes/girlimg/album.js +0 -57
- package/lib/routes/gitchat/newest.js +0 -23
- package/lib/routes/gitea/blog.js +0 -70
- package/lib/routes/github/branches.js +0 -31
- package/lib/routes/github/contributors.js +0 -96
- package/lib/routes/github/file.js +0 -45
- package/lib/routes/github/follower.js +0 -50
- package/lib/routes/github/issue.js +0 -48
- package/lib/routes/github/pulls.js +0 -43
- package/lib/routes/github/repos.js +0 -34
- package/lib/routes/github/search.js +0 -41
- package/lib/routes/github/star.js +0 -51
- package/lib/routes/github/starred_repos.js +0 -63
- package/lib/routes/github/topic.js +0 -25
- package/lib/routes/github/trending.js +0 -42
- package/lib/routes/gitlab/explore.js +0 -38
- package/lib/routes/gitlab/release.js +0 -30
- package/lib/routes/gitlab/tag.js +0 -30
- package/lib/routes/go-weekly/index.js +0 -29
- package/lib/routes/go.jp/mofa/main.js +0 -95
- package/lib/routes/gocomics/index.js +0 -64
- package/lib/routes/google/album.js +0 -36
- package/lib/routes/google/citations.js +0 -45
- package/lib/routes/google/doodles.js +0 -35
- package/lib/routes/google/news.js +0 -84
- package/lib/routes/google/scholar.js +0 -45
- package/lib/routes/google/sites.js +0 -75
- package/lib/routes/gov/beijing/eea.js +0 -86
- package/lib/routes/gov/beijing/mhc.js +0 -68
- package/lib/routes/gov/chinatax/latest.js +0 -42
- package/lib/routes/gov/chongqing/ljxq/zwgk.js +0 -67
- package/lib/routes/gov/city/nanjing/getContent.js +0 -69
- package/lib/routes/gov/city/nanjing/index.js +0 -32
- package/lib/routes/gov/cnca/hydt.js +0 -54
- package/lib/routes/gov/cnca/jgdt.js +0 -54
- package/lib/routes/gov/cnca/zxtz.js +0 -63
- package/lib/routes/gov/cppcc/index.js +0 -48
- package/lib/routes/gov/customs/list.js +0 -77
- package/lib/routes/gov/fmprc/fyrbt.js +0 -24
- package/lib/routes/gov/fmprc/utils.js +0 -54
- package/lib/routes/gov/guangdong/edu.js +0 -79
- package/lib/routes/gov/guangdong/eea.js +0 -59
- package/lib/routes/gov/harbin/kjj.js +0 -39
- package/lib/routes/gov/hubei/hbsia.js +0 -101
- package/lib/routes/gov/hunan/notice.js +0 -80
- package/lib/routes/gov/jiangsu/eea.js +0 -84
- package/lib/routes/gov/mee/gs.js +0 -54
- package/lib/routes/gov/miit/wjgs.js +0 -53
- package/lib/routes/gov/miit/zcjd.js +0 -53
- package/lib/routes/gov/miit/zcwj.js +0 -53
- package/lib/routes/gov/moa/moa.js +0 -164
- package/lib/routes/gov/moa/sjzxfb.js +0 -20
- package/lib/routes/gov/moe/moe.js +0 -84
- package/lib/routes/gov/mohrss/sbjm.js +0 -59
- package/lib/routes/gov/mohurd/policy.js +0 -39
- package/lib/routes/gov/ndrc/xwdt.js +0 -54
- package/lib/routes/gov/news/index.js +0 -115
- package/lib/routes/gov/ngd/index.js +0 -51
- package/lib/routes/gov/nppa/channels.js +0 -57
- package/lib/routes/gov/nppa/contents.js +0 -37
- package/lib/routes/gov/province/jiangsu/getContent.js +0 -77
- package/lib/routes/gov/province/jiangsu/index.js +0 -66
- package/lib/routes/gov/sapprft/7026.js +0 -97
- package/lib/routes/gov/shanghai/sthj.js +0 -26
- package/lib/routes/gov/shenzhen/xxgk/zfxxgj.js +0 -62
- package/lib/routes/gov/suzhou/doc.js +0 -39
- package/lib/routes/gov/suzhou/news.js +0 -137
- package/lib/routes/gov/suzhou/utils.js +0 -20
- package/lib/routes/gov/taiwan/mnd.js +0 -63
- package/lib/routes/gov/veterans/china.js +0 -76
- package/lib/routes/gov/veterans/hebei.js +0 -73
- package/lib/routes/gov/wuhan/kjj.js +0 -63
- package/lib/routes/gov/wuhan/wehdz.js +0 -63
- package/lib/routes/gov/xinwen/tujie.js +0 -75
- package/lib/routes/gov/zhengce/govall.js +0 -59
- package/lib/routes/gov/zhengce/wenjian.js +0 -53
- package/lib/routes/gov/zhengce/zuixin.js +0 -42
- package/lib/routes/gq/tw/index.js +0 -66
- package/lib/routes/gracg/user.js +0 -65
- package/lib/routes/gradcafe/result.js +0 -37
- package/lib/routes/greasyfork/scripts.js +0 -39
- package/lib/routes/growincity/news.js +0 -49
- package/lib/routes/grubstreet/index.js +0 -9
- package/lib/routes/grubstreet/utils.js +0 -78
- package/lib/routes/guancha/headline.js +0 -48
- package/lib/routes/guancha/index.js +0 -132
- package/lib/routes/guancha/member.js +0 -71
- package/lib/routes/guancha/personalpage.js +0 -72
- package/lib/routes/guancha/topic.js +0 -55
- package/lib/routes/guanggoo/index.js +0 -81
- package/lib/routes/guardian/guardian.js +0 -45
- package/lib/routes/guat/news.js +0 -68
- package/lib/routes/guet/news.js +0 -95
- package/lib/routes/guiltfree/onsale.js +0 -48
- package/lib/routes/guokr/calendar.js +0 -47
- package/lib/routes/guokr/scientific.js +0 -30
- package/lib/routes/gvm/index.js +0 -94
- package/lib/routes/gwern/category.js +0 -58
- package/lib/routes/hackernews/story.js +0 -60
- package/lib/routes/hackerone/hacktivity.js +0 -46
- package/lib/routes/hackerone/search.js +0 -49
- package/lib/routes/haimaoba/comics.js +0 -57
- package/lib/routes/haohaozhu/discover.js +0 -42
- package/lib/routes/haohaozhu/whole-house.js +0 -75
- package/lib/routes/hdx/explore.js +0 -57
- package/lib/routes/hentai-cosplays/hentai-cosplays.js +0 -11
- package/lib/routes/hentai-cosplays/utils.js +0 -52
- package/lib/routes/hentaimama/videos.js +0 -32
- package/lib/routes/hex-rays/index.js +0 -28
- package/lib/routes/hexo/next.js +0 -45
- package/lib/routes/hexo/yilia.js +0 -30
- package/lib/routes/hinatazaka46/blog.js +0 -38
- package/lib/routes/hinatazaka46/news.js +0 -34
- package/lib/routes/hk01/channel.js +0 -22
- package/lib/routes/hk01/hot.js +0 -20
- package/lib/routes/hk01/issue.js +0 -22
- package/lib/routes/hk01/tag.js +0 -22
- package/lib/routes/hk01/zone.js +0 -41
- package/lib/routes/hkcd/pdf.js +0 -30
- package/lib/routes/hkcnews/news.js +0 -59
- package/lib/routes/hkepc/index.js +0 -164
- package/lib/routes/hket/index.js +0 -129
- package/lib/routes/hko/weather.js +0 -44
- package/lib/routes/hopper/index.js +0 -82
- package/lib/routes/houxu/events.js +0 -27
- package/lib/routes/houxu/live.js +0 -39
- package/lib/routes/houxu/lives.js +0 -58
- package/lib/routes/hpoi/index.js +0 -47
- package/lib/routes/hpoi/info.js +0 -51
- package/lib/routes/hpoi/user.js +0 -37
- package/lib/routes/huawei/xinsheng/index.js +0 -61
- package/lib/routes/hugo/releases.js +0 -53
- package/lib/routes/hupu/all.js +0 -53
- package/lib/routes/hupu/bbs.js +0 -83
- package/lib/routes/hupu/dept.js +0 -66
- package/lib/routes/huxiu/article.js +0 -30
- package/lib/routes/huxiu/author.js +0 -33
- package/lib/routes/huxiu/collection.js +0 -35
- package/lib/routes/huxiu/search.js +0 -28
- package/lib/routes/huxiu/tag.js +0 -31
- package/lib/routes/huxiu/utils.js +0 -70
- package/lib/routes/huya/live.js +0 -33
- package/lib/routes/icable/category.js +0 -64
- package/lib/routes/icourse163/newest.js +0 -77
- package/lib/routes/idaily/index.js +0 -21
- package/lib/routes/idownloadblog/index.js +0 -51
- package/lib/routes/iea/index.js +0 -53
- package/lib/routes/ieee/author.js +0 -30
- package/lib/routes/ifanr/index.js +0 -75
- package/lib/routes/ifeng/feng.js +0 -69
- package/lib/routes/ifeng/utils.js +0 -28
- package/lib/routes/ifnews/column.js +0 -75
- package/lib/routes/iie/blog.js +0 -47
- package/lib/routes/ikea/uk/new.js +0 -20
- package/lib/routes/ikea/uk/offer.js +0 -64
- package/lib/routes/im2maker/index.js +0 -60
- package/lib/routes/imaijia/category.js +0 -63
- package/lib/routes/imuseum/index.js +0 -49
- package/lib/routes/index.js +0 -112
- package/lib/routes/indienova/article.js +0 -53
- package/lib/routes/infoq/recommend.js +0 -28
- package/lib/routes/infoq/topic.js +0 -45
- package/lib/routes/infoq/utils.js +0 -103
- package/lib/routes/infzm/news.js +0 -68
- package/lib/routes/initium/full.js +0 -190
- package/lib/routes/instagram/index.js +0 -130
- package/lib/routes/instagram/utils.js +0 -23
- package/lib/routes/instapaper/person.js +0 -28
- package/lib/routes/iplay/home.js +0 -26
- package/lib/routes/iplay/utils.js +0 -57
- package/lib/routes/ipsw/index.js +0 -112
- package/lib/routes/iqiyi/dongman.js +0 -42
- package/lib/routes/iqiyi/video.js +0 -43
- package/lib/routes/iresearch/report.js +0 -63
- package/lib/routes/ithome/index.js +0 -81
- package/lib/routes/ithome/ranking.js +0 -69
- package/lib/routes/itjuzi/invest.js +0 -32
- package/lib/routes/itjuzi/merge.js +0 -32
- package/lib/routes/itslide/new.js +0 -40
- package/lib/routes/ixigua/userVideo.js +0 -35
- package/lib/routes/iyiou/index.js +0 -41
- package/lib/routes/iyouport/index.js +0 -35
- package/lib/routes/iyouport/utils.js +0 -22
- package/lib/routes/jandan/article.js +0 -62
- package/lib/routes/jandan/pic.js +0 -89
- package/lib/routes/japanpost/track.js +0 -111
- package/lib/routes/japanpost/utils.js +0 -94
- package/lib/routes/javbus/genre.js +0 -7
- package/lib/routes/javbus/home.js +0 -3
- package/lib/routes/javbus/series.js +0 -7
- package/lib/routes/javbus/star.js +0 -7
- package/lib/routes/javbus/uncensored/genre.js +0 -6
- package/lib/routes/javbus/uncensored/home.js +0 -3
- package/lib/routes/javbus/uncensored/series.js +0 -7
- package/lib/routes/javbus/uncensored/star.js +0 -7
- package/lib/routes/javbus/util.js +0 -211
- package/lib/routes/javbus/western/genre.js +0 -7
- package/lib/routes/javbus/western/home.js +0 -3
- package/lib/routes/javbus/western/series.js +0 -7
- package/lib/routes/javbus/western/star.js +0 -7
- package/lib/routes/javdb/actors.js +0 -20
- package/lib/routes/javdb/index.js +0 -32
- package/lib/routes/javdb/makers.js +0 -21
- package/lib/routes/javdb/rankings.js +0 -12
- package/lib/routes/javdb/search.js +0 -26
- package/lib/routes/javdb/series.js +0 -21
- package/lib/routes/javdb/tags.js +0 -12
- package/lib/routes/javdb/utils.js +0 -82
- package/lib/routes/javlibrary/bestreviews.js +0 -11
- package/lib/routes/javlibrary/stars.js +0 -9
- package/lib/routes/javlibrary/users.js +0 -22
- package/lib/routes/javlibrary/utils.js +0 -68
- package/lib/routes/javlibrary/videos.js +0 -9
- package/lib/routes/jdlingyu/index.js +0 -45
- package/lib/routes/jianshu/collection.js +0 -29
- package/lib/routes/jianshu/home.js +0 -27
- package/lib/routes/jianshu/trending.js +0 -28
- package/lib/routes/jianshu/user.js +0 -29
- package/lib/routes/jianshu/utils.js +0 -66
- package/lib/routes/jiazhen108/index.js +0 -47
- package/lib/routes/jiemian/list.js +0 -48
- package/lib/routes/jiemian/utils.js +0 -26
- package/lib/routes/jijitang/article.js +0 -19
- package/lib/routes/jijitang/publication.js +0 -18
- package/lib/routes/jike/common.js +0 -135
- package/lib/routes/jike/topic.js +0 -65
- package/lib/routes/jike/topicText.js +0 -42
- package/lib/routes/jike/user.js +0 -145
- package/lib/routes/jingdong/zhongchou.js +0 -78
- package/lib/routes/jinritoutiao/keyword.js +0 -27
- package/lib/routes/jinse/catalogue.js +0 -20
- package/lib/routes/jinse/lives.js +0 -20
- package/lib/routes/jinse/timeline.js +0 -21
- package/lib/routes/jinshi/index.js +0 -35
- package/lib/routes/jisilu/reply.js +0 -63
- package/lib/routes/jisilu/topic.js +0 -68
- package/lib/routes/jpmorganchase/research.js +0 -52
- package/lib/routes/jskou/index.js +0 -21
- package/lib/routes/juejin/books.js +0 -29
- package/lib/routes/juejin/category.js +0 -39
- package/lib/routes/juejin/collection.js +0 -26
- package/lib/routes/juejin/column.js +0 -31
- package/lib/routes/juejin/favorites.js +0 -39
- package/lib/routes/juejin/pins.js +0 -66
- package/lib/routes/juejin/posts.js +0 -25
- package/lib/routes/juejin/shares.js +0 -26
- package/lib/routes/juejin/tag.js +0 -40
- package/lib/routes/juejin/trending.js +0 -79
- package/lib/routes/juejin/utils.js +0 -48
- package/lib/routes/juesheng/index.js +0 -49
- package/lib/routes/justrun/index.js +0 -44
- package/lib/routes/jx3/news.js +0 -58
- package/lib/routes/kaggle/competitions.js +0 -51
- package/lib/routes/kaggle/discussion.js +0 -72
- package/lib/routes/kaggle/user.js +0 -19
- package/lib/routes/kaiyan/index.js +0 -53
- package/lib/routes/kaopunews/index.js +0 -28
- package/lib/routes/keep/user.js +0 -47
- package/lib/routes/kirara/news.js +0 -30
- package/lib/routes/kkj/news.js +0 -52
- package/lib/routes/konachan/post_popular_recent.js +0 -67
- package/lib/routes/konami/pesmobile.js +0 -31
- package/lib/routes/kongfz/shop.js +0 -58
- package/lib/routes/kpmg/insights.js +0 -79
- package/lib/routes/krankenkassen/index.js +0 -54
- package/lib/routes/ku/index.js +0 -31
- package/lib/routes/kuai/id.js +0 -38
- package/lib/routes/kuai/index.js +0 -38
- package/lib/routes/kuaibao/index.js +0 -33
- package/lib/routes/kuaidi100/index.js +0 -47
- package/lib/routes/kuaidi100/supported_company.js +0 -17
- package/lib/routes/kuaidi100/utils.js +0 -223
- package/lib/routes/kzfeed/topic.js +0 -122
- package/lib/routes/langlive/room.js +0 -33
- package/lib/routes/laosiji/feed.js +0 -23
- package/lib/routes/laosiji/hotshow.js +0 -32
- package/lib/routes/lastfm/loved.js +0 -27
- package/lib/routes/lastfm/recent.js +0 -27
- package/lib/routes/lastfm/top.js +0 -27
- package/lib/routes/latepost/index.js +0 -84
- package/lib/routes/law/dh.js +0 -39
- package/lib/routes/law/gf.js +0 -41
- package/lib/routes/law/hq.js +0 -39
- package/lib/routes/law/hw.js +0 -39
- package/lib/routes/law/jctd.js +0 -41
- package/lib/routes/law/jh.js +0 -41
- package/lib/routes/law/jtc.js +0 -41
- package/lib/routes/law/ts.js +0 -41
- package/lib/routes/law/zl.js +0 -40
- package/lib/routes/learnku/topic.js +0 -53
- package/lib/routes/leboncoin/ad.js +0 -136
- package/lib/routes/leetcode/articles.js +0 -77
- package/lib/routes/leetcode/check-cn.js +0 -98
- package/lib/routes/leetcode/check-us.js +0 -32
- package/lib/routes/leetcode/utils.js +0 -54
- package/lib/routes/letterboxd/utils.js +0 -140
- package/lib/routes/lfsyd/index.js +0 -50
- package/lib/routes/lfsyd/tag.js +0 -64
- package/lib/routes/lfsyd/user.js +0 -48
- package/lib/routes/lfsyd/utils.js +0 -75
- package/lib/routes/liequtv/room.js +0 -36
- package/lib/routes/lifetimes/index.js +0 -99
- package/lib/routes/lingyi/index.js +0 -64
- package/lib/routes/linkedkeeper/index.js +0 -37
- package/lib/routes/linkresearcher/index.js +0 -65
- package/lib/routes/liquipedia/dota2_matches.js +0 -50
- package/lib/routes/liwushuo/index.js +0 -28
- package/lib/routes/liyuan-forums/threads.js +0 -76
- package/lib/routes/lizhi/user.js +0 -46
- package/lib/routes/lkong/forum.js +0 -75
- package/lib/routes/lkong/thread.js +0 -56
- package/lib/routes/lofter/posts.js +0 -54
- package/lib/routes/lofter/tag.js +0 -55
- package/lib/routes/logseq/changelog.js +0 -42
- package/lib/routes/lol/newsindex.js +0 -95
- package/lib/routes/loveheaven/update.js +0 -45
- package/lib/routes/lowendtalk/discussion.js +0 -43
- package/lib/routes/luogu/contest.js +0 -28
- package/lib/routes/luogu/daily.js +0 -53
- package/lib/routes/luogu/userFeed.js +0 -38
- package/lib/routes/lwn/alerts.js +0 -57
- package/lib/routes/macau-bolsas/index.js +0 -47
- package/lib/routes/macked/app.js +0 -25
- package/lib/routes/macwk/soft.js +0 -32
- package/lib/routes/mafengwo/note.js +0 -53
- package/lib/routes/magireco/announcements.js +0 -26
- package/lib/routes/magireco/event_banner.js +0 -34
- package/lib/routes/mail/imap.js +0 -79
- package/lib/routes/maitta/index.js +0 -29
- package/lib/routes/makeuseof/index.js +0 -59
- package/lib/routes/manhuadui/manhua.js +0 -36
- package/lib/routes/manhuagui/comic.js +0 -53
- package/lib/routes/manong-weekly/issues.js +0 -33
- package/lib/routes/manxiaosi/book.js +0 -49
- package/lib/routes/mastodon/account_id.js +0 -17
- package/lib/routes/mastodon/acct.js +0 -18
- package/lib/routes/mastodon/timeline_local.js +0 -18
- package/lib/routes/mastodon/timeline_remote.js +0 -18
- package/lib/routes/mastodon/utils.js +0 -128
- package/lib/routes/matataki/site/posts/author.js +0 -17
- package/lib/routes/matataki/site/posts/favorite.js +0 -42
- package/lib/routes/matataki/site/posts/scoreranking.js +0 -15
- package/lib/routes/matataki/site/posts/tag.js +0 -16
- package/lib/routes/matataki/site/posts/timeranking.js +0 -15
- package/lib/routes/matataki/site/posts/token.js +0 -18
- package/lib/routes/matataki/utils/matataki-utils.js +0 -125
- package/lib/routes/matters/author.js +0 -49
- package/lib/routes/matters/latest.js +0 -69
- package/lib/routes/matters/tags.js +0 -56
- package/lib/routes/maxnews/dota2.js +0 -45
- package/lib/routes/mcdonalds/news.js +0 -53
- package/lib/routes/mckinsey/index.js +0 -49
- package/lib/routes/mediadigest/category.js +0 -130
- package/lib/routes/medsci/recommend.js +0 -51
- package/lib/routes/meihua/article.js +0 -54
- package/lib/routes/meihua/shots.js +0 -58
- package/lib/routes/meituan/open/announce.js +0 -45
- package/lib/routes/meituan/tech/home.js +0 -45
- package/lib/routes/mercari/index.js +0 -67
- package/lib/routes/metacritic/release.js +0 -53
- package/lib/routes/method-studios/index.js +0 -60
- package/lib/routes/metred/fuli.js +0 -42
- package/lib/routes/mhgui/comic.js +0 -53
- package/lib/routes/mhw/news.js +0 -48
- package/lib/routes/mhw/update.js +0 -66
- package/lib/routes/mi/board.js +0 -36
- package/lib/routes/mi/crowdfunding.js +0 -31
- package/lib/routes/mi/golden.js +0 -22
- package/lib/routes/mi/miui/index.js +0 -58
- package/lib/routes/mi/youpin/crowdfunding.js +0 -39
- package/lib/routes/mi/youpin/new.js +0 -44
- package/lib/routes/microsoft-store/updates.js +0 -30
- package/lib/routes/mihoyo/bh2.js +0 -43
- package/lib/routes/mihoyo/bh3.js +0 -60
- package/lib/routes/mind42/index.js +0 -7
- package/lib/routes/mind42/search.js +0 -5
- package/lib/routes/mind42/tag.js +0 -5
- package/lib/routes/mind42/utils.js +0 -47
- package/lib/routes/minecraft/version.js +0 -34
- package/lib/routes/mingjian/index.js +0 -46
- package/lib/routes/miniapp/article.js +0 -57
- package/lib/routes/miniapp/store/newest.js +0 -36
- package/lib/routes/miniflux/get_entries.js +0 -264
- package/lib/routes/miniflux/get_feeds.js +0 -90
- package/lib/routes/missevan/drama.js +0 -40
- package/lib/routes/missevan/latest.js +0 -47
- package/lib/routes/mitbbs/index.js +0 -54
- package/lib/routes/mitre/publications.js +0 -27
- package/lib/routes/mittrchina/index.js +0 -45
- package/lib/routes/mlhang/latest.js +0 -23
- package/lib/routes/mlog-club/projects.js +0 -33
- package/lib/routes/mlog-club/topics.js +0 -37
- package/lib/routes/mobdata/report.js +0 -30
- package/lib/routes/mobilism/release.js +0 -42
- package/lib/routes/modian/zhongchou.js +0 -61
- package/lib/routes/mofcom/article.js +0 -54
- package/lib/routes/mofish/index.js +0 -29
- package/lib/routes/moxingfans/index.js +0 -50
- package/lib/routes/moxingnet/index.js +0 -61
- package/lib/routes/mp4ba/index.js +0 -133
- package/lib/routes/mp4er/index.js +0 -83
- package/lib/routes/mpaypass/main.js +0 -73
- package/lib/routes/mpaypass/news.js +0 -43
- package/lib/routes/mqube/latest.js +0 -21
- package/lib/routes/mqube/tag.js +0 -23
- package/lib/routes/mqube/top.js +0 -21
- package/lib/routes/mqube/user.js +0 -25
- package/lib/routes/muchong/journal.js +0 -52
- package/lib/routes/mzitu/category.js +0 -26
- package/lib/routes/mzitu/home.js +0 -32
- package/lib/routes/mzitu/post.js +0 -41
- package/lib/routes/mzitu/tag.js +0 -25
- package/lib/routes/mzitu/tags.js +0 -23
- package/lib/routes/mzitu/util.js +0 -51
- package/lib/routes/namoc/announcement.js +0 -64
- package/lib/routes/namoc/exhibition.js +0 -67
- package/lib/routes/namoc/media.js +0 -67
- package/lib/routes/namoc/news.js +0 -67
- package/lib/routes/namoc/specials.js +0 -42
- package/lib/routes/nasa/apod-cn.js +0 -63
- package/lib/routes/nasa/apod-ncku.js +0 -30
- package/lib/routes/nasa/apod.js +0 -30
- package/lib/routes/natgeo/dailyphoto.js +0 -27
- package/lib/routes/natgeo/natgeo.js +0 -70
- package/lib/routes/nature/cover.js +0 -90
- package/lib/routes/nature/highlight.js +0 -57
- package/lib/routes/nature/news-and-comment.js +0 -78
- package/lib/routes/nature/news.js +0 -51
- package/lib/routes/nature/research.js +0 -184
- package/lib/routes/nautilus/topics.js +0 -45
- package/lib/routes/nba/app_news.js +0 -40
- package/lib/routes/nbd/article.js +0 -60
- package/lib/routes/nbd/index.js +0 -49
- package/lib/routes/ncm/artist.js +0 -33
- package/lib/routes/ncm/djradio.js +0 -66
- package/lib/routes/ncm/playlist.js +0 -43
- package/lib/routes/ncm/userplaylist.js +0 -58
- package/lib/routes/neea/index.js +0 -110
- package/lib/routes/netease/ds.js +0 -41
- package/lib/routes/netease/dy.js +0 -54
- package/lib/routes/netease/dy2.js +0 -62
- package/lib/routes/netease/news/rank.js +0 -147
- package/lib/routes/netease/news/special.js +0 -121
- package/lib/routes/netease/open/latest.js +0 -68
- package/lib/routes/netease/open/vip.js +0 -39
- package/lib/routes/network360/jobs.js +0 -24
- package/lib/routes/newrank/douyin.js +0 -60
- package/lib/routes/newrank/utils.js +0 -112
- package/lib/routes/newrank/wechat.js +0 -37
- package/lib/routes/news/whxw.js +0 -59
- package/lib/routes/newsmth/account.js +0 -39
- package/lib/routes/newsmth/section.js +0 -99
- package/lib/routes/newzmz/index.js +0 -74
- package/lib/routes/newzmz/view.js +0 -42
- package/lib/routes/nfmovies/index.js +0 -58
- package/lib/routes/nga/forum.js +0 -72
- package/lib/routes/nga/post.js +0 -71
- package/lib/routes/nhentai/other.js +0 -25
- package/lib/routes/nhentai/search.js +0 -16
- package/lib/routes/nhentai/util.js +0 -136
- package/lib/routes/nhk/news_web_easy.js +0 -44
- package/lib/routes/niaogebiji/cat.js +0 -86
- package/lib/routes/niaogebiji/index.js +0 -40
- package/lib/routes/niaogebiji/today.js +0 -29
- package/lib/routes/nikkei/index.js +0 -34
- package/lib/routes/nikkei/news.js +0 -155
- package/lib/routes/ningmeng/song.js +0 -77
- package/lib/routes/nintendo/direct.js +0 -34
- package/lib/routes/nintendo/eshop_cn.js +0 -51
- package/lib/routes/nintendo/eshop_hk.js +0 -26
- package/lib/routes/nintendo/eshop_jp.js +0 -20
- package/lib/routes/nintendo/eshop_us.js +0 -39
- package/lib/routes/nintendo/news.js +0 -25
- package/lib/routes/nintendo/news_china.js +0 -41
- package/lib/routes/nintendo/system-update.js +0 -38
- package/lib/routes/nintendo/utils.js +0 -186
- package/lib/routes/nobelprize/index.js +0 -79
- package/lib/routes/nogizaka46/news.js +0 -35
- package/lib/routes/noi/index.js +0 -40
- package/lib/routes/noi/province-news.js +0 -40
- package/lib/routes/noi/rg-news.js +0 -47
- package/lib/routes/noi/winners-list.js +0 -41
- package/lib/routes/northhouse/index.js +0 -54
- package/lib/routes/nosec/index.js +0 -73
- package/lib/routes/notefolio/index.js +0 -67
- package/lib/routes/novel/axdzs.js +0 -57
- package/lib/routes/novel/biquge.js +0 -65
- package/lib/routes/novel/biqugeinfo.js +0 -69
- package/lib/routes/novel/booksky.js +0 -44
- package/lib/routes/novel/dcrsw.js +0 -58
- package/lib/routes/novel/ptwxz.js +0 -47
- package/lib/routes/novel/shuquge.js +0 -63
- package/lib/routes/novel/uukanshu.js +0 -39
- package/lib/routes/novel/wenxuemi.js +0 -63
- package/lib/routes/novel/zhaishuyuan.js +0 -84
- package/lib/routes/nowcoder/discuss.js +0 -62
- package/lib/routes/nowcoder/jobcenter.js +0 -57
- package/lib/routes/nowcoder/recommend.js +0 -20
- package/lib/routes/nowcoder/schedule.js +0 -31
- package/lib/routes/npc/index.js +0 -42
- package/lib/routes/nsfc/news.js +0 -92
- package/lib/routes/nyaa/search.js +0 -31
- package/lib/routes/nytimes/book.js +0 -71
- package/lib/routes/nytimes/daily_briefing_chinese.js +0 -61
- package/lib/routes/nytimes/index.js +0 -111
- package/lib/routes/nytimes/utils.js +0 -102
- package/lib/routes/obsidian/announcements.js +0 -22
- package/lib/routes/oilprice/index.js +0 -66
- package/lib/routes/one/index.js +0 -48
- package/lib/routes/openai/blog.js +0 -52
- package/lib/routes/or/index.js +0 -54
- package/lib/routes/oschina/news.js +0 -97
- package/lib/routes/oschina/topic.js +0 -54
- package/lib/routes/oschina/u.js +0 -57
- package/lib/routes/oschina/user.js +0 -57
- package/lib/routes/outagereport/service.js +0 -51
- package/lib/routes/ow/patch.js +0 -23
- package/lib/routes/owspace/read.js +0 -141
- package/lib/routes/p-articles/contributors.js +0 -45
- package/lib/routes/p-articles/section.js +0 -53
- package/lib/routes/p-articles/utils.js +0 -29
- package/lib/routes/paidai/utils.js +0 -26
- package/lib/routes/partnershiponai/resources.js +0 -49
- package/lib/routes/patchwork.kernel.org/comments.js +0 -33
- package/lib/routes/pbc/goutongjiaoliu.js +0 -52
- package/lib/routes/pbc/tradeAnnouncement.js +0 -52
- package/lib/routes/pcr/news-cn.js +0 -28
- package/lib/routes/pcr/news-tw.js +0 -67
- package/lib/routes/pcr/news.js +0 -31
- package/lib/routes/pediy/topic.js +0 -117
- package/lib/routes/pediy/utils.js +0 -27
- package/lib/routes/people/cpc/24h.js +0 -52
- package/lib/routes/people/env.js +0 -73
- package/lib/routes/people/opinion.js +0 -69
- package/lib/routes/people/xjpjh.js +0 -68
- package/lib/routes/pgyer/app.js +0 -91
- package/lib/routes/phoronix/index.js +0 -111
- package/lib/routes/pianyuan/app.js +0 -49
- package/lib/routes/piaohua/hot.js +0 -37
- package/lib/routes/piapro/public.js +0 -54
- package/lib/routes/piapro/user.js +0 -47
- package/lib/routes/piapro/utils.js +0 -45
- package/lib/routes/picuki/profile.js +0 -51
- package/lib/routes/pincong/hot.js +0 -33
- package/lib/routes/pincong/index.js +0 -40
- package/lib/routes/pincong/topic.js +0 -32
- package/lib/routes/pingwest/status.js +0 -40
- package/lib/routes/pingwest/tag.js +0 -50
- package/lib/routes/pingwest/user.js +0 -55
- package/lib/routes/pingwest/utils.js +0 -73
- package/lib/routes/pintu360/index.js +0 -54
- package/lib/routes/pixiv/api/getBookmarks.js +0 -25
- package/lib/routes/pixiv/api/getIllustFollows.js +0 -22
- package/lib/routes/pixiv/api/getIllusts.js +0 -24
- package/lib/routes/pixiv/api/getRanking.js +0 -32
- package/lib/routes/pixiv/api/getUserDetail.js +0 -29
- package/lib/routes/pixiv/api/searchIllust.js +0 -26
- package/lib/routes/pixiv/api/searchPopularIllust.js +0 -25
- package/lib/routes/pixiv/bookmarks.js +0 -45
- package/lib/routes/pixiv/constants.js +0 -8
- package/lib/routes/pixiv/illustfollow.js +0 -38
- package/lib/routes/pixiv/pixiv-got.js +0 -65
- package/lib/routes/pixiv/ranking.js +0 -91
- package/lib/routes/pixiv/search.js +0 -56
- package/lib/routes/pixiv/token.js +0 -58
- package/lib/routes/pixiv/user.js +0 -43
- package/lib/routes/pjsk/news.js +0 -49
- package/lib/routes/plainlaw/archives.js +0 -42
- package/lib/routes/pmcaff/feed.js +0 -51
- package/lib/routes/pmcaff/list.js +0 -67
- package/lib/routes/pmcaff/user.js +0 -56
- package/lib/routes/pnas/index.js +0 -66
- package/lib/routes/pocket/trending.js +0 -31
- package/lib/routes/polar/blog.js +0 -47
- package/lib/routes/popiask/questions.js +0 -41
- package/lib/routes/popiask/tapechat_questions.js +0 -43
- package/lib/routes/popyard/index.js +0 -93
- package/lib/routes/pork-price/index.js +0 -49
- package/lib/routes/pornhub/category.js +0 -22
- package/lib/routes/pornhub/category_url.js +0 -30
- package/lib/routes/pornhub/model.js +0 -31
- package/lib/routes/pornhub/pornstar.js +0 -31
- package/lib/routes/pornhub/search.js +0 -22
- package/lib/routes/pornhub/users.js +0 -31
- package/lib/routes/potplayer/update.js +0 -42
- package/lib/routes/prestige-av/series.js +0 -42
- package/lib/routes/processon/popular.js +0 -51
- package/lib/routes/producthunt/today.js +0 -24
- package/lib/routes/project-zero-issues/index.js +0 -48
- package/lib/routes/ps/list.js +0 -34
- package/lib/routes/ps/product.js +0 -133
- package/lib/routes/ps/ps4updates.js +0 -60
- package/lib/routes/ps/trophy.js +0 -86
- package/lib/routes/psnine/game.js +0 -32
- package/lib/routes/psnine/index.js +0 -33
- package/lib/routes/psnine/shuzhe.js +0 -33
- package/lib/routes/psnine/trade.js +0 -39
- package/lib/routes/ptpress/book.js +0 -34
- package/lib/routes/pubmed/trending.js +0 -65
- package/lib/routes/putonghua/hangzhou.js +0 -45
- package/lib/routes/qdaily/index.js +0 -88
- package/lib/routes/qidian/chapter.js +0 -43
- package/lib/routes/qidian/forum.js +0 -41
- package/lib/routes/qidian/free-next.js +0 -45
- package/lib/routes/qidian/free.js +0 -47
- package/lib/routes/qingting/channel.js +0 -36
- package/lib/routes/qlwb/city.js +0 -54
- package/lib/routes/qlwb/news.js +0 -37
- package/lib/routes/qstheory/index.js +0 -116
- package/lib/routes/qtfyfl/category.js +0 -91
- package/lib/routes/quantamagazine/archive.js +0 -81
- package/lib/routes/quicker/person.js +0 -32
- package/lib/routes/quicker/qa.js +0 -41
- package/lib/routes/quicker/update.js +0 -30
- package/lib/routes/qutoutiao/category.js +0 -44
- package/lib/routes/radio/radio.js +0 -50
- package/lib/routes/react/react-native-weekly.js +0 -35
- package/lib/routes/readhub/category.js +0 -102
- package/lib/routes/remote-work/index.js +0 -88
- package/lib/routes/rescuetime/release-notes.js +0 -37
- package/lib/routes/reuters/channel.js +0 -155
- package/lib/routes/reuters/theWire.js +0 -45
- package/lib/routes/reuters/utils.js +0 -72
- package/lib/routes/rfa/index.js +0 -46
- package/lib/routes/right/forum.js +0 -67
- package/lib/routes/rrys/review.js +0 -30
- package/lib/routes/rs05/rs05.js +0 -35
- package/lib/routes/rsshub/routes.js +0 -67
- package/lib/routes/rsshub/sponsors.js +0 -46
- package/lib/routes/rthk-news/index.js +0 -60
- package/lib/routes/s-hentai/index.js +0 -64
- package/lib/routes/sagawa/index.js +0 -67
- package/lib/routes/sakurazaka46/blog.js +0 -38
- package/lib/routes/sankakucomplex/post.js +0 -53
- package/lib/routes/sans/summit_archive.js +0 -24
- package/lib/routes/saraba1st/thread.js +0 -45
- package/lib/routes/scala-blog/scala-blog.js +0 -29
- package/lib/routes/scboy/thread.js +0 -50
- package/lib/routes/sciencemag/cover.js +0 -56
- package/lib/routes/sciencemag/current.js +0 -123
- package/lib/routes/sciencemag/early.js +0 -97
- package/lib/routes/sciencenet/blog.js +0 -56
- package/lib/routes/sckjt/news.js +0 -35
- package/lib/routes/scmp/index.js +0 -115
- package/lib/routes/scoresaber/user.js +0 -44
- package/lib/routes/segmentfault/channel.js +0 -90
- package/lib/routes/segmentfault/user.js +0 -90
- package/lib/routes/sexinsex/index.js +0 -101
- package/lib/routes/sf/sffq-announce.js +0 -22
- package/lib/routes/shanbay/checkin.js +0 -48
- package/lib/routes/shanbay/footprints.js +0 -42
- package/lib/routes/shengwugu/index.js +0 -41
- package/lib/routes/shinybbs/index.js +0 -60
- package/lib/routes/shinybbs/latest.js +0 -57
- package/lib/routes/shinybbs/p.js +0 -38
- package/lib/routes/showroom/room.js +0 -31
- package/lib/routes/shuax/project.js +0 -37
- package/lib/routes/shuhui/comics.js +0 -95
- package/lib/routes/simonsfoundation/articles.js +0 -53
- package/lib/routes/simpread/changelog.js +0 -79
- package/lib/routes/sina/chuangshiji.js +0 -38
- package/lib/routes/sina/discovery.js +0 -52
- package/lib/routes/sina/finance.js +0 -37
- package/lib/routes/sina/rollnews.js +0 -36
- package/lib/routes/sina/sports.js +0 -54
- package/lib/routes/sixthtone/news.js +0 -52
- package/lib/routes/sketch/updates.js +0 -40
- package/lib/routes/skysports/news.js +0 -53
- package/lib/routes/smzdm/article.js +0 -57
- package/lib/routes/smzdm/baoliao.js +0 -55
- package/lib/routes/smzdm/haowen.js +0 -60
- package/lib/routes/smzdm/haowen_fenlei.js +0 -63
- package/lib/routes/smzdm/keyword.js +0 -39
- package/lib/routes/smzdm/ranking.js +0 -39
- package/lib/routes/sobooks/date.js +0 -7
- package/lib/routes/sobooks/index.js +0 -7
- package/lib/routes/sobooks/tag.js +0 -7
- package/lib/routes/sobooks/utils.js +0 -49
- package/lib/routes/socialbeta/home.js +0 -42
- package/lib/routes/socialbeta/hunt.js +0 -29
- package/lib/routes/socialclub/events.js +0 -28
- package/lib/routes/sogou/doodles.js +0 -26
- package/lib/routes/sohu/mp.js +0 -55
- package/lib/routes/solidot/_article.js +0 -54
- package/lib/routes/solidot/main.js +0 -46
- package/lib/routes/solidot/sectigo.pem +0 -122
- package/lib/routes/solidot/wotrust.pem +0 -125
- package/lib/routes/soomal/topics.js +0 -130
- package/lib/routes/soul/hot.js +0 -74
- package/lib/routes/soundcloud/utils.js +0 -47
- package/lib/routes/sse/convert.js +0 -32
- package/lib/routes/sse/disclosure.js +0 -34
- package/lib/routes/sse/inquire.js +0 -31
- package/lib/routes/sse/renewal.js +0 -61
- package/lib/routes/sse/sserules.js +0 -49
- package/lib/routes/ssmh/category.js +0 -50
- package/lib/routes/ssmh/index.js +0 -32
- package/lib/routes/sspai/activity.js +0 -82
- package/lib/routes/sspai/author.js +0 -63
- package/lib/routes/sspai/column.js +0 -66
- package/lib/routes/sspai/matrix.js +0 -44
- package/lib/routes/sspai/series.js +0 -46
- package/lib/routes/sspai/shortcutsGallery.js +0 -28
- package/lib/routes/sspai/tag.js +0 -46
- package/lib/routes/sspai/topic.js +0 -53
- package/lib/routes/sspai/topics.js +0 -41
- package/lib/routes/stcn/data.js +0 -84
- package/lib/routes/stcn/kuaixun.js +0 -91
- package/lib/routes/stcn/news.js +0 -85
- package/lib/routes/steam/search.js +0 -57
- package/lib/routes/stork/keyword.js +0 -58
- package/lib/routes/storyfm/index.js +0 -44
- package/lib/routes/subhd/newest.js +0 -29
- package/lib/routes/swjtu/tl/news.js +0 -35
- package/lib/routes/szse/inquire.js +0 -87
- package/lib/routes/szse/notice.js +0 -73
- package/lib/routes/szse/projectdynamic.js +0 -103
- package/lib/routes/szse/rule.js +0 -45
- package/lib/routes/t66y/index.js +0 -156
- package/lib/routes/t66y/post.js +0 -153
- package/lib/routes/tahui/rptlist.js +0 -48
- package/lib/routes/tam/forecast.js +0 -53
- package/lib/routes/tanwu/products.js +0 -27
- package/lib/routes/taobao/zhongchou.js +0 -47
- package/lib/routes/taoguba/index.js +0 -46
- package/lib/routes/taoguba/user.js +0 -46
- package/lib/routes/taptap/changelog.js +0 -39
- package/lib/routes/taptap/review.js +0 -39
- package/lib/routes/taptap/topic.js +0 -85
- package/lib/routes/technologyreview/topic.js +0 -35
- package/lib/routes/telecompaper/news.js +0 -100
- package/lib/routes/telecompaper/search.js +0 -76
- package/lib/routes/telegram/blog.js +0 -35
- package/lib/routes/telegram/channel.js +0 -226
- package/lib/routes/telegram/stickerpack.js +0 -26
- package/lib/routes/tencent/bigdata/index.js +0 -53
- package/lib/routes/tencent/bugly/changelog.js +0 -49
- package/lib/routes/tencent/egame/room.js +0 -52
- package/lib/routes/tencent/factcheck/index.js +0 -51
- package/lib/routes/tencent/gameinstitute/community.js +0 -60
- package/lib/routes/tencent/guyu/channel.js +0 -64
- package/lib/routes/tencent/news/author.js +0 -59
- package/lib/routes/tencent/pvp/newsindex.js +0 -62
- package/lib/routes/tencent/tucaoqq/post.js +0 -39
- package/lib/routes/tencent/video/playlist.js +0 -46
- package/lib/routes/tencent/wechat/announce.js +0 -32
- package/lib/routes/tencent/wechat/ce.js +0 -40
- package/lib/routes/tencent/wechat/csm.js +0 -59
- package/lib/routes/tencent/wechat/ershcimi.js +0 -43
- package/lib/routes/tencent/wechat/feeds.js +0 -47
- package/lib/routes/tencent/wechat/miniprogram/devtools.js +0 -38
- package/lib/routes/tencent/wechat/miniprogram/framework.js +0 -33
- package/lib/routes/tencent/wechat/miniprogram/plugins.js +0 -54
- package/lib/routes/tencent/wechat/miniprogram/wxcloud.js +0 -47
- package/lib/routes/tencent/wechat/mp.js +0 -77
- package/lib/routes/tencent/wechat/msgalbum.js +0 -59
- package/lib/routes/tencent/wechat/tgchannel.js +0 -65
- package/lib/routes/tencent/wechat/uread.js +0 -51
- package/lib/routes/tencent/wechat/wechat-open/pay/announce.js +0 -32
- package/lib/routes/tencent/wechat/wemp.js +0 -58
- package/lib/routes/tencent/wechat/wjdn.js +0 -28
- package/lib/routes/tencent/wechat/wxnmh.js +0 -46
- package/lib/routes/tesla/update.js +0 -42
- package/lib/routes/the-economist/download.js +0 -30
- package/lib/routes/the-economist/full.js +0 -48
- package/lib/routes/the-economist/gre-vocabulary.js +0 -27
- package/lib/routes/thepaper/839studio/category.js +0 -40
- package/lib/routes/thepaper/839studio/studio.js +0 -33
- package/lib/routes/thepaper/channel.js +0 -15
- package/lib/routes/thepaper/featured.js +0 -14
- package/lib/routes/thepaper/list.js +0 -15
- package/lib/routes/thepaper/utils.js +0 -48
- package/lib/routes/thrillist/index.js +0 -67
- package/lib/routes/tianya/comments.js +0 -41
- package/lib/routes/tianya/index.js +0 -32
- package/lib/routes/tianya/user.js +0 -34
- package/lib/routes/tianyancha/hot.js +0 -48
- package/lib/routes/tieba/forum.js +0 -88
- package/lib/routes/tieba/post.js +0 -66
- package/lib/routes/tieba/user.js +0 -36
- package/lib/routes/tingdiantz/95598.js +0 -46
- package/lib/routes/tingshuitz/dalian.js +0 -34
- package/lib/routes/tingshuitz/dongguan.js +0 -33
- package/lib/routes/tingshuitz/guangzhou.js +0 -24
- package/lib/routes/tingshuitz/hangzhou.js +0 -34
- package/lib/routes/tingshuitz/nanjing.js +0 -35
- package/lib/routes/tingshuitz/wuhan.js +0 -34
- package/lib/routes/tingshuitz/xian.js +0 -31
- package/lib/routes/tingshuitz/xiaoshan.js +0 -34
- package/lib/routes/tingshuitz/yangjiang.js +0 -31
- package/lib/routes/titsguru/model.js +0 -16
- package/lib/routes/titsguru/util.js +0 -68
- package/lib/routes/tongli/news.js +0 -45
- package/lib/routes/tophub/index.js +0 -28
- package/lib/routes/topys/article.js +0 -55
- package/lib/routes/totalcommander/whatsnew.js +0 -32
- package/lib/routes/touhougarakuta/index.js +0 -63
- package/lib/routes/touhougarakuta/json2html.js +0 -101
- package/lib/routes/toutiao/today.js +0 -32
- package/lib/routes/toutiao/user.js +0 -38
- package/lib/routes/tprtc/cqzr.js +0 -80
- package/lib/routes/tprtc/news.js +0 -71
- package/lib/routes/tprtc/qyzc.js +0 -84
- package/lib/routes/transferwise/pair.js +0 -64
- package/lib/routes/tssstatus/index.js +0 -35
- package/lib/routes/tuicool/mags.js +0 -41
- package/lib/routes/twitter/followings.js +0 -46
- package/lib/routes/twitter/keyword.js +0 -25
- package/lib/routes/twitter/likes.js +0 -22
- package/lib/routes/twitter/list.js +0 -38
- package/lib/routes/twitter/trends.js +0 -23
- package/lib/routes/twitter/user.js +0 -54
- package/lib/routes/twitter/utils.js +0 -413
- package/lib/routes/twmanhuagui/comic.js +0 -53
- package/lib/routes/twreporter/category.js +0 -36
- package/lib/routes/twreporter/fetch_article.js +0 -66
- package/lib/routes/twreporter/newest.js +0 -34
- package/lib/routes/twreporter/photography.js +0 -57
- package/lib/routes/typora/changelog-dev.js +0 -35
- package/lib/routes/typora/changelog.js +0 -60
- package/lib/routes/udn/global.js +0 -61
- package/lib/routes/ui-cn/article.js +0 -44
- package/lib/routes/uisdc/news.js +0 -34
- package/lib/routes/uisdc/talk.js +0 -58
- package/lib/routes/uisdc/topic.js +0 -55
- package/lib/routes/uisdc/zt.js +0 -65
- package/lib/routes/uniqlo/stylingbook.js +0 -24
- package/lib/routes/unit-image/films.js +0 -141
- package/lib/routes/universities/ahau/cs_news/utils.js +0 -50
- package/lib/routes/universities/ahau/jwc/utils.js +0 -50
- package/lib/routes/universities/ahau/main/utils.js +0 -50
- package/lib/routes/universities/ahmu/news.js +0 -51
- package/lib/routes/universities/ahut/cstzgg.js +0 -45
- package/lib/routes/universities/ahut/jwc.js +0 -43
- package/lib/routes/universities/ahut/news.js +0 -44
- package/lib/routes/universities/bit/bityjs.js +0 -23
- package/lib/routes/universities/bit/cs/cs.js +0 -26
- package/lib/routes/universities/bit/cs/utils.js +0 -73
- package/lib/routes/universities/bit/jwc/jwc.js +0 -26
- package/lib/routes/universities/bit/jwc/utils.js +0 -65
- package/lib/routes/universities/bjfu/grs.js +0 -65
- package/lib/routes/universities/bjfu/jwc/index.js +0 -55
- package/lib/routes/universities/bjfu/jwc/utils.js +0 -62
- package/lib/routes/universities/bjfu/kjc.js +0 -65
- package/lib/routes/universities/bjfu/news/index.js +0 -55
- package/lib/routes/universities/bjfu/news/utils.js +0 -62
- package/lib/routes/universities/bjtu/gs/index.js +0 -130
- package/lib/routes/universities/buaa/news/index.js +0 -66
- package/lib/routes/universities/buaa/utils.js +0 -57
- package/lib/routes/universities/bupt/funbox.js +0 -40
- package/lib/routes/universities/bupt/grs.js +0 -64
- package/lib/routes/universities/bupt/news.js +0 -34
- package/lib/routes/universities/bupt/portal.js +0 -34
- package/lib/routes/universities/bupt/utils.js +0 -72
- package/lib/routes/universities/bupt/yz.js +0 -155
- package/lib/routes/universities/bwu/news.js +0 -29
- package/lib/routes/universities/bwu/utils.js +0 -53
- package/lib/routes/universities/cas/cg/index.js +0 -50
- package/lib/routes/universities/cas/iee/kydt.js +0 -46
- package/lib/routes/universities/cas/mesalab/kb.js +0 -45
- package/lib/routes/universities/cas/sim/academic.js +0 -59
- package/lib/routes/universities/cauele/cauele.js +0 -24
- package/lib/routes/universities/cauyjs/cauyjs.js +0 -24
- package/lib/routes/universities/ccnu/career.js +0 -43
- package/lib/routes/universities/ccnu/ccnucs.js +0 -23
- package/lib/routes/universities/ccnu/ccnuwu.js +0 -23
- package/lib/routes/universities/ccnu/ccnuyjs.js +0 -23
- package/lib/routes/universities/cpu/home.js +0 -52
- package/lib/routes/universities/cpu/jwc.js +0 -52
- package/lib/routes/universities/cpu/yjsy.js +0 -52
- package/lib/routes/universities/cqu/jwc/announcement.js +0 -53
- package/lib/routes/universities/cqu/net/info.js +0 -60
- package/lib/routes/universities/cqu/news/tz.js +0 -71
- package/lib/routes/universities/cqu/news/utils.js +0 -48
- package/lib/routes/universities/cqu/sci/info.js +0 -59
- package/lib/routes/universities/cqu/youth/info.js +0 -62
- package/lib/routes/universities/cqwu/news.js +0 -39
- package/lib/routes/universities/csu/job.js +0 -34
- package/lib/routes/universities/cuc/yz.js +0 -39
- package/lib/routes/universities/cucyjs/cucyjs.js +0 -23
- package/lib/routes/universities/cug/gcxy/index.js +0 -114
- package/lib/routes/universities/cug/news.js +0 -63
- package/lib/routes/universities/cuit/cxxww.js +0 -63
- package/lib/routes/universities/dlmu/news.js +0 -44
- package/lib/routes/universities/dlu/jiaowu/news.js +0 -37
- package/lib/routes/universities/dut/index.js +0 -60
- package/lib/routes/universities/dut/subsite.js +0 -50
- package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
- package/lib/routes/universities/ecustyjs/ecustyjs.js +0 -23
- package/lib/routes/universities/fudan/cce.js +0 -52
- package/lib/routes/universities/fzu/news.js +0 -64
- package/lib/routes/universities/gdou/jwc/utils.js +0 -72
- package/lib/routes/universities/gdut/news.js +0 -162
- package/lib/routes/universities/gzmtu/jwc/utils.js +0 -86
- package/lib/routes/universities/gzmtu/tsg/utils.js +0 -86
- package/lib/routes/universities/gzyjs/gzyjs.js +0 -24
- package/lib/routes/universities/harvard/health/blog.js +0 -51
- package/lib/routes/universities/heu/job.js +0 -80
- package/lib/routes/universities/heu/news.js +0 -80
- package/lib/routes/universities/heu/uae.js +0 -84
- package/lib/routes/universities/heu/ugs/news.js +0 -122
- package/lib/routes/universities/heu/yjsy.js +0 -92
- package/lib/routes/universities/hhu/libNews.js +0 -57
- package/lib/routes/universities/hhu/libNewsc.js +0 -75
- package/lib/routes/universities/hit/jwc.js +0 -53
- package/lib/routes/universities/hit/today.js +0 -85
- package/lib/routes/universities/hitsz/article.js +0 -43
- package/lib/routes/universities/hitwh/today.js +0 -46
- package/lib/routes/universities/hnust/graduate/index.js +0 -40
- package/lib/routes/universities/hust/aia/news.js +0 -32
- package/lib/routes/universities/hust/aia/notice.js +0 -35
- package/lib/routes/universities/hustyjs/hustyjs.js +0 -23
- package/lib/routes/universities/jnu/yw/index.js +0 -81
- package/lib/routes/universities/kmust/job/careers.js +0 -33
- package/lib/routes/universities/kmust/job/jobfairs.js +0 -32
- package/lib/routes/universities/kmust/jwc.js +0 -44
- package/lib/routes/universities/lit/jwc.js +0 -50
- package/lib/routes/universities/lit/tw.js +0 -56
- package/lib/routes/universities/lit/xwzx.js +0 -73
- package/lib/routes/universities/lntu/jwnews.js +0 -46
- package/lib/routes/universities/lyu/news/utils.js +0 -42
- package/lib/routes/universities/mit/graduateadmissions.js +0 -63
- package/lib/routes/universities/nciae/news.js +0 -58
- package/lib/routes/universities/nciae/tzgg.js +0 -58
- package/lib/routes/universities/nciae/xsxx.js +0 -58
- package/lib/routes/universities/ncwu/notice.js +0 -42
- package/lib/routes/universities/neu/news.js +0 -61
- package/lib/routes/universities/njfu/jwc.js +0 -52
- package/lib/routes/universities/njtech/jwc.js +0 -54
- package/lib/routes/universities/njupt/jwc.js +0 -84
- package/lib/routes/universities/njust/cwc/index.js +0 -37
- package/lib/routes/universities/njust/eo/index.js +0 -41
- package/lib/routes/universities/njust/eo/util.js +0 -28
- package/lib/routes/universities/njust/gs/index.js +0 -33
- package/lib/routes/universities/njust/jwc/index.js +0 -39
- package/lib/routes/universities/nuaa/cs/index.js +0 -84
- package/lib/routes/universities/nuaa/jwc/jwc.js +0 -105
- package/lib/routes/universities/nuaa/utils/pypasswaf.js +0 -24
- package/lib/routes/universities/nuaa/yjsy/yjsy.js +0 -61
- package/lib/routes/universities/nuc/index.js +0 -86
- package/lib/routes/universities/nudt/yjszs.js +0 -65
- package/lib/routes/universities/nuist/bulletin.js +0 -61
- package/lib/routes/universities/nuist/cas.js +0 -60
- package/lib/routes/universities/nuist/jwc.js +0 -66
- package/lib/routes/universities/nuist/library/lib.js +0 -32
- package/lib/routes/universities/nuist/scs.js +0 -60
- package/lib/routes/universities/nuist/sese.js +0 -60
- package/lib/routes/universities/nuist/xgc.js +0 -48
- package/lib/routes/universities/nuist/yjs.js +0 -63
- package/lib/routes/universities/nwafu/54youth.js +0 -28
- package/lib/routes/universities/nwafu/cie.js +0 -28
- package/lib/routes/universities/nwafu/gs.js +0 -28
- package/lib/routes/universities/nwafu/jcc.js +0 -28
- package/lib/routes/universities/nwafu/jiaowu.js +0 -28
- package/lib/routes/universities/nwafu/lib.js +0 -28
- package/lib/routes/universities/nwafu/news.js +0 -28
- package/lib/routes/universities/nwafu/nic.js +0 -28
- package/lib/routes/universities/nwafu/yjshy.js +0 -28
- package/lib/routes/universities/ouc/it.js +0 -52
- package/lib/routes/universities/outele/outele.js +0 -23
- package/lib/routes/universities/outyjs/outyjs.js +0 -23
- package/lib/routes/universities/pku/bbs/hot.js +0 -61
- package/lib/routes/universities/pku/cls/lecture.js +0 -27
- package/lib/routes/universities/pku/eecs.js +0 -41
- package/lib/routes/universities/pku/pkuyjs.js +0 -23
- package/lib/routes/universities/pku/rccp/mzyt.js +0 -33
- package/lib/routes/universities/scauyjs/scauyjs.js +0 -23
- package/lib/routes/universities/scnu/cs/match.js +0 -35
- package/lib/routes/universities/scnu/jw.js +0 -32
- package/lib/routes/universities/scnu/library.js +0 -32
- package/lib/routes/universities/scnu/scnucs.js +0 -23
- package/lib/routes/universities/scnu/scnuyjs.js +0 -23
- package/lib/routes/universities/scut/jwc/news.js +0 -117
- package/lib/routes/universities/scut/jwc/notice.js +0 -123
- package/lib/routes/universities/scut/scet/notice.js +0 -32
- package/lib/routes/universities/scut/scutyjs.js +0 -28
- package/lib/routes/universities/scut/seie/news_center.js +0 -57
- package/lib/routes/universities/scvtc/xygg.js +0 -45
- package/lib/routes/universities/sdu/cmse.js +0 -55
- package/lib/routes/universities/sdu/cs.js +0 -55
- package/lib/routes/universities/sdu/epe.js +0 -54
- package/lib/routes/universities/sdu/mech.js +0 -58
- package/lib/routes/universities/sdu/sc.js +0 -56
- package/lib/routes/universities/seu/cse/index.js +0 -69
- package/lib/routes/universities/seu/radio/academic.js +0 -65
- package/lib/routes/universities/seu/yzb/index.js +0 -38
- package/lib/routes/universities/shanghaitech/activity.js +0 -34
- package/lib/routes/universities/shanghaitech/sist/activity.js +0 -51
- package/lib/routes/universities/shiep/index.js +0 -95
- package/lib/routes/universities/shmtu/jwc.js +0 -75
- package/lib/routes/universities/shmtu/www.js +0 -61
- package/lib/routes/universities/shou/www.js +0 -64
- package/lib/routes/universities/shu/index.js +0 -75
- package/lib/routes/universities/shu/jwc.js +0 -62
- package/lib/routes/universities/sjtu/gs/tzgg.js +0 -31
- package/lib/routes/universities/sjtu/gs/utils.js +0 -64
- package/lib/routes/universities/sjtu/jwc.js +0 -117
- package/lib/routes/universities/sjtu/seiee/academic.js +0 -18
- package/lib/routes/universities/sjtu/seiee/bjwb.js +0 -45
- package/lib/routes/universities/sjtu/seiee/utils.js +0 -45
- package/lib/routes/universities/sjtu/seiee/xsb.js +0 -53
- package/lib/routes/universities/sjtu/tongqu/activity.js +0 -43
- package/lib/routes/universities/sjtu/yzb/zkxx.js +0 -33
- package/lib/routes/universities/slu/utils.js +0 -74
- package/lib/routes/universities/sustech/bidding.js +0 -34
- package/lib/routes/universities/sustech/newshub-zh.js +0 -35
- package/lib/routes/universities/sustyjs/sustyjs.js +0 -24
- package/lib/routes/universities/swufe/seie/index.js +0 -71
- package/lib/routes/universities/swust/cs.js +0 -62
- package/lib/routes/universities/swust/helper.js +0 -47
- package/lib/routes/universities/swust/jwc_news.js +0 -45
- package/lib/routes/universities/swust/jwc_notice.js +0 -51
- package/lib/routes/universities/sysu/sdcs.js +0 -103
- package/lib/routes/universities/szu/yz/index.js +0 -51
- package/lib/routes/universities/szu/yz/utils.js +0 -78
- package/lib/routes/universities/szuyjs/szuyjs.js +0 -24
- package/lib/routes/universities/thu/index.js +0 -107
- package/lib/routes/universities/tjpyu/ooa.js +0 -73
- package/lib/routes/universities/tju/sse/_article.js +0 -34
- package/lib/routes/universities/tju/sse/notice.js +0 -41
- package/lib/routes/universities/tjuyjs/tjuyjs.js +0 -23
- package/lib/routes/universities/tynu/tynu.js +0 -27
- package/lib/routes/universities/uestc/auto.js +0 -113
- package/lib/routes/universities/uestc/cqe.js +0 -40
- package/lib/routes/universities/uestc/cs.js +0 -119
- package/lib/routes/universities/uestc/gr.js +0 -46
- package/lib/routes/universities/uestc/is.js +0 -102
- package/lib/routes/universities/uestc/jwc.js +0 -38
- package/lib/routes/universities/uestc/news.js +0 -33
- package/lib/routes/universities/uestc/sice.js +0 -64
- package/lib/routes/universities/upc/jsj.js +0 -81
- package/lib/routes/universities/upc/main.js +0 -72
- package/lib/routes/universities/upcyjs/upcyjs.js +0 -23
- package/lib/routes/universities/usst/jwc.js +0 -62
- package/lib/routes/universities/ustb/tj/news.js +0 -62
- package/lib/routes/universities/ustc/index.js +0 -93
- package/lib/routes/universities/ustc/job.js +0 -192
- package/lib/routes/universities/ustc/jwc/index.js +0 -60
- package/lib/routes/universities/utdallas/isso.js +0 -54
- package/lib/routes/universities/whu/cs.js +0 -38
- package/lib/routes/universities/whu/news.js +0 -128
- package/lib/routes/universities/wsyu/news.js +0 -85
- package/lib/routes/universities/wtu/index.js +0 -34
- package/lib/routes/universities/wzu/news.js +0 -25
- package/lib/routes/universities/xidian/jwc.js +0 -70
- package/lib/routes/universities/xjtu/dean.js +0 -86
- package/lib/routes/universities/xjtu/ee.js +0 -44
- package/lib/routes/universities/xjtu/gs/tzgg.js +0 -39
- package/lib/routes/universities/xjtu/international.js +0 -53
- package/lib/routes/universities/xjtu/job.js +0 -50
- package/lib/routes/universities/ynu/utils.js +0 -64
- package/lib/routes/universities/yzu/home.js +0 -83
- package/lib/routes/universities/yzu/yjszs.js +0 -81
- package/lib/routes/universities/zjgsu/tzgg/utils.js +0 -54
- package/lib/routes/universities/zju/career/index.js +0 -42
- package/lib/routes/universities/zju/cst/custom.js +0 -44
- package/lib/routes/universities/zju/cst/index.js +0 -94
- package/lib/routes/universities/zju/grs/index.js +0 -44
- package/lib/routes/universities/zju/list.js +0 -78
- package/lib/routes/universities/zju/physics/index.js +0 -55
- package/lib/routes/universities/zjut/design.js +0 -59
- package/lib/routes/universities/zjut/index.js +0 -59
- package/lib/routes/universities/zkyai/zkyai.js +0 -23
- package/lib/routes/universities/zkyyjs/zkyyjs.js +0 -23
- package/lib/routes/universities/zucc/cssearch/index.js +0 -47
- package/lib/routes/universities/zucc/news/index.js +0 -68
- package/lib/routes/universities/zzu/news.js +0 -80
- package/lib/routes/universities/zzu/soft/news.js +0 -68
- package/lib/routes/uraaka-joshi/uraaka-joshi-user.js +0 -28
- package/lib/routes/uraaka-joshi/uraaka-joshi.js +0 -30
- package/lib/routes/us/supremecourt/argument_audio.js +0 -58
- package/lib/routes/v2ex/post.js +0 -36
- package/lib/routes/v2ex/tab.js +0 -60
- package/lib/routes/v2ex/topics.js +0 -34
- package/lib/routes/verfghbw/press.js +0 -52
- package/lib/routes/verge/index.js +0 -88
- package/lib/routes/vgn/index.js +0 -27
- package/lib/routes/vgtime/keyword.js +0 -46
- package/lib/routes/vgtime/news.js +0 -52
- package/lib/routes/vgtime/release.js +0 -20
- package/lib/routes/voa/day-photos.js +0 -54
- package/lib/routes/voa/index.js +0 -54
- package/lib/routes/vocus/publication.js +0 -19
- package/lib/routes/vocus/utils.js +0 -29
- package/lib/routes/vol/lastupdate.js +0 -51
- package/lib/routes/vuevideo/user.js +0 -60
- package/lib/routes/vulture/utils.js +0 -113
- package/lib/routes/waijiedanao/article.js +0 -78
- package/lib/routes/wallpaperhub/index.js +0 -22
- package/lib/routes/wallstreetcn/live.js +0 -44
- package/lib/routes/wallstreetcn/news.js +0 -33
- package/lib/routes/wanwansub/index.js +0 -57
- package/lib/routes/wanwansub/info.js +0 -44
- package/lib/routes/watchface/update.js +0 -42
- package/lib/routes/weatheralarm/index.js +0 -26
- package/lib/routes/webtoons/comic.js +0 -54
- package/lib/routes/webtoons/naver.js +0 -50
- package/lib/routes/weexcn/index.js +0 -69
- package/lib/routes/weforum/report.js +0 -52
- package/lib/routes/wegene/column.js +0 -30
- package/lib/routes/weibo/keyword.js +0 -47
- package/lib/routes/weibo/oasis/user.js +0 -17
- package/lib/routes/weibo/search/hot.js +0 -34
- package/lib/routes/weibo/super_index.js +0 -52
- package/lib/routes/weibo/timeline.js +0 -178
- package/lib/routes/weibo/user.js +0 -96
- package/lib/routes/weibo/utils.js +0 -215
- package/lib/routes/weidian/goods.js +0 -37
- package/lib/routes/wenku8/chapter.js +0 -35
- package/lib/routes/weseepro/circle.js +0 -38
- package/lib/routes/weseepro/newest-direct.js +0 -69
- package/lib/routes/weseepro/newest.js +0 -69
- package/lib/routes/westore/new.js +0 -40
- package/lib/routes/whalegogo/home.js +0 -43
- package/lib/routes/whalegogo/portal.js +0 -57
- package/lib/routes/whb/zhuzhan.js +0 -76
- package/lib/routes/who/news-room.js +0 -56
- package/lib/routes/wikihow/category.js +0 -34
- package/lib/routes/wikihow/index.js +0 -32
- package/lib/routes/wineyun/index.js +0 -36
- package/lib/routes/wired/tag.js +0 -31
- package/lib/routes/wolley/host.js +0 -39
- package/lib/routes/wolley/index.js +0 -47
- package/lib/routes/wolley/user.js +0 -38
- package/lib/routes/woshipm/bookmarks.js +0 -45
- package/lib/routes/woshipm/latest.js +0 -45
- package/lib/routes/woshipm/popular.js +0 -38
- package/lib/routes/woshipm/user_article.js +0 -43
- package/lib/routes/woshipm/wen.js +0 -39
- package/lib/routes/wsj/index.js +0 -139
- package/lib/routes/wto/dispute-settlement.js +0 -37
- package/lib/routes/wukong/user.js +0 -93
- package/lib/routes/x-mol/news.js +0 -48
- package/lib/routes/x-mol/paper.js +0 -78
- package/lib/routes/x-mol/utils.js +0 -16
- package/lib/routes/x6d/index.js +0 -64
- package/lib/routes/xiachufang/utils.js +0 -100
- package/lib/routes/xiaoheihe/discount.js +0 -71
- package/lib/routes/xiaoheihe/news.js +0 -53
- package/lib/routes/xiaoheihe/user.js +0 -40
- package/lib/routes/xiaohongshu/board.js +0 -26
- package/lib/routes/xiaohongshu/user.js +0 -48
- package/lib/routes/xiaohongshu/util.js +0 -18
- package/lib/routes/xiaoyuzhou/pickup.js +0 -96
- package/lib/routes/xici/index.js +0 -33
- package/lib/routes/ximalaya/album.js +0 -222
- package/lib/routes/ximalaya/utils.js +0 -256
- package/lib/routes/xinquji/internal.js +0 -15
- package/lib/routes/xinquji/today.js +0 -15
- package/lib/routes/xposed/module.js +0 -36
- package/lib/routes/xuangubao/subject.js +0 -47
- package/lib/routes/xueqiu/favorite.js +0 -37
- package/lib/routes/xueqiu/fund.js +0 -71
- package/lib/routes/xueqiu/hots.js +0 -44
- package/lib/routes/xueqiu/snb.js +0 -42
- package/lib/routes/xueqiu/stock_comments.js +0 -61
- package/lib/routes/xueqiu/stock_info.js +0 -71
- package/lib/routes/xueqiu/user.js +0 -52
- package/lib/routes/xueqiu/user_stock.js +0 -47
- package/lib/routes/xuetangx/course_list.js +0 -52
- package/lib/routes/xwlb/index.js +0 -40
- package/lib/routes/xyplorer/whatsnew.js +0 -32
- package/lib/routes/yahoo-jp-tv/index.js +0 -21
- package/lib/routes/yahoo-news/index.js +0 -44
- package/lib/routes/yande.re/post_popular_recent.js +0 -63
- package/lib/routes/yaohuo/index.js +0 -33
- package/lib/routes/yicai/brief.js +0 -34
- package/lib/routes/yicas/blog.js +0 -52
- package/lib/routes/yidoutang/index.js +0 -33
- package/lib/routes/yinxiang/card.js +0 -45
- package/lib/routes/yinxiang/category.js +0 -46
- package/lib/routes/yinxiang/note.js +0 -41
- package/lib/routes/yinxiang/personal.js +0 -47
- package/lib/routes/yinxiang/tag.js +0 -46
- package/lib/routes/yomiuri/news.js +0 -144
- package/lib/routes/youdao/latest.js +0 -47
- package/lib/routes/youdao/xueba.js +0 -64
- package/lib/routes/youku/channel.js +0 -56
- package/lib/routes/youtube/channel.js +0 -35
- package/lib/routes/youtube/playlist.js +0 -37
- package/lib/routes/youtube/user.js +0 -35
- package/lib/routes/youtube/utils.js +0 -90
- package/lib/routes/yuanshen/index.js +0 -70
- package/lib/routes/yuque/doc.js +0 -60
- package/lib/routes/yuzu-emu/entry.js +0 -52
- package/lib/routes/yxdown/news.js +0 -54
- package/lib/routes/yxdown/recommend.js +0 -51
- package/lib/routes/yxdzqb/index.js +0 -49
- package/lib/routes/yyets/todayfilelist.js +0 -35
- package/lib/routes/yystv/category.js +0 -65
- package/lib/routes/yystv/docs.js +0 -34
- package/lib/routes/zaker/focusread.js +0 -65
- package/lib/routes/zaker/source.js +0 -66
- package/lib/routes/zaobao/index.js +0 -17
- package/lib/routes/zaobao/interactive.js +0 -15
- package/lib/routes/zaobao/realtime.js +0 -28
- package/lib/routes/zaobao/util.js +0 -129
- package/lib/routes/zaobao/znews.js +0 -35
- package/lib/routes/zcfy/hot.js +0 -34
- package/lib/routes/zcfy/index.js +0 -34
- package/lib/routes/zcool/discover.js +0 -140
- package/lib/routes/zcool/locations.js +0 -6829
- package/lib/routes/zcool/top.js +0 -75
- package/lib/routes/zcool/user.js +0 -58
- package/lib/routes/zfrontier/board_postlist.js +0 -36
- package/lib/routes/zfrontier/postlist.js +0 -33
- package/lib/routes/zhanqi/room.js +0 -37
- package/lib/routes/zhibo8/forum.js +0 -55
- package/lib/routes/zhibo8/more.js +0 -45
- package/lib/routes/zhibo8/post.js +0 -39
- package/lib/routes/zhihu/activities.js +0 -108
- package/lib/routes/zhihu/answers.js +0 -62
- package/lib/routes/zhihu/bookstore/newest.js +0 -30
- package/lib/routes/zhihu/collection.js +0 -52
- package/lib/routes/zhihu/daily.js +0 -54
- package/lib/routes/zhihu/daily_section.js +0 -54
- package/lib/routes/zhihu/execlib/jsencrypt.js +0 -380
- package/lib/routes/zhihu/hot.js +0 -37
- package/lib/routes/zhihu/hotlist.js +0 -47
- package/lib/routes/zhihu/pin/daily.js +0 -18
- package/lib/routes/zhihu/pin/hotlist.js +0 -18
- package/lib/routes/zhihu/pin/people.js +0 -19
- package/lib/routes/zhihu/pin/utils.js +0 -48
- package/lib/routes/zhihu/posts.js +0 -44
- package/lib/routes/zhihu/question.js +0 -38
- package/lib/routes/zhihu/timeline.js +0 -99
- package/lib/routes/zhihu/topic.js +0 -60
- package/lib/routes/zhihu/utils.js +0 -39
- package/lib/routes/zhihu/weekly.js +0 -32
- package/lib/routes/zhihu/zhuanlan.js +0 -80
- package/lib/routes/zhilian/index.js +0 -78
- package/lib/routes/zhishifenzi/depth.js +0 -56
- package/lib/routes/zhishifenzi/innovation.js +0 -67
- package/lib/routes/zhishifenzi/news.js +0 -66
- package/lib/routes/zhuixinfan/list.js +0 -51
- package/lib/routes/zhutix/latest.js +0 -41
- package/lib/routes/zimuku/index.js +0 -41
- package/lib/routes/zimuxia/index.js +0 -56
- package/lib/routes/zimuxia/portfolio.js +0 -39
- package/lib/routes/zimuzu/resource.js +0 -19
- package/lib/routes/zimuzu/top.js +0 -27
- package/lib/routes/ziroom/room.js +0 -50
- package/lib/routes/zreading/home.js +0 -50
- package/lib/routes/zsnews/index.js +0 -31
- package/lib/routes/zyshow/index.js +0 -42
- package/lib/routes/zzz/index.js +0 -59
- package/lib/utils/common-config.js +0 -78
- package/lib/utils/common-utils.js +0 -11
- package/lib/utils/date.js +0 -85
- package/lib/utils/dateParser.js +0 -89
- package/lib/utils/got.js +0 -40
- package/lib/utils/logger.js +0 -34
- package/lib/utils/md5.js +0 -5
- package/lib/utils/parse-date.js +0 -42
- package/lib/utils/puppeteer.js +0 -25
- package/lib/utils/readable-social.js +0 -46
- package/lib/utils/render.js +0 -7
- package/lib/utils/request-wrapper.js +0 -143
- package/lib/utils/rss-parser.js +0 -13
- package/lib/utils/timezone.js +0 -14
- package/lib/utils/torrent.js +0 -155
- package/lib/utils/wait.js +0 -5
- package/lib/v2/aamacau/index.js +0 -56
- package/lib/v2/aamacau/maintainer.js +0 -3
- package/lib/v2/aamacau/radar.js +0 -13
- package/lib/v2/aamacau/router.js +0 -3
- package/lib/v2/epicgames/index.js +0 -82
- package/lib/v2/epicgames/maintainer.js +0 -3
- package/lib/v2/epicgames/router.js +0 -3
- package/lib/v2/epicgames/supportedList.js +0 -24
- package/lib/v2/eprice/maintainer.js +0 -3
- package/lib/v2/eprice/radar.js +0 -24
- package/lib/v2/eprice/router.js +0 -3
- package/lib/v2/eprice/rss.js +0 -95
- package/lib/v2/eprice/templates/description.art +0 -1
- package/lib/v2/furstar/archive.js +0 -28
- package/lib/v2/furstar/artists.js +0 -32
- package/lib/v2/furstar/index.js +0 -33
- package/lib/v2/furstar/maintainer.js +0 -5
- package/lib/v2/furstar/radar.js +0 -25
- package/lib/v2/furstar/router.js +0 -5
- package/lib/v2/furstar/templates/description.art +0 -5
- package/lib/v2/furstar/utils.js +0 -96
- package/lib/v2/test/index.js +0 -184
- package/lib/v2/test/maintainer.js +0 -3
- package/lib/v2/test/router.js +0 -3
- package/lib/v2/trow/maintainer.js +0 -3
- package/lib/v2/trow/portal.js +0 -36
- package/lib/v2/trow/radar.js +0 -13
- package/lib/v2/trow/router.js +0 -3
- package/lib/v2router.js +0 -17
- package/lib/views/atom.art +0 -72
- package/lib/views/error.art +0 -60
- package/lib/views/rss.art +0 -59
- package/lib/views/welcome.art +0 -111
- /package/lib/{favicon.png → assets/favicon.png} +0 -0
- /package/lib/{v2 → routes}/furstar/templates/author.art +0 -0
- /package/lib/{routes → routes-deprecated}/199it/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/aflcio/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/algocasts/all.js +0 -0
- /package/lib/{routes → routes-deprecated}/allpoetry/order.js +0 -0
- /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/fresh.js +0 -0
- /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/top.js +0 -0
- /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/updated.js +0 -0
- /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/utils.js +0 -0
- /package/lib/{routes → routes-deprecated}/anytxt/release-notes.js +0 -0
- /package/lib/{routes → routes-deprecated}/aqicn/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/arxiv/query.js +0 -0
- /package/lib/{routes → routes-deprecated}/asml/press-releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/av01/actor.js +0 -0
- /package/lib/{routes → routes-deprecated}/av01/tag.js +0 -0
- /package/lib/{routes → routes-deprecated}/bahamut/creation.js +0 -0
- /package/lib/{routes → routes-deprecated}/banyuetan/byt.js +0 -0
- /package/lib/{routes/blogs/jingwei_link.js → routes-deprecated/blogs/jingwei-link.js} +0 -0
- /package/lib/{routes → routes-deprecated}/blogs/leemeng.js +0 -0
- /package/lib/{routes → routes-deprecated}/blogs/wang54.js +0 -0
- /package/lib/{routes → routes-deprecated}/bsblog123/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/cbndata/information.js +0 -0
- /package/lib/{routes → routes-deprecated}/centbrowser/history.js +0 -0
- /package/lib/{routes → routes-deprecated}/checkra1n/releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/chinadaily/english.js +0 -0
- /package/lib/{routes → routes-deprecated}/chinafile/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/chouti/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/chuapp/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/chuhaibiji/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/clb/commentary.js +0 -0
- /package/lib/{routes → routes-deprecated}/cninfo/announcement.js +0 -0
- /package/lib/{routes → routes-deprecated}/coolbuy/newest.js +0 -0
- /package/lib/{routes → routes-deprecated}/cowlevel/element.js +0 -0
- /package/lib/{routes → routes-deprecated}/creaders/headline.js +0 -0
- /package/lib/{routes → routes-deprecated}/ctei/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/ctfhub/search.js +0 -0
- /package/lib/{routes → routes-deprecated}/ctfhub/upcoming.js +0 -0
- /package/lib/{routes → routes-deprecated}/dailyart/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/daodu/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/dbaplus/tab.js +0 -0
- /package/lib/{routes → routes-deprecated}/dcinside/board.js +0 -0
- /package/lib/{routes → routes-deprecated}/deloitte/industries.js +0 -0
- /package/lib/{routes/dgtle/whale_rank.js → routes-deprecated/dgtle/whale-rank.js} +0 -0
- /package/lib/{routes → routes-deprecated}/dgtle/whale.js +0 -0
- /package/lib/{routes → routes-deprecated}/ditto/changes.js +0 -0
- /package/lib/{routes → routes-deprecated}/dw/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/dytt/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/ebb/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/etoland/board.js +0 -0
- /package/lib/{routes → routes-deprecated}/europapress/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/eztv/imdb.js +0 -0
- /package/lib/{routes → routes-deprecated}/fanfou/trends.js +0 -0
- /package/lib/{routes → routes-deprecated}/fgo/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/fnal/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/gab/user.js +0 -0
- /package/lib/{routes → routes-deprecated}/game4399/forum.js +0 -0
- /package/lib/{routes → routes-deprecated}/gameres/hot.js +0 -0
- /package/lib/{routes → routes-deprecated}/gameres/list.js +0 -0
- /package/lib/{routes → routes-deprecated}/gaoqing/latest.js +0 -0
- /package/lib/{routes → routes-deprecated}/geektime/column.js +0 -0
- /package/lib/{routes → routes-deprecated}/gnn/gnn.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/caict/bps.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/caict/caictgd.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/caict/qwsj.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/chongqing/ljxq/dwgk.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/city/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/province/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/shanxi/rst.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/shuju/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/gov/statecouncil/briefing.js +0 -0
- /package/lib/{routes → routes-deprecated}/grandchallenge/challenges.js +0 -0
- /package/lib/{routes → routes-deprecated}/grandchallenge/user.js +0 -0
- /package/lib/{routes → routes-deprecated}/guardian/utils.js +0 -0
- /package/lib/{routes → routes-deprecated}/gushiwen/recommend.js +0 -0
- /package/lib/{routes → routes-deprecated}/hainanu/ssszs.js +0 -0
- /package/lib/{routes → routes-deprecated}/hanime/video.js +0 -0
- /package/lib/{routes → routes-deprecated}/hatena/anonymous_diary/archive.js +0 -0
- /package/lib/{routes → routes-deprecated}/hentai-cosplays/porn-images-xxx.js +0 -0
- /package/lib/{routes → routes-deprecated}/hudongba/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/ichunqiu/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/iciba/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/icity/index.js +0 -0
- /package/lib/{routes/interesting-sky/astronomical_events.js → routes-deprecated/interesting-sky/astronomical-events.js} +0 -0
- /package/lib/{routes → routes-deprecated}/interesting-sky/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/interesting-sky/recent-interesting.js +0 -0
- /package/lib/{routes → routes-deprecated}/invisionapp/inside-design.js +0 -0
- /package/lib/{routes → routes-deprecated}/itslaw/judgements.js +0 -0
- /package/lib/{routes → routes-deprecated}/kaoyan/kaoyan.js +0 -0
- /package/lib/{routes → routes-deprecated}/kchuhai/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/kenshin/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/keyakizaka46/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/keyakizaka46/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/kingarthur/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/kongfz/people.js +0 -0
- /package/lib/{routes → routes-deprecated}/kotaku/story.js +0 -0
- /package/lib/{routes → routes-deprecated}/lagou/jobs.js +0 -0
- /package/lib/{routes → routes-deprecated}/laosiji/hot.js +0 -0
- /package/lib/{routes → routes-deprecated}/latexstudio/home.js +0 -0
- /package/lib/{routes → routes-deprecated}/letterboxd/followingdiary.js +0 -0
- /package/lib/{routes → routes-deprecated}/letterboxd/userdiary.js +0 -0
- /package/lib/{routes → routes-deprecated}/lolapp/recommend.js +0 -0
- /package/lib/{routes → routes-deprecated}/ltaaa/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/mafengwo/ziyouxing.js +0 -0
- /package/lib/{routes → routes-deprecated}/mamibuy/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/manhuadb/comics.js +0 -0
- /package/lib/{routes → routes-deprecated}/manictime/releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/maoyan/hot.js +0 -0
- /package/lib/{routes → routes-deprecated}/maoyan/upcoming.js +0 -0
- /package/lib/{routes → routes-deprecated}/marginnote/tag.js +0 -0
- /package/lib/{routes → routes-deprecated}/mathpix/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/mathunion/fields-medal.js +0 -0
- /package/lib/{routes → routes-deprecated}/mcbbs/forum.js +0 -0
- /package/lib/{routes → routes-deprecated}/mcbbs/post.js +0 -0
- /package/lib/{routes → routes-deprecated}/mcbbs/utils.js +0 -0
- /package/lib/{routes → routes-deprecated}/meipai/user.js +0 -0
- /package/lib/{routes → routes-deprecated}/meipai/utils.js +0 -0
- /package/lib/{routes → routes-deprecated}/melon/chart.js +0 -0
- /package/lib/{routes → routes-deprecated}/monotype/article.js +0 -0
- /package/lib/{routes → routes-deprecated}/mubu/explore.js +0 -0
- /package/lib/{routes → routes-deprecated}/muchong/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/nace/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/navisec/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/nosetime/comment.js +0 -0
- /package/lib/{routes → routes-deprecated}/nosetime/home.js +0 -0
- /package/lib/{routes → routes-deprecated}/nvidia/webdriverupdate.js +0 -0
- /package/lib/{routes → routes-deprecated}/nwpu/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/ofweek/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/onejav/one.js +0 -0
- /package/lib/{routes → routes-deprecated}/onenotegem/release.js +0 -0
- /package/lib/{routes → routes-deprecated}/ornl/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/paidai/bbs.js +0 -0
- /package/lib/{routes → routes-deprecated}/paidai/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/paidai/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/parcel/hermesuk.js +0 -0
- /package/lib/{routes → routes-deprecated}/patchwork.kernel.org/cache.js +0 -0
- /package/lib/{routes → routes-deprecated}/phrack/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/polimi/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/proletar/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/psnine/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/psnine/node.js +0 -0
- /package/lib/{routes → routes-deprecated}/qnap/release-notes.js +0 -0
- /package/lib/{routes → routes-deprecated}/qttabbar/change-log.js +0 -0
- /package/lib/{routes → routes-deprecated}/queshu/book.js +0 -0
- /package/lib/{routes → routes-deprecated}/queshu/sale.js +0 -0
- /package/lib/{routes → routes-deprecated}/qzcea/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/rf/article.js +0 -0
- /package/lib/{routes → routes-deprecated}/rmlt/idea.js +0 -0
- /package/lib/{routes → routes-deprecated}/ruby-china/constants.js +0 -0
- /package/lib/{routes → routes-deprecated}/ruby-china/jobs.js +0 -0
- /package/lib/{routes → routes-deprecated}/ruby-china/topics.js +0 -0
- /package/lib/{routes → routes-deprecated}/ruby-china/utils.js +0 -0
- /package/lib/{routes → routes-deprecated}/samsungmembers/latest.js +0 -0
- /package/lib/{routes → routes-deprecated}/secshi/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/security/pulses.js +0 -0
- /package/lib/{routes → routes-deprecated}/semiconductors/latest-news.js +0 -0
- /package/lib/{routes/sesame/release_notes.js → routes-deprecated/sesame/release-notes.js} +0 -0
- /package/lib/{routes → routes-deprecated}/simonsfoundation/recommend.js +0 -0
- /package/lib/{routes → routes-deprecated}/simpread/notice.js +0 -0
- /package/lib/{routes → routes-deprecated}/siren/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/sketch/beta.js +0 -0
- /package/lib/{routes → routes-deprecated}/soul/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/soundcloud/tracks.js +0 -0
- /package/lib/{routes → routes-deprecated}/souyun/today.js +0 -0
- /package/lib/{routes → routes-deprecated}/ssydt/article.js +0 -0
- /package/lib/{routes → routes-deprecated}/steam/steamgifts/discussions.js +0 -0
- /package/lib/{routes → routes-deprecated}/sznews/press.js +0 -0
- /package/lib/{routes → routes-deprecated}/sznews/ranking.js +0 -0
- /package/lib/{routes → routes-deprecated}/tanchinese/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/technologyreview/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/tencent/qcloud/mlvb/changelog.js +0 -0
- /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/announce.js +0 -0
- /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/question.js +0 -0
- /package/lib/{routes → routes-deprecated}/testerhome/newest.js +0 -0
- /package/lib/{routes → routes-deprecated}/thebrain/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/thunderbird/release.js +0 -0
- /package/lib/{routes → routes-deprecated}/tingdiantz/nanjing.js +0 -0
- /package/lib/{routes → routes-deprecated}/tingshen/tingshen.js +0 -0
- /package/lib/{routes → routes-deprecated}/titsguru/category.js +0 -0
- /package/lib/{routes → routes-deprecated}/titsguru/daily.js +0 -0
- /package/lib/{routes → routes-deprecated}/titsguru/home.js +0 -0
- /package/lib/{routes → routes-deprecated}/topbook/overview.js +0 -0
- /package/lib/{routes → routes-deprecated}/topbook/today.js +0 -0
- /package/lib/{routes → routes-deprecated}/trakt/collection.js +0 -0
- /package/lib/{routes → routes-deprecated}/ui-cn/user.js +0 -0
- /package/lib/{routes → routes-deprecated}/uisdc/hangye.js +0 -0
- /package/lib/{routes → routes-deprecated}/umass/amherst/csnews.js +0 -0
- /package/lib/{routes → routes-deprecated}/umass/amherst/ecenews.js +0 -0
- /package/lib/{routes → routes-deprecated}/umass/amherst/eceseminar.js +0 -0
- /package/lib/{routes → routes-deprecated}/umass/amherst/ipoevents.js +0 -0
- /package/lib/{routes → routes-deprecated}/umass/amherst/ipostories.js +0 -0
- /package/lib/{routes → routes-deprecated}/un/scveto.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ahau/cs_news/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ahau/jwc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ahau/main/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cczu/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cczu/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cqu/news/jzyg.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cqust/jw.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cqust/lib.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-libnews.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cug/graduate.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cug/undergraduate.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/cug/xgxy.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/dgut/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/dgut/xsc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/dlmu/grs/zsgz.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/dpu/jiaowu/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/dpu/wlfw/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/gdou/jwc/jwtz.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/gzmtu/jwc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/gzmtu/tsg/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hbut/cs.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hbut/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/henu/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hfut/tzgg.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hnust/art/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hnust/chem/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hnust/computer/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hnust/jwc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/hubu/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jgsu/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jlbtc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jlbtc/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jlbtc/kyc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jlu/oa.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/jnu/xysx/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ju/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/lyu/news/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/mit/csail/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/mit/ocw-top.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/nchu/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/nku/jwc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/context.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/context.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/scu/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/scu/xg.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/csggxy.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/jwc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/kjxy.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/tyyjkxy.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/tzgg.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/slu/xsc.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/thu/career.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/wzbc/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/xmu/aero.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/xynu/zkb/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ynu/grs/qttz.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ynu/grs/zytz.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ynu/home/main.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/ynu/jwc/zytz.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/zjgsu/gsgg/scripts.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/zjgsu/tzgg/scripts.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/zjgsu/xszq/scripts.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/zzuli/campus/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/universities/zzuli/yjsc/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/us/cia/foia-annual-report.js +0 -0
- /package/lib/{routes → routes-deprecated}/us/treasury/press-releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/us/ustr/press-releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/vocus/user.js +0 -0
- /package/lib/{routes → routes-deprecated}/vscode/marketplace.js +0 -0
- /package/lib/{routes → routes-deprecated}/vulture/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/wainao/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/wegene/newest.js +0 -0
- /package/lib/{routes → routes-deprecated}/wenxuecity/bbs.js +0 -0
- /package/lib/{routes → routes-deprecated}/wenxuecity/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/wenxuecity/hot.js +0 -0
- /package/lib/{routes → routes-deprecated}/wenxuecity/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/wikipedia/mainland.js +0 -0
- /package/lib/{routes → routes-deprecated}/worldhappiness/archive.js +0 -0
- /package/lib/{routes → routes-deprecated}/worldhappiness/blog.js +0 -0
- /package/lib/{routes → routes-deprecated}/x410/news.js +0 -0
- /package/lib/{routes → routes-deprecated}/xclient/app.js +0 -0
- /package/lib/{routes → routes-deprecated}/xiachufang/popular.js +0 -0
- /package/lib/{routes → routes-deprecated}/xiachufang/user/cooked.js +0 -0
- /package/lib/{routes → routes-deprecated}/xiachufang/user/created.js +0 -0
- /package/lib/{routes → routes-deprecated}/xiaomieu/releases.js +0 -0
- /package/lib/{routes → routes-deprecated}/xinwenlianbo/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/xmind/mindmap.js +0 -0
- /package/lib/{routes/xuetangx/course_info.js → routes-deprecated/xuetangx/course-info.js} +0 -0
- /package/lib/{routes → routes-deprecated}/yahoo-author/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/yidoutang/case.js +0 -0
- /package/lib/{routes → routes-deprecated}/yidoutang/guide.js +0 -0
- /package/lib/{routes → routes-deprecated}/yidoutang/mtest.js +0 -0
- /package/lib/{routes → routes-deprecated}/youzan/goods.js +0 -0
- /package/lib/{routes → routes-deprecated}/yuanliao/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/zhimap/index.js +0 -0
- /package/lib/{routes → routes-deprecated}/zongheng/chapter.js +0 -0
package/lib/radar-rules.js
DELETED
|
@@ -1,3119 +0,0 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
'bilibili.com': {
|
|
3
|
-
_name: 'bilibili',
|
|
4
|
-
www: [
|
|
5
|
-
{
|
|
6
|
-
title: '分区视频',
|
|
7
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
8
|
-
source: ['/v/*tpath', '/documentary', '/movie', '/tv'],
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
title: '视频评论',
|
|
12
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
13
|
-
source: '/video/:aid',
|
|
14
|
-
target: (params) => `/bilibili/video/reply/${params.aid.replace('av', '')}`,
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
title: '视频弹幕',
|
|
18
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
19
|
-
source: '/video/:aid',
|
|
20
|
-
target: (params, url) => {
|
|
21
|
-
const pid = new URL(url).searchParams.get('p');
|
|
22
|
-
return `/bilibili/video/danmaku/${params.aid.replace('av', '')}/${pid ? pid : 1}`;
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
title: '番剧',
|
|
27
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
28
|
-
source: '/bangumi/media/:bid',
|
|
29
|
-
target: (params) => `/bilibili/bangumi/media/${params.bid.replace('md', '')}`,
|
|
30
|
-
},
|
|
31
|
-
],
|
|
32
|
-
space: [
|
|
33
|
-
{
|
|
34
|
-
title: 'UP 主动态',
|
|
35
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
36
|
-
source: '/:uid',
|
|
37
|
-
target: '/bilibili/user/dynamic/:uid',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
title: 'UP 主投稿',
|
|
41
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
42
|
-
source: '/:uid',
|
|
43
|
-
target: '/bilibili/user/video/:uid',
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
title: 'UP 主专栏',
|
|
47
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
48
|
-
source: '/:uid',
|
|
49
|
-
target: '/bilibili/user/article/:uid',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
title: 'UP 主默认收藏夹',
|
|
53
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
54
|
-
source: '/:uid',
|
|
55
|
-
target: '/bilibili/user/fav/:uid',
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
title: 'UP 主投币视频',
|
|
59
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
60
|
-
source: '/:uid',
|
|
61
|
-
target: '/bilibili/user/coin/:uid',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
title: 'UP 主粉丝',
|
|
65
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
66
|
-
source: '/:uid',
|
|
67
|
-
target: '/bilibili/user/followers/:uid',
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
title: 'UP 主关注用户',
|
|
71
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
72
|
-
source: '/:uid',
|
|
73
|
-
target: '/bilibili/user/followings/:uid',
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
title: '用户追番列表',
|
|
77
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili',
|
|
78
|
-
source: '/:uid',
|
|
79
|
-
target: '/bilibili/user/bangumi/:uid',
|
|
80
|
-
},
|
|
81
|
-
],
|
|
82
|
-
manga: [
|
|
83
|
-
{
|
|
84
|
-
title: '漫画更新',
|
|
85
|
-
docs: 'https://docs.rsshub.app/social-media.html#bilibili-man-hua-geng-xin',
|
|
86
|
-
source: '/detail/:comicid',
|
|
87
|
-
target: '/bilibili/manga/update/:comicid',
|
|
88
|
-
},
|
|
89
|
-
],
|
|
90
|
-
},
|
|
91
|
-
'weibo.com': {
|
|
92
|
-
_name: '微博',
|
|
93
|
-
'.': [
|
|
94
|
-
{
|
|
95
|
-
title: '博主',
|
|
96
|
-
docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
|
|
97
|
-
source: ['/u/:id', '/:id'],
|
|
98
|
-
target: (params, url, document) => {
|
|
99
|
-
let uid = document?.documentElement.innerHTML.match(/\$CONFIG\['oid']='(\d+)'/)?.[1];
|
|
100
|
-
if (!uid && !isNaN(params.id)) {
|
|
101
|
-
uid = params.id;
|
|
102
|
-
}
|
|
103
|
-
return uid ? `/weibo/user/${uid}` : '';
|
|
104
|
-
},
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
title: '关键词',
|
|
108
|
-
docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
title: '超话',
|
|
112
|
-
docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
|
|
113
|
-
source: '/p/:id/super_index',
|
|
114
|
-
target: '/weibo/super_index/:id',
|
|
115
|
-
},
|
|
116
|
-
],
|
|
117
|
-
s: [
|
|
118
|
-
{
|
|
119
|
-
title: '热搜榜',
|
|
120
|
-
docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
|
|
121
|
-
source: '/top/summary',
|
|
122
|
-
target: '/weibo/search/hot',
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
},
|
|
126
|
-
'weibo.cn': {
|
|
127
|
-
_name: '微博',
|
|
128
|
-
m: [
|
|
129
|
-
{
|
|
130
|
-
title: '博主',
|
|
131
|
-
docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
|
|
132
|
-
source: ['/u/:uid', '/profile/:uid'],
|
|
133
|
-
target: '/weibo/user/:uid',
|
|
134
|
-
},
|
|
135
|
-
],
|
|
136
|
-
},
|
|
137
|
-
'pixiv.net': {
|
|
138
|
-
_name: 'Pixiv',
|
|
139
|
-
www: [
|
|
140
|
-
{
|
|
141
|
-
title: '用户收藏',
|
|
142
|
-
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
|
|
143
|
-
source: '/users/:id/bookmarks/artworks',
|
|
144
|
-
target: '/pixiv/user/bookmarks/:id',
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
title: '用户动态',
|
|
148
|
-
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
|
|
149
|
-
source: '/users/:id',
|
|
150
|
-
target: '/pixiv/user/:id',
|
|
151
|
-
},
|
|
152
|
-
{
|
|
153
|
-
title: '排行榜',
|
|
154
|
-
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
|
|
155
|
-
source: '/ranking.php',
|
|
156
|
-
target: (params, url) => `/pixiv/ranking/${new URL(url).searchParams.get('mode') || 'daily'}`,
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
title: '关键词',
|
|
160
|
-
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
|
|
161
|
-
source: ['/tags/:keyword', '/tags/:keyword/:type?'],
|
|
162
|
-
target: (params, url) => `/pixiv/search/:keyword/${new URL(url).searchParams.get('order')}/${new URL(url).searchParams.get('mode')}`,
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
title: '关注的新作品',
|
|
166
|
-
docs: 'https://docs.rsshub.app/social-media.html#pixiv',
|
|
167
|
-
source: '/bookmark_new_illust.php',
|
|
168
|
-
target: '/pixiv/user/illustfollows',
|
|
169
|
-
},
|
|
170
|
-
],
|
|
171
|
-
},
|
|
172
|
-
'twitter.com': {
|
|
173
|
-
_name: 'Twitter',
|
|
174
|
-
'.': [
|
|
175
|
-
{
|
|
176
|
-
title: '用户时间线',
|
|
177
|
-
docs: 'https://docs.rsshub.app/social-media.html#twitter',
|
|
178
|
-
source: '/:id',
|
|
179
|
-
target: (params) => {
|
|
180
|
-
if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
|
|
181
|
-
return '/twitter/user/:id';
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
title: '用户关注时间线',
|
|
187
|
-
docs: 'https://docs.rsshub.app/social-media.html#twitter',
|
|
188
|
-
source: '/:id',
|
|
189
|
-
target: (params) => {
|
|
190
|
-
if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
|
|
191
|
-
return '/twitter/followings/:id';
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
title: '用户喜欢列表',
|
|
197
|
-
docs: 'https://docs.rsshub.app/social-media.html#twitter',
|
|
198
|
-
source: '/:id',
|
|
199
|
-
target: (params) => {
|
|
200
|
-
if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
|
|
201
|
-
return '/twitter/likes/:id';
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
title: '列表时间线',
|
|
207
|
-
docs: 'https://docs.rsshub.app/social-media.html#twitter',
|
|
208
|
-
source: '/:id/lists/:name',
|
|
209
|
-
target: (params) => {
|
|
210
|
-
if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
|
|
211
|
-
return '/twitter/list/:id/:name';
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
},
|
|
215
|
-
{
|
|
216
|
-
title: '关键词',
|
|
217
|
-
docs: 'https://docs.rsshub.app/social-media.html#twitter',
|
|
218
|
-
source: '/search',
|
|
219
|
-
target: (params, url) => `/twitter/keyword/${new URL(url).searchParams.get('q')}`,
|
|
220
|
-
},
|
|
221
|
-
],
|
|
222
|
-
},
|
|
223
|
-
'youtube.com': {
|
|
224
|
-
_name: 'YouTube',
|
|
225
|
-
www: [
|
|
226
|
-
{
|
|
227
|
-
title: '用户',
|
|
228
|
-
docs: 'https://docs.rsshub.app/social-media.html#youtube',
|
|
229
|
-
source: '/user/:username',
|
|
230
|
-
target: '/youtube/user/:username',
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
title: '频道',
|
|
234
|
-
docs: 'https://docs.rsshub.app/social-media.html#youtube',
|
|
235
|
-
source: '/channel/:id',
|
|
236
|
-
target: '/youtube/channel/:id',
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
title: '播放列表',
|
|
240
|
-
docs: 'https://docs.rsshub.app/social-media.html#youtube',
|
|
241
|
-
source: '/playlist',
|
|
242
|
-
target: (params, url) => `/youtube/playlist/${new URL(url).searchParams.get('list')}`,
|
|
243
|
-
},
|
|
244
|
-
],
|
|
245
|
-
},
|
|
246
|
-
'github.com': {
|
|
247
|
-
_name: 'GitHub',
|
|
248
|
-
'.': [
|
|
249
|
-
{
|
|
250
|
-
title: '用户仓库',
|
|
251
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
252
|
-
source: '/:user',
|
|
253
|
-
target: '/github/repos/:user',
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
title: '用户 Followers',
|
|
257
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
258
|
-
source: '/:user',
|
|
259
|
-
target: '/github/user/followers/:user',
|
|
260
|
-
},
|
|
261
|
-
{
|
|
262
|
-
title: 'Trending',
|
|
263
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
264
|
-
source: '/trending',
|
|
265
|
-
target: '/github/trending/:since',
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
title: 'Trending',
|
|
269
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
270
|
-
source: '/topics',
|
|
271
|
-
target: '/github/topics/:name/:qs?',
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
title: '仓库 Issue',
|
|
275
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
276
|
-
source: ['/:user/:repo/issues', '/:user/:repo/issues/:id', '/:user/:repo'],
|
|
277
|
-
target: '/github/issue/:user/:repo',
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
title: '仓库 Pull Requests',
|
|
281
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
282
|
-
source: ['/:user/:repo/pulls', '/:user/:repo/pulls/:id', '/:user/:repo'],
|
|
283
|
-
target: '/github/pull/:user/:repo',
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
title: '仓库 Stars',
|
|
287
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
288
|
-
source: ['/:user/:repo/stargazers', '/:user/:repo'],
|
|
289
|
-
target: '/github/stars/:user/:repo',
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
title: '仓库 Branches',
|
|
293
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
294
|
-
source: ['/:user/:repo/branches', '/:user/:repo'],
|
|
295
|
-
target: '/github/branches/:user/:repo',
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
title: '文件 Commits',
|
|
299
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
300
|
-
source: '/:user/:repo/blob/:branch/*filepath',
|
|
301
|
-
target: '/github/file/:user/:repo/:branch/:filepath',
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
title: '用户 Starred Repositories',
|
|
305
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
306
|
-
source: '/:user',
|
|
307
|
-
target: '/github/starred_repos/:user',
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
title: '仓库 Contributors',
|
|
311
|
-
docs: 'https://docs.rsshub.app/programming.html#github',
|
|
312
|
-
source: ['/:user/:repo/graphs/contributors', '/:user/:repo'],
|
|
313
|
-
target: '/github/contributors/:user/:repo',
|
|
314
|
-
},
|
|
315
|
-
],
|
|
316
|
-
},
|
|
317
|
-
'zhihu.com': {
|
|
318
|
-
_name: '知乎',
|
|
319
|
-
www: [
|
|
320
|
-
{
|
|
321
|
-
title: '收藏夹',
|
|
322
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
323
|
-
source: '/collection/:id',
|
|
324
|
-
target: '/zhihu/collection/:id',
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
title: '用户动态',
|
|
328
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
329
|
-
source: '/people/:id',
|
|
330
|
-
target: '/zhihu/people/activities/:id',
|
|
331
|
-
},
|
|
332
|
-
{
|
|
333
|
-
title: '用户回答',
|
|
334
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
335
|
-
source: '/people/:id/answers',
|
|
336
|
-
target: '/zhihu/people/answers/:id',
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
title: '用户想法',
|
|
340
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
341
|
-
source: '/people/:id/pins',
|
|
342
|
-
target: '/zhihu/people/pins/:id',
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
title: '用户文章',
|
|
346
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
347
|
-
source: '/:usertype/:id/posts',
|
|
348
|
-
target: '/zhihu/posts/:usertype/:id',
|
|
349
|
-
},
|
|
350
|
-
|
|
351
|
-
{
|
|
352
|
-
title: '热榜',
|
|
353
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
354
|
-
source: '/hot',
|
|
355
|
-
target: '/zhihu/hotlist',
|
|
356
|
-
},
|
|
357
|
-
{
|
|
358
|
-
title: '想法热榜',
|
|
359
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
360
|
-
target: '/zhihu/pin/hotlist',
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
title: '问题',
|
|
364
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
365
|
-
source: '/question/:questionId',
|
|
366
|
-
target: '/zhihu/question/:questionId',
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
title: '话题',
|
|
370
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
371
|
-
source: '/topic/:topicId/:type',
|
|
372
|
-
target: '/zhihu/topic/:topicId',
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
title: '新书',
|
|
376
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
377
|
-
source: '/zhihu/bookstore/newest',
|
|
378
|
-
target: '/zhihu/pin/hotlist',
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
title: '想法-24 小时新闻汇总',
|
|
382
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
383
|
-
source: '/pin/special/972884951192113152',
|
|
384
|
-
target: '/zhihu/pin/daily',
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
title: '书店-周刊',
|
|
388
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
389
|
-
source: '/pub/weekly',
|
|
390
|
-
target: '/zhihu/weekly',
|
|
391
|
-
},
|
|
392
|
-
{
|
|
393
|
-
title: '专栏',
|
|
394
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
395
|
-
source: '/column/:id',
|
|
396
|
-
target: '/zhihu/zhuanlan/:id',
|
|
397
|
-
},
|
|
398
|
-
],
|
|
399
|
-
zhuanlan: [
|
|
400
|
-
{
|
|
401
|
-
title: '专栏',
|
|
402
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
403
|
-
source: '/:id',
|
|
404
|
-
target: '/zhihu/zhuanlan/:id',
|
|
405
|
-
},
|
|
406
|
-
],
|
|
407
|
-
daily: [
|
|
408
|
-
{
|
|
409
|
-
title: '日报',
|
|
410
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
411
|
-
source: '',
|
|
412
|
-
target: '/zhihu/daily',
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
title: '日报',
|
|
416
|
-
docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
|
|
417
|
-
source: '/*tpath',
|
|
418
|
-
target: '/zhihu/daily',
|
|
419
|
-
},
|
|
420
|
-
],
|
|
421
|
-
},
|
|
422
|
-
'smzdm.com': {
|
|
423
|
-
_name: '什么值得买',
|
|
424
|
-
www: [
|
|
425
|
-
{
|
|
426
|
-
title: '排行榜',
|
|
427
|
-
docs: 'https://docs.rsshub.app/shopping.html#shen-me-zhi-de-mai',
|
|
428
|
-
source: '/top',
|
|
429
|
-
},
|
|
430
|
-
],
|
|
431
|
-
search: [
|
|
432
|
-
{
|
|
433
|
-
title: '关键词',
|
|
434
|
-
docs: 'https://docs.rsshub.app/shopping.html#shen-me-zhi-de-mai',
|
|
435
|
-
source: '/',
|
|
436
|
-
target: (params, url) => `/smzdm/keyword/${new URL(url).searchParams.get('s')}`,
|
|
437
|
-
},
|
|
438
|
-
],
|
|
439
|
-
},
|
|
440
|
-
'rsshub.app': {
|
|
441
|
-
_name: 'RSSHub',
|
|
442
|
-
docs: [
|
|
443
|
-
{
|
|
444
|
-
title: '有新路由啦',
|
|
445
|
-
docs: 'https://docs.rsshub.app/program-update.html#rsshub',
|
|
446
|
-
source: ['', '/*tpath'],
|
|
447
|
-
target: '/rsshub/routes',
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
title: '有新赞助商啦',
|
|
451
|
-
docs: 'https://docs.rsshub.app/program-update.html#rsshub',
|
|
452
|
-
source: ['', '/*tpath'],
|
|
453
|
-
target: '/rsshub/sponsors',
|
|
454
|
-
},
|
|
455
|
-
],
|
|
456
|
-
},
|
|
457
|
-
'ximalaya.com': {
|
|
458
|
-
_name: '喜马拉雅',
|
|
459
|
-
'.': [
|
|
460
|
-
{
|
|
461
|
-
title: '专辑',
|
|
462
|
-
docs: 'https://docs.rsshub.app/multimedia.html#xi-ma-la-ya',
|
|
463
|
-
source: '/:type/:id',
|
|
464
|
-
target: (params) => {
|
|
465
|
-
if (parseInt(params.id) + '' === params.id) {
|
|
466
|
-
return '/ximalaya/album/:id/';
|
|
467
|
-
}
|
|
468
|
-
},
|
|
469
|
-
},
|
|
470
|
-
],
|
|
471
|
-
},
|
|
472
|
-
'algocasts.io': {
|
|
473
|
-
_name: 'AlgoCasts',
|
|
474
|
-
'.': [
|
|
475
|
-
{
|
|
476
|
-
title: '视频更新',
|
|
477
|
-
docs: 'https://docs.rsshub.app/programming.html#algocasts',
|
|
478
|
-
source: '/episodes',
|
|
479
|
-
target: '/algocasts',
|
|
480
|
-
},
|
|
481
|
-
],
|
|
482
|
-
},
|
|
483
|
-
'soulapp.cn': {
|
|
484
|
-
_name: 'Soul',
|
|
485
|
-
'.': [
|
|
486
|
-
{
|
|
487
|
-
title: '瞬间更新',
|
|
488
|
-
docs: 'https://docs.rsshub.app/social-media.html#soul',
|
|
489
|
-
},
|
|
490
|
-
],
|
|
491
|
-
},
|
|
492
|
-
'juejin.cn': {
|
|
493
|
-
_name: '掘金',
|
|
494
|
-
'.': [
|
|
495
|
-
{
|
|
496
|
-
title: '标签',
|
|
497
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-biao-qian',
|
|
498
|
-
source: '/tag/:tag',
|
|
499
|
-
target: '/juejin/tag/:tag',
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
title: '小册',
|
|
503
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-xiao-ce',
|
|
504
|
-
source: '/books',
|
|
505
|
-
target: '/juejin/books',
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
title: '沸点',
|
|
509
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-fei-dian',
|
|
510
|
-
source: ['/pins/:type', '/pins/topic/:type'],
|
|
511
|
-
target: (params) => (params.type !== 'recommended' ? '/juejin/pins/:type' : '/juejin/pins'),
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
title: '专栏',
|
|
515
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-zhuan-lan',
|
|
516
|
-
source: ['/user/:id', '/user/:id/posts'],
|
|
517
|
-
target: '/juejin/posts/:id',
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
title: '收藏集',
|
|
521
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-shou-cang-ji',
|
|
522
|
-
source: ['/user/:id', '/user/:id/collections'],
|
|
523
|
-
target: '/juejin/collections/:id',
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
title: '单个收藏夹',
|
|
527
|
-
docs: 'https://docs.rsshub.app/programming.html#jue-jin-dan-ge-shou-cang-jia',
|
|
528
|
-
source: '/collection/:collectionId',
|
|
529
|
-
target: '/juejin/collection/:collectionId',
|
|
530
|
-
},
|
|
531
|
-
],
|
|
532
|
-
},
|
|
533
|
-
'anime1.me': {
|
|
534
|
-
_name: 'Anime1',
|
|
535
|
-
'.': [
|
|
536
|
-
{
|
|
537
|
-
title: '動畫',
|
|
538
|
-
docs: 'https://docs.rsshub.app/anime.html#anime1',
|
|
539
|
-
source: '/category/:time/:name',
|
|
540
|
-
target: '/anime1/anime/:time/:name',
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
title: '搜尋',
|
|
544
|
-
docs: 'https://docs.rsshub.app/anime.html#anime1',
|
|
545
|
-
source: '/',
|
|
546
|
-
target: (params, url) => {
|
|
547
|
-
const keyword = new URL(url).searchParams.get('s');
|
|
548
|
-
return keyword ? `/anime1/search/${keyword}` : '';
|
|
549
|
-
},
|
|
550
|
-
},
|
|
551
|
-
],
|
|
552
|
-
},
|
|
553
|
-
'swufe.edu.cn': {
|
|
554
|
-
_name: '西南财经大学',
|
|
555
|
-
it: [
|
|
556
|
-
{
|
|
557
|
-
title: '经济信息工程学院 - 通知公告',
|
|
558
|
-
docs: 'https://docs.rsshub.app/university.html#xi-nan-cai-jing-da-xue',
|
|
559
|
-
source: '/index/tzgg.htm',
|
|
560
|
-
target: '/swufe/seie/tzgg',
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
title: '经济信息工程学院 - 学院新闻',
|
|
564
|
-
docs: 'https://docs.rsshub.app/university.html#xi-nan-cai-jing-da-xue',
|
|
565
|
-
source: '/index/xyxw.htm',
|
|
566
|
-
target: '/swufe/seie/xyxw',
|
|
567
|
-
},
|
|
568
|
-
],
|
|
569
|
-
},
|
|
570
|
-
'ishuhui.com': {
|
|
571
|
-
_name: '鼠绘漫画',
|
|
572
|
-
www: [
|
|
573
|
-
{
|
|
574
|
-
title: '鼠绘漫画',
|
|
575
|
-
docs: 'https://docs.rsshub.app/anime.html#shu-hui-man-hua',
|
|
576
|
-
source: '/comics/anime/:id',
|
|
577
|
-
target: '/shuhui/comics/:id',
|
|
578
|
-
},
|
|
579
|
-
],
|
|
580
|
-
},
|
|
581
|
-
'www.chicagotribune.com': {
|
|
582
|
-
_name: 'Chicago Tribune',
|
|
583
|
-
www: [
|
|
584
|
-
{
|
|
585
|
-
title: 'Chicago Tribune',
|
|
586
|
-
docs: 'https://docs.rsshub.app/traditional_media.html#chicago-tribune',
|
|
587
|
-
source: '/',
|
|
588
|
-
},
|
|
589
|
-
],
|
|
590
|
-
},
|
|
591
|
-
'haimaoba.com': {
|
|
592
|
-
_name: '海猫吧',
|
|
593
|
-
www: [
|
|
594
|
-
{
|
|
595
|
-
title: '漫画更新',
|
|
596
|
-
docs: 'https://docs.rsshub.app/anime.html#hai-mao-ba',
|
|
597
|
-
source: '/catalog/:id',
|
|
598
|
-
target: '/haimaoba/:id',
|
|
599
|
-
},
|
|
600
|
-
],
|
|
601
|
-
},
|
|
602
|
-
'manhuagui.com': {
|
|
603
|
-
_name: '漫画柜',
|
|
604
|
-
www: [
|
|
605
|
-
{
|
|
606
|
-
title: '漫画更新',
|
|
607
|
-
docs: 'https://docs.rsshub.app/anime.html#kan-man-hua',
|
|
608
|
-
source: '/comic/:id/',
|
|
609
|
-
target: '/manhuagui/comic/:id',
|
|
610
|
-
},
|
|
611
|
-
],
|
|
612
|
-
},
|
|
613
|
-
'mhgui.com': {
|
|
614
|
-
_name: '漫画柜镜像站',
|
|
615
|
-
www: [
|
|
616
|
-
{
|
|
617
|
-
title: '漫画更新',
|
|
618
|
-
docs: 'https://docs.rsshub.app/anime.html#kan-man-hua-jing-xiang-zhan',
|
|
619
|
-
source: '/comic/:id/',
|
|
620
|
-
target: '/mhgui/comic/:id',
|
|
621
|
-
},
|
|
622
|
-
],
|
|
623
|
-
},
|
|
624
|
-
'tw.manhuagui.com': {
|
|
625
|
-
_name: '漫画柜台湾',
|
|
626
|
-
www: [
|
|
627
|
-
{
|
|
628
|
-
title: '漫画更新',
|
|
629
|
-
docs: 'https://docs.rsshub.app/anime.html#kan-man-hua-tai-wan',
|
|
630
|
-
source: '/comic/:id/',
|
|
631
|
-
target: '/twmanhuagui/comic/:id',
|
|
632
|
-
},
|
|
633
|
-
],
|
|
634
|
-
},
|
|
635
|
-
'pgyer.com': {
|
|
636
|
-
_name: '蒲公英应用分发',
|
|
637
|
-
www: [
|
|
638
|
-
{
|
|
639
|
-
title: 'app更新',
|
|
640
|
-
docs: 'https://docs.rsshub.app/program-update.html#pu-gong-ying-ying-yong-fen-fa',
|
|
641
|
-
source: '/:app',
|
|
642
|
-
target: '/pgyer/:app',
|
|
643
|
-
},
|
|
644
|
-
],
|
|
645
|
-
},
|
|
646
|
-
'pianyuan.la': {
|
|
647
|
-
_name: '片源网',
|
|
648
|
-
'.': [
|
|
649
|
-
{
|
|
650
|
-
title: '电影和剧集',
|
|
651
|
-
docs: 'https://docs.rsshub.app/multimedia.html#pian-yuan',
|
|
652
|
-
source: '/',
|
|
653
|
-
},
|
|
654
|
-
],
|
|
655
|
-
},
|
|
656
|
-
'sspai.com': {
|
|
657
|
-
_name: '少数派',
|
|
658
|
-
'.': [
|
|
659
|
-
{
|
|
660
|
-
title: '最新上架付费专栏',
|
|
661
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
662
|
-
source: '/series',
|
|
663
|
-
target: '/sspai/series',
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
title: 'Matrix',
|
|
667
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
668
|
-
source: '/matrix',
|
|
669
|
-
target: '/sspai/matrix',
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
title: '专栏',
|
|
673
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
674
|
-
source: '/column/:id',
|
|
675
|
-
target: '/sspai/column/:id',
|
|
676
|
-
},
|
|
677
|
-
{
|
|
678
|
-
title: '作者动态',
|
|
679
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
680
|
-
source: '/u/:id/updates',
|
|
681
|
-
target: '/sspai/activity/:id',
|
|
682
|
-
},
|
|
683
|
-
{
|
|
684
|
-
title: '作者已发布文章',
|
|
685
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
686
|
-
source: '/u/:id/posts',
|
|
687
|
-
target: '/sspai/author/:id',
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
title: '专题',
|
|
691
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
692
|
-
source: '/topics',
|
|
693
|
-
target: '/sspai/topics',
|
|
694
|
-
},
|
|
695
|
-
{
|
|
696
|
-
title: '专题内文章更新',
|
|
697
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
698
|
-
source: '/topic/:id',
|
|
699
|
-
target: '/sspai/topic/:id',
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
title: '标签订阅',
|
|
703
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
704
|
-
source: '/tag/:keyword',
|
|
705
|
-
target: '/sspai/tag/:keyword',
|
|
706
|
-
},
|
|
707
|
-
],
|
|
708
|
-
shortcuts: [
|
|
709
|
-
{
|
|
710
|
-
title: 'Shortcuts Gallery',
|
|
711
|
-
docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
|
|
712
|
-
source: ['', '/*tpath'],
|
|
713
|
-
target: '/sspai/shortcuts',
|
|
714
|
-
},
|
|
715
|
-
],
|
|
716
|
-
},
|
|
717
|
-
'baidu.com': {
|
|
718
|
-
_name: '贴吧',
|
|
719
|
-
tieba: [
|
|
720
|
-
{
|
|
721
|
-
title: '帖子列表',
|
|
722
|
-
docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
|
|
723
|
-
source: 'f',
|
|
724
|
-
target: (params, url) => {
|
|
725
|
-
const type = new URL(url).searchParams.get('tab');
|
|
726
|
-
if (!type || type === 'main') {
|
|
727
|
-
return `/tieba/forum/${new URL(url).searchParams.get('kw')}`;
|
|
728
|
-
}
|
|
729
|
-
},
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
title: '精品帖子',
|
|
733
|
-
docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
|
|
734
|
-
source: 'f',
|
|
735
|
-
target: (params, url) => {
|
|
736
|
-
const type = new URL(url).searchParams.get('tab');
|
|
737
|
-
if (type === 'good') {
|
|
738
|
-
return `/tieba/forum/good/${new URL(url).searchParams.get('kw')}`;
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
},
|
|
742
|
-
{
|
|
743
|
-
title: '帖子动态',
|
|
744
|
-
docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
|
|
745
|
-
source: '/p/:id',
|
|
746
|
-
target: '/tieba/post/:id',
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
title: '只看楼主',
|
|
750
|
-
docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
|
|
751
|
-
source: '/p/:id',
|
|
752
|
-
target: '/tieba/post/lz/:id',
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
title: '用户帖子',
|
|
756
|
-
docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
|
|
757
|
-
source: '/home/main',
|
|
758
|
-
target: (params, url) => {
|
|
759
|
-
const uid = new URL(url).searchParams.get('un');
|
|
760
|
-
if (uid) {
|
|
761
|
-
return `/tieba/user/${uid}`;
|
|
762
|
-
}
|
|
763
|
-
},
|
|
764
|
-
},
|
|
765
|
-
],
|
|
766
|
-
},
|
|
767
|
-
'wineyun.com': {
|
|
768
|
-
_name: '酒云网',
|
|
769
|
-
www: [
|
|
770
|
-
{
|
|
771
|
-
title: '最新商品',
|
|
772
|
-
docs: 'https://docs.rsshub.app/other.html#jiu-yun-wang',
|
|
773
|
-
source: ['/:category'],
|
|
774
|
-
target: '/wineyun/:category',
|
|
775
|
-
},
|
|
776
|
-
],
|
|
777
|
-
},
|
|
778
|
-
'epicgames.com': {
|
|
779
|
-
_name: 'Epic Games',
|
|
780
|
-
www: [
|
|
781
|
-
{
|
|
782
|
-
title: '每周免费游戏',
|
|
783
|
-
docs: 'https://docs.rsshub.app/game.html#epicgames-freegame',
|
|
784
|
-
source: '/store/zh-CN/free-games',
|
|
785
|
-
target: '/epicgames/freegames',
|
|
786
|
-
},
|
|
787
|
-
],
|
|
788
|
-
},
|
|
789
|
-
'docker.com': {
|
|
790
|
-
_name: 'Docker',
|
|
791
|
-
hub: [
|
|
792
|
-
{
|
|
793
|
-
title: '镜像有新 Build',
|
|
794
|
-
docs: 'https://docs.rsshub.app/program-update.html#docker-hub',
|
|
795
|
-
source: ['/r/:owner/:image', '/r/:owner/:image/tags', '/_/:image'],
|
|
796
|
-
target: (params) => `/dockerhub/build/${params.owner ? params.owner : 'library'}/${params.image}`,
|
|
797
|
-
},
|
|
798
|
-
],
|
|
799
|
-
},
|
|
800
|
-
'nga.cn': {
|
|
801
|
-
_name: 'NGA',
|
|
802
|
-
bbs: [
|
|
803
|
-
{
|
|
804
|
-
title: '分区帖子',
|
|
805
|
-
docs: 'https://docs.rsshub.app/bbs.html#nga',
|
|
806
|
-
source: '/thread.php',
|
|
807
|
-
target: (params, url) => new URL(url).searchParams.get('fid') && `/nga/forum/${new URL(url).searchParams.get('fid')}`,
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
title: '帖子',
|
|
811
|
-
docs: 'https://docs.rsshub.app/bbs.html#nga',
|
|
812
|
-
source: '/read.php',
|
|
813
|
-
target: (params, url) => new URL(url).searchParams.get('tid') && `/nga/post/${new URL(url).searchParams.get('tid')}`,
|
|
814
|
-
},
|
|
815
|
-
],
|
|
816
|
-
},
|
|
817
|
-
'playstation.com': {
|
|
818
|
-
_name: 'PlayStation',
|
|
819
|
-
store: [
|
|
820
|
-
{
|
|
821
|
-
title: '游戏列表',
|
|
822
|
-
docs: 'https://docs.rsshub.app/game.html#playstation',
|
|
823
|
-
source: '/zh-hans-hk/grid/:id/:page',
|
|
824
|
-
target: '/ps/list/:id',
|
|
825
|
-
},
|
|
826
|
-
{
|
|
827
|
-
title: '折扣|价格',
|
|
828
|
-
docs: 'https://docs.rsshub.app/game.html#playstation',
|
|
829
|
-
source: ['/:lang/product/:gridName'],
|
|
830
|
-
target: '/ps/:lang/product/:gridName',
|
|
831
|
-
},
|
|
832
|
-
],
|
|
833
|
-
www: [
|
|
834
|
-
{
|
|
835
|
-
title: '用户奖杯',
|
|
836
|
-
docs: 'https://docs.rsshub.app/game.html#playstation',
|
|
837
|
-
},
|
|
838
|
-
{
|
|
839
|
-
title: '系统更新纪录',
|
|
840
|
-
docs: 'https://docs.rsshub.app/game.html#playstation',
|
|
841
|
-
},
|
|
842
|
-
],
|
|
843
|
-
},
|
|
844
|
-
'monsterhunter.com': {
|
|
845
|
-
_name: '怪物猎人世界',
|
|
846
|
-
www: [
|
|
847
|
-
{
|
|
848
|
-
title: '更新情报',
|
|
849
|
-
docs: 'https://docs.rsshub.app/game.html#guai-wu-lie-ren-shi-jie',
|
|
850
|
-
source: ['', '/*tpath'],
|
|
851
|
-
target: '/mhw/update',
|
|
852
|
-
},
|
|
853
|
-
{
|
|
854
|
-
title: '最新消息',
|
|
855
|
-
docs: 'https://docs.rsshub.app/game.html#guai-wu-lie-ren-shi-jie',
|
|
856
|
-
source: ['', '/*tpath'],
|
|
857
|
-
target: '/mhw/news',
|
|
858
|
-
},
|
|
859
|
-
],
|
|
860
|
-
},
|
|
861
|
-
'vgtime.com': {
|
|
862
|
-
_name: '游戏时光',
|
|
863
|
-
www: [
|
|
864
|
-
{
|
|
865
|
-
title: '新闻',
|
|
866
|
-
docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
|
|
867
|
-
source: '/topic/index.jhtml',
|
|
868
|
-
target: '/vgtime/news',
|
|
869
|
-
},
|
|
870
|
-
{
|
|
871
|
-
title: '游戏发售表',
|
|
872
|
-
docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
|
|
873
|
-
source: '/game/release.jhtml',
|
|
874
|
-
target: '/vgtime/release',
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
title: '关键词资讯',
|
|
878
|
-
docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
|
|
879
|
-
source: '/search/list.jhtml',
|
|
880
|
-
target: (params, url) => `/vgtime/keyword/${new URL(url).searchParams.get('keyword')}`,
|
|
881
|
-
},
|
|
882
|
-
],
|
|
883
|
-
},
|
|
884
|
-
'bing.com': {
|
|
885
|
-
_name: 'Bing',
|
|
886
|
-
www: [
|
|
887
|
-
{
|
|
888
|
-
title: '每日壁纸',
|
|
889
|
-
docs: 'https://docs.rsshub.app/picture.html#bing-bi-zhi',
|
|
890
|
-
source: '',
|
|
891
|
-
target: '/bing',
|
|
892
|
-
},
|
|
893
|
-
],
|
|
894
|
-
},
|
|
895
|
-
'dcard.tw': {
|
|
896
|
-
_name: 'Dcard',
|
|
897
|
-
www: [
|
|
898
|
-
{
|
|
899
|
-
title: '首頁帖子-最新',
|
|
900
|
-
docs: 'https://docs.rsshub.app/bbs.html#dcard',
|
|
901
|
-
source: '/f',
|
|
902
|
-
target: '/dcard/posts/latest',
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
title: '首頁帖子-熱門',
|
|
906
|
-
docs: 'https://docs.rsshub.app/bbs.html#dcard',
|
|
907
|
-
source: '/f',
|
|
908
|
-
target: '/dcard/posts/popular',
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
title: '板塊帖子-最新',
|
|
912
|
-
docs: 'https://docs.rsshub.app/bbs.html#dcard',
|
|
913
|
-
source: '/f/:section',
|
|
914
|
-
target: '/dcard/:section/latest',
|
|
915
|
-
},
|
|
916
|
-
{
|
|
917
|
-
title: '板塊帖子-熱門',
|
|
918
|
-
docs: 'https://docs.rsshub.app/bbs.html#dcard',
|
|
919
|
-
source: '/f/:section',
|
|
920
|
-
target: '/dcard/:section/popular',
|
|
921
|
-
},
|
|
922
|
-
],
|
|
923
|
-
},
|
|
924
|
-
'wegene.com': {
|
|
925
|
-
_name: 'WeGene',
|
|
926
|
-
www: [
|
|
927
|
-
{
|
|
928
|
-
title: '最近更新',
|
|
929
|
-
docs: 'https://docs.rsshub.app/other.html#wegene',
|
|
930
|
-
source: '',
|
|
931
|
-
target: '/wegene/newest',
|
|
932
|
-
},
|
|
933
|
-
{
|
|
934
|
-
title: '栏目',
|
|
935
|
-
docs: 'https://docs.rsshub.app/other.html#wegene',
|
|
936
|
-
source: '/crowdsourcing',
|
|
937
|
-
target: '/wegene/column/all/all',
|
|
938
|
-
},
|
|
939
|
-
],
|
|
940
|
-
},
|
|
941
|
-
'qdaily.com': {
|
|
942
|
-
_name: '好奇心日报',
|
|
943
|
-
www: [
|
|
944
|
-
{
|
|
945
|
-
title: '标签',
|
|
946
|
-
docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
|
|
947
|
-
source: '/tags/:idd',
|
|
948
|
-
target: (params) => `/qdaily/tag/${params.idd.replace('.html', '')}`,
|
|
949
|
-
},
|
|
950
|
-
{
|
|
951
|
-
title: '栏目',
|
|
952
|
-
docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
|
|
953
|
-
source: '/special_columns/:idd',
|
|
954
|
-
target: (params) => `/qdaily/column/${params.idd.replace('.html', '')}`,
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
title: '分类',
|
|
958
|
-
docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
|
|
959
|
-
source: '/categories/:idd',
|
|
960
|
-
target: (params) => `/qdaily/category/${params.idd.replace('.html', '')}`,
|
|
961
|
-
},
|
|
962
|
-
],
|
|
963
|
-
},
|
|
964
|
-
|
|
965
|
-
'3ycy.com': {
|
|
966
|
-
_name: '三界异次元',
|
|
967
|
-
www: [
|
|
968
|
-
{
|
|
969
|
-
title: '最近更新',
|
|
970
|
-
docs: 'https://docs.rsshub.app/anime.html#san-jie-yi-ci-yuan',
|
|
971
|
-
source: '/',
|
|
972
|
-
target: '/3ycy/home',
|
|
973
|
-
},
|
|
974
|
-
],
|
|
975
|
-
},
|
|
976
|
-
|
|
977
|
-
'emi-nitta.net': {
|
|
978
|
-
_name: 'Emi Nitta',
|
|
979
|
-
'.': [
|
|
980
|
-
{
|
|
981
|
-
title: '最近更新',
|
|
982
|
-
docs: 'https://docs.rsshub.app/other.html#xin-tian-hui-hai-guan-fang-wang-zhan',
|
|
983
|
-
source: '/updates',
|
|
984
|
-
target: '/emi-nitta/updates',
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
title: '新闻',
|
|
988
|
-
docs: 'https://docs.rsshub.app/other.html#xin-tian-hui-hai-guan-fang-wang-zhan',
|
|
989
|
-
source: '/contents/news',
|
|
990
|
-
target: '/emi-nitta/news',
|
|
991
|
-
},
|
|
992
|
-
],
|
|
993
|
-
},
|
|
994
|
-
|
|
995
|
-
'alter-shanghai.cn': {
|
|
996
|
-
_name: 'Alter',
|
|
997
|
-
'.': [
|
|
998
|
-
{
|
|
999
|
-
title: '新闻',
|
|
1000
|
-
docs: 'https://docs.rsshub.app/shopping.html#alter-zhong-guo',
|
|
1001
|
-
source: '/cn/news.html',
|
|
1002
|
-
target: '/alter-cn/news',
|
|
1003
|
-
},
|
|
1004
|
-
],
|
|
1005
|
-
},
|
|
1006
|
-
|
|
1007
|
-
'itslide.com': {
|
|
1008
|
-
_name: 'ITSlide',
|
|
1009
|
-
www: [
|
|
1010
|
-
{
|
|
1011
|
-
title: '最新',
|
|
1012
|
-
docs: 'https://docs.rsshub.app/programming.html#itslide',
|
|
1013
|
-
source: '/*',
|
|
1014
|
-
target: '/itslide/new',
|
|
1015
|
-
},
|
|
1016
|
-
],
|
|
1017
|
-
},
|
|
1018
|
-
|
|
1019
|
-
'leboncoin.fr': {
|
|
1020
|
-
_name: 'leboncoin',
|
|
1021
|
-
www: [
|
|
1022
|
-
{
|
|
1023
|
-
title: 'ads',
|
|
1024
|
-
docs: 'https://docs.rsshub.app/en/shopping.html#leboncoin',
|
|
1025
|
-
source: '/recherche',
|
|
1026
|
-
target: (params, url) => '/leboncoin/ad/' + url.split('?')[1],
|
|
1027
|
-
},
|
|
1028
|
-
],
|
|
1029
|
-
},
|
|
1030
|
-
|
|
1031
|
-
'yuancheng.work': {
|
|
1032
|
-
_name: '远程.work',
|
|
1033
|
-
'.': [
|
|
1034
|
-
{
|
|
1035
|
-
title: '招聘信息',
|
|
1036
|
-
docs: 'https://docs.rsshub.app/other.html#yuan-cheng-work',
|
|
1037
|
-
source: '/:caty',
|
|
1038
|
-
target: (params, url) => {
|
|
1039
|
-
if (!url) {
|
|
1040
|
-
return '/remote-work';
|
|
1041
|
-
}
|
|
1042
|
-
return '/remote-work/' + /\w+-(\w+)-\w+/.exec(url)[1];
|
|
1043
|
-
},
|
|
1044
|
-
},
|
|
1045
|
-
],
|
|
1046
|
-
},
|
|
1047
|
-
|
|
1048
|
-
'chinatimes.com': {
|
|
1049
|
-
_name: '中時電子報',
|
|
1050
|
-
www: [
|
|
1051
|
-
{
|
|
1052
|
-
title: '新聞',
|
|
1053
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#zhong-shi-dian-zi-bao',
|
|
1054
|
-
source: '/:caty',
|
|
1055
|
-
target: (params) => '/chinatimes/' + params.caty,
|
|
1056
|
-
},
|
|
1057
|
-
],
|
|
1058
|
-
},
|
|
1059
|
-
|
|
1060
|
-
'ithome.com': {
|
|
1061
|
-
_name: 'IT 之家',
|
|
1062
|
-
'.': [
|
|
1063
|
-
{
|
|
1064
|
-
title: '24 小时阅读榜',
|
|
1065
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1066
|
-
source: ['', '/*'],
|
|
1067
|
-
target: '/ithome/ranking/24h',
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
title: '7 天最热',
|
|
1071
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1072
|
-
source: ['', '/*'],
|
|
1073
|
-
target: '/ithome/ranking/7days',
|
|
1074
|
-
},
|
|
1075
|
-
{
|
|
1076
|
-
title: '月榜',
|
|
1077
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1078
|
-
source: ['', '/*'],
|
|
1079
|
-
target: '/ithome/ranking/monthly',
|
|
1080
|
-
},
|
|
1081
|
-
],
|
|
1082
|
-
it: [
|
|
1083
|
-
{
|
|
1084
|
-
title: 'IT 资讯',
|
|
1085
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1086
|
-
source: '/',
|
|
1087
|
-
target: '/ithome/it',
|
|
1088
|
-
},
|
|
1089
|
-
],
|
|
1090
|
-
soft: [
|
|
1091
|
-
{
|
|
1092
|
-
title: '软件之家',
|
|
1093
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1094
|
-
source: '/',
|
|
1095
|
-
target: '/ithome/soft',
|
|
1096
|
-
},
|
|
1097
|
-
],
|
|
1098
|
-
win10: [
|
|
1099
|
-
{
|
|
1100
|
-
title: 'win10 之家',
|
|
1101
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1102
|
-
source: '/',
|
|
1103
|
-
target: '/ithome/win10',
|
|
1104
|
-
},
|
|
1105
|
-
],
|
|
1106
|
-
iphone: [
|
|
1107
|
-
{
|
|
1108
|
-
title: 'iphone 之家',
|
|
1109
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1110
|
-
source: '/',
|
|
1111
|
-
target: '/ithome/iphone',
|
|
1112
|
-
},
|
|
1113
|
-
],
|
|
1114
|
-
ipad: [
|
|
1115
|
-
{
|
|
1116
|
-
title: 'ipad 之家',
|
|
1117
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1118
|
-
source: '/',
|
|
1119
|
-
target: '/ithome/ipad',
|
|
1120
|
-
},
|
|
1121
|
-
],
|
|
1122
|
-
android: [
|
|
1123
|
-
{
|
|
1124
|
-
title: 'android 之家',
|
|
1125
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1126
|
-
source: '/',
|
|
1127
|
-
target: '/ithome/android',
|
|
1128
|
-
},
|
|
1129
|
-
],
|
|
1130
|
-
digi: [
|
|
1131
|
-
{
|
|
1132
|
-
title: '数码之家',
|
|
1133
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1134
|
-
source: '/',
|
|
1135
|
-
target: '/ithome/digi',
|
|
1136
|
-
},
|
|
1137
|
-
],
|
|
1138
|
-
next: [
|
|
1139
|
-
{
|
|
1140
|
-
title: '智能时代',
|
|
1141
|
-
docs: 'https://docs.rsshub.app/new-media.html#it-zhi-jia',
|
|
1142
|
-
source: '/',
|
|
1143
|
-
target: '/ithome/next',
|
|
1144
|
-
},
|
|
1145
|
-
],
|
|
1146
|
-
},
|
|
1147
|
-
|
|
1148
|
-
'govopendata.com': {
|
|
1149
|
-
_name: '新闻联播文字版',
|
|
1150
|
-
cn: [
|
|
1151
|
-
{
|
|
1152
|
-
title: '新闻联播文字版',
|
|
1153
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xin-wen-lian-bo-wen-zi-ban',
|
|
1154
|
-
source: '/xinwenlianbo',
|
|
1155
|
-
target: '/xinwenlianbo/index',
|
|
1156
|
-
},
|
|
1157
|
-
],
|
|
1158
|
-
},
|
|
1159
|
-
|
|
1160
|
-
'steampowered.com': {
|
|
1161
|
-
_name: 'Steam',
|
|
1162
|
-
store: [
|
|
1163
|
-
{
|
|
1164
|
-
title: 'search',
|
|
1165
|
-
docs: 'https://docs.rsshub.app/game.html#steam',
|
|
1166
|
-
source: '/search/',
|
|
1167
|
-
target: (params, url) => `/steam/search/${new URL(url).searchParams}`,
|
|
1168
|
-
},
|
|
1169
|
-
],
|
|
1170
|
-
},
|
|
1171
|
-
'baijingapp.com': {
|
|
1172
|
-
_name: '白鲸出海',
|
|
1173
|
-
www: [
|
|
1174
|
-
{
|
|
1175
|
-
title: '文章',
|
|
1176
|
-
docs: 'https://docs.rsshub.app/new-media.html#bai-jing-chu-hai',
|
|
1177
|
-
source: '',
|
|
1178
|
-
target: '/baijing',
|
|
1179
|
-
},
|
|
1180
|
-
],
|
|
1181
|
-
},
|
|
1182
|
-
'xiaomi.cn': {
|
|
1183
|
-
_name: '小米社区',
|
|
1184
|
-
www: [
|
|
1185
|
-
{
|
|
1186
|
-
title: '圈子',
|
|
1187
|
-
docs: 'https://docs.rsshub.app/bbs.html#xiao-mi-she-qu',
|
|
1188
|
-
source: '/board/:boardId',
|
|
1189
|
-
target: '/mi/bbs/board/:boardId',
|
|
1190
|
-
},
|
|
1191
|
-
],
|
|
1192
|
-
},
|
|
1193
|
-
'163.com': {
|
|
1194
|
-
_name: '网易',
|
|
1195
|
-
ds: [
|
|
1196
|
-
{
|
|
1197
|
-
title: '大神',
|
|
1198
|
-
docs: 'https://docs.rsshub.app/game.html#wang-yi-da-shen',
|
|
1199
|
-
source: '/user/:id',
|
|
1200
|
-
target: '/netease/ds/:id',
|
|
1201
|
-
},
|
|
1202
|
-
],
|
|
1203
|
-
open: [
|
|
1204
|
-
{
|
|
1205
|
-
title: '公开课 - 精品课程',
|
|
1206
|
-
docs: 'https://docs.rsshub.app/study.html#wang-yi-gong-kai-ke',
|
|
1207
|
-
source: '/',
|
|
1208
|
-
target: '/open163/vip',
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
title: '公开课 - 最新课程',
|
|
1212
|
-
docs: 'https://docs.rsshub.app/study.html#wang-yi-gong-kai-ke',
|
|
1213
|
-
source: '/',
|
|
1214
|
-
target: '/open163/latest',
|
|
1215
|
-
},
|
|
1216
|
-
],
|
|
1217
|
-
music: [
|
|
1218
|
-
{
|
|
1219
|
-
title: '云音乐 - 用户歌单',
|
|
1220
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1221
|
-
source: '/',
|
|
1222
|
-
target: (params, url) => {
|
|
1223
|
-
const id = new URL(url).hash.match(/home\?id=(.*)/)[1];
|
|
1224
|
-
return id ? `/ncm/user/playlist/${id}` : '';
|
|
1225
|
-
},
|
|
1226
|
-
},
|
|
1227
|
-
{
|
|
1228
|
-
title: '云音乐 - 歌单歌曲',
|
|
1229
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1230
|
-
source: '/',
|
|
1231
|
-
target: (params, url) => {
|
|
1232
|
-
const id = new URL(url).hash.match(/playlist\?id=(.*)/)[1];
|
|
1233
|
-
return id ? `/ncm/playlist/${id}` : '';
|
|
1234
|
-
},
|
|
1235
|
-
},
|
|
1236
|
-
{
|
|
1237
|
-
title: '云音乐 - 歌手专辑',
|
|
1238
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1239
|
-
source: '/',
|
|
1240
|
-
target: (params, url) => {
|
|
1241
|
-
const id = new URL(url).hash.match(/album\?id=(.*)/)[1];
|
|
1242
|
-
return id ? `/ncm/artist/${id}` : '';
|
|
1243
|
-
},
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
title: '云音乐 - 电台节目',
|
|
1247
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1248
|
-
source: '/',
|
|
1249
|
-
target: (params, url) => {
|
|
1250
|
-
const id = new URL(url).hash.match(/djradio\?id=(.*)/)[1];
|
|
1251
|
-
return id ? `/ncm/djradio/${id}` : '';
|
|
1252
|
-
},
|
|
1253
|
-
},
|
|
1254
|
-
],
|
|
1255
|
-
'y.music': [
|
|
1256
|
-
{
|
|
1257
|
-
title: '云音乐 - 用户歌单',
|
|
1258
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1259
|
-
source: '/m/user',
|
|
1260
|
-
target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
|
|
1261
|
-
},
|
|
1262
|
-
{
|
|
1263
|
-
title: '云音乐 - 歌单歌曲',
|
|
1264
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1265
|
-
source: '/m/playlist',
|
|
1266
|
-
target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
|
|
1267
|
-
},
|
|
1268
|
-
{
|
|
1269
|
-
title: '云音乐 - 歌手专辑',
|
|
1270
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1271
|
-
source: '/m/album',
|
|
1272
|
-
target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
|
|
1273
|
-
},
|
|
1274
|
-
{
|
|
1275
|
-
title: '云音乐 - 播单声音',
|
|
1276
|
-
docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
|
|
1277
|
-
source: ['/m/radio', '/m/djradio'],
|
|
1278
|
-
target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
|
|
1279
|
-
},
|
|
1280
|
-
],
|
|
1281
|
-
},
|
|
1282
|
-
'suzhou.gov.cn': {
|
|
1283
|
-
_name: '苏州市政府',
|
|
1284
|
-
www: [
|
|
1285
|
-
{
|
|
1286
|
-
title: '政府新闻',
|
|
1287
|
-
docs: 'https://docs.rsshub.app/government.html#su-zhou-shi-ren-min-zheng-fu',
|
|
1288
|
-
source: '/szsrmzf/:uid/nav_list.shtml',
|
|
1289
|
-
target: '/gov/suzhou/news/:uid',
|
|
1290
|
-
},
|
|
1291
|
-
],
|
|
1292
|
-
},
|
|
1293
|
-
'mqube.net': {
|
|
1294
|
-
_name: 'MQube',
|
|
1295
|
-
www: [
|
|
1296
|
-
{
|
|
1297
|
-
title: '全站最近更新',
|
|
1298
|
-
docs: 'https://docs.rsshub.app/multimedia.html#mqube',
|
|
1299
|
-
source: '/',
|
|
1300
|
-
target: '/mqube/latest',
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
title: '全站每日排行',
|
|
1304
|
-
docs: 'https://docs.rsshub.app/multimedia.html#mqube',
|
|
1305
|
-
source: '/',
|
|
1306
|
-
target: '/mqube/top',
|
|
1307
|
-
},
|
|
1308
|
-
{
|
|
1309
|
-
title: '个人最近更新',
|
|
1310
|
-
docs: 'https://docs.rsshub.app/multimedia.html#mqube',
|
|
1311
|
-
source: '/user/:user',
|
|
1312
|
-
target: '/mqube/user/:user',
|
|
1313
|
-
},
|
|
1314
|
-
{
|
|
1315
|
-
title: '标签最近更新',
|
|
1316
|
-
docs: 'https://docs.rsshub.app/multimedia.html#mqube',
|
|
1317
|
-
source: '/search/tag/:tag',
|
|
1318
|
-
target: '/mqube/tag/:tag',
|
|
1319
|
-
},
|
|
1320
|
-
],
|
|
1321
|
-
},
|
|
1322
|
-
'nikkei.com': {
|
|
1323
|
-
_name: '日本経済新聞',
|
|
1324
|
-
www: [
|
|
1325
|
-
{
|
|
1326
|
-
title: 'ホームページ',
|
|
1327
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
|
|
1328
|
-
source: '/',
|
|
1329
|
-
target: '/nikkei/index',
|
|
1330
|
-
},
|
|
1331
|
-
],
|
|
1332
|
-
},
|
|
1333
|
-
'last.fm': {
|
|
1334
|
-
_name: 'Last.fm',
|
|
1335
|
-
www: [
|
|
1336
|
-
{
|
|
1337
|
-
title: '用户播放记录',
|
|
1338
|
-
docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
|
|
1339
|
-
source: ['/user/:user', '/user/:user/*'],
|
|
1340
|
-
target: '/lastfm/recent/:user',
|
|
1341
|
-
},
|
|
1342
|
-
{
|
|
1343
|
-
title: '用户 Love 记录',
|
|
1344
|
-
docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
|
|
1345
|
-
source: ['/user/:user', '/user/:user/*'],
|
|
1346
|
-
target: '/lastfm/loved/:user',
|
|
1347
|
-
},
|
|
1348
|
-
{
|
|
1349
|
-
title: '站内 Top 榜单',
|
|
1350
|
-
docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
|
|
1351
|
-
source: '/charts',
|
|
1352
|
-
target: '/lastfm/top',
|
|
1353
|
-
},
|
|
1354
|
-
],
|
|
1355
|
-
},
|
|
1356
|
-
'ddrk.me': {
|
|
1357
|
-
_name: '低端影视',
|
|
1358
|
-
www: [
|
|
1359
|
-
{
|
|
1360
|
-
title: '首页',
|
|
1361
|
-
docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
|
|
1362
|
-
source: '/',
|
|
1363
|
-
target: '/ddrk/index',
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1366
|
-
title: '标签',
|
|
1367
|
-
docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
|
|
1368
|
-
source: '/tag/:tag',
|
|
1369
|
-
target: '/ddrk/tag/:tag',
|
|
1370
|
-
},
|
|
1371
|
-
{
|
|
1372
|
-
title: '分类',
|
|
1373
|
-
docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
|
|
1374
|
-
source: ['/category/:category', '/category/:uplevel/:category'],
|
|
1375
|
-
target: '/ddrk/category/:category',
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
title: '影视剧集更新',
|
|
1379
|
-
docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
|
|
1380
|
-
source: ['/:name', '/:name/:season'],
|
|
1381
|
-
target: (params) => {
|
|
1382
|
-
if (params.name !== 'category' && params.name !== 'tag' && params.name !== 'ddrklogin' && params.name !== 'about' && params.name !== 'deleted') {
|
|
1383
|
-
return `/ddrk/update/${params.name}${params.season ? '/' + params.season : ''}`;
|
|
1384
|
-
}
|
|
1385
|
-
},
|
|
1386
|
-
},
|
|
1387
|
-
],
|
|
1388
|
-
},
|
|
1389
|
-
'google.com': {
|
|
1390
|
-
_name: '谷歌',
|
|
1391
|
-
photos: [
|
|
1392
|
-
{
|
|
1393
|
-
title: '相册',
|
|
1394
|
-
docs: 'https://docs.rsshub.app/picture.html#google-xiang-ce',
|
|
1395
|
-
source: '/share/*',
|
|
1396
|
-
target: (params, url, document) => {
|
|
1397
|
-
const id = document && document.querySelector('html').innerHTML.match(/photos.app.goo.gl\/(.*?)"/)[1];
|
|
1398
|
-
return id ? `/google/album/${id}` : '';
|
|
1399
|
-
},
|
|
1400
|
-
},
|
|
1401
|
-
],
|
|
1402
|
-
sites: [
|
|
1403
|
-
{
|
|
1404
|
-
title: 'Sites',
|
|
1405
|
-
docs: 'https://docs.rsshub.app/blog.html#google-sites',
|
|
1406
|
-
source: ['/site/:id/*', '/site/:id'],
|
|
1407
|
-
target: '/google/sites/:id',
|
|
1408
|
-
},
|
|
1409
|
-
],
|
|
1410
|
-
},
|
|
1411
|
-
'javlibrary.com': {
|
|
1412
|
-
_name: 'javlibrary',
|
|
1413
|
-
www: [
|
|
1414
|
-
{
|
|
1415
|
-
title: '新话题',
|
|
1416
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1417
|
-
source: '/cn',
|
|
1418
|
-
target: '/javlibrary/videos/update',
|
|
1419
|
-
},
|
|
1420
|
-
{
|
|
1421
|
-
title: '新发行',
|
|
1422
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1423
|
-
source: '/cn',
|
|
1424
|
-
target: '/javlibrary/videos/newrelease',
|
|
1425
|
-
},
|
|
1426
|
-
{
|
|
1427
|
-
title: '新加入',
|
|
1428
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1429
|
-
source: '/cn',
|
|
1430
|
-
target: '/javlibrary/videos/newentries',
|
|
1431
|
-
},
|
|
1432
|
-
{
|
|
1433
|
-
title: '最想要',
|
|
1434
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1435
|
-
source: '/cn',
|
|
1436
|
-
target: '/javlibrary/videos/mostwanted',
|
|
1437
|
-
},
|
|
1438
|
-
{
|
|
1439
|
-
title: '高评价',
|
|
1440
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1441
|
-
source: '/cn',
|
|
1442
|
-
target: '/javlibrary/videos/bestrated',
|
|
1443
|
-
},
|
|
1444
|
-
{
|
|
1445
|
-
title: '最佳评论',
|
|
1446
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1447
|
-
source: '/cn',
|
|
1448
|
-
target: '/javlibrary/bestreviews',
|
|
1449
|
-
},
|
|
1450
|
-
{
|
|
1451
|
-
title: '影星',
|
|
1452
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1453
|
-
source: '/cn/vl_star.php',
|
|
1454
|
-
target: (params, url) => `/javlibrary/stars/${new URL(url).searchParams.get('s')}`,
|
|
1455
|
-
},
|
|
1456
|
-
{
|
|
1457
|
-
title: '用户文章',
|
|
1458
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1459
|
-
source: ['/cn/user.php', '/cn/userposts.php', '/cn/userwateched.php', '/cn/userowned.php', '/cn/userwanted.php'],
|
|
1460
|
-
target: (params, url) => `/javlibrary/users/${new URL(url).searchParams.get('u')}/userposts`,
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
title: '用户拥有',
|
|
1464
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1465
|
-
source: ['/cn/user.php', '/cn/userposts.php', '/cn/userwateched.php', '/cn/userowned.php', '/cn/userwanted.php'],
|
|
1466
|
-
target: (params, url) => `/javlibrary/users/${new URL(url).searchParams.get('u')}/userowned`,
|
|
1467
|
-
},
|
|
1468
|
-
{
|
|
1469
|
-
title: '用户看过',
|
|
1470
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1471
|
-
source: ['/cn/user.php', '/cn/userposts.php', '/cn/userwateched.php', '/cn/userowned.php', '/cn/userwanted.php'],
|
|
1472
|
-
target: (params, url) => `/javlibrary/users/${new URL(url).searchParams.get('u')}/userwatched`,
|
|
1473
|
-
},
|
|
1474
|
-
{
|
|
1475
|
-
title: '用户想要',
|
|
1476
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javlibrary',
|
|
1477
|
-
source: ['/cn/user.php', '/cn/userposts.php', '/cn/userwateched.php', '/cn/userowned.php', '/cn/userwanted.php'],
|
|
1478
|
-
target: (params, url) => `/javlibrary/users/${new URL(url).searchParams.get('u')}/userwanted`,
|
|
1479
|
-
},
|
|
1480
|
-
],
|
|
1481
|
-
},
|
|
1482
|
-
'qidian.com': {
|
|
1483
|
-
_name: '起点',
|
|
1484
|
-
book: [
|
|
1485
|
-
{
|
|
1486
|
-
title: '章节',
|
|
1487
|
-
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
1488
|
-
source: '/info/:id',
|
|
1489
|
-
target: '/qidian/chapter/:id',
|
|
1490
|
-
},
|
|
1491
|
-
{
|
|
1492
|
-
title: '讨论区',
|
|
1493
|
-
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
1494
|
-
source: '/info/:id',
|
|
1495
|
-
target: '/qidian/forum/:id',
|
|
1496
|
-
},
|
|
1497
|
-
],
|
|
1498
|
-
www: [
|
|
1499
|
-
{
|
|
1500
|
-
title: '限免',
|
|
1501
|
-
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
1502
|
-
source: '/free',
|
|
1503
|
-
target: '/qidian/free',
|
|
1504
|
-
},
|
|
1505
|
-
{
|
|
1506
|
-
title: '女生限免',
|
|
1507
|
-
docs: 'https://docs.rsshub.app/reading.html#qi-dian',
|
|
1508
|
-
source: '/mm/free',
|
|
1509
|
-
target: '/qidian/free/mm',
|
|
1510
|
-
},
|
|
1511
|
-
],
|
|
1512
|
-
},
|
|
1513
|
-
'hackerone.com': {
|
|
1514
|
-
_name: 'HackerOne',
|
|
1515
|
-
'.': [
|
|
1516
|
-
{
|
|
1517
|
-
title: 'HackerOne Hacker Activity',
|
|
1518
|
-
docs: 'https://docs.rsshub.app/other.html#hackerone-hacker-activity',
|
|
1519
|
-
source: '/hacktivity',
|
|
1520
|
-
target: '/hackerone/hacktivity',
|
|
1521
|
-
},
|
|
1522
|
-
],
|
|
1523
|
-
},
|
|
1524
|
-
'cowlevel.net': {
|
|
1525
|
-
_name: '奶牛关',
|
|
1526
|
-
'.': [
|
|
1527
|
-
{
|
|
1528
|
-
title: '元素文章',
|
|
1529
|
-
docs: 'https://docs.rsshub.app/game.html#nai-niu-guan',
|
|
1530
|
-
source: ['/element/:id', '/element/:id/article'],
|
|
1531
|
-
target: '/cowlevel/element/:id',
|
|
1532
|
-
},
|
|
1533
|
-
],
|
|
1534
|
-
},
|
|
1535
|
-
'beijing.gov.cn': {
|
|
1536
|
-
wjw: [
|
|
1537
|
-
{
|
|
1538
|
-
title: '北京卫生健康委员会',
|
|
1539
|
-
docs: 'https://docs.rsshub.app/government.html#bei-jing-shi-wei-sheng-jian-kang-wei-yuan-hui',
|
|
1540
|
-
source: '/xwzx_20031/:caty',
|
|
1541
|
-
target: '/gov/beijing/mhc/:caty',
|
|
1542
|
-
},
|
|
1543
|
-
],
|
|
1544
|
-
},
|
|
1545
|
-
'ynu.edu.cn': {
|
|
1546
|
-
_name: '云南大学',
|
|
1547
|
-
home: [
|
|
1548
|
-
{
|
|
1549
|
-
title: '官网消息通告',
|
|
1550
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1551
|
-
source: '/tzgg.htm',
|
|
1552
|
-
target: '/ynu/home',
|
|
1553
|
-
},
|
|
1554
|
-
],
|
|
1555
|
-
jwc: [
|
|
1556
|
-
{
|
|
1557
|
-
title: '教务处教务科通知',
|
|
1558
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1559
|
-
source: '/*',
|
|
1560
|
-
target: '/jwc/1',
|
|
1561
|
-
},
|
|
1562
|
-
{
|
|
1563
|
-
title: '教务处学籍科通知',
|
|
1564
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1565
|
-
source: '/*',
|
|
1566
|
-
target: '/jwc/2',
|
|
1567
|
-
},
|
|
1568
|
-
{
|
|
1569
|
-
title: '教务处教学研究科通知',
|
|
1570
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1571
|
-
source: '/*',
|
|
1572
|
-
target: '/jwc/3',
|
|
1573
|
-
},
|
|
1574
|
-
{
|
|
1575
|
-
title: '教务处实践科学科通知',
|
|
1576
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1577
|
-
source: '/*',
|
|
1578
|
-
target: '/jwc/4',
|
|
1579
|
-
},
|
|
1580
|
-
],
|
|
1581
|
-
grs: [
|
|
1582
|
-
{
|
|
1583
|
-
title: '研究生院通知',
|
|
1584
|
-
docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
|
|
1585
|
-
source: '/*',
|
|
1586
|
-
target: '',
|
|
1587
|
-
},
|
|
1588
|
-
],
|
|
1589
|
-
},
|
|
1590
|
-
'zju.edu.cn': {
|
|
1591
|
-
_name: '浙江大学',
|
|
1592
|
-
cst: [
|
|
1593
|
-
{
|
|
1594
|
-
title: '软件学院 - 全部通知',
|
|
1595
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1596
|
-
source: ['', '/*tpath'],
|
|
1597
|
-
target: '/zju/cst/0',
|
|
1598
|
-
},
|
|
1599
|
-
{
|
|
1600
|
-
title: '软件学院 - 招生信息',
|
|
1601
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1602
|
-
source: '/32178/list.htm',
|
|
1603
|
-
target: '/zju/cst/1',
|
|
1604
|
-
},
|
|
1605
|
-
{
|
|
1606
|
-
title: '软件学院 - 教务管理',
|
|
1607
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1608
|
-
source: '/36216/list.htm',
|
|
1609
|
-
target: '/zju/cst/2',
|
|
1610
|
-
},
|
|
1611
|
-
{
|
|
1612
|
-
title: '软件学院 - 论文管理',
|
|
1613
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1614
|
-
source: '/36217/list.htm',
|
|
1615
|
-
target: '/zju/cst/3',
|
|
1616
|
-
},
|
|
1617
|
-
{
|
|
1618
|
-
title: '软件学院 - 思政工作',
|
|
1619
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1620
|
-
source: '/36192/list.htm',
|
|
1621
|
-
target: '/zju/cst/4',
|
|
1622
|
-
},
|
|
1623
|
-
{
|
|
1624
|
-
title: '软件学院 - 评奖评优',
|
|
1625
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1626
|
-
source: '/36228/list.htm',
|
|
1627
|
-
target: '/zju/cst/5',
|
|
1628
|
-
},
|
|
1629
|
-
{
|
|
1630
|
-
title: '软件学院 - 实习就业',
|
|
1631
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1632
|
-
source: '/36193/list.htm',
|
|
1633
|
-
target: '/zju/cst/6',
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
title: '软件学院 - 国际实习',
|
|
1637
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1638
|
-
source: '/36235/list.htm',
|
|
1639
|
-
target: '/zju/cst/7',
|
|
1640
|
-
},
|
|
1641
|
-
{
|
|
1642
|
-
title: '软件学院 - 国内合作科研',
|
|
1643
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1644
|
-
source: '/36194/list.htm',
|
|
1645
|
-
target: '/zju/cst/8',
|
|
1646
|
-
},
|
|
1647
|
-
{
|
|
1648
|
-
title: '软件学院 - 国际合作科研',
|
|
1649
|
-
docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
|
|
1650
|
-
source: '/36246/list.htm',
|
|
1651
|
-
target: '/zju/cst/9',
|
|
1652
|
-
},
|
|
1653
|
-
],
|
|
1654
|
-
},
|
|
1655
|
-
'kuaidi100.com': {
|
|
1656
|
-
_name: '快递100',
|
|
1657
|
-
'.': [
|
|
1658
|
-
{
|
|
1659
|
-
title: '快递追踪',
|
|
1660
|
-
docs: 'https://docs.rsshub.app/other.html#kuai-di-100',
|
|
1661
|
-
source: '/',
|
|
1662
|
-
target: (params, url, document) => {
|
|
1663
|
-
const postid = document && document.querySelector('#postid').value;
|
|
1664
|
-
const com = document && document.querySelector('#selectComBtn').childNodes[1].attributes[1].value;
|
|
1665
|
-
if (com && com !== 'default' && postid) {
|
|
1666
|
-
return `/kuaidi100/track/${com}/${postid}`;
|
|
1667
|
-
}
|
|
1668
|
-
},
|
|
1669
|
-
},
|
|
1670
|
-
{
|
|
1671
|
-
title: '支持的快递公司列表',
|
|
1672
|
-
docs: 'https://docs.rsshub.app/other.html#kuai-di-100',
|
|
1673
|
-
source: '/',
|
|
1674
|
-
target: '/kuaidi100/company',
|
|
1675
|
-
},
|
|
1676
|
-
],
|
|
1677
|
-
},
|
|
1678
|
-
'hrbeu.edu.cn': {
|
|
1679
|
-
_name: '哈尔滨工程大学',
|
|
1680
|
-
yjsy: [
|
|
1681
|
-
{
|
|
1682
|
-
title: '研究生院 - 通知公告',
|
|
1683
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1684
|
-
source: '/*',
|
|
1685
|
-
target: '/heu/yjsy/announcement',
|
|
1686
|
-
},
|
|
1687
|
-
{
|
|
1688
|
-
title: '研究生院 - 新闻动态',
|
|
1689
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1690
|
-
source: '/*',
|
|
1691
|
-
target: '/heu/yjsy/news',
|
|
1692
|
-
},
|
|
1693
|
-
{
|
|
1694
|
-
title: '研究生院 - 国家公派项目',
|
|
1695
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1696
|
-
source: '/*',
|
|
1697
|
-
target: '/heu/yjsy/gjgp',
|
|
1698
|
-
},
|
|
1699
|
-
{
|
|
1700
|
-
title: '研究生院 - 国际合作与交流项目',
|
|
1701
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1702
|
-
source: '/*',
|
|
1703
|
-
target: '/heu/yjsy/gjhz',
|
|
1704
|
-
},
|
|
1705
|
-
],
|
|
1706
|
-
job: [
|
|
1707
|
-
{
|
|
1708
|
-
title: '就业服务平台 - 通知公告',
|
|
1709
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1710
|
-
source: '/*',
|
|
1711
|
-
target: '/heu/job/tzgg',
|
|
1712
|
-
},
|
|
1713
|
-
],
|
|
1714
|
-
uae: [
|
|
1715
|
-
{
|
|
1716
|
-
title: '水声学院 - 新闻动态',
|
|
1717
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1718
|
-
source: '/*',
|
|
1719
|
-
target: '/heu/shuisheng/xwdt',
|
|
1720
|
-
},
|
|
1721
|
-
{
|
|
1722
|
-
title: '研究生院 - 通知公告',
|
|
1723
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1724
|
-
source: '/*',
|
|
1725
|
-
target: '/heu/shuisheng/tzgg',
|
|
1726
|
-
},
|
|
1727
|
-
],
|
|
1728
|
-
},
|
|
1729
|
-
'gongxue.cn': {
|
|
1730
|
-
_name: '工学网',
|
|
1731
|
-
'.': [
|
|
1732
|
-
{
|
|
1733
|
-
title: '要闻',
|
|
1734
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1735
|
-
source: '/*',
|
|
1736
|
-
target: '/heu/gongxue/yw',
|
|
1737
|
-
},
|
|
1738
|
-
{
|
|
1739
|
-
title: '时讯',
|
|
1740
|
-
docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
|
|
1741
|
-
source: '/*',
|
|
1742
|
-
target: '/heu/gongxue/sx',
|
|
1743
|
-
},
|
|
1744
|
-
],
|
|
1745
|
-
},
|
|
1746
|
-
'nsfc.gov.cn': {
|
|
1747
|
-
_name: '国家自然科学基金委员会',
|
|
1748
|
-
www: [
|
|
1749
|
-
{
|
|
1750
|
-
title: '基金要闻',
|
|
1751
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
|
|
1752
|
-
source: '/*',
|
|
1753
|
-
target: '/nsfc/news/jjyw',
|
|
1754
|
-
},
|
|
1755
|
-
{
|
|
1756
|
-
title: '通知公告',
|
|
1757
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
|
|
1758
|
-
source: '/*',
|
|
1759
|
-
target: '/nsfc/news/tzgg',
|
|
1760
|
-
},
|
|
1761
|
-
{
|
|
1762
|
-
title: '资助成果',
|
|
1763
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
|
|
1764
|
-
source: '/*',
|
|
1765
|
-
target: '/nsfc/news/zzcg',
|
|
1766
|
-
},
|
|
1767
|
-
{
|
|
1768
|
-
title: '科普快讯',
|
|
1769
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
|
|
1770
|
-
source: '/*',
|
|
1771
|
-
target: '/nsfc/news/kpkx',
|
|
1772
|
-
},
|
|
1773
|
-
],
|
|
1774
|
-
},
|
|
1775
|
-
'japanpost.jp': {
|
|
1776
|
-
_name: '日本郵便',
|
|
1777
|
-
'trackings.post': [
|
|
1778
|
-
{
|
|
1779
|
-
title: '郵便・荷物の追跡',
|
|
1780
|
-
docs: 'https://docs.rsshub.app/other.html#ri-ben-you-bian-you-bian-zhui-ji-サービス',
|
|
1781
|
-
source: '/services/srv/search/direct',
|
|
1782
|
-
target: (params, url) => {
|
|
1783
|
-
const reqCode = new URL(url).searchParams.get('reqCodeNo1').toUpperCase();
|
|
1784
|
-
const locale = new URL(url).searchParams.get('locale').toLowerCase();
|
|
1785
|
-
if ((reqCode.search(/^(?:\d{11,12}|[A-Z]{2}\d{9}[A-Z]{2})$/) === 0 && locale === 'ja') || locale === 'en') {
|
|
1786
|
-
return `/japanpost/track/${reqCode}/${locale}`;
|
|
1787
|
-
}
|
|
1788
|
-
},
|
|
1789
|
-
},
|
|
1790
|
-
],
|
|
1791
|
-
},
|
|
1792
|
-
'apnews.com': {
|
|
1793
|
-
_name: 'AP News',
|
|
1794
|
-
'.': [
|
|
1795
|
-
{
|
|
1796
|
-
title: '话题',
|
|
1797
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#ap-news',
|
|
1798
|
-
source: '/:topic',
|
|
1799
|
-
target: '/apnews/topics/:topic',
|
|
1800
|
-
},
|
|
1801
|
-
],
|
|
1802
|
-
},
|
|
1803
|
-
'csc.edu.cn': {
|
|
1804
|
-
_name: '国家留学网',
|
|
1805
|
-
www: [
|
|
1806
|
-
{
|
|
1807
|
-
title: '遴选通知',
|
|
1808
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
|
|
1809
|
-
source: '/*',
|
|
1810
|
-
target: '/csc/notice/lxtz',
|
|
1811
|
-
},
|
|
1812
|
-
{
|
|
1813
|
-
title: '综合项目专栏',
|
|
1814
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
|
|
1815
|
-
source: '/*',
|
|
1816
|
-
target: '/csc/notice/xmzl',
|
|
1817
|
-
},
|
|
1818
|
-
{
|
|
1819
|
-
title: '常见问题解答',
|
|
1820
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
|
|
1821
|
-
source: '/*',
|
|
1822
|
-
target: '/csc/notice/wtjd',
|
|
1823
|
-
},
|
|
1824
|
-
{
|
|
1825
|
-
title: '录取公告',
|
|
1826
|
-
docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
|
|
1827
|
-
source: '/*',
|
|
1828
|
-
target: '/csc/notice/lqgg',
|
|
1829
|
-
},
|
|
1830
|
-
],
|
|
1831
|
-
},
|
|
1832
|
-
'biquge5200.com': {
|
|
1833
|
-
www: [
|
|
1834
|
-
{
|
|
1835
|
-
title: 'biquge5200.com',
|
|
1836
|
-
docs: 'https://docs.rsshub.app/reading.html#bi-qu-ge-biquge5200-com',
|
|
1837
|
-
source: '/:id',
|
|
1838
|
-
target: '/novel/biquge/:id',
|
|
1839
|
-
},
|
|
1840
|
-
],
|
|
1841
|
-
},
|
|
1842
|
-
'biquge.info': {
|
|
1843
|
-
www: [
|
|
1844
|
-
{
|
|
1845
|
-
title: 'biquge.info',
|
|
1846
|
-
docs: 'https://docs.rsshub.app/reading.html#bi-qu-ge-biquge-info',
|
|
1847
|
-
source: '/:id',
|
|
1848
|
-
target: '/novel/biqugeinfo/:id',
|
|
1849
|
-
},
|
|
1850
|
-
],
|
|
1851
|
-
},
|
|
1852
|
-
'matters.news': {
|
|
1853
|
-
_name: 'Matters',
|
|
1854
|
-
'.': [
|
|
1855
|
-
{
|
|
1856
|
-
title: '最新排序',
|
|
1857
|
-
docs: 'https://docs.rsshub.app/new-media.html#matters',
|
|
1858
|
-
source: '',
|
|
1859
|
-
target: '/matters/latest',
|
|
1860
|
-
},
|
|
1861
|
-
{
|
|
1862
|
-
title: '标签',
|
|
1863
|
-
docs: 'https://docs.rsshub.app/new-media.html#matters',
|
|
1864
|
-
source: '/tags/:tid',
|
|
1865
|
-
target: '/matters/tags/:tid',
|
|
1866
|
-
},
|
|
1867
|
-
{
|
|
1868
|
-
title: '作者',
|
|
1869
|
-
docs: 'https://docs.rsshub.app/new-media.html#matters',
|
|
1870
|
-
source: ['/:id', '/:id/comments'],
|
|
1871
|
-
target: (params) => {
|
|
1872
|
-
const uid = params.id.replace('@', '');
|
|
1873
|
-
return uid ? `/matters/author/${uid}` : '';
|
|
1874
|
-
},
|
|
1875
|
-
},
|
|
1876
|
-
],
|
|
1877
|
-
},
|
|
1878
|
-
'zhaishuyuan.com': {
|
|
1879
|
-
_name: '斋书苑',
|
|
1880
|
-
'.': [
|
|
1881
|
-
{
|
|
1882
|
-
title: '最新章节',
|
|
1883
|
-
docs: 'https://docs.rsshub.app/reading.html#zhai-shu-yuan',
|
|
1884
|
-
source: ['/book/:id', '/read/:id'],
|
|
1885
|
-
target: '/novel/zhaishuyuan/:id',
|
|
1886
|
-
},
|
|
1887
|
-
],
|
|
1888
|
-
},
|
|
1889
|
-
'hbut.edu.cn': {
|
|
1890
|
-
_name: '湖北工业大学',
|
|
1891
|
-
www: [
|
|
1892
|
-
{
|
|
1893
|
-
title: '新闻中心',
|
|
1894
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1895
|
-
source: '/xwzx/:name',
|
|
1896
|
-
target: (params) => {
|
|
1897
|
-
const type = params.name.replace('.htm', '');
|
|
1898
|
-
return type ? `/hbut/news/${type}` : '/hbut/news/tzgg';
|
|
1899
|
-
},
|
|
1900
|
-
},
|
|
1901
|
-
],
|
|
1902
|
-
jsjxy: [
|
|
1903
|
-
{
|
|
1904
|
-
title: '新闻动态',
|
|
1905
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1906
|
-
source: '/index/xwdt.htm',
|
|
1907
|
-
target: '/hbut/cs/xwdt',
|
|
1908
|
-
},
|
|
1909
|
-
{
|
|
1910
|
-
title: '通知公告',
|
|
1911
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1912
|
-
source: '/index/tzgg.htm',
|
|
1913
|
-
target: '/hbut/cs/tzgg',
|
|
1914
|
-
},
|
|
1915
|
-
{
|
|
1916
|
-
title: '教学信息',
|
|
1917
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1918
|
-
source: '/jxxx.htm',
|
|
1919
|
-
target: '/hbut/cs/jxxx',
|
|
1920
|
-
},
|
|
1921
|
-
{
|
|
1922
|
-
title: '科研动态',
|
|
1923
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1924
|
-
source: '/kxyj/kydt.htm',
|
|
1925
|
-
target: '/hbut/cs/kydt',
|
|
1926
|
-
},
|
|
1927
|
-
{
|
|
1928
|
-
title: '党建活动',
|
|
1929
|
-
docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
|
|
1930
|
-
source: '/djhd/djhd.htm',
|
|
1931
|
-
target: '/hbut/cs/djhd',
|
|
1932
|
-
},
|
|
1933
|
-
],
|
|
1934
|
-
},
|
|
1935
|
-
'zcool.com.cn': {
|
|
1936
|
-
_name: '站酷',
|
|
1937
|
-
www: [
|
|
1938
|
-
{
|
|
1939
|
-
title: '发现',
|
|
1940
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1941
|
-
source: '',
|
|
1942
|
-
target: '/zcool/discover',
|
|
1943
|
-
},
|
|
1944
|
-
{
|
|
1945
|
-
title: '发现 - 精选 - 全部推荐',
|
|
1946
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1947
|
-
source: '',
|
|
1948
|
-
target: '/zcool/discover/all',
|
|
1949
|
-
},
|
|
1950
|
-
{
|
|
1951
|
-
title: '发现 - 精选 - 首页推荐',
|
|
1952
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1953
|
-
source: '',
|
|
1954
|
-
target: '/zcool/discover/home',
|
|
1955
|
-
},
|
|
1956
|
-
{
|
|
1957
|
-
title: '发现 - 精选 - 编辑精选',
|
|
1958
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1959
|
-
source: '',
|
|
1960
|
-
target: '/zcool/discover/home',
|
|
1961
|
-
},
|
|
1962
|
-
{
|
|
1963
|
-
title: '发现 - 精选 - 文章 - 编辑精选',
|
|
1964
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1965
|
-
source: '',
|
|
1966
|
-
target: '/zcool/discover/article',
|
|
1967
|
-
},
|
|
1968
|
-
{
|
|
1969
|
-
title: '作品榜单',
|
|
1970
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1971
|
-
source: '',
|
|
1972
|
-
target: '/zcool/top/design',
|
|
1973
|
-
},
|
|
1974
|
-
{
|
|
1975
|
-
title: '文章榜单',
|
|
1976
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1977
|
-
source: '',
|
|
1978
|
-
target: '/zcool/top/article',
|
|
1979
|
-
},
|
|
1980
|
-
{
|
|
1981
|
-
title: '用户作品',
|
|
1982
|
-
docs: 'https://docs.rsshub.app/design.html#zhan-ku',
|
|
1983
|
-
source: ['/u/:id'],
|
|
1984
|
-
target: `/zcool/user/:id`,
|
|
1985
|
-
},
|
|
1986
|
-
],
|
|
1987
|
-
},
|
|
1988
|
-
't.me': {
|
|
1989
|
-
_name: 'Telegram',
|
|
1990
|
-
'.': [
|
|
1991
|
-
{
|
|
1992
|
-
title: '频道',
|
|
1993
|
-
docs: 'https://docs.rsshub.app/social-media.html#telegram',
|
|
1994
|
-
source: '/:username',
|
|
1995
|
-
target: (params, url, document) => {
|
|
1996
|
-
const isChannel = document && document.querySelector('.tgme_action_button_label');
|
|
1997
|
-
if (isChannel) {
|
|
1998
|
-
return '/telegram/channel/:username';
|
|
1999
|
-
}
|
|
2000
|
-
},
|
|
2001
|
-
},
|
|
2002
|
-
{
|
|
2003
|
-
title: '频道',
|
|
2004
|
-
docs: 'https://docs.rsshub.app/social-media.html#telegram',
|
|
2005
|
-
source: '/s/:username',
|
|
2006
|
-
target: '/telegram/channel/:username',
|
|
2007
|
-
},
|
|
2008
|
-
],
|
|
2009
|
-
},
|
|
2010
|
-
'zhuixinfan.com': {
|
|
2011
|
-
_name: '追新番日剧站',
|
|
2012
|
-
'.': [
|
|
2013
|
-
{
|
|
2014
|
-
title: '更新列表',
|
|
2015
|
-
docs: 'https://docs.rsshub.app/multimedia.html#zhui-xin-fan-ri-ju-zhan',
|
|
2016
|
-
source: ['/main.php'],
|
|
2017
|
-
target: '/zhuixinfan/list',
|
|
2018
|
-
},
|
|
2019
|
-
],
|
|
2020
|
-
},
|
|
2021
|
-
'etoland.co.kr': {
|
|
2022
|
-
_name: 'eTOLAND',
|
|
2023
|
-
'.': [
|
|
2024
|
-
{
|
|
2025
|
-
title: '主题贴',
|
|
2026
|
-
docs: 'https://docs.rsshub.app/bbs.html#etoland',
|
|
2027
|
-
source: ['/bbs/board.php', '/plugin/mobile/board.php'],
|
|
2028
|
-
target: (params, url) => `/etoland/${new URL(url).searchParams.get('bo_table')}`,
|
|
2029
|
-
},
|
|
2030
|
-
],
|
|
2031
|
-
},
|
|
2032
|
-
'qq.com': {
|
|
2033
|
-
_name: '腾讯',
|
|
2034
|
-
'mp.weixin': [
|
|
2035
|
-
{
|
|
2036
|
-
title: '微信公众号栏目',
|
|
2037
|
-
docs: 'https://docs.rsshub.app/new-media.html#gong-zhong-hao-lan-mu-fei-tui-song-li-shi-xiao-xi',
|
|
2038
|
-
source: '/mp/homepage',
|
|
2039
|
-
target: (params, url) => `/wechat/mp/homepage/${new URL(url).searchParams.get('__biz')}/${new URL(url).searchParams.get('hid')}/${new URL(url).searchParams.get('cid') ? new URL(url).searchParams.get('cid') : ''}`,
|
|
2040
|
-
},
|
|
2041
|
-
{
|
|
2042
|
-
title: '微信公众号话题',
|
|
2043
|
-
docs: 'https://docs.rsshub.app/new-media.html#wei-xin-gong-zhong-hao-wen-zhang-hua-ti-tag',
|
|
2044
|
-
source: '/mp/appmsgalbum',
|
|
2045
|
-
target: (params, url) => `/wechat/mp/msgalbum/${new URL(url).searchParams.get('__biz')}/${new URL(url).searchParams.get('album_id')}`,
|
|
2046
|
-
},
|
|
2047
|
-
],
|
|
2048
|
-
egame: [
|
|
2049
|
-
{
|
|
2050
|
-
title: '企鹅电竞直播间',
|
|
2051
|
-
docs: 'https://docs.rsshub.app/live.html#qi-e-dian-jing-zhi-bo-jian-kai-bo',
|
|
2052
|
-
source: '/:id',
|
|
2053
|
-
target: (params) => {
|
|
2054
|
-
if (params.id.match(/^\d+$/)) {
|
|
2055
|
-
return '/egameqq/room/:id';
|
|
2056
|
-
}
|
|
2057
|
-
},
|
|
2058
|
-
},
|
|
2059
|
-
],
|
|
2060
|
-
v: [
|
|
2061
|
-
{
|
|
2062
|
-
title: '视频 - 播放列表',
|
|
2063
|
-
docs: 'https://docs.rsshub.app/multimedia.html#teng-xun-shi-pin',
|
|
2064
|
-
source: '/x/cover/:id',
|
|
2065
|
-
target: (params) => {
|
|
2066
|
-
const id = params.id.match('(.*).html')[1];
|
|
2067
|
-
return id ? `/tencentvideo/playlist/${id}` : '';
|
|
2068
|
-
},
|
|
2069
|
-
},
|
|
2070
|
-
{
|
|
2071
|
-
title: '视频 - 播放列表',
|
|
2072
|
-
docs: 'https://docs.rsshub.app/multimedia.html#teng-xun-shi-pin',
|
|
2073
|
-
source: '/x/cover/:id/:detail',
|
|
2074
|
-
target: '/tencentvideo/playlist/:id',
|
|
2075
|
-
},
|
|
2076
|
-
],
|
|
2077
|
-
},
|
|
2078
|
-
'javbus.com': {
|
|
2079
|
-
_name: 'JavBus',
|
|
2080
|
-
www: [
|
|
2081
|
-
{
|
|
2082
|
-
title: '首页',
|
|
2083
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2084
|
-
source: '/',
|
|
2085
|
-
target: '/javbus/home',
|
|
2086
|
-
},
|
|
2087
|
-
{
|
|
2088
|
-
title: '分类',
|
|
2089
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2090
|
-
source: '/genre/:gid',
|
|
2091
|
-
target: '/javbus/genre/:gid',
|
|
2092
|
-
},
|
|
2093
|
-
{
|
|
2094
|
-
title: '演员',
|
|
2095
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2096
|
-
source: '/star/:sid',
|
|
2097
|
-
target: '/javbus/star/:sid',
|
|
2098
|
-
},
|
|
2099
|
-
{
|
|
2100
|
-
title: '系列',
|
|
2101
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2102
|
-
source: '/series/:seriesid',
|
|
2103
|
-
target: '/javbus/series/:seriesid',
|
|
2104
|
-
},
|
|
2105
|
-
{
|
|
2106
|
-
title: '首页 / 步兵',
|
|
2107
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2108
|
-
source: '/uncensored',
|
|
2109
|
-
target: '/javbus/uncensored/home',
|
|
2110
|
-
},
|
|
2111
|
-
{
|
|
2112
|
-
title: '分类 / 步兵',
|
|
2113
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2114
|
-
source: '/uncensored/genre/:gid',
|
|
2115
|
-
target: '/javbus/uncensored/genre/:gid',
|
|
2116
|
-
},
|
|
2117
|
-
{
|
|
2118
|
-
title: '演员 / 步兵',
|
|
2119
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2120
|
-
source: '/uncensored/star/:sid',
|
|
2121
|
-
target: '/javbus/uncensored/star/:sid',
|
|
2122
|
-
},
|
|
2123
|
-
{
|
|
2124
|
-
title: '系列 / 步兵',
|
|
2125
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2126
|
-
source: '/uncensored/series/:seriesid',
|
|
2127
|
-
target: '/javbus/uncensored/series/:seriesid',
|
|
2128
|
-
},
|
|
2129
|
-
],
|
|
2130
|
-
},
|
|
2131
|
-
'javbus.one': {
|
|
2132
|
-
_name: 'JavBus',
|
|
2133
|
-
www: [
|
|
2134
|
-
{
|
|
2135
|
-
title: '首页 / 欧陆风云',
|
|
2136
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2137
|
-
source: '/',
|
|
2138
|
-
target: '/javbus/western/home',
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
title: '分类 / 欧陆风云',
|
|
2142
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2143
|
-
source: '/genre/:gid',
|
|
2144
|
-
target: '/javbus/western/genre/:gid',
|
|
2145
|
-
},
|
|
2146
|
-
{
|
|
2147
|
-
title: '演员 / 欧陆风云',
|
|
2148
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2149
|
-
source: '/star/:sid',
|
|
2150
|
-
target: '/javbus/western/star/:sid',
|
|
2151
|
-
},
|
|
2152
|
-
{
|
|
2153
|
-
title: '系列 / 欧陆风云',
|
|
2154
|
-
docs: 'https://docs.rsshub.app/multimedia.html#javbus',
|
|
2155
|
-
source: '/series/:seriesid',
|
|
2156
|
-
target: '/javbus/western/series/:seriesid',
|
|
2157
|
-
},
|
|
2158
|
-
],
|
|
2159
|
-
},
|
|
2160
|
-
'onejav.com': {
|
|
2161
|
-
_name: 'OneJAV BT',
|
|
2162
|
-
'.': [
|
|
2163
|
-
{
|
|
2164
|
-
title: '今日种子',
|
|
2165
|
-
docs: 'https://docs.rsshub.app/multimedia.html#onejav',
|
|
2166
|
-
source: '/',
|
|
2167
|
-
target: (params, url, document) => {
|
|
2168
|
-
const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
|
|
2169
|
-
return `/onejav/day/${today}`;
|
|
2170
|
-
},
|
|
2171
|
-
},
|
|
2172
|
-
{
|
|
2173
|
-
title: '今日演员',
|
|
2174
|
-
docs: 'https://docs.rsshub.app/multimedia.html#onejav',
|
|
2175
|
-
source: '/',
|
|
2176
|
-
target: (params, url, document) => {
|
|
2177
|
-
const star = document.querySelector('div.card-content > div > a').getAttribute('href');
|
|
2178
|
-
return `/onejav${star}`;
|
|
2179
|
-
},
|
|
2180
|
-
},
|
|
2181
|
-
{
|
|
2182
|
-
title: '页面种子',
|
|
2183
|
-
docs: 'https://docs.rsshub.app/multimedia.html#onejav',
|
|
2184
|
-
source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
|
|
2185
|
-
target: (params, url, document) => {
|
|
2186
|
-
const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
|
|
2187
|
-
let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
|
|
2188
|
-
if (ikey === '' && itype === 'tag') {
|
|
2189
|
-
ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
|
|
2190
|
-
} else if (ikey === '' && itype === 'actress') {
|
|
2191
|
-
ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
|
|
2192
|
-
}
|
|
2193
|
-
return `/onejav/${itype}/${ikey}`;
|
|
2194
|
-
},
|
|
2195
|
-
},
|
|
2196
|
-
],
|
|
2197
|
-
},
|
|
2198
|
-
'141jav.com': {
|
|
2199
|
-
_name: '141JAV BT',
|
|
2200
|
-
'.': [
|
|
2201
|
-
{
|
|
2202
|
-
title: '今日种子',
|
|
2203
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141jav',
|
|
2204
|
-
source: '/',
|
|
2205
|
-
target: (params, url, document) => {
|
|
2206
|
-
const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
|
|
2207
|
-
return `/141jav/day/${today}`;
|
|
2208
|
-
},
|
|
2209
|
-
},
|
|
2210
|
-
{
|
|
2211
|
-
title: '今日演员',
|
|
2212
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141jav',
|
|
2213
|
-
source: '/',
|
|
2214
|
-
target: (params, url, document) => {
|
|
2215
|
-
const star = document.querySelector('div.card-content > div > a').getAttribute('href');
|
|
2216
|
-
return `/141jav${star}`;
|
|
2217
|
-
},
|
|
2218
|
-
},
|
|
2219
|
-
{
|
|
2220
|
-
title: '页面种子',
|
|
2221
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141jav',
|
|
2222
|
-
source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
|
|
2223
|
-
target: (params, url, document) => {
|
|
2224
|
-
const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
|
|
2225
|
-
let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
|
|
2226
|
-
if (ikey === '' && itype === 'tag') {
|
|
2227
|
-
ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
|
|
2228
|
-
} else if (ikey === '' && itype === 'actress') {
|
|
2229
|
-
ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
|
|
2230
|
-
}
|
|
2231
|
-
return `/141jav/${itype}/${ikey}`;
|
|
2232
|
-
},
|
|
2233
|
-
},
|
|
2234
|
-
],
|
|
2235
|
-
},
|
|
2236
|
-
'141ppv.com': {
|
|
2237
|
-
_name: '141ppv BT',
|
|
2238
|
-
'.': [
|
|
2239
|
-
{
|
|
2240
|
-
title: '今日种子',
|
|
2241
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141pvp',
|
|
2242
|
-
source: '/',
|
|
2243
|
-
target: (params, url, document) => {
|
|
2244
|
-
const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
|
|
2245
|
-
return `/141ppv/day/${today}`;
|
|
2246
|
-
},
|
|
2247
|
-
},
|
|
2248
|
-
{
|
|
2249
|
-
title: '今日演员',
|
|
2250
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141ppv',
|
|
2251
|
-
source: '/',
|
|
2252
|
-
target: (params, url, document) => {
|
|
2253
|
-
const star = document.querySelector('div.card-content > div > a').getAttribute('href');
|
|
2254
|
-
return `/141ppv${star}`;
|
|
2255
|
-
},
|
|
2256
|
-
},
|
|
2257
|
-
{
|
|
2258
|
-
title: '页面种子',
|
|
2259
|
-
docs: 'https://docs.rsshub.app/multimedia.html#141ppv',
|
|
2260
|
-
source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
|
|
2261
|
-
target: (params, url, document) => {
|
|
2262
|
-
const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
|
|
2263
|
-
let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
|
|
2264
|
-
if (ikey === '' && itype === 'tag') {
|
|
2265
|
-
ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
|
|
2266
|
-
} else if (ikey === '' && itype === 'actress') {
|
|
2267
|
-
ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
|
|
2268
|
-
}
|
|
2269
|
-
return `/141ppv/${itype}/${ikey}`;
|
|
2270
|
-
},
|
|
2271
|
-
},
|
|
2272
|
-
],
|
|
2273
|
-
},
|
|
2274
|
-
'sexinsex.net': {
|
|
2275
|
-
_name: 'sexinsex',
|
|
2276
|
-
'.': [
|
|
2277
|
-
{
|
|
2278
|
-
title: '分区帖子',
|
|
2279
|
-
docs: 'https://docs.rsshub.app/multimedia.html#sexinsex',
|
|
2280
|
-
source: '/bbs/:path',
|
|
2281
|
-
target: (params, url) => {
|
|
2282
|
-
let pid, typeid;
|
|
2283
|
-
const static_matched = params.path.match(/forum-(\d+)-\d+.html/);
|
|
2284
|
-
if (static_matched) {
|
|
2285
|
-
pid = static_matched[1];
|
|
2286
|
-
} else if (params.path === 'forumdisplay.php') {
|
|
2287
|
-
pid = new URL(url).searchParams.get('fid');
|
|
2288
|
-
typeid = new URL(url).searchParams.get('typeid');
|
|
2289
|
-
} else {
|
|
2290
|
-
return false;
|
|
2291
|
-
}
|
|
2292
|
-
return `/sexinsex/${pid}/${typeid ? typeid : ''}`;
|
|
2293
|
-
},
|
|
2294
|
-
},
|
|
2295
|
-
],
|
|
2296
|
-
},
|
|
2297
|
-
't66y.com': {
|
|
2298
|
-
_name: '草榴社区',
|
|
2299
|
-
www: [
|
|
2300
|
-
{
|
|
2301
|
-
title: '分区帖子',
|
|
2302
|
-
docs: 'https://docs.rsshub.app/multimedia.html#cao-liu-she-qu',
|
|
2303
|
-
source: '/thread0806.php',
|
|
2304
|
-
target: (params, url) => {
|
|
2305
|
-
const id = new URL(url).searchParams.get('fid');
|
|
2306
|
-
const type = new URL(url).searchParams.get('type');
|
|
2307
|
-
return `/t66y/${id}/${type ? type : ''}`;
|
|
2308
|
-
},
|
|
2309
|
-
},
|
|
2310
|
-
],
|
|
2311
|
-
},
|
|
2312
|
-
'umass.edu': {
|
|
2313
|
-
_name: 'UMASS Amherst',
|
|
2314
|
-
ece: [
|
|
2315
|
-
{
|
|
2316
|
-
title: 'ECE News',
|
|
2317
|
-
docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
|
|
2318
|
-
source: '/news',
|
|
2319
|
-
target: '/umass/amherst/ecenews',
|
|
2320
|
-
},
|
|
2321
|
-
{
|
|
2322
|
-
title: 'ECE Seminar',
|
|
2323
|
-
docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
|
|
2324
|
-
source: '/seminars',
|
|
2325
|
-
target: '/umass/amherst/eceseminar',
|
|
2326
|
-
},
|
|
2327
|
-
],
|
|
2328
|
-
'www.cics': [
|
|
2329
|
-
{
|
|
2330
|
-
title: 'CICS News',
|
|
2331
|
-
docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
|
|
2332
|
-
source: '/news',
|
|
2333
|
-
target: '/umass/amherst/csnews',
|
|
2334
|
-
},
|
|
2335
|
-
],
|
|
2336
|
-
www: [
|
|
2337
|
-
{
|
|
2338
|
-
title: 'IPO Events',
|
|
2339
|
-
docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
|
|
2340
|
-
source: '/ipo/iss/events',
|
|
2341
|
-
target: '/umass/amherst/ipoevents',
|
|
2342
|
-
},
|
|
2343
|
-
{
|
|
2344
|
-
title: 'IPO Featured Stories',
|
|
2345
|
-
docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
|
|
2346
|
-
source: '/ipo/iss/featured-stories',
|
|
2347
|
-
target: '/umass/amherst/ipostories',
|
|
2348
|
-
},
|
|
2349
|
-
],
|
|
2350
|
-
},
|
|
2351
|
-
'lofter.com': {
|
|
2352
|
-
_name: 'Lofter',
|
|
2353
|
-
www: [
|
|
2354
|
-
{
|
|
2355
|
-
title: '话题 (标签)',
|
|
2356
|
-
docs: 'https://docs.rsshub.app/social-media.html#lofter',
|
|
2357
|
-
source: ['/tag/:name', '/tag/:name/:type'],
|
|
2358
|
-
target: (params) => `/lofter/tag/${params.name}/${params.type || ''}`,
|
|
2359
|
-
},
|
|
2360
|
-
],
|
|
2361
|
-
},
|
|
2362
|
-
|
|
2363
|
-
'yuque.com': {
|
|
2364
|
-
_name: '语雀',
|
|
2365
|
-
www: [
|
|
2366
|
-
{
|
|
2367
|
-
title: '知识库',
|
|
2368
|
-
docs: 'https://docs.rsshub.app/study.html#yu-que',
|
|
2369
|
-
source: ['/:space/:book'],
|
|
2370
|
-
target: (params, url, document) => {
|
|
2371
|
-
const match = document.documentElement.innerHTML.match(/JSON\.parse\(decodeURIComponent\("(.*)"\)/);
|
|
2372
|
-
if (match && match[1]) {
|
|
2373
|
-
const dataStr = match[1];
|
|
2374
|
-
try {
|
|
2375
|
-
const appData = JSON.parse(decodeURIComponent(dataStr));
|
|
2376
|
-
return `/yuque/doc/${appData.book.id}`;
|
|
2377
|
-
} catch (e) {
|
|
2378
|
-
// pass
|
|
2379
|
-
}
|
|
2380
|
-
}
|
|
2381
|
-
},
|
|
2382
|
-
},
|
|
2383
|
-
],
|
|
2384
|
-
},
|
|
2385
|
-
'bjeea.com': {
|
|
2386
|
-
_name: '北京考试院',
|
|
2387
|
-
www: [
|
|
2388
|
-
{
|
|
2389
|
-
title: '首页 / 通知公告',
|
|
2390
|
-
docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
|
|
2391
|
-
source: ['/html/bjeeagg'],
|
|
2392
|
-
target: '/gov/beijing/bjeea/bjeeagg',
|
|
2393
|
-
},
|
|
2394
|
-
{
|
|
2395
|
-
title: '首页 / 招考政策',
|
|
2396
|
-
docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
|
|
2397
|
-
source: ['/html/zkzc'],
|
|
2398
|
-
target: '/gov/beijing/bjeea/zkzc',
|
|
2399
|
-
},
|
|
2400
|
-
{
|
|
2401
|
-
title: '首页 / 自考快递',
|
|
2402
|
-
docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
|
|
2403
|
-
source: ['/html/zkkd'],
|
|
2404
|
-
target: '/gov/beijing/bjeea/zkkd',
|
|
2405
|
-
},
|
|
2406
|
-
],
|
|
2407
|
-
},
|
|
2408
|
-
'hk01.com': {
|
|
2409
|
-
_name: '香港01',
|
|
2410
|
-
www: [
|
|
2411
|
-
{
|
|
2412
|
-
title: '最 Hit',
|
|
2413
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
|
|
2414
|
-
source: ['/hot', '/'],
|
|
2415
|
-
target: '/hk01/hot',
|
|
2416
|
-
},
|
|
2417
|
-
{
|
|
2418
|
-
title: 'zone',
|
|
2419
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
|
|
2420
|
-
source: '/zone/:id/:title',
|
|
2421
|
-
target: '/hk01/zone/:id',
|
|
2422
|
-
},
|
|
2423
|
-
{
|
|
2424
|
-
title: 'channel',
|
|
2425
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
|
|
2426
|
-
source: '/channel/:id/:title',
|
|
2427
|
-
target: '/hk01/channel/:id',
|
|
2428
|
-
},
|
|
2429
|
-
{
|
|
2430
|
-
title: 'issue',
|
|
2431
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
|
|
2432
|
-
source: '/issue/:id/:title',
|
|
2433
|
-
target: '/hk01/issue/:id',
|
|
2434
|
-
},
|
|
2435
|
-
{
|
|
2436
|
-
title: 'tag',
|
|
2437
|
-
docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
|
|
2438
|
-
source: '/tag/:id/:title',
|
|
2439
|
-
target: '/hk01/tag/:id',
|
|
2440
|
-
},
|
|
2441
|
-
],
|
|
2442
|
-
},
|
|
2443
|
-
'douban.com': {
|
|
2444
|
-
_name: '豆瓣',
|
|
2445
|
-
www: [
|
|
2446
|
-
{
|
|
2447
|
-
title: '用户的广播',
|
|
2448
|
-
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
2449
|
-
source: '/people/:user/',
|
|
2450
|
-
target: (params, url, document) => {
|
|
2451
|
-
const uid = document && document.querySelector('html').innerHTML.match(/"id":"([0-9]+)"/)[1];
|
|
2452
|
-
return uid ? `/douban/people/${uid}/status` : '';
|
|
2453
|
-
},
|
|
2454
|
-
},
|
|
2455
|
-
{
|
|
2456
|
-
title: '小组-最新',
|
|
2457
|
-
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
2458
|
-
source: '/group/:groupid',
|
|
2459
|
-
target: '/douban/group/:groupid',
|
|
2460
|
-
},
|
|
2461
|
-
{
|
|
2462
|
-
title: '小组-最热',
|
|
2463
|
-
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
2464
|
-
source: '/group/:groupid',
|
|
2465
|
-
target: '/douban/group/:groupid/essence',
|
|
2466
|
-
},
|
|
2467
|
-
{
|
|
2468
|
-
title: '小组-精华',
|
|
2469
|
-
docs: 'https://docs.rsshub.app/social-media.html#dou-ban',
|
|
2470
|
-
source: '/group/:groupid',
|
|
2471
|
-
target: '/douban/group/:groupid/elite',
|
|
2472
|
-
},
|
|
2473
|
-
],
|
|
2474
|
-
},
|
|
2475
|
-
'okjike.com': {
|
|
2476
|
-
_name: '即刻',
|
|
2477
|
-
m: [
|
|
2478
|
-
{
|
|
2479
|
-
title: '用户动态',
|
|
2480
|
-
docs: 'https://docs.rsshub.app/social-media.html#ji-ke-yong-hu-dong-tai',
|
|
2481
|
-
source: '/reposts/:repostId',
|
|
2482
|
-
target: (params, url, document) => {
|
|
2483
|
-
const uid = document.querySelector('.avatar').getAttribute('href').replace('/users/', '');
|
|
2484
|
-
return uid ? `/jike/user/${uid}` : '';
|
|
2485
|
-
},
|
|
2486
|
-
},
|
|
2487
|
-
{
|
|
2488
|
-
title: '圈子',
|
|
2489
|
-
docs: 'https://docs.rsshub.app/social-media.html#ji-ke-quan-zi',
|
|
2490
|
-
source: '/topics/:id',
|
|
2491
|
-
target: '/jike/topic/:id',
|
|
2492
|
-
},
|
|
2493
|
-
{
|
|
2494
|
-
title: '圈子 - 纯文字',
|
|
2495
|
-
docs: 'https://docs.rsshub.app/social-media.html#ji-ke-quan-zi-chun-wen-zi',
|
|
2496
|
-
source: '/topics/:id',
|
|
2497
|
-
target: '/jike/topic/text/:id',
|
|
2498
|
-
},
|
|
2499
|
-
],
|
|
2500
|
-
},
|
|
2501
|
-
'ems.com.cn': {
|
|
2502
|
-
_name: '中国邮政速递物流',
|
|
2503
|
-
www: [
|
|
2504
|
-
{
|
|
2505
|
-
title: '新闻',
|
|
2506
|
-
docs: 'https://docs.rsshub.app/other.html#zhong-guo-you-zheng-su-di-wu-liu',
|
|
2507
|
-
source: '/aboutus/xin_wen_yu_shi_jian.html',
|
|
2508
|
-
target: '/ems/news',
|
|
2509
|
-
},
|
|
2510
|
-
],
|
|
2511
|
-
},
|
|
2512
|
-
'popiapp.cn': {
|
|
2513
|
-
_name: 'Popi 提问箱',
|
|
2514
|
-
www: [
|
|
2515
|
-
{
|
|
2516
|
-
title: '提问箱新回答',
|
|
2517
|
-
docs: 'https://docs.rsshub.app/social-media.html#popi-ti-wen-xiang',
|
|
2518
|
-
source: '/:id',
|
|
2519
|
-
target: (params) => {
|
|
2520
|
-
if (params.id) {
|
|
2521
|
-
return '/popiask/:id';
|
|
2522
|
-
}
|
|
2523
|
-
},
|
|
2524
|
-
},
|
|
2525
|
-
],
|
|
2526
|
-
},
|
|
2527
|
-
'nppa.gov.cn': {
|
|
2528
|
-
_name: '国家新闻出版署',
|
|
2529
|
-
www: [
|
|
2530
|
-
{
|
|
2531
|
-
title: '栏目',
|
|
2532
|
-
docs: 'https://docs.rsshub.app/government.html#guo-jia-xin-wen-chu-ban-shu',
|
|
2533
|
-
source: '/nppa/channels/:channel',
|
|
2534
|
-
target: (params, url) => `/gov/nppa/${/nppa\/channels\/(\d+)\.shtml/.exec(url)[1]}`,
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
title: '内容',
|
|
2538
|
-
docs: 'https://docs.rsshub.app/government.html#guo-jia-xin-wen-chu-ban-shu',
|
|
2539
|
-
source: '/nppa/contents/:channel/:content',
|
|
2540
|
-
target: (params, url) => `/gov/nppa/${/nppa\/contents\/(\d+\/\d+)\.shtml/.exec(url)[1]}`,
|
|
2541
|
-
},
|
|
2542
|
-
],
|
|
2543
|
-
},
|
|
2544
|
-
'acfun.cn': {
|
|
2545
|
-
_name: 'AcFun',
|
|
2546
|
-
www: [
|
|
2547
|
-
{
|
|
2548
|
-
tilte: '番剧',
|
|
2549
|
-
docs: 'https://docs.rsshub.app/anime.html#acfun-fan-ju',
|
|
2550
|
-
source: '/bangumi/:id',
|
|
2551
|
-
target: (params) => `/acfun/bangumi/${params.id.replace('aa', '')}`,
|
|
2552
|
-
},
|
|
2553
|
-
{
|
|
2554
|
-
title: '用户投稿',
|
|
2555
|
-
docs: 'https://docs.rsshub.app/anime.html#acfun-yong-hu-tou-gao',
|
|
2556
|
-
source: '/u/:id',
|
|
2557
|
-
target: '/acfun/user/video/:id',
|
|
2558
|
-
},
|
|
2559
|
-
],
|
|
2560
|
-
},
|
|
2561
|
-
'behance.net': {
|
|
2562
|
-
_name: 'Behance',
|
|
2563
|
-
www: [
|
|
2564
|
-
{
|
|
2565
|
-
title: 'User',
|
|
2566
|
-
docs: 'https://docs.rsshub.app/design.html#behance-user-works',
|
|
2567
|
-
source: ['/:user'],
|
|
2568
|
-
target: (params, url, document) => {
|
|
2569
|
-
const uid1 = document && document.querySelector('html').innerHTML.match(/([^/]+)\/insights/)[1];
|
|
2570
|
-
return `/behance/${uid1}`;
|
|
2571
|
-
},
|
|
2572
|
-
},
|
|
2573
|
-
],
|
|
2574
|
-
},
|
|
2575
|
-
'picuki.com': {
|
|
2576
|
-
_name: 'Picuki',
|
|
2577
|
-
www: [
|
|
2578
|
-
{
|
|
2579
|
-
title: '用户',
|
|
2580
|
-
docs: 'https://docs.rsshub.app/social-media.html#picuki-yong-hu',
|
|
2581
|
-
source: '/profile/:id',
|
|
2582
|
-
target: '/picuki/profile/:id',
|
|
2583
|
-
},
|
|
2584
|
-
],
|
|
2585
|
-
},
|
|
2586
|
-
'jjmhw.cc': {
|
|
2587
|
-
_name: '漫小肆',
|
|
2588
|
-
www: [
|
|
2589
|
-
{
|
|
2590
|
-
title: '漫画更新',
|
|
2591
|
-
docs: 'https://docs.rsshub.app/anime.html#man-xiao-si',
|
|
2592
|
-
source: '/book/:id',
|
|
2593
|
-
target: '/manxiaosi/book/:id',
|
|
2594
|
-
},
|
|
2595
|
-
],
|
|
2596
|
-
},
|
|
2597
|
-
'wenxuecity.com': {
|
|
2598
|
-
_name: '文学城',
|
|
2599
|
-
blog: [
|
|
2600
|
-
{
|
|
2601
|
-
title: '博客',
|
|
2602
|
-
docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-bo-ke',
|
|
2603
|
-
source: '/myblog/:id',
|
|
2604
|
-
target: '/wenxuecity/blog/:id',
|
|
2605
|
-
},
|
|
2606
|
-
{
|
|
2607
|
-
title: '博客',
|
|
2608
|
-
docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-bo-ke',
|
|
2609
|
-
source: '/myoverview/:id',
|
|
2610
|
-
target: '/wenxuecity/blog/:id',
|
|
2611
|
-
},
|
|
2612
|
-
],
|
|
2613
|
-
bbs: [
|
|
2614
|
-
{
|
|
2615
|
-
title: '最新主题',
|
|
2616
|
-
docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-xin-zhu-ti',
|
|
2617
|
-
source: '/:cat',
|
|
2618
|
-
target: '/wenxuecity/bbs/:cat',
|
|
2619
|
-
},
|
|
2620
|
-
{
|
|
2621
|
-
title: '最新主题 - 精华区',
|
|
2622
|
-
docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-xin-zhu-ti',
|
|
2623
|
-
source: '/:cat',
|
|
2624
|
-
target: '/wenxuecity/bbs/:cat/1',
|
|
2625
|
-
},
|
|
2626
|
-
{
|
|
2627
|
-
title: '最热主题',
|
|
2628
|
-
docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-re-zhu-ti',
|
|
2629
|
-
source: '/?cid=*',
|
|
2630
|
-
target: (params, url, document) => {
|
|
2631
|
-
const cid = document && new URL(document.location).searchParams.get('cid');
|
|
2632
|
-
return `/wenxuecity/hot/${cid}`;
|
|
2633
|
-
},
|
|
2634
|
-
},
|
|
2635
|
-
],
|
|
2636
|
-
},
|
|
2637
|
-
'buaq.net': {
|
|
2638
|
-
_name: '不安全资讯',
|
|
2639
|
-
'.': [
|
|
2640
|
-
{
|
|
2641
|
-
title: '不安全资讯',
|
|
2642
|
-
docs: 'http://docs.rsshub.app/new-media.html#bu-an-quan',
|
|
2643
|
-
source: '/',
|
|
2644
|
-
target: '/buaq',
|
|
2645
|
-
},
|
|
2646
|
-
],
|
|
2647
|
-
},
|
|
2648
|
-
'jian-ning.com': {
|
|
2649
|
-
_name: '建宁闲谈',
|
|
2650
|
-
'.': [
|
|
2651
|
-
{
|
|
2652
|
-
title: '文章',
|
|
2653
|
-
docs: 'https://docs.rsshub.app/blog.html#jian-ning-xian-tan',
|
|
2654
|
-
source: '/*',
|
|
2655
|
-
target: '/blogs/jianning',
|
|
2656
|
-
},
|
|
2657
|
-
],
|
|
2658
|
-
},
|
|
2659
|
-
'matataki.io': {
|
|
2660
|
-
_name: 'matataki',
|
|
2661
|
-
www: [
|
|
2662
|
-
{
|
|
2663
|
-
title: '最热作品',
|
|
2664
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2665
|
-
source: '/article/',
|
|
2666
|
-
target: '/matataki/posts/hot',
|
|
2667
|
-
},
|
|
2668
|
-
{
|
|
2669
|
-
title: '最新作品',
|
|
2670
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2671
|
-
source: '/article/latest',
|
|
2672
|
-
target: '/matataki/posts/latest',
|
|
2673
|
-
},
|
|
2674
|
-
{
|
|
2675
|
-
title: '作者创作',
|
|
2676
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2677
|
-
source: '/user/:uid',
|
|
2678
|
-
target: (params) => `/matataki/users/${params.uid}/posts`,
|
|
2679
|
-
},
|
|
2680
|
-
{
|
|
2681
|
-
title: 'Fan票关联作品',
|
|
2682
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2683
|
-
source: ['/token/:tokenId', '/token/:tokenId/circle'],
|
|
2684
|
-
target: (params) => `/matataki/tokens/${params.tokenId}/posts`,
|
|
2685
|
-
},
|
|
2686
|
-
{
|
|
2687
|
-
title: '标签关联作品',
|
|
2688
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2689
|
-
source: ['/tag/:tagId'],
|
|
2690
|
-
target: (params, url) => {
|
|
2691
|
-
const tagName = new URL(url).searchParams.get('name');
|
|
2692
|
-
return `/matataki/tags/${params.tagId}/${tagName}/posts`;
|
|
2693
|
-
},
|
|
2694
|
-
},
|
|
2695
|
-
{
|
|
2696
|
-
title: '收藏夹',
|
|
2697
|
-
docs: 'https://docs.rsshub.app/new-media.html#matataki',
|
|
2698
|
-
source: '/user/:uid/favlist/:fid',
|
|
2699
|
-
target: (params) => `/matataki/users/${params.uid}/favorites/${params.fid}/posts`,
|
|
2700
|
-
},
|
|
2701
|
-
],
|
|
2702
|
-
},
|
|
2703
|
-
'eventernote.com': {
|
|
2704
|
-
_name: 'Eventernote',
|
|
2705
|
-
www: [
|
|
2706
|
-
{
|
|
2707
|
-
title: '声优活动及演唱会',
|
|
2708
|
-
docs: 'https://docs.rsshub.app/anime.html#eventernote',
|
|
2709
|
-
source: '/actors/:name/:id/events',
|
|
2710
|
-
target: '/eventernote/actors/:name/:id',
|
|
2711
|
-
},
|
|
2712
|
-
],
|
|
2713
|
-
},
|
|
2714
|
-
'instagram.com': {
|
|
2715
|
-
_name: 'Instagram',
|
|
2716
|
-
www: [
|
|
2717
|
-
{
|
|
2718
|
-
title: '用户',
|
|
2719
|
-
docs: 'https://docs.rsshub.app/social-media.html#instagram',
|
|
2720
|
-
source: '/:id',
|
|
2721
|
-
target: (params) => {
|
|
2722
|
-
if (params.id !== 'explore' && params.id !== 'developer') {
|
|
2723
|
-
return '/instagram/user/:id';
|
|
2724
|
-
}
|
|
2725
|
-
},
|
|
2726
|
-
},
|
|
2727
|
-
],
|
|
2728
|
-
},
|
|
2729
|
-
'huya.com': {
|
|
2730
|
-
_name: '虎牙直播',
|
|
2731
|
-
'.': [
|
|
2732
|
-
{
|
|
2733
|
-
title: '直播间开播',
|
|
2734
|
-
docs: 'https://docs.rsshub.app/live.html#hu-ya-zhi-bo-zhi-bo-jian-kai-bo',
|
|
2735
|
-
source: '/:id',
|
|
2736
|
-
target: '/huya/live/:id',
|
|
2737
|
-
},
|
|
2738
|
-
],
|
|
2739
|
-
},
|
|
2740
|
-
'craigslist.org': {
|
|
2741
|
-
_name: 'Craigslist',
|
|
2742
|
-
'.': [
|
|
2743
|
-
{
|
|
2744
|
-
title: '商品搜索列表',
|
|
2745
|
-
docs: 'https://docs.rsshub.app/shopping.html#craigslist',
|
|
2746
|
-
},
|
|
2747
|
-
],
|
|
2748
|
-
},
|
|
2749
|
-
'saraba1st.com': {
|
|
2750
|
-
_name: 'Saraba1st',
|
|
2751
|
-
bbs: [
|
|
2752
|
-
{
|
|
2753
|
-
title: '帖子',
|
|
2754
|
-
docs: 'https://docs.rsshub.app/bbs.html#saraba1st',
|
|
2755
|
-
source: '/2b/:id',
|
|
2756
|
-
target: (params) => {
|
|
2757
|
-
const id = params.id.includes('thread') ? params.id.split('-')[1] : '';
|
|
2758
|
-
return id ? `/saraba1st/thread/${id}` : '';
|
|
2759
|
-
},
|
|
2760
|
-
},
|
|
2761
|
-
],
|
|
2762
|
-
},
|
|
2763
|
-
'scboy.com': {
|
|
2764
|
-
_name: 'scboy 论坛',
|
|
2765
|
-
www: [
|
|
2766
|
-
{
|
|
2767
|
-
title: '帖子',
|
|
2768
|
-
docs: 'https://docs.rsshub.app/bbs.html#scboy',
|
|
2769
|
-
source: '',
|
|
2770
|
-
target: (params, url) => {
|
|
2771
|
-
const id = url.includes('thread') ? url.split('-')[1].split('.')[0] : '';
|
|
2772
|
-
return id ? `/scboy/thread/${id}` : '';
|
|
2773
|
-
},
|
|
2774
|
-
},
|
|
2775
|
-
],
|
|
2776
|
-
},
|
|
2777
|
-
'cqut.edu.cn': {
|
|
2778
|
-
_name: '重庆理工大学',
|
|
2779
|
-
tz: [
|
|
2780
|
-
{
|
|
2781
|
-
title: '通知',
|
|
2782
|
-
docs: 'https://docs.rsshub.app/university.html#chong-qing-li-gong-da-xue',
|
|
2783
|
-
source: '/*',
|
|
2784
|
-
},
|
|
2785
|
-
],
|
|
2786
|
-
lib: [
|
|
2787
|
-
{
|
|
2788
|
-
title: '图书馆通知',
|
|
2789
|
-
docs: 'https://docs.rsshub.app/university.html#chong-qing-li-gong-da-xue',
|
|
2790
|
-
source: '/*',
|
|
2791
|
-
},
|
|
2792
|
-
],
|
|
2793
|
-
},
|
|
2794
|
-
'cqwu.net': {
|
|
2795
|
-
_name: '重庆文理学院',
|
|
2796
|
-
www: [
|
|
2797
|
-
{
|
|
2798
|
-
title: '通知',
|
|
2799
|
-
docs: 'https://docs.rsshub.app/university.html#chong-qing-wen-li-xue-yuan',
|
|
2800
|
-
source: '/:type',
|
|
2801
|
-
target: (params) => {
|
|
2802
|
-
if (params.type === 'channel_7721.html') {
|
|
2803
|
-
return '/cqwu/news/notify';
|
|
2804
|
-
}
|
|
2805
|
-
},
|
|
2806
|
-
},
|
|
2807
|
-
{
|
|
2808
|
-
title: '学术活动',
|
|
2809
|
-
docs: 'https://docs.rsshub.app/university.html#chong-qing-wen-li-xue-yuan',
|
|
2810
|
-
source: '/:type',
|
|
2811
|
-
target: (params) => {
|
|
2812
|
-
if (params.type === 'channel_7722.html') {
|
|
2813
|
-
return '/cqwu/news/academiceve';
|
|
2814
|
-
}
|
|
2815
|
-
},
|
|
2816
|
-
},
|
|
2817
|
-
],
|
|
2818
|
-
},
|
|
2819
|
-
'trakt.tv': {
|
|
2820
|
-
_name: 'Trakt.tv',
|
|
2821
|
-
'.': [
|
|
2822
|
-
{
|
|
2823
|
-
title: '用户收藏',
|
|
2824
|
-
docs: 'https://docs.rsshub.app/multimedia.html#trakt-tv-yong-hu-shou-cang',
|
|
2825
|
-
source: ['/users/:username/collection/:type/added', '/users/:username/collection'],
|
|
2826
|
-
target: (params) => `/trakt/collection/${params.username}/${params.type || 'all'}`,
|
|
2827
|
-
},
|
|
2828
|
-
],
|
|
2829
|
-
},
|
|
2830
|
-
'eagle.cool': {
|
|
2831
|
-
_name: 'Eagle',
|
|
2832
|
-
cn: [
|
|
2833
|
-
{
|
|
2834
|
-
title: '更新日志',
|
|
2835
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2836
|
-
source: '/changelog',
|
|
2837
|
-
target: '/eagle/changelog/cn',
|
|
2838
|
-
},
|
|
2839
|
-
],
|
|
2840
|
-
tw: [
|
|
2841
|
-
{
|
|
2842
|
-
title: '更新日誌',
|
|
2843
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2844
|
-
source: '/changelog',
|
|
2845
|
-
target: '/eagle/changelog/tw',
|
|
2846
|
-
},
|
|
2847
|
-
],
|
|
2848
|
-
en: [
|
|
2849
|
-
{
|
|
2850
|
-
title: 'Release Notes',
|
|
2851
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2852
|
-
source: '/changelog',
|
|
2853
|
-
target: '/eagle/changelog/en',
|
|
2854
|
-
},
|
|
2855
|
-
],
|
|
2856
|
-
},
|
|
2857
|
-
'furaffinity.net': {
|
|
2858
|
-
_name: 'Fur Affinity',
|
|
2859
|
-
www: [
|
|
2860
|
-
{
|
|
2861
|
-
title: '主页',
|
|
2862
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2863
|
-
source: '/',
|
|
2864
|
-
target: '/furaffinity/home',
|
|
2865
|
-
},
|
|
2866
|
-
{
|
|
2867
|
-
title: '浏览',
|
|
2868
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2869
|
-
source: '/browse/',
|
|
2870
|
-
target: '/furaffinity/browse',
|
|
2871
|
-
},
|
|
2872
|
-
{
|
|
2873
|
-
title: '站点状态',
|
|
2874
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2875
|
-
source: '/',
|
|
2876
|
-
target: '/furaffinity/status',
|
|
2877
|
-
},
|
|
2878
|
-
{
|
|
2879
|
-
title: '搜索',
|
|
2880
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2881
|
-
source: '/search/',
|
|
2882
|
-
target: (params, url) => {
|
|
2883
|
-
const keyword = new URL(url).searchParams.get('q');
|
|
2884
|
-
if (keyword) {
|
|
2885
|
-
return `/furaffinity/search/${keyword}`;
|
|
2886
|
-
}
|
|
2887
|
-
},
|
|
2888
|
-
},
|
|
2889
|
-
{
|
|
2890
|
-
title: '用户主页简介',
|
|
2891
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2892
|
-
source: '/user/:username/',
|
|
2893
|
-
target: '/furaffinity/user/:username',
|
|
2894
|
-
},
|
|
2895
|
-
{
|
|
2896
|
-
title: '用户关注列表',
|
|
2897
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2898
|
-
source: '/watchlist/by/:username/',
|
|
2899
|
-
target: '/furaffinity/watching/:username',
|
|
2900
|
-
},
|
|
2901
|
-
{
|
|
2902
|
-
title: '用户被关注列表',
|
|
2903
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2904
|
-
source: '/watchlist/to/:username/',
|
|
2905
|
-
target: '/furaffinity/watchers/:username',
|
|
2906
|
-
},
|
|
2907
|
-
{
|
|
2908
|
-
title: '用户接受委托信息',
|
|
2909
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2910
|
-
source: '/commissions/:username/',
|
|
2911
|
-
target: '/furaffinity/commissions/:username',
|
|
2912
|
-
},
|
|
2913
|
-
{
|
|
2914
|
-
title: '用户的 Shouts 留言',
|
|
2915
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2916
|
-
source: '/user/:username/',
|
|
2917
|
-
target: '/furaffinity/shouts/:username',
|
|
2918
|
-
},
|
|
2919
|
-
{
|
|
2920
|
-
title: '用户的日记',
|
|
2921
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2922
|
-
source: '/journals/:username/',
|
|
2923
|
-
target: '/furaffinity/journals/:username',
|
|
2924
|
-
},
|
|
2925
|
-
{
|
|
2926
|
-
title: '用户的创作画廊',
|
|
2927
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2928
|
-
source: '/gallery/:username/',
|
|
2929
|
-
target: '/furaffinity/gallery/:username',
|
|
2930
|
-
},
|
|
2931
|
-
{
|
|
2932
|
-
title: '用户非正式作品',
|
|
2933
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2934
|
-
source: '/scraps/:username/',
|
|
2935
|
-
target: '/furaffinity/scraps/:username',
|
|
2936
|
-
},
|
|
2937
|
-
{
|
|
2938
|
-
title: '用户的喜爱列表',
|
|
2939
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2940
|
-
source: '/favorites/:username/',
|
|
2941
|
-
target: '/furaffinity/favorites/:username',
|
|
2942
|
-
},
|
|
2943
|
-
{
|
|
2944
|
-
title: '作品评论区',
|
|
2945
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2946
|
-
source: '/view/:id/',
|
|
2947
|
-
target: '/furaffinity/submission_comments/:id',
|
|
2948
|
-
},
|
|
2949
|
-
{
|
|
2950
|
-
title: '日记评论区',
|
|
2951
|
-
docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
|
|
2952
|
-
source: '/journal/:id/',
|
|
2953
|
-
target: '/furaffinity/journal_comments/:id',
|
|
2954
|
-
},
|
|
2955
|
-
],
|
|
2956
|
-
},
|
|
2957
|
-
'gcores.com': {
|
|
2958
|
-
_name: '机核网',
|
|
2959
|
-
www: [
|
|
2960
|
-
{
|
|
2961
|
-
title: '资讯',
|
|
2962
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2963
|
-
source: '/news',
|
|
2964
|
-
target: '/gcores/category/news',
|
|
2965
|
-
},
|
|
2966
|
-
{
|
|
2967
|
-
title: '视频',
|
|
2968
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2969
|
-
source: '/videos',
|
|
2970
|
-
target: '/gcores/category/videos',
|
|
2971
|
-
},
|
|
2972
|
-
{
|
|
2973
|
-
title: '电台',
|
|
2974
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2975
|
-
source: '/radios',
|
|
2976
|
-
target: '/gcores/category/radios',
|
|
2977
|
-
},
|
|
2978
|
-
{
|
|
2979
|
-
title: '文章',
|
|
2980
|
-
docs: 'https://docs.rsshub.app/program-update.html#eagle',
|
|
2981
|
-
source: '/articles',
|
|
2982
|
-
target: '/gcores/category/articles',
|
|
2983
|
-
},
|
|
2984
|
-
],
|
|
2985
|
-
},
|
|
2986
|
-
'bgm.tv': {
|
|
2987
|
-
_name: 'Bangumi',
|
|
2988
|
-
'.': [
|
|
2989
|
-
{
|
|
2990
|
-
title: '小组话题',
|
|
2991
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
2992
|
-
source: '/group/:id',
|
|
2993
|
-
target: '/bangumi/group/:id',
|
|
2994
|
-
},
|
|
2995
|
-
{
|
|
2996
|
-
title: '小组话题的新回复',
|
|
2997
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
2998
|
-
source: '/group/topic/:id',
|
|
2999
|
-
target: '/bangumi/topic/:id',
|
|
3000
|
-
},
|
|
3001
|
-
{
|
|
3002
|
-
title: '现实人物的新作品',
|
|
3003
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3004
|
-
source: '/person/:id',
|
|
3005
|
-
target: '/bangumi/person/:id',
|
|
3006
|
-
},
|
|
3007
|
-
{
|
|
3008
|
-
title: '用户日志',
|
|
3009
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3010
|
-
source: '/user/:id',
|
|
3011
|
-
target: '/bangumi/user/blog/:id',
|
|
3012
|
-
},
|
|
3013
|
-
{
|
|
3014
|
-
title: '条目的讨论',
|
|
3015
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3016
|
-
source: '/subject/:id',
|
|
3017
|
-
target: '/bangumi/subject/:id/topics',
|
|
3018
|
-
},
|
|
3019
|
-
{
|
|
3020
|
-
title: '条目的评论',
|
|
3021
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3022
|
-
source: '/subject/:id',
|
|
3023
|
-
target: '/bangumi/subject/:id/blogs',
|
|
3024
|
-
},
|
|
3025
|
-
{
|
|
3026
|
-
title: '条目的章节',
|
|
3027
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3028
|
-
source: '/subject/:id',
|
|
3029
|
-
target: '/bangumi/subject/:id',
|
|
3030
|
-
},
|
|
3031
|
-
{
|
|
3032
|
-
title: '条目的吐槽箱',
|
|
3033
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3034
|
-
source: '/subject/:id',
|
|
3035
|
-
target: '/bangumi/subject/:id/comments',
|
|
3036
|
-
},
|
|
3037
|
-
{
|
|
3038
|
-
title: '放送列表',
|
|
3039
|
-
docs: 'https://docs.rsshub.app/anime.html#bangumi',
|
|
3040
|
-
source: '/calendar',
|
|
3041
|
-
target: '/bangumi/calendar/today',
|
|
3042
|
-
},
|
|
3043
|
-
],
|
|
3044
|
-
},
|
|
3045
|
-
'e-hentai.org/': {
|
|
3046
|
-
_name: 'E-Hentai',
|
|
3047
|
-
'.': [
|
|
3048
|
-
{
|
|
3049
|
-
title: '收藏',
|
|
3050
|
-
docs: 'https://docs.rsshub.app/picture.html#ehentai',
|
|
3051
|
-
source: '/favorites.php',
|
|
3052
|
-
target: '/ehentai/favorites',
|
|
3053
|
-
},
|
|
3054
|
-
{
|
|
3055
|
-
title: '标签',
|
|
3056
|
-
docs: 'https://docs.rsshub.app/picture.html#ehentai',
|
|
3057
|
-
source: '/tag/:tag',
|
|
3058
|
-
target: '/ehentai/tag/:tag',
|
|
3059
|
-
},
|
|
3060
|
-
{
|
|
3061
|
-
title: '搜索',
|
|
3062
|
-
docs: 'https://docs.rsshub.app/picture.html#ehentai',
|
|
3063
|
-
source: '/',
|
|
3064
|
-
target: (params, url) => {
|
|
3065
|
-
const keyword = new URL(url).searchParams.toString();
|
|
3066
|
-
if (keyword) {
|
|
3067
|
-
return `/ehentai/search/${keyword}`;
|
|
3068
|
-
}
|
|
3069
|
-
},
|
|
3070
|
-
},
|
|
3071
|
-
],
|
|
3072
|
-
},
|
|
3073
|
-
'iyingdi.com': {
|
|
3074
|
-
_name: '旅法师营地',
|
|
3075
|
-
www: [
|
|
3076
|
-
{
|
|
3077
|
-
title: '分区',
|
|
3078
|
-
docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
|
|
3079
|
-
source: '/tz/tag/:tag',
|
|
3080
|
-
target: '/lfsyd/tag/:tag',
|
|
3081
|
-
},
|
|
3082
|
-
{
|
|
3083
|
-
title: '用户发帖',
|
|
3084
|
-
docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
|
|
3085
|
-
source: ['/tz/people/:id', '/tz/people/:id/*'],
|
|
3086
|
-
target: '/lfsyd/user/:id',
|
|
3087
|
-
},
|
|
3088
|
-
],
|
|
3089
|
-
mob: [
|
|
3090
|
-
{
|
|
3091
|
-
title: '分区',
|
|
3092
|
-
docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
|
|
3093
|
-
source: '/fine/:tag',
|
|
3094
|
-
target: '/lfsyd/tag/:tag',
|
|
3095
|
-
},
|
|
3096
|
-
],
|
|
3097
|
-
},
|
|
3098
|
-
'macwk.com': {
|
|
3099
|
-
_name: 'MacWk',
|
|
3100
|
-
'.': [
|
|
3101
|
-
{
|
|
3102
|
-
title: '应用更新',
|
|
3103
|
-
docs: 'https://docs.rsshub.app/program-update.html#macwk',
|
|
3104
|
-
source: '/soft/:name',
|
|
3105
|
-
target: '/macwk/soft/:name',
|
|
3106
|
-
},
|
|
3107
|
-
],
|
|
3108
|
-
},
|
|
3109
|
-
'zyshow.net': {
|
|
3110
|
-
www: [
|
|
3111
|
-
{
|
|
3112
|
-
title: '',
|
|
3113
|
-
docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
|
|
3114
|
-
source: '/:name/',
|
|
3115
|
-
target: '/zyshow/:name',
|
|
3116
|
-
},
|
|
3117
|
-
],
|
|
3118
|
-
},
|
|
3119
|
-
};
|