From 6fb9529c84a268a291a23ffdd90b8ebd18fa64c0 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 3 Dec 2023 14:28:53 -0600 Subject: fix: update code block interior --- elisp/#publish.el# | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 elisp/#publish.el# (limited to 'elisp') diff --git a/elisp/#publish.el# b/elisp/#publish.el# new file mode 100644 index 0000000..48c6f4f --- /dev/null +++ b/elisp/#publish.el# @@ -0,0 +1,38 @@ +;; Publish org files to HTML + +;; Project publishing settings +(setq org-publish-project-alist + '(("cleberg.net" + :base-directory "~/Source/cleberg.net/" + :publishing-function org-html-publish-to-html + :publishing-directory "~/Source/cleberg.net/public/" + :auto-sitemap t + :recursive t + :section-numbers nil + :with-author nil + :html-validation-link nil + :with-tags t + :html-head-include-default-style nil + :html-head-include-scripts nil + :html-head "" + :html-preamble "") + + ("rss" + :base-directory "~/Source/cleberg.net/blog/" + :base-extension "org" + :html-link-home "https://cleberg.net/" + :html-link-use-abs-url t + :rss-extension "xml" + :publishing-directory "~/Source/cleberg.net/public/" + :publishing-function (org-rss-publish-to-rss) + :section-numbers nil + :exclude ("index.org")) + + ("static" + :base-directory "~/Source/cleberg.net/static/" + :base-extension "css\\|el" + :publishing-directory "~/Source/cleberg.net/public/static/" + :publishing-function org-publish-attachment) + ("website" :components ("cleberg.net" "rss" "static")))) + +(provide 'publish) -- cgit v1.2.3-70-g09d2