From a7a8e4481bce810d077ea682b8379535a20931c9 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 17 Mar 2022 21:09:26 +0000 Subject: Update documentation files --- docs/res/publish.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/res/publish.el (limited to 'docs/res/publish.el') 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) -- cgit