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