diff options
author | Arun Isaac | 2022-08-18 23:24:34 +0530 |
---|---|---|
committer | Arun Isaac | 2022-08-18 23:24:34 +0530 |
commit | 1913aba24aa1700b066bbe09c34f6ce1be9ef37a (patch) | |
tree | cef05eaac19f15ba4b6d629a93f58d6509e29ff1 | |
parent | 3d12c939ef3465c22800ad42dd8423bdc2992898 (diff) | |
download | ennum-1913aba24aa1700b066bbe09c34f6ce1be9ef37a.tar.gz ennum-1913aba24aa1700b066bbe09c34f6ce1be9ef37a.tar.lz ennum-1913aba24aa1700b066bbe09c34f6ce1be9ef37a.zip |
Make ennum-blog customizable.
* ennum.el (ennum-blog): Define using defcustom instead of defvar.
-rw-r--r-- | ennum.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -16,7 +16,7 @@ (defconst ennum-version "0.1.0" "Ennum version string") -(defvar ennum-blog nil +(defcustom ennum-blog nil "Property list specifying ennum publish settings. Valid properties are described below. @@ -132,7 +132,8 @@ to ((\"en\" . \"C\")). Path to the ennum store. The store is a temporary directory used to cache various versions of built artifacts. It is always safe to delete. If the store path is relative, it is interpreted -relative to `:working-directory'. Defaults to \".ennum\".") +relative to `:working-directory'. Defaults to \".ennum\"." + :group 'ennum) (defvar ennum-track-features '(ennum ennum-html ennum-image ob-tangle org ox ox-html) |