aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Janzen <jjanzenn@proton.me>2024-04-28 16:25:07 -0500
committerJacob Janzen <jjanzenn@proton.me>2024-04-28 16:25:07 -0500
commitfceae236c181bc7dfecf5cc5524ce436cf1b8272 (patch)
treee9090b7339e258662397a4e0b64f5791fc052537
parente05b1dacd97147d9991b8eb82da2d2cd2bc33f24 (diff)
fix publish script
-rw-r--r--publish.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/publish.el b/publish.el
index 4de2cc2..7882260 100644
--- a/publish.el
+++ b/publish.el
@@ -25,10 +25,10 @@
(setq webring (json-parse-string (plz 'get "https://aidang.cc/webring/https://jjanzen.ca")))
(defun create-webring-html ()
(format "<div class='footer'><span><a href='%s'>« %s</a></span><span>CSSA Web Ring</span><span><a href='%s'>%s »</a></span></div>"
- (gethash "url" (gethash "left" (webring)))
- (gethash "name" (gethash "left" (webring)))
- (gethash "url" (gethash "right" (webring)))
- (gethash "name" (gethash "right" (webring)))))
+ (gethash "url" (gethash "left" webring))
+ (gethash "name" (gethash "left" webring))
+ (gethash "url" (gethash "right" webring))
+ (gethash "name" (gethash "right" webring))))
(defun my/org-publish-org-sitemap-format (entry style project)
(cond ((not (directory-name-p entry))