From 4b4d6c068ff4aa42d9a7c9c22455b72360a775b3 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 11 Aug 2020 17:00:37 +0200 Subject: Update website build --- docs/publish.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/publish.el (limited to 'docs/publish.el') diff --git a/docs/publish.el b/docs/publish.el new file mode 100644 index 0000000..8dd4325 --- /dev/null +++ b/docs/publish.el @@ -0,0 +1,13 @@ +;; Publishing projects, this one is for the zettelkasten +(setq org-publish-project-alist + '(("orgfiles" + :base-directory "./" + :base-extension "org" + :publishing-directory "./html/" + :publishing-function org-html-publish-to-html) + ("assets" + :base-directory "./css/" + :base-extension "css" + :publishing-directory "./html/css/" + :publishing-function org-publish-attachment) + ("documentation" :components ("orgfiles" "assets")))) -- cgit