From f9bacaebc355693616c3e510fb3496ea1905543e Mon Sep 17 00:00:00 2001 From: Torstein Krause Johansen Date: Fri, 13 Sep 2013 22:07:47 +0200 Subject: [PATCH] - generated markup is now well formed XML - XML doc types should be uppercase. - added a few new lines so that all elements are on their own line --- ox-reveal.el | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ox-reveal.el b/ox-reveal.el index 82f9a0a..ad2948d 100644 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -343,13 +343,13 @@ using custom variable `org-reveal-root'." (theme-full (org-reveal--append-path theme-path theme-file)) (extra-css (plist-get info :reveal-extra-css)) (extra-css-link-tag (if extra-css - (format "" extra-css) + (format "" extra-css) "")) (pdf-css (org-reveal--append-pathes css-dir-name '("print" "pdf.css")))) - (format " - + (format " + %s - + " min-css-file-name theme-full extra-css-link-tag pdf-css))) @@ -629,9 +629,9 @@ contents is the transcoded contents string. info is a plist holding export options." (concat (format " -\n\n\n" +\n\n\n" (if-format " lang=\"%s\"" (plist-get info :language))) - "" + "\n" (if-format "%s\n" (plist-get info :title)) (if-format "\n" (plist-get info :author)) (if-format "\n" (plist-get info :description))