summaryrefslogtreecommitdiffstats
path: root/.emacs.d/project.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/project.el')
-rw-r--r--.emacs.d/project.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/.emacs.d/project.el b/.emacs.d/project.el
new file mode 100644
index 0000000..6ddfad1
--- /dev/null
+++ b/.emacs.d/project.el
@@ -0,0 +1,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")))