diff --git a/README.md b/README.md
index de827be..9c3b588 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,7 @@
-a simple note taking system, that also generates weboages!
+a simple note taking system, that also generates weboages with rss feeds!
made with bash.
+### see noter.sh for generation time options
+### place your notes onto a foldier named "notes" in the directory noter.sh is in!
+
example of what a page looks like: https://k0.tel/
\ No newline at end of file
diff --git a/noter.sh b/noter.sh
index fd90e68..d1c142b 100755
--- a/noter.sh
+++ b/noter.sh
@@ -1,9 +1,10 @@
#!/bin/bash
-# noter 1.1.7 - "verofoed" - @k@layer8.space - mit
+# noter 1.2.1 - "feeds, holy shit!" - @k@layer8.space - mit
showgenerator="true"
backtotop="true"
lastupdated="true"
+#rssfeed="true"
nlog() {
local ORANGE='\033[0;33m'
@@ -72,22 +73,81 @@ generate_top_year_bar() {
echo "$top_bar"
}
+
+# this took way too long but fuck it
+# im faster than Google at getting a
+# feed going goddamit!
+generate_rss_feed() {
+ local rss_file="feed.xml"
+ local rss_title="koutsies telenotes"
+ local rss_description="thoughts about mainly computers... maybe recipes and cats too?"
+ local rss_link="https://k0.tel/"
+ local rss_pubdate=$(date -u +"%a, %d %b %Y %H:%M:%S GMT")
+
+ xml_escape() {
+ local content="$1"
+ sed 's/&/\&/g; s/\</g; s/>/\>/g; s/"/\"/g; s/'"'"'/\'/g' <<< "$content"
+ }
+
+ # im sorry for these crimes against humanity
+ echo "
+