commit b42ab475c62562ce1d35003054f80401dd36620f
parent f251cc70a943a562512630bd1fcba0101dd6d6c8
Author: regexghost <dev@regexghost.com>
Date: Mon, 15 Jun 2026 21:07:13 +0100
added devlog entry
Diffstat:
6 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/build.sh b/build.sh
@@ -13,4 +13,13 @@ cp -r static /tmp/mainwebsite/public
cd /tmp/mainwebsite
gozer build
+
+while read -r html_file; do
+ echo "$html_file"
+ tidy -q -indent "$html_file" > /tmp/tidy_out.html
+ mv -f /tmp/tidy_out.html "$html_file"
+done <<EOF
+$(find /tmp/mainwebsite/build -type f | grep 'html$')
+EOF
+
[ "$1" = "serve" ] && gozer serve
diff --git a/devlog/2026-05-May.md b/devlog/2026-05-May.md
@@ -4,6 +4,12 @@ datepublished = 2026-05-13
template = "blog-page.html"
+++
+## bug-fork 0.6
+
+Implemented sorting by priority, and added deletion with option to restore deleted entries
+Also screenshots!
+[GitHub](https://github.com/regexghost/bug-fork)
+
## bug-fork 0.5
Initial draft release of my fork of the bug todo manager
diff --git a/gozer-files/config.toml b/gozer-files/config.toml
@@ -1,4 +1,4 @@
-url = "http://localhost:8080"
+url = "https://www.regexghost.com"
title = "regexghost"
[[feeds]]
diff --git a/gozer-files/templates/blog.html b/gozer-files/templates/blog.html
@@ -7,7 +7,7 @@
<h1>{{ .Title }}</h1>
{{ .Content }}
<h2>Posts</h2>
- </ul>
+ <ul>
{{ range .Pages }}
{{ if HasPrefix .Filepath "content/blog" }}
<li>{{ .DatePublished.Format "2006-01-02" }} - <a href="{{ .Permalink }}">{{ .Title }}</a></li>
diff --git a/index.md b/index.md
@@ -1,4 +1,6 @@
-+++ title = "regexghost.com" +++
++++
+title = "regexghost.com"
++++
## Welcome to regexghost.com!
diff --git a/linux/index.md b/linux/index.md
@@ -8,6 +8,8 @@ I've been an avid Linux user for a few years now. This section of my website is
* i3, JWM and KDE articles coming soon
+[Universal Keyboard Shortcuts](universal-keyboard-shortcuts)
+
## Under-Powered PC Project
I believe that computers don't need to be as powerful as they are for 99% of use cases. This section documents my attempts to make workable desktop setups out of various under-powered computers.