Archived
1
0
Fork 0
This repository has been archived on 2024-05-16. You can view files and clone it, but cannot push or open issues or pull requests.
partage-notes/generate.el

15 lines
354 B
EmacsLisp
Raw Normal View History

2021-10-27 08:14:38 +00:00
(require 'ox-publish)
(setq org-publish-project-alist
(list (list "notes"
:recursive t
:base-directory "./content"
:base-extension "org"
:publishing-directory "./public"
:publishing-function 'org-html-publish-to-html
)
))
(org-publish-all t)
(message "Build complete")