-
Notifications
You must be signed in to change notification settings - Fork 3
/
updates.xml
32 lines (30 loc) · 977 Bytes
/
updates.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
layout: none
---
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/css/rss.css" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Sanemacs Updates</title>
<description>Update notifications for new Sanemacs releases</description>
<link>https://sanemacs.com</link>
<atom:link href="https://sanemacs.com/updates.xml" rel="self" type="application/rss+xml" />
{% for i in site.data.changelog %}
<item>
<title>{{i.title}}</title>
<description>
{% capture the_desc %}
<ul>
{% for j in i.changes %}
<li>{{j | markdownify}}</li>
{% endfor %}
</ul>
{% endcapture %}
{{ the_desc | xml_escape }}
</description>
<pubDate>{{ i.date | date: "%a, %d %b %Y %H:%M:%S %z" }}</pubDate>
<link>https://sanemacs.com/sanemacs.el</link>
</item>
{% endfor %}
</channel>
</rss>