aboutsummaryrefslogtreecommitdiff
path: root/testTheThing/publish.el
diff options
context:
space:
mode:
Diffstat (limited to 'testTheThing/publish.el')
-rw-r--r--testTheThing/publish.el36
1 files changed, 0 insertions, 36 deletions
diff --git a/testTheThing/publish.el b/testTheThing/publish.el
deleted file mode 100644
index d9d8ad7..0000000
--- a/testTheThing/publish.el
+++ /dev/null
@@ -1,36 +0,0 @@
-(add-to-list 'load-path "./")
-(require 'ox-publish)
-(require 'shittyweb-html)
-
-(setq org-publish-project-alist
- '(
- ("org" :components ("org-notes" "org-static"))
- ("org-notes"
- :base-directory "org/"
- :base-extension "org"
- :publishing-directory "xhtml/"
- :recursive t
- :publishing-function shittyweb-publish-to-html
- :headline-levels 4
- :auto-preamble t
- :with-author nil
- :with-creator t
- :with-toc t
- :section-numbers t
- :time-stamp-file nil
- )
- ("org-static"
- :base-directory "org/"
- :base-extension "css\\|html\\|py\\|png\\|jpg\\|gif\\|cgi\\|rss"
- :publishing-directory "xhtml/"
- :recursive t
- :publishing-function org-publish-attachment
- ))
- org-html-extension "xhtml"
- org-html-validation-link nil
- org-html-head-include-scripts nil
- org-html-head-include-default-style nil
- org-html-home/up-format "<a href=\"%sindex.html\">\
-<img src=\"%simages/back_home.png\" alt=\"Back to home page\" /></a>")
-(org-publish-all t)
-