That was what finally worked. Thanks!
Tom
On Apr 14, 2015 9:49 AM, "Feng Shu" <[email protected]> wrote:
>
>
> (defvar base-dir "~/Documents/org/")
> (defvar pub-dir "~/Public/notes/")
>
> (setq org-publish-project-alist
> `(("org"
> :base-directory ,base-dir
> :base-extension "org"
> :publishing-directory ,pub-dir
> :recursive t
> :publishing-function org-html-publish-to-html
> :exclude "level-..org"
> )
> ("static"
> :base-directory base-dir
> :base-extension
> "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
> :publishing-directory pub-dir
> :recursive t
> :publishing-function org-publish-attachment
> )
> ("project-root" :components ("org" "static"))))
>
> --
>
>
>