diff options
author | Arun Isaac | 2022-08-19 01:36:57 +0530 |
---|---|---|
committer | Arun Isaac | 2022-08-19 01:38:43 +0530 |
commit | ef45c78ab73c2cd28a160cc33eb4ce50f0ba84f7 (patch) | |
tree | 16009439f293065cd1fe43e4da8389c87f2c3cfc | |
parent | 504f83e4f447c926e70fea284dbab36065f7005c (diff) | |
download | ennum-ef45c78ab73c2cd28a160cc33eb4ce50f0ba84f7.tar.gz ennum-ef45c78ab73c2cd28a160cc33eb4ce50f0ba84f7.tar.lz ennum-ef45c78ab73c2cd28a160cc33eb4ce50f0ba84f7.zip |
Add usage instructions.
* README.org (Usage): New section.
-rw-r--r-- | README.org | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -47,3 +47,21 @@ Add the path to the cloned repository to your load path, and load ennum. (add-to-list 'load-path "~/ennum") (require 'ennum) #+END_SRC + +* Usage + +Set up /ennum-blog/ with settings relevant for your blog, and run /M-x ennum-publish/. A simple sample /ennum-blog/ is given below. For detailed documentation of all available settings, see its docstring. +#+BEGIN_SRC emacs-lisp + (setq ennum-blog + '(:working-directory "~/blog" + :output-directory "output" + :posts-directory "posts" + :images-directory "images" + :static-directory "files" + :video-directory "videos" + + :blog-title "Muthu Mani Maalai" + :blog-subtitle "Mani's blog" + :blog-domain "example.org" + :blog-license "All content is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.")) +#+END_SRC |