-
Notifications
You must be signed in to change notification settings - Fork 8.2k
feat(route): add ahszu jwc tzgg #19341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Successfully generated as following: http://localhost:1200/ahszu/jwc/tzgg - Success ✔️<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<channel>
<title>安徽宿州学院 - 教务处通知公告</title>
<link>https://jwc.ahszu.edu.cn/tzgg.htm</link>
<atom:link href="http://localhost:1200/ahszu/jwc/tzgg" rel="self" type="application/rss+xml"></atom:link>
<description>安徽宿州学院教务处发布的最新通知公告 - Powered by RSSHub</description>
<generator>RSSHub</generator>
<webMaster>contact@rsshub.app (RSSHub)</webMaster>
<language>en</language>
<lastBuildDate>Mon, 09 Jun 2025 16:47:07 GMT</lastBuildDate>
<ttl>5</ttl>
<item>
<title>关于举办宿州学院2025年师范生“三字一话”大赛的通知</title>
<description><p class="vsbcontent_start">为提升我校师范生汉字书写和普通话水平,夯实师范生教学技能基本功,增强专业实践技能,教务处将组织我校2025年师范生“三字一话”大赛。现将大赛的有关事宜通知如下:</p>
<p class="">一、比赛项目</p>
<p class="">1.钢笔字比赛;</p>
<p class="">2.粉笔字比赛;</p>
<p class="">3.毛笔字比赛;</p>
<p class="">4.普通话比赛。</p>
<p class="">二、比赛方式</p>
<p class="">比赛分初赛和决赛两个阶段。初赛由设师范专业的二级学院自行组织,初赛应积极动员,引导师范生广泛参与,提升“三字一话”水平,并于6月16日前按要求报送参加决赛学生名单(附件1),电子版和盖章扫描版发送至szxysjk@ahszu.edu.cn,各二级学院参与决赛的人数不超过10人,决赛时间和地点另行通知。</p>
<p class="">三、决赛规则和要求</p>
<p class="">1.要求参赛选手为我校在校师范生。</p>
<p class="">2.“三字”比赛规则:</p>
<p class="">比赛方式为现场书写,参赛选手自带毛笔和钢笔(粉笔字在教室黑板书写),教务处提供参赛用纸和书写内容。参赛者在规定时间内进行规范字书写,其中粉笔字须用楷书或行书书写,毛笔字和钢笔字字体不限,异体字、“二简”字、自造字、错别字等不规范写法均为无效。粉笔字成绩占总分25%,钢笔字成绩占总分25%,毛笔字成绩占总分20%。</p>
<p class="">3.“一话”比赛规则:</p>
<p class="">普通话比赛为现场朗读,现场抽取朗读内容,普通话成绩占总分30%。</p>
<p class="">四、评审及奖励</p>
<p class="">学校将组织相关专家组成评审委员会进行综合评审打分,评选出一、二、三等奖,颁发荣誉证书。</p>
<p class="" style="text-align: right;">2025年6月4日</p>
<p class="vsbcontent_end" style="text-align: right;">教务处&nbsp;</p>
</description>
<link>https://jwc.ahszu.edu.cn/info/1482/17622.htm</link>
<guid isPermaLink="false">https://jwc.ahszu.edu.cn/info/1482/17622.htm</guid>
<pubDate>Fri, 11 Mar 1239 15:54:17 GMT</pubDate>
</item>
</channel>
</rss> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import type { Route, DataItem } from '../../types'; // 显式导入 DataItem | ||
import cache from '../../utils/cache'; // 引入缓存工具 | ||
import ofetch from '../../utils/ofetch'; // 用于获取 HTML | ||
import { load } from 'cheerio'; // 用于解析 HTML | ||
import { parseDate } from '../../utils/parse-date'; // 用于解析日期 | ||
import timezone from '../../utils/timezone'; // 用于处理时区 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use @
instead of ../
type InitialItem = { | ||
title: string; | ||
link: string; | ||
pubDate: Date; | ||
} | null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use
Line 32 in 4c7840f
export type DataItem = { |
@@ -0,0 +1,6 @@ | |||
import type { Namespace } from '../../types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use @
instead of ../
Involved Issue / 该 PR 相关 Issue
Close #
Example for the Proposed Route(s) / 路由地址示例
New RSS Route Checklist / 新 RSS 路由检查表
Puppeteer
Note / 说明
新增安徽宿州学院教务处通知公告路由。
包含全文获取和缓存。