aboutsummaryrefslogtreecommitdiff
path: root/elisp/#publish.el#
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2023-12-03 15:25:39 -0600
committerChristian Cleberg <hello@cleberg.net>2023-12-03 15:25:39 -0600
commit8569f2676bfa15fb90522aa5816505b50a2a12f4 (patch)
tree3128fb080dfa196a39f00529964a079b1adefbe2 /elisp/#publish.el#
parent6fb9529c84a268a291a23ffdd90b8ebd18fa64c0 (diff)
downloadcleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.tar.gz
cleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.tar.bz2
cleberg.net-8569f2676bfa15fb90522aa5816505b50a2a12f4.zip
feat: add remote publishing
Diffstat (limited to 'elisp/#publish.el#')
-rw-r--r--elisp/#publish.el#38
1 files changed, 0 insertions, 38 deletions
diff --git a/elisp/#publish.el# b/elisp/#publish.el#
deleted file mode 100644
index 48c6f4f..0000000
--- a/elisp/#publish.el#
+++ /dev/null
@@ -1,38 +0,0 @@
-;; 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 "<link rel=stylesheet href=/static/styles.css>"
- :html-preamble "<nav><a href=/>Home</a><a href=/blog/>Blog</a><a href=/services/>Services</a><a href=/wiki/>Wiki</a></nav>")
-
- ("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)