Skip to content

Latest commit

 

History

History
65 lines (51 loc) · 2.47 KB

README.md

File metadata and controls

65 lines (51 loc) · 2.47 KB

EverydayNews V2

项目重制了,旧项目的备份位于RavelloH/news-archive

新版的EverydayNews,存储2022/06/04至今的所有每日60s新闻,以JSON格式存放,每日更新,自带搜索功能。https://ravelloh.github.io/EverydayNews

image

大幅简化了页面,你可以使用查询参数自定义页面:

例如:

非常适合使用iframe挂载(亮色/暗色)

<iframe src="https://ravelloh.github.io/EverydayNews?style=clean" width="600" height="800" frameborder="0"></iframe>
<iframe src="https://ravelloh.github.io/EverydayNews?style=clean&backgroundColor=111111&textColor=ffffff" width="600" height="800" frameborder="0"></iframe>

你也可以在上面链接最后加入&footer=none来去除页脚:

<iframe src="https://ravelloh.github.io/EverydayNews?style=clean&footer=none" width="600" height="800" frameborder="0"></iframe>
<iframe src="https://ravelloh.github.io/EverydayNews?style=clean&backgroundColor=111111&textColor=ffffff&footer=none" width="600" height="800" frameborder="0"></iframe>

API

与v1相同,仍提供API用于获取某日期的新闻:

  • 最新:
    • https://ravelloh.github.io/EverydayNews/latest.json
    • https://news.ravelloh.top/latest.json
  • 特定日期:
    • https://ravelloh.github.io/EverydayNews/data/YYYY/MM/DD.json
    • https://news.ravelloh.top/data/YYYY/MM/DD.json
    • 例: https://news.ravelloh.top/data/2025/01/01.json

内容格式:

{
 "date": "2025/01/01",
 "content": [
   "xxxxxxxxxx",
   "xxxxxxxxxx",
   "xxxxxxxxxx",
 ]
}

依赖

目前正在使用 vikiboss/60s 作为数据源,
使用 RavelloH/index-search作为静态搜索工具, 使用Github Actions进行每日更新。