web/publish.el

24 lines
559 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"
2022-04-02 17:47:23 +02:00
:exclude "cheatsheets"
2022-04-02 16:04:50 +02:00
:publishing-directory "www/nec"
:recursive t
2022-04-02 17:47:23 +02:00
:email "rick@gnous.eu"
:with-email t
:language fr
2022-04-02 16:04:50 +02:00
:auto-sitemap t
:sitemap-title "Notes et Cheatsheets"
2022-04-02 17:47:23 +02:00
:htmlized-source t
:html-link-home "/"
:publishing-function (org-html-publish-to-html org-org-publish-to-org)
2022-04-02 16:04:50 +02:00
; :auto-preamble t
)
))
(org-publish-project "nec")