aboutsummaryrefslogtreecommitdiffstats
path: root/docs/res/publish-html.el
diff options
context:
space:
mode:
Diffstat (limited to 'docs/res/publish-html.el')
-rw-r--r--docs/res/publish-html.el12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/res/publish-html.el b/docs/res/publish-html.el
index 68de36d..a9c7a9d 100644
--- a/docs/res/publish-html.el
+++ b/docs/res/publish-html.el
@@ -5,8 +5,18 @@
(require 'org-transclusion)
(require 'ox)
(require 'ox-html)
+(require 'htmlize)
-(setq org-transclusion-exclude-elements nil)
+(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)