diff options
-rw-r--r-- | README.org | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -35,3 +35,15 @@ ennum lets you tangle source blocks embedded in posts and write them to a separa ** Pure Emacs Lisp ennum is written purely in Emacs Lisp [fn::except for the image processing code, for which we shell out to external command-line tools]. No need to pull up your terminal emulator or shell mode to rebuild your blog. + +* Installation + +Clone the repository. +#+BEGIN_SRC sh + $ git clone https://git.systemreboot.net/ennum/ +#+END_SRC +Add the path to the cloned repository to your load path, and load ennum. +#+BEGIN_SRC emacs-lisp + (add-to-list 'load-path "~/ennum") + (require 'ennum) +#+END_SRC |