2014-08-21 00:23:56 +02:00
|
|
|
(require 'ox-publish)
|
2014-10-27 21:15:12 +01:00
|
|
|
(require 'htmlize)
|
2014-08-21 00:23:56 +02:00
|
|
|
|
|
|
|
(setq org-publish-use-timestamps-flag nil
|
|
|
|
org-html-htmlize-output-type 'css
|
|
|
|
org-publish-project-alist
|
|
|
|
'(("org"
|
|
|
|
:base-directory "./"
|
|
|
|
:publishing-directory "_publish/"
|
|
|
|
:recursive nil
|
|
|
|
:base-extension "org"
|
|
|
|
:publishing-function org-html-publish-to-html
|
|
|
|
:html-doctype "<!DOCTYPE html>"
|
|
|
|
:html-link-home "https://ryuslash.org")))
|