diff options
Diffstat (limited to 'ennum.el')
-rw-r--r-- | ennum.el | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -654,7 +654,8 @@ result as a string." :blog-scheme :index-posts-per-page :image-width :image-link-width :locale-alist :other-files-directory - :store :tag-directory :image-thumbnail-width + :pdf-width :pdf-height :store + :tag-directory :image-thumbnail-width :required-metadata) (plist-get (org-combine-plists (list :atom-feed-number-of-posts 12 @@ -664,6 +665,11 @@ result as a string." :image-link-width 1024 :index-posts-per-page 12 :locale-alist '(("en" . "C")) + ;; These PDF dimensions preserve the √2 ratio + ;; of A series paper. + ;; https://en.wikipedia.org/wiki/Paper_size#A_series + :pdf-width 640 + :pdf-height 905 :store ".ennum" :tag-directory "tag" :image-thumbnail-width 320 @@ -743,7 +749,7 @@ recognized as a directory, it should end in a slash. See width)) (list (ennum-setting :image-width) (ennum-setting :image-link-width)))) - ('static + ((or 'pdf 'static) (list (ennum-publish-copy (ennum--file-join (ennum-setting :static-directory) |