test new change

This commit is contained in:
Jacob Janzen 2024-04-14 18:22:58 -05:00
parent 39007a6831
commit 064082bb32

View file

@ -9,6 +9,15 @@
(require 'org)
(require 'ox-html)
(defun my/org-publish-org-sitemap-format (entry style project)
"custom sitemap entry formatting: add date"
(cond ((not (directory-name-p entry))
(format "[[file:%s][(%s) %s]]\n"
entry
(format-time-string "%Y-%m-%d %T"
(org-publish-find-date entry project))
(org-publish-find-title entry project)))))
(setq org-publish-project-alist
'(
("org-notes"
@ -45,7 +54,7 @@
:html-postamble nil
:auto-sitemap t
:sitemap-filename "index.org"
:sitemap-format-entry "%Y-%m-%d %T"
:sitemap-format-entry my/org-publish-org-sitemap-format
:sitemap-sort-files anti-chronologically
:sitemap-title "Blog")
("org-config"