From 329b8457113ad3ff90b5ba944465275aec5f06f2 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 20 Apr 2014 16:50:24 +0200 Subject: Add export and publish targets These targets export and publish my Emacs init to my website. --- .emacs.d/project.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .emacs.d/project.el (limited to '.emacs.d/project.el') 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 "" + :html-link-home "https://ryuslash.org"))) -- cgit v1.2.3-54-g00ecf