From 5d58980bb10b3919de117986fb3c25a0c59e13c6 Mon Sep 17 00:00:00 2001 From: Erik Hetzner Date: Mon, 31 Aug 2015 21:50:20 -0700 Subject: [PATCH] Do not xml declaration With HTML5, an xml declaration is not necessary. --- ox-reveal.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ox-reveal.el b/ox-reveal.el index 578e1bc..8b854c8 100755 --- a/ox-reveal.el +++ b/ox-reveal.el @@ -892,8 +892,7 @@ contextual information." contents is the transcoded contents string. info is a plist holding export options." (concat - (format " -\n\n\n" + (format "\n\n\n" (if-format " lang=\"%s\"" (plist-get info :language))) "\n" (if-format "%s\n" (org-export-data (plist-get info :title) info))