modify org-publish-project
authorPeng Li <seudut@gmail.com>
Thu, 9 Mar 2017 14:07:20 +0000 (22:07 +0800)
committerPeng Li <seudut@gmail.com>
Thu, 9 Mar 2017 14:07:20 +0000 (22:07 +0800)
blog.el

diff --git a/blog.el b/blog.el
index 2df1224..26672fa 100644 (file)
--- a/blog.el
+++ b/blog.el
 
 (setq org-publish-project-alist
       `(
-        ("org-notes"
-         :base-directory ,root-dir
-         :base-extension "org"
-         :publishing-directory ,publish-dir
-         :recursive t
-         :publishing-function org-html-publish-to-html
-         :headline-levels 4
-         :section-numbers nil
-         :auto-preamble t
-         :auto-sitemap t          ;Generate sitmap.org automagicaly...
-         :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )...
-         :sitemap-title "Sitemap"
-
-         :html-table-of-contents nil
-         :html-postamble nil ;dont export creator auto validation info in html postamble div
-         :html-link-home "/"
-         :html-head  ,(concat  "<link rel='stylesheet' href='" css-file  "' />")
-         :html-head-include-default-style nil
-         :html-head-include-scripts nil)
-        ("org-static"
-         :base-directory ,root-dir
-         :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|el\\|pl"
-         :publishing-directory ,publish-dir
-         :recursive t
-         :publishing-function org-publish-attachment
-         :table-of-contents nil)
-        ("org" :components ("org-notes" "org-static"))))
-
-
-(org-publish-project "org" force-publish)
+        ;; ("org-notes"
+        ;;  :base-directory ,root-dir
+        ;;  :base-extension "org"
+        ;;  :publishing-directory ,publish-dir
+        ;;  :recursive t
+        ;;  :publishing-function org-html-publish-to-html
+        ;;  :headline-levels 4
+        ;;  :section-numbers nil
+        ;;  :auto-preamble t
+        ;;  :auto-sitemap t          ;Generate sitmap.org automagicaly...
+        ;;  :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )...
+        ;;  :sitemap-title "Sitemap"
+
+        ;;  :html-table-of-contents nil
+        ;;  :html-postamble nil ;dont export creator auto validation info in html postamble div
+        ;;  :html-link-home "/"
+        ;;  :html-head  ,(concat  "<link rel='stylesheet' href='" css-file  "' />")
+        ;;  :html-head-include-default-style nil
+        ;;  :html-head-include-scripts nil)
+       ("blog-pages"
+        ;; publishing
+        :base-directory ,root-dir
+        :base-extension "org"
+        :publishing-directory ,publish-dir
+        :recursive nil
+        :publishing-function org-html-publish-to-html
+        ;; html style
+        :html-head  ,(concat  "<link rel='stylesheet' href='" css-file  "' />")
+        :html-postamble nil)
+       ("blog-posts"
+        ;; publishing
+        :base-directory ,(concat root-dir "posts")
+        :base-extension "org"
+        :publishing-directory ,(concat publish-dir "posts")
+        :recursive t
+        :publishing-function org-html-publish-to-html
+        :html-link-home "/"
+        ;; html style
+        :html-head ,(concat "<link rel='stylesheet' href='" css-file "' />")
+        ;; don't export creator auto validation info in html postamble div
+        :html-postamble nil)
+       ("blog-css"
+        :base-directory ,(concat root-dir "css")
+        :base-extension ".*"
+        :publishing-directory ,(concat publish-dir "css")
+        :publishing-function org-publish-attachment
+        :recursive t)
+       ("blog-cgi"
+        :base-directory ,(concat root-dir "cgi-bin")
+        :base-extension ".*"
+        :publishing-directory ,(concat publish-dir "cgi-bin")
+        :publishing-function org-publish-attachment
+        :recursive t)
+        ("blog" :components ("blog-pages" "blog-posts" "blog-css" "blog-cgi"))))
+
+(org-publish-project "blog" force-publish)
 
 ;; (provide 'blog)
 (kill-emacs 0)