diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-12-02 23:32:54 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-12-02 23:32:54 -0600 |
commit | 0e19e994579849f73645041fda0c8e4205976cf6 (patch) | |
tree | 14578d21311fb9d9ce23369fb05287d0565a101a | |
parent | 3d4da5ac6000a4871c5caa80d1e61f2782da3069 (diff) | |
download | cleberg.net-0e19e994579849f73645041fda0c8e4205976cf6.tar.gz cleberg.net-0e19e994579849f73645041fda0c8e4205976cf6.tar.bz2 cleberg.net-0e19e994579849f73645041fda0c8e4205976cf6.zip |
fix: change README to refer out to publish.el
-rw-r--r-- | README.org | 31 |
1 files changed, 3 insertions, 28 deletions
@@ -8,39 +8,14 @@ and sub-pages such as blog posts. * Configuration If you want to replicate this project structure, you'll need to customize your -=.emacs= file appropriately. - -My =.emacs= file below show a handful of project-related settings - -#+BEGIN_SRC lisp -;; 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-toc nil - :with-author nil - :html-validation-link nil - :with-tags t - :html-head "<link rel=stylesheet href=/static/styles.css>" - :html-preamble "<nav><a href=/>Home</a><a href=/blog/>Blog</a><a href=/notes/>Notes</a><a href=/services/>Services</a></nav>") - - ("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" "static")))) -#+END_SRC +=.emacs= file appropriately, or load a custom =.el= file. If you're within emacs while changing =.emacs=, you'll need to reload the configuration with =M-x load-file= and hit enter to reload the current file (=.emacs=). +See the [[elisp/publish.el][publish.el]] file for this repository's configuration. + * Building When ready to publish, open any of the =.org= files in the project and execute |