57366f385a
* Added muse * Added graphviz-dot-mode * Remove all trailing whitespace on save. This is the last commit I'm going to do before throwing it all away again.
13 lines
382 B
EmacsLisp
13 lines
382 B
EmacsLisp
(require 'org-publish)
|
|
(setq org-publish-project-alist
|
|
'(("lxcoding-docs"
|
|
:base-directory "~/devel/lxcoding-docs/"
|
|
:base-extension "org"
|
|
:publishing-directory "~/lxcoding-docs-test/"
|
|
:recursive t
|
|
:publishing-function org-publish-org-to-html
|
|
:headline-levels
|
|
:auto-preamble t
|
|
:auto-sitemap t
|
|
:sitemap-filename "sitemap.org"
|
|
:sitemap-title "docs sitemap")))
|