UNPKG

rsshub

Version:
39 lines (38 loc) 1.11 kB
import { t as rofetch } from "./ofetch-C3ts-Hud.mjs"; import { n as resolveArticles, t as parseNoticeList } from "./utils-BUzgVloD.mjs"; import { load } from "cheerio"; //#region lib/routes/jou/yz.ts const pageUrl = "https://yz.jou.edu.cn/index/zxgg.htm"; const route = { path: "/yztzgg", categories: ["university"], example: "/jou/yztzgg", parameters: {}, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [{ source: ["yz.jou.edu.cn/index/zxgg.htm", "yz.jou.edu.cn/"] }], name: "研招网通知公告", maintainers: ["real-jiakai"], handler, url: "yz.jou.edu.cn/index/zxgg.htm" }; async function handler() { const items = await resolveArticles(parseNoticeList(load(await rofetch(pageUrl)), pageUrl, "table.winstyle207638 tr[height=\"20\"]", ".timestyle207638"), { title: ".titlestyle207543", content: ".v_news_content", date: ".timestyle207543" }); return { title: "江苏海洋大学 -- 研招通知公告", link: pageUrl, item: items }; } //#endregion export { route };