23 lines
559 B
EmacsLisp
23 lines
559 B
EmacsLisp
(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 "cheatsheets"
|
|
:publishing-directory "www/nec"
|
|
:recursive t
|
|
:email "rick@gnous.eu"
|
|
:with-email t
|
|
:language fr
|
|
:auto-sitemap t
|
|
:sitemap-title "Notes et Cheatsheets"
|
|
:htmlized-source t
|
|
:html-link-home "/"
|
|
:publishing-function (org-html-publish-to-html org-org-publish-to-org)
|
|
; :auto-preamble t
|
|
)
|
|
))
|
|
(org-publish-project "nec")
|