org-publish-project.el 961 B

1234567891011121314151617181920212223
  1. (defvar *comm286-publish-directory*
  2. "/ssh:swflint@kernighan.flintfam.org:/var/www/samflint.com/comm286/")
  3. (define-org-publish-project "comm286-content"
  4. :base-directory "~/School/comm286/"
  5. :publishing-directory *comm286-publish-directory*
  6. :base-extension "org"
  7. :recursive t
  8. :publishing-function 'org-html-publish-to-html
  9. :section-numbers nil
  10. :html-head "<link rel=\"stylesheet\" type=\"text/css\" href=\"http://samflint.com/style/htmlize.css\"/>
  11. <link rel=\"stylesheet\" type=\"text/css\" href=\"http://samflint.com/style/style.css\"/>")
  12. (define-org-publish-project "comm286-attach"
  13. :base-directory "~/School/comm286/"
  14. :publishing-directory *comm286-publish-directory*
  15. :base-extension (rx (or "docx" "pdf"))
  16. :publishing-function 'org-publish-attachment)
  17. (define-org-publish-project "comm286"
  18. :base-directory "~/School/comm286/"
  19. :publishing-directory *comm286-publish-directory*
  20. :components '("comm286-content" "comm286-attach"))