TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Simplest way to make an RSS feed?

3 点作者 pkdpic超过 3 年前
Wondering if there&#x27;s a way to make an RSS feed as a raw markdown endpoint or something that I could write an update script for myself and just run as a github page maybe.<p>RSS seems like the answer to a lot of my silly problems but I just want to keep it as simple as possible.<p>Obviously I don&#x27;t know much about it yet but excited to learn more.

2 条评论

altneu超过 3 年前
RSS is a simple format. <a href="https:&#x2F;&#x2F;www.w3schools.com&#x2F;xml&#x2F;xml_rss.asp" rel="nofollow">https:&#x2F;&#x2F;www.w3schools.com&#x2F;xml&#x2F;xml_rss.asp</a><p>There are numerous ways to create an RSS feed, depends what language you like. I used PHP mainly to format the output, loop through a DB of entries or text files even. Very easy to do.
评论 #29803028 未加载
评论 #29802776 未加载
theandrewbailey超过 3 年前
RSS is XML-based. You will need to convert your data into it first before serving it. I&#x27;ve built some RSS feeds, and it&#x27;s not hard. In fact, I use RSS as an important part of my blog&#x27;s backup and restore system.