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

(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")))