aboutsummaryrefslogtreecommitdiffstats
path: root/docs/res/publish.el
diff options
context:
space:
mode:
Diffstat (limited to 'docs/res/publish.el')
-rw-r--r--docs/res/publish.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/res/publish.el b/docs/res/publish.el
new file mode 100644
index 0000000..c083eb0
--- /dev/null
+++ b/docs/res/publish.el
@@ -0,0 +1,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)