;; configure orgmode export (require 'ox-publish) (setq org-publish-project-alist '( ("org-notes" :base-directory "~/repos/source/" :base-extension "org" :publishing-directory "~/public_html/" :recursive t :publishing-function org-html-publish-to-html :headline-levels 3 ;; according to https://stackoverflow.com/questions/24109720/org-mode-wheres-the-complete-list-of-exporter-options-for-publishing ;; auto-{pre,post}amble does not work anymore ;; still does not work though :html-preamble nil :html-postamble nil ) ("org-static" :base-directory "~/repos/source/" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/public_html/" :recursive t :publishing-function org-publish-attachment ) ("public_html" :components ("org-notes" "org-static")) ) ) (org-publish "public_html")