diff --git a/ox-reveal.el b/ox-reveal.el index 6c2bdc8..c71e42f 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -1346,7 +1346,7 @@ contextual information." "Generate the automatic title slide template." (let* ((spec (org-html-format-spec info)) (title (org-export-data (plist-get info :title) info)) - (subtitle (plist-get info :subtitle)) + (subtitle (cdr (assq ?s spec))) (author (cdr (assq ?a spec))) (email (cdr (assq ?e spec))) (date (cdr (assq ?d spec)))) @@ -1380,9 +1380,9 @@ info is a plist holding export options." (if-format " lang=\"%s\"" (plist-get info :language))) "\n" (if-format "%s\n" (org-export-data (plist-get info :title) info)) - (if-format "\n" (plist-get info :author)) - (if-format "\n" (plist-get info :description)) - (if-format "\n" (plist-get info :keywords)) + (if-format "\n" (org-export-data (plist-get info :author) info)) + (if-format "\n" (org-export-data (plist-get info :description) info)) + (if-format "\n" (org-export-data (plist-get info :keywords) info)) (org-reveal-stylesheets info) (org-reveal-mathjax-scripts info) (org-reveal--build-pre/postamble 'head-preamble info)