summaryrefslogtreecommitdiff
path: root/build-docs.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-03-26 18:00:47 +0300
committerThanos Apollo <[email protected]>2023-03-26 18:00:47 +0300
commit5b75c4c5fcd616c5bb4eade44cc823188aa30234 (patch)
tree72e7551558e4e49291bc413e95eda1593de9eae1 /build-docs.el
parentefa51a768714b01efc862c28180d5d639c04692c (diff)
remove build-docs.el and bash files
Diffstat (limited to 'build-docs.el')
-rw-r--r--build-docs.el31
1 files changed, 0 insertions, 31 deletions
diff --git a/build-docs.el b/build-docs.el
deleted file mode 100644
index 01e13c1..0000000
--- a/build-docs.el
+++ /dev/null
@@ -1,31 +0,0 @@
-(require 'package)
-(setq package-user-dir (expand-file-name "./.packages"))
-(setq package-archives '(("melpa" . "https://melpa.org/packages/")
- ("elpa" . "https://elpa.gnu.org/packages/")))
-
-;; Initialize the package system
-(package-initialize)
-(unless package-archive-contents
- (package-refresh-contents))
-
-;; Load the publishing system
-(require 'ox-publish)
-
-(setq org-publish-project-alist
- (list
- (list "org-site:main"
- :recursive nil
- :base-extension "org"
- :base-directory "./org"
- :publishing-function 'org-md-publish-to-md
- :publishing-directory "./"
- :with-author nil ;; Don't include author name
- :with-creator t ;; Include Emacs and Org versions in footer
- :with-toc nil ;; Include a table of contents
- :section-numbers nil ;; Don't include section numbers
- :time-stamp-file nil))) ;; Don't include time stamp in file
-
-;; Generate the site output
-(org-publish-all t)
-
-(message "Build complete!")