summaryrefslogtreecommitdiffstats
path: root/.emacs.d/project.el
blob: 6ddfad1c88bc67bf7ab9fc76c52e109b115212e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(require 'ox-publish)

(setq org-publish-use-timestamps-flag nil
      org-html-htmlize-output-type 'css
      org-publish-project-alist
      '(("org"
         :base-directory "./"
         :publishing-directory "_publish/"
         :recursive nil
         :base-extension "org"
         :publishing-function org-html-publish-to-html
         :html-doctype "<!DOCTYPE html>"
         :html-link-home "https://ryuslash.org")))