-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dir-locals.el
50 lines (47 loc) · 1.87 KB
/
.dir-locals.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
;;; .dir-locals.el --- Directory Local Variables
;;; Commentary
;;; For more information see (info "(emacs) Directory Variables")
;;; Code:
((nil
.
((mode . auto-fill)
(org-publish-project-alist
.
(("pages"
:base-directory "~/work/personal/codeisgreat/src/"
:publishing-directory "~/work/personal/codeisgreat/docs/"
:publishing-function org-html-publish-to-html
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"css/main.css\" />"
:with-toc nil
:html-preamble nil
:html-postamble t
:html-postamble-format (("en" "<p class=\"creator\">Created with %c</p>"))
:section-numbers nil
:html-indent t)
("notes"
:base-directory "~/work/personal/codeisgreat/src/notes"
:publishing-directory "~/work/personal/codeisgreat/docs/notes"
:publishing-function org-html-publish-to-html
:html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"../css/main.css\" />"
:with-toc nil
:html-preamble nil
:html-postamble t
:html-postamble-format (("en" "<p class=\"creator\">Created with %c</p>"))
:section-numbers nil
:html-indent t)
("css"
:base-directory "~/work/personal/codeisgreat/src/css"
:base-extension "css"
:publishing-directory "~/work/personal/codeisgreat/docs/css"
:publishing-function org-publish-attachment)
("images"
:base-directory "~/work/personal/codeisgreat/src/images"
:base-extension "jpeg\\|jpg\\|gif\\|png"
:publishing-directory "~/work/personal/codeisgreat/docs/images"
:publishing-function org-publish-attachment)
("other"
:base-directory "~/work/personal/codeisgreat/src/other"
:publishing-directory "~/work/personal/codeisgreat/docs/other"
:publishing-function org-publish-attachment)
("website"
:components ("pages" "notes" "images" "css" "other")))))))