diff options
-rw-r--r-- | ennu.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -72,7 +72,8 @@ (pcase tangle-output-file ("no" nil) (_ tangle-output-file)))))))) - :summary (funcall export (first (plist-get metadata :summary))) + :summary (when-let (summary (plist-get metadata :summary)) + (funcall export (first summary))) :tags (plist-get metadata :filetags) :thumbnail (or (plist-get metadata :thumbnail) (seq-some (lambda (link) |