;;; blog.el --- Config file used to export blog -*- lexical-binding: t; -*- ;; Copyright (C) 2017 Peng Li ;; Author: Peng Li ;; Keywords: lisp ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;; This is emacs config used to export Blog Org files in batch mode. ;;; Code: (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) (package-initialize) (setq debug-on-error t) ;; package initialise (unless (package-installed-p 'htmlize) (package-refresh-contents) (package-install 'htmlize)) ;; constants ;; (defconst root-dir "~/Private/blog/") (defconst root-dir (file-name-directory (or load-file-name buffer-file-name))) (defvar publish-dir (concat root-dir "_site/")) (defconst css-file "../css/worg.css") (defvar force-publish nil) ;; (defconst css-file (concat root-dir "css/worg.css")) (let ((aa (pop command-line-args-left))) (if (> (length aa) 0) (setq publish-dir aa))) (let ((force (pop command-line-args-left))) (if (string= force "true") (setq force-publish t))) ;; (setq publish-dir (or (pop command-line-args-left) publish-dir)) (message publish-dir) (require 'org) (require 'ox-publish) (require 'htmlize) (message "Org-mode version %s" (org-version)) (message "publish directory is %s" publish-dir) (message "force %s" force-publish) ;; To prevent inline-css when exporting html. will use external css (setq org-html-htmlize-output-type 'css) (setq blog-extra-head (concat ;; "\n" "\n" "" )) (setq blog-header (concat " ")) (setq blog-footer "
\n

RSS License: CC BY-SA 4.0