Advertisement
Guest User

Untitled

a guest
Mar 31st, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (require 'ox-publish)
  2. (setq org-publish-project-alist
  3.       '(
  4.  
  5.        ;; ... add all the components here (see below)...
  6. ("org-notes"
  7.  :base-directory "~/org/"
  8.  :base-extension "org"
  9.  :publishing-directory "~/public_html/"
  10.  :recursive t
  11.  :publishing-function org-html-publish-to-html
  12.  :headline-levels 4             ; Just the default for this project.
  13.  :auto-preamble t
  14.  )
  15. ("org-static"
  16.  :base-directory "~/org/"
  17.  :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
  18.  :publishing-directory "~/public_html/"
  19.  :recursive t
  20.  :publishing-function org-publish-attachment
  21.  )
  22.  
  23.        
  24.       ))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement