Compare commits

...

2 commits

Author SHA1 Message Date
25cbee85d1 [fix] change missing function name 2024-10-14 23:56:52 +08:00
0a4eafbf61 [feat] use id build anchors 2024-10-14 23:56:33 +08:00

View file

@ -114,6 +114,11 @@
"* %?" "* %?"
:target (file+head "%<%Y-%m-%d>.org" :target (file+head "%<%Y-%m-%d>.org"
"#+title: %<%Y-%m-%d>\n#+date: %T\n#+hugo_auto_set_lastmod: t\n#+hugo_section: daily\n")))) "#+title: %<%Y-%m-%d>\n#+date: %T\n#+hugo_auto_set_lastmod: t\n#+hugo_section: daily\n"))))
(with-eval-after-load 'ox-hugo
(setq org-hugo-anchor-functions '(org-hugo-get-id
org-hugo-get-heading-slug
org-hugo-get-md5)))
#+end_src #+end_src
*** Garden *** Garden
@ -217,7 +222,7 @@
(defun my/org-roam-list-notes-by-tag (tag-name) (defun my/org-roam-list-notes-by-tag (tag-name)
(mapcar #'org-roam-node-file (mapcar #'org-roam-node-file
(seq-filter (seq-filter
(daviwil/org-roam-filter-by-tag tag-name) (my/org-roam-filter-by-tag tag-name)
(org-roam-node-list)))) (org-roam-node-list))))
(defun my/org-roam-export-all () (defun my/org-roam-export-all ()