aboutsummaryrefslogtreecommitdiffstats
path: root/docs/res/publish-html.el
blob: a9c7a9d3f67c93bf7429dc7b04e57f1d028ca573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(require 'package)
(package-initialize)

(require 'org)
(require 'org-transclusion)
(require 'ox)
(require 'ox-html)
(require 'htmlize)

(setq org-transclusion-exclude-elements nil
      org-html-head-include-default-style nil
      org-html-head-include-scripts nil
      org-html-postamble-format '(("en" ""))
      org-html-postamble t
      org-html-divs '((preamble "header" "header")
                      (content "article" "content")
                      (postamble "footer" "postamble"))
      org-html-doctype "html5"
      org-html-htmlize-output-type 'css)

(org-transclusion-add-all)
(org-html-export-to-html)