diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-01-08 20:11:17 -0600 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-01-08 20:11:17 -0600 |
commit | 25945b8fead989cca09a23983623b63ce36dcc0c (patch) | |
tree | 0dfc869ce8b028e04ce9da196af08779780915ce /README.org | |
parent | 22b526be60bf4257c2a1d58a5fad59cf6b044375 (diff) | |
download | cleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.tar.gz cleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.tar.bz2 cleberg.net-25945b8fead989cca09a23983623b63ce36dcc0c.zip |
feat: total re-write from Emacs org-mode to Zola markdown
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/README.org b/README.org deleted file mode 100644 index 821fa00..0000000 --- a/README.org +++ /dev/null @@ -1,35 +0,0 @@ -#+title: README - -* Overview - -This project uses [[https://orgmode.org/][org-mode]] to structure all documents, including the index page -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, 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 -=M-x org-publish-current-project=. - -If you want to force emacs to re-publish all files, including files without -changes, execute =C-u M-x org-publish-current-project=. - -The resulting files will be published to the =public/= directory within the -repository, which is ignored via the =.gitignore= file. If you wish to publish -the files remotely, you can change the =:publishing-directory= variable in -=publish.el= or do a sync step outside of emacs: - -#+begin_src sh -scp -r public/* ubuntu:/var/www/cleberg.net/ -#+end_src |