summaryrefslogtreecommitdiffstats
path: root/.dir-locals.el
blob: 99fa40ffa8bbddd1a5a26aa4e7961fea8b070862 (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
((nil
  . ((org-export-html-inline-images . t)
     (org-export-htmlize-output-type . css)
     (org-publish-use-timestamps-flag . nil)
     (org-confirm-babel-evaluate . nil)
     (org-publish-project-alist
      . (("oni-files"
          :base-directory "~/projects/orgweb/site/"
          :publishing-directory "~/projects/orgweb/_publish/"
          :recursive t
          :base-extension "css\\|png"
          :publishing-function org-publish-attachment)
         ("oni-org"
          :base-directory "~/projects/orgweb/site/"
          :publishing-directory "~/projects/orgweb/_publish/"
          :recursive t
          :base-extension "org"
          :publishing-function org-publish-org-to-html
          :section-numbers nil
          :style-include-default nil
          :author-info nil
          :creator-info t
          :style "<link rel=\"stylesheet\" type=\"text/css\" href=\"http://ryuslash.org/stylesheet.css\" />"
          :link-up "../"
          :link-home "http://ryuslash.org")
         ("oni"
          :components ("oni-org" "oni-files"))))
     (org-link-abbrev-alist
      . (("emacs" . "http://www.gnu.org/software/emacs/"))))))