Skip to content

Commit

Permalink
tweaked publishing code
Browse files Browse the repository at this point in the history
  • Loading branch information
eschulte committed Sep 2, 2009
1 parent 8f0c8d2 commit 1f43f32
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions starter-kit-org.org
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ This code defines the =starter-kit-project= which is used to publish
the documentation for the Starter Kit to html.

#+begin_src emacs-lisp :results silent
(setq org-publish-project-alist
`(("starter-kit-documentation"
:base-directory ,dotfiles-dir
:base-extension "org"
:publishing-directory ,(expand-file-name "doc" dotfiles-dir)
:index-filename "starter-kit.org"
:auto-postamble nil)))
(unless (boundp 'org-publish-project-alist)
(setq org-publish-project-alist nil))
(add-to-list 'org-publish-project-alist
`(("starter-kit-documentation"
:base-directory ,dotfiles-dir
:base-extension "org"
:publishing-directory ,(expand-file-name "doc" dotfiles-dir)
:index-filename "starter-kit.org"
:auto-postamble nil)))
#+end_src

0 comments on commit 1f43f32

Please sign in to comment.