org-roam

2022/01/05

설정

아래 자료를 참고하여 설정한다

V2 and spacemacs - #5 by Gp741 - Requests - Org-roam

(use-package org-roam
:after org
:ensure t
:custom
(org-roam-directory  (file-truename "~/orgRoam") )
(org-roam-completion-everywhere t)
:config
(org-roam-db-autosync-mode)
)

내보내기

Export org-roam backlinks with Gohugo | Ben Mezger 문서를 참고해서 내보내기 할 수 있다.

전체 내보내기 참고

Ox-hugo export all roam to Hugo | Ben Mezger

(defun benmezger/org-roam-export-all ()
  "Re-exports all Org-roam files to Hugo markdown."
  (interactive)
  (dolist (f (org-roam--list-all-files))
    (with-current-buffer (find-file f)
      (when (s-contains? "SETUPFILE" (buffer-string))
        (org-hugo-export-wim-to-md)))))

저장할 때 filetags와 hugo_tags 싱크하기

참고자료


이 문서와 연결된