web/publish.el

19 lines
411 B
EmacsLisp
Raw Normal View History

2022-04-02 16:04:50 +02:00
(require 'ox-publish)
(require 'htmlize)
(setq org-publish-use-timestamps-flag nil)
(setq org-publish-project-alist
'(
("nec"
:base-directory "nec"
:base-extension "org"
:exclude "www"
:publishing-directory "www/nec"
:recursive t
:auto-sitemap t
:sitemap-title "Notes et Cheatsheets"
:publishing-function org-html-publish-to-html
; :auto-preamble t
)
))
(org-publish-project "nec")