add new required slide key, as :properties
2 files changed, 2 insertions(+), 1 deletions(-)

M tests.el
M zpresent.el
M tests.el +1 -1
@@ 13,7 13,7 @@ 
 ;;                                                                               nil)))))
 
 
-(defconst required-slide-keys '(:type :body :title :checkpoint))
+(defconst required-slide-keys '(:type :properties :body :title :checkpoint))
 
 
 (ert-deftest make-slide/title-only/check-title ()

          
M zpresent.el +1 -0
@@ 299,6 299,7 @@ slide is created with an empty body."
     (puthash :checkpoint t slide)
     (puthash :title title slide)
     (puthash :body (if body (list body) nil) slide)
+    (puthash :properties '() slide)
 
     (puthash :type :normal slide)
     slide))