quirks
All checks were successful
Build Org Website / build (push) Successful in 48s

This commit is contained in:
2026-05-09 23:44:17 +01:00
parent fc3962ee44
commit 4519cfe804
10 changed files with 641 additions and 4 deletions

View File

@@ -26,7 +26,8 @@
(defun z/recent-omit-org-p (rel-org)
"Return non-nil if REL-ORG (relative to site root) should be excluded."
(let ((name (file-name-nondirectory rel-org)))
(let ((name (file-name-nondirectory rel-org))
(full (expand-file-name rel-org z/site-root)))
(or
;; Static asset directories
(string-prefix-p "assets/" rel-org)
@@ -36,6 +37,8 @@
(string-match-p "/tags/" rel-org)
;; Known generated files
(member name z/recent-omit-names)
;; Deliberately discoverable only by hidden interactions.
(z/hidden-page-p full)
;; Any *-list.org sitemaps
(string-match-p "-list\\.org\\'" name))))