forked from bmaland/happyblogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org-settings.el
29 lines (29 loc) · 945 Bytes
/
org-settings.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(setq org-publish-project-alist
'(
("blog-posts"
:base-directory "~/blog/_org/posts/"
:base-extension "org"
:publishing-directory "~/blog/_posts"
:inline-images t
:table-of-contents nil
:drawers nil
:todo-keywords nil ; Skip todo keywords
:exclude "draft*" ; TODO fix
:section-numbers nil
:auto-preamble nil
:auto-postamble nil
)
("blog-pages" ;; This section is optional.
:base-directory "~/blog/_org/pages/"
:base-extension "org"
:publishing-directory "~/blog/pages"
:inline-images t
:table-of-contents nil
:drawers nil
:todo-keywords nil ; Skip todo keywords
:section-numbers nil
:auto-preamble nil
:auto-postamble nil
;; :completion-function
)
("blog" :components ("blog-posts" "blog-pages"))))