commit 97bf857970371f500b665a9b01f9d65bd3e61e7a
parent 64dea033da4aa63f3f445825ffb1d6fae03aa6b7
Author: Tyler Clark <tyler.clark@foxide.xyz>
Date: Fri, 9 Jan 2026 15:58:19 -0500
Bumping version number and adding goal.
I am bumping the version number since the absolute most basic functionality of
the program is kind of working.
I am also adding a TODO on pre-pending and appending header/footer in the HTML files.
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/main.go b/main.go
@@ -1,9 +1,10 @@
/* This is a project of a new static site generator */
-/* Eventually, this might replace SSG */
+/* Eventually, this might replace SSG for me */
/*****************************************************************/
/* DONE: Basic functionality for converting markdown/org to html */
/* DONE: Recursively mirroring dir structure of source files */
+/* TODO: Prepend and append header and footer on HTML files */
/* TODO: RSS generator built in */
/* TODO: Sitemap generator */
/*****************************************************************/
@@ -25,7 +26,7 @@ import (
)
/* Version Number */
-const version = "0.0.1: Shoddy"
+const version = "0.0.2: Shoddy"
/* This is a test function to try to copy a directory */