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

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

(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)