About Social Code
summaryrefslogtreecommitdiff
path: root/tools/rss_gen.py
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-02-11 09:46:02 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-02-11 09:46:02 -0500
commit1d612cdbcfcb7eaa6c76ce74f0760e1530ce2b84 (patch)
tree107d282190d51d56641c605c07508ccf402adfbc /tools/rss_gen.py
parent736881800589daf400bd31edb7b841c358f55268 (diff)
Add whole post to rss feed, and link to rss feed on pages
Diffstat (limited to 'tools/rss_gen.py')
-rwxr-xr-xtools/rss_gen.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/tools/rss_gen.py b/tools/rss_gen.py
index 0b8d753..2d0dbee 100755
--- a/tools/rss_gen.py
+++ b/tools/rss_gen.py
@@ -6,6 +6,7 @@ import time
import email.utils
import os
import sys
+from subprocess import Popen, PIPE
today = email.utils.formatdate()
url = "https://fryzekconcepts.com"
@@ -63,7 +64,14 @@ for note in notes:
item = ET.SubElement(channel, "item")
ET.SubElement(item, "title").text = note["title"]
ET.SubElement(item, "link").text = post_url
- ET.SubElement(item, "description").text = "{}...".format(note["long_preview"])
+
+
+ # Generate simple text version of post
+ process = Popen(["pandoc", "--lua-filter=./tools/note.lua", "--highlight-style=pygments",
+ "./notes/{}.md".format(note["name"])], stdout=PIPE)
+ (output, err) = process.communicate()
+ exit_code = process.wait()
+ ET.SubElement(item, "description").text = output.decode()
#if "categories" in note:
# ET.SubElement(item, "category").text = note["categories"]