14 lines
376 B
EmacsLisp
14 lines
376 B
EmacsLisp
(require 'ox-publish)
|
|
|
|
(setq org-publish-project-alist
|
|
'(("info.belastodon.social"
|
|
:base-directory "./org"
|
|
:publishing-directory "./public"
|
|
:publishing-function org-html-publish-to-html
|
|
:recursive t
|
|
:with-toc t)))
|
|
|
|
(setq org-publish-timestamp-directory "./.org-timestamps/")
|
|
|
|
(org-publish-project "info.belastodon.social" t)
|