steve0greatness,
created on Friday, 26 January 2024, 00:52:38 (1706230358),
received on Monday, 6 May 2024, 02:55:36 (1714964136)
Author identity: Steve0Greatness <75220768+Steve0Greatness@users.noreply.github.com>
a86ba5933f19456e305fba151f0b1b991e9acb36
build.py
@@ -7,6 +7,7 @@ from distutils.dir_util import copy_tree as CopyDirectory
from datetime import datetime
from json import dump as DumpJSON
from yaml import safe_load as LoadYML
from re import sub as RegReplace
GITHUB_BUILD_DIR = "docs" # Separate because this site is built with an action that won't work if they aren't
LOCAL_BUILD_DIR = "build"
@@ -62,6 +63,8 @@ def GetBlogList():
PostHTML = RenderMarkdown(MDFile.read())
Item = PostHTML.metadata
Item["content"] = PostHTML
Item["rss-content"] = PostHTML.replace("&", "&").replace(">", ">").replace("<", "<")
Item["atom-content"] = RegReplace("</(?=.*)", "</xhtml:", RegReplace("<(?=[^\/].*)", "<xhtml:", PostHTML))
Item["rss-post-time"] = PostDateToDateObj(Item["date"]).strftime("%a, %d %b %Y") + " 00:00:00 GMT"
Item["atom-post-time"] = PostDateToDateObj(Item["date"]).strftime("%Y-%m-%d") + "T00:00:00Z"
Item["atom-update-time"] = Item["atom-post-time"]
@@ -76,6 +79,7 @@ def GetBlogList():
PostList = []
def ListParseCategory(Obj, depth):
html = "<h%d id=\"%s\">%s</h%d>" % (2+depth, Obj["id"], Obj["title"], 2+depth)
if "paragraph" in Obj:
views/blog-feed.atom
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<id>https://steve0greatness.github.io/blog/</id>
<link type="text/html" rel="alternate" href="https://steve0greatness.github.io/blog/" />
<link type="application/atom+xml" rel="self" href="https://steve0greatness.github.io/blog/feed.atom" />
@@ -10,6 +10,7 @@
<uri>https://steve0greatness.github.io</uri>
</author>
<generator>Custom w/Jinja</generator>
<updated>{{PostList[0]["atom-update-time"]}}</updated>
{% for post in PostList %}
<entry>
<title>{{post["title"]}}</title>
views/blog-feed.rss
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
<atom:link href="https://steve0greatness.github.io/blog/feed.rss" rel="self" type="application/rss+xml" />
@@ -21,8 +21,8 @@
<title>{{post["title"]}}</title>
<link>https://steve0greatness.github.io/blog/{{post["pathname"]}}</link>
<description>
<p>Depending on your RSS reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>,</p>
{{post["content"]}}
<p>Depending on your RSS reader, you may want to <a href="https://steve0greatness.github.io/blog/{{post['pathname']}}">read this article online</a>.</p>
{{post["rss-content"]}}
</description>
<guid isPermaLink="false">{{post['pathname']}}</guid>
<pubDate>{{post["rss-post-time"]}}</pubDate>