X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=blog.el;h=b000d9add95b6697879af0f90388edd5e18bb85a;hb=c91f2857141f4891885384b531487df5495f0f91;hp=7d212365827f93d401fbebf0a1fe6cc96e429fdc;hpb=97a6efb026d66df8024ebbbf9450f2f721d2d7e8;p=blog.git diff --git a/blog.el b/blog.el index 7d21236..b000d9a 100644 --- a/blog.el +++ b/blog.el @@ -39,18 +39,23 @@ ;; constants ;; (defconst root-dir "~/Private/blog/") (defconst root-dir (file-name-directory (or load-file-name buffer-file-name))) -(defconst publish-dir (concat root-dir "_site/")) +(defvar publish-dir (concat root-dir "_site/")) (defconst css-file "../css/worg.css") ;; (defconst css-file (concat root-dir "css/worg.css")) +(let ((aa (pop command-line-args-left))) + (if (> (length aa) 0) + (setq publish-dir aa))) +;; (setq publish-dir (or (pop command-line-args-left) publish-dir)) +(message publish-dir) (require 'org) -;; (require 'org-html) (require 'ox-publish) (require 'htmlize) - +(message "Org-mode version %s" (org-version)) +(message "publish directory is %s" publish-dir) ;; To prevent inline-css when exporting html. will use external css (setq org-html-htmlize-output-type 'css) @@ -86,5 +91,8 @@ ("org" :components ("org-notes" "org-static")))) -(provide 'blog) +(org-publish-project "org") + +;; (provide 'blog) +(kill-emacs 0) ;;; blog.el ends here