9f04f1f1ec5038d54fae6357df61a7f5df77f768
[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
72 (setq blog-extra-head
73       (concat
74        ;; "<link rel='stylesheet' href='" css-file "' />\n"
75        "<link rel='stylesheet' href='../css/main.css' />\n"
76        "<link rel='stylesheet' href='../css/code.css' />"
77        ))
78
79 (setq blog-header
80       (concat
81        " <header id= 'banner' > "
82        "<h1><a href= '/' >Peng Li</a></h1>"
83        "<hr>"
84        "<nav><ul>"
85        ;; "<li><a href= '/contact.html' >Contact</a></li>"
86        "<li><a href= '/blog.html' >Blog</a></li>"
87        ;; "<li><a href= '/teaching.html' >Teaching</a></li>"
88        ;; "<li><a href= '/research.html' >Research</a></li>"
89        "<li><a href= '/' >About Me</a></li>"
90        "</ul></nav>"
91        "</header>"))
92
93
94
95 ;; (setq blog-footer
96 ;;       "<hr />\n
97 ;; <p><span style=\"float: left;\"><a href= \"/blog.xml\">RSS</a></span>
98 ;; License: <a href= \"https://creativecommons.org/licenses/by-sa/4.0/\">CC BY-SA 4.0</a></p>\n
99 ;; <p><a href= \"/contact.html\"> Contact</a></p>\n")
100
101 ;; don't know why setting this null in `org-publish-project-alist' doesn't work
102 ;; (setf org-html-home/up-format "")
103
104 (setq org-publish-project-alist
105       `(
106         ("blog-pages"
107          ;; publishing
108          :base-directory ,root-dir
109          :base-extension "org"
110          :publishing-directory ,publish-dir
111          :recursive nil
112          :publishing-function org-html-publish-to-html
113          
114          ;; html style
115          :htlm-link-home "/"
116          ;; disable home/up div
117          :html-home/up-format ""
118          :html-link-home ""
119          :html-link-up ""
120          
121          :html-head  ,blog-extra-head
122          :html-postamble nil)
123
124         ("blog-posts"
125          ;; publishing
126          :base-directory ,(concat root-dir "/posts")
127          :base-extension "org"
128          :publishing-directory ,(concat publish-dir "/posts")
129          :recursive t
130          :publishing-function org-html-publish-to-html
131
132          ;; html style
133          :html-link-home "/"
134          ;; disable Home/Up
135          :html-home/up-format ""
136          :html-link-up ""
137          :html-link-home ""
138          ;; Add css file, preamble and posamble
139          :html-head nil
140          :html-head-include-default-style nil
141          :html-head-include-scripts nil
142          :html-head-extra ,blog-extra-head
143          :html-preamble ,blog-header
144          ;; :html-postamble ,blog-footer
145
146          ;; sitemap
147          :auto-sitemap t
148          :sitemap-filename "sitemap.org"
149          :sitemap-title "Sitemap"
150          )
151         
152         ("blog-css"
153          :base-directory ,(concat root-dir "/css")
154          :base-extension ".*"
155          :publishing-directory ,(concat publish-dir "/css")
156          :publishing-function org-publish-attachment
157          :recursive t)
158         ("blog-cgi"
159          :base-directory ,(concat root-dir "/cgi-bin")
160          :base-extension ".*"
161          :publishing-directory ,(concat publish-dir "/cgi-bin")
162          :publishing-function org-publish-attachment
163          :recursive t)
164         ("blog" :components ("blog-pages" "blog-posts" "blog-css" "blog-cgi"))))
165
166 (org-publish-project "blog" force-publish)
167
168 ;; (provide 'blog)
169 (kill-emacs 0)
170 ;;; blog.el ends here