blob: bef8ba167a75b8db9a198de9808812ca9632fafc (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
;; Pretty bullets
(global-set-key (kbd "C-c a") 'org-agenda)
;; open org mode planner
(global-set-key (kbd "C-c b")
(lambda () (interactive)
(delete-other-windows)
(find-file "~/workspace/.org/planner.org")))
(require 'rainbow-mode)
(add-hook 'org-mode-hook 'rainbow-mode)
(setq org-base-directory "~/workspace/.org")
(setq
org-export-html-postamble nil
org-log-done 'note
org-todo-keywords '((sequence "Todo" "In-Progress" "Waiting" "Done"))
org-agenda-files (list "~/workspace/.org/planner.org"))
;; org publish
(require 'ox-publish)
(defun publishing-entry (project)
`(,project
:base-directory ,(concat org-base-directory "/" project)
:base-extension "org"
:headline-levels 4
:html-head-include-default-style nil
:html-head-include-scripts nil
:html-head-extra ,(concat "<link rel=\"stylesheet\" type=\"text/css\" href=\"/css/style.css\"")
:html-mathjax nil
:html-preamble nil
:html-validation-link nil
:publishing-directory ,(concat org-base-directory "/" project "/public/")
:publishing-function org-html-publish-to-html
:recursive t
:section-numbers nil
:time-stamp-file nil
:with-toc nil
:with-author nil
:with-creator nil))
(defun publishing-static (project)
`(,(concat project "-static")
:base-directory ,(concat org-base-directory "/" project)
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory ,(concat org-base-directory "/" project "/public/")
:recursive t
:publishing-function org-publish-attachment))
(setq
projects '("rse8.com")
org-html-htmlize-output-type 'css)
(setq org-publish-project-alist
`(
,@(mapcar (lambda (proj) (publishing-entry proj)) projects)
,@(mapcar (lambda (proj) (publishing-static proj)) projects)
("rse8-site" :components ("rse8.com" "rse8.com-static"))
))
(provide 'setup-org-mode)
|