2df12243dcc92be94343480f0b1f1b20537d7422
[blog.git] / blog.el
1 ;;; blog.el --- Config file used to export blog      -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2017  Peng Li
4
5 ;; Author: Peng Li <seudut@gmail.com>
6 ;; Keywords: lisp
7
8 ;; This program is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; This program is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;; This is emacs config used to export Blog Org files in batch mode.
24
25 ;;; Code:
26
27 (require 'package)
28 (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
29 (package-initialize)
30
31 (setq debug-on-error t)
32
33 ;; package initialise
34 (unless (package-installed-p 'htmlize)
35   (package-refresh-contents)
36   (package-install 'htmlize))
37
38
39 ;; constants
40 ;; (defconst root-dir "~/Private/blog/")
41 (defconst root-dir (file-name-directory (or load-file-name buffer-file-name)))
42 (defvar publish-dir (concat root-dir "_site/"))
43 (defconst css-file "../css/worg.css")
44 (defvar force-publish nil)
45 ;; (defconst css-file (concat root-dir "css/worg.css"))
46
47 (let ((aa (pop command-line-args-left)))
48   (if (>  (length aa) 0)
49       (setq publish-dir aa)))
50
51
52 (let ((force (pop command-line-args-left)))
53   (if (string= force "true")
54       (setq force-publish t)))
55
56
57 ;; (setq publish-dir (or (pop command-line-args-left) publish-dir))
58 (message publish-dir)
59
60 (require 'org)
61 (require 'ox-publish)
62 (require 'htmlize)
63
64 (message "Org-mode version %s" (org-version))
65 (message "publish directory is %s" publish-dir)
66 (message "force %s" force-publish)
67
68 ;; To prevent inline-css when exporting html. will use external css
69 (setq org-html-htmlize-output-type 'css)
70
71 (setq org-publish-project-alist
72       `(
73         ("org-notes"
74          :base-directory ,root-dir
75          :base-extension "org"
76          :publishing-directory ,publish-dir
77          :recursive t
78          :publishing-function org-html-publish-to-html
79          :headline-levels 4
80          :section-numbers nil
81          :auto-preamble t
82          :auto-sitemap t          ;Generate sitmap.org automagicaly...
83          :sitemap-filename "sitemap.org" ;... call it sitemap.org (it's the default )...
84          :sitemap-title "Sitemap"
85
86          :html-table-of-contents nil
87          :html-postamble nil ;dont export creator auto validation info in html postamble div
88          :html-link-home "/"
89          :html-head  ,(concat  "<link rel='stylesheet' href='" css-file  "' />")
90          :html-head-include-default-style nil
91          :html-head-include-scripts nil)
92         ("org-static"
93          :base-directory ,root-dir
94          :base-extension "css\\|js\\|png\\|gif\\|pdf\\|mp3\\|ogg\\|swf\\|el\\|pl"
95          :publishing-directory ,publish-dir
96          :recursive t
97          :publishing-function org-publish-attachment
98          :table-of-contents nil)
99         ("org" :components ("org-notes" "org-static"))))
100
101
102 (org-publish-project "org" force-publish)
103
104 ;; (provide 'blog)
105 (kill-emacs 0)
106 ;;; blog.el ends here