diff options
author | Arun Isaac | 2022-08-18 23:18:22 +0530 |
---|---|---|
committer | Arun Isaac | 2022-08-18 23:22:50 +0530 |
commit | 620a3483a4180dac9ae45b0057010c903b821b8c (patch) | |
tree | ee966913483e0b8dbb06bdd7d12cb4762e7a9b13 /ennum.el | |
parent | 269f30c781fefa08c5ba281bf66fd0c861c3b643 (diff) | |
download | ennum-620a3483a4180dac9ae45b0057010c903b821b8c.tar.gz ennum-620a3483a4180dac9ae45b0057010c903b821b8c.tar.lz ennum-620a3483a4180dac9ae45b0057010c903b821b8c.zip |
Rename :thumbnail-image-width property to :image-thumbnail-width.
* ennum.el (ennum-publish): Use :image-thumbnail-width instead of
:thumbnail-image-width.
(ennum-setting): Rename :thumbnail-image-width property to
:image-thumbnail-width.
* ennum-html.el (ennum-html-export-thumbnail): Use
:image-thumbnail-width instead of :thumbnail-image-width.
Diffstat (limited to 'ennum.el')
-rw-r--r-- | ennum.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -547,7 +547,7 @@ result as a string." :blog-scheme :index-posts-per-page :image-width :image-link-width :locale-alist :other-files-directory - :store :tag-directory :thumbnail-image-width) + :store :tag-directory :image-thumbnail-width) (plist-get (org-combine-plists (list :atom-feed-number-of-posts 12 :atom-feed-file "blog.atom" @@ -558,7 +558,7 @@ result as a string." :locale-alist '(("en" . "C")) :store ".ennum" :tag-directory "tag" - :thumbnail-image-width 320) + :image-thumbnail-width 320) ennum-blog) property)) (_ (error "Unknown property %s" property)))) @@ -723,7 +723,7 @@ as keys. Keys are compared using `equal'." (seq-map (lambda (image) (ennum-publish-image (ennum--file-join (ennum-setting :images-directory) image) - (ennum-setting :thumbnail-image-width))) + (ennum-setting :image-thumbnail-width))) (ennum--filter-map 'ennum-post-thumbnail posts)) ;; Publish other files (seq-map (apply-partially 'ennum-publish-generic other-files-directory) |